mirror of
https://github.com/tonytins/citylimits
synced 2025-06-25 09:24:44 -04:00
Slightly rewrote the news ticker architecture
- The news ticker is now a stealth button that opens a window. - News window now has brandings for FNN and Pawprint Press. - Ticker now provides extra lore by me if is_caseyverse.txt is present. - Moved the news ticker functions to the window source, for now. - Added .gdignore
This commit is contained in:
parent
aed8b266b8
commit
f8a0f97767
17 changed files with 670 additions and 157 deletions
7
json/ticker/README.md
Normal file
7
json/ticker/README.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
# News Ticker
|
||||
|
||||
With the exception of certain policies, the majority of the lore in City Limits comes from the news ticker. During regular gameplay (when there isn't any disasters or financial problems), the news ticker provides fictional turn of events that happen in the city, such as the Kitty Kibble shortage from SimCity 3000.
|
||||
|
||||
## Extra Lore
|
||||
|
||||
Additionally, I've added my own turn of events with the ``extra_lore.json`` file. Internally, this is known as "Caseyverse" and has a global node of the same name. That node is designed so the game can function without it through the use of the ``if_caseyverse()`` function (which checks for that json file, at the moment) and any future related functions that deal with events.
|
11
json/ticker/extra_lore.json
Normal file
11
json/ticker/extra_lore.json
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"competing_outlet": "Citizen Telegram",
|
||||
"ticker": [
|
||||
"Some cats look to [other_outlet] for answers behind Kitty Kibble shortage.",
|
||||
"Kit Welsh awarded for his medical breakthroughs in [city].",
|
||||
"Ishard has frozen another one of Big Boston's numbers racket.",
|
||||
"Can Ishard solve the Kitty Kibble shortage?",
|
||||
"Who is Ishard? And where did he come from?",
|
||||
"Big Boston gets frozen in his tracks again thanks to Ishard."
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue