[MIRROR] Poster Pack 2 - Beyond Posters [MDB IGNORE] (#14879)

* Poster Pack 2 - Beyond Posters (#68235)

Adds a new selection of posters, poster-like objects, and wall decorations.

New entirely with this PR, shipping containers! These sprites were adapted from a base from TGMC, with brands and designs more fitting to our universe here on TG

Another new addition, flags! These draw upon Common Core lore, representing several major factions from the lorebase as a new mapping tool

Finally, there are two interactive wall objects- wall clocks, and calendars:

The wall clock shows both the "real time", represented as the Earth time, or Treaty Coordinated Standard Time, and the station time, represented as the local time, or Coalition Standard Time

The calendar gives the in-universe date, as well as any active holidays

Why It's Good For The Game

This adds a lot of fun aesthetic additions that I think will benefit our mapping team in creating new spaces and breathing new life into older ones. Additionally, it helps make our Common Core lore a bit more tangible to the playerbase, bringing it away from being "just on a wiki" and into the game proper.

A whole host of new posters have just become available.
For the architects among you: a number of new aesthetic options are available for mapping with. Let your creativity free!

* Poster Pack 2 - Beyond Posters

* add to dumb modular file

Co-authored-by: EOBGames <58124831+EOBGames@users.noreply.github.com>
Co-authored-by: Tom <8881105+tf-4@users.noreply.github.com>
This commit is contained in:
SkyratBot
2022-07-18 16:13:02 +00:00
committed by GitHub
co-authored by EOBGames Tom
parent ff158c562a
commit a09cf3d7a4
12 changed files with 311 additions and 0 deletions
@@ -0,0 +1,47 @@
/obj/structure/sign/flag
name = "flag of the IT Division"
desc = "The flag of the Nanotrasen IT Division. Bears a symbol that only makes sense to those that understand."
icon = 'icons/obj/flags.dmi'
icon_state = "flag_coder"
/obj/structure/sign/flag/nanotrasen
name = "flag of Nanotrasen"
desc = "The official corporate flag of Nanotrasen. Mostly flown as a ceremonial piece, or to mark land on a new frontier."
icon_state = "flag_nt"
MAPPING_DIRECTIONAL_HELPERS(/obj/structure/sign/flag/nanotrasen, 32)
/obj/structure/sign/flag/ssc
name = "flag of the Spinward Stellar Coalition"
desc = "The flag of the Independent Coalition of the Spinward Sector. The colours represent panslavism, and the three stars represent the three central systems of the SSC."
icon_state = "flag_ssc"
MAPPING_DIRECTIONAL_HELPERS(/obj/structure/sign/flag/ssc, 32)
/obj/structure/sign/flag/terragov
name = "flag of TerraGov"
desc = "The flag of TerraGov. It's a symbol of humanity no matter where they go, or how much they wish it wasn't."
icon_state = "flag_terragov"
MAPPING_DIRECTIONAL_HELPERS(/obj/structure/sign/flag/terragov, 32)
/obj/structure/sign/flag/tizira
name = "flag of the Tiziran Empire"
desc = "The flag of the Great Empire of Tizira. Depending on who you ask, it represents strength or being stuck in the past."
icon_state = "flag_tizira"
MAPPING_DIRECTIONAL_HELPERS(/obj/structure/sign/flag/tizira, 32)
/obj/structure/sign/flag/mothic
name = "flag of the Grand Nomad Fleet"
desc = "The flag of the Mothic Grand Nomad Fleet. A classic naval ensign, its use has superceded the old national flag which can be seen in its canton."
icon_state = "flag_mothic"
MAPPING_DIRECTIONAL_HELPERS(/obj/structure/sign/flag/mothic, 32)
/obj/structure/sign/flag/mars
name = "flag of the Martian Republic"
desc = "The flag of Mars. Originally a revolutionary flag during the Martian Rebellions, it has since been adopted as the official flag of the planet, as a reminder of how Mars fought for representation and democracy."
icon_state = "flag_mars"
MAPPING_DIRECTIONAL_HELPERS(/obj/structure/sign/flag/mars, 32)
@@ -0,0 +1,26 @@
/obj/structure/sign/clock
name = "wall clock"
desc = "It's a bluespace-controlled wall clock showing both the local Coalition Standard Time and the galactic Treaty Coordinated Time. Perfect for staring at instead of working."
icon_state = "clock"
MAPPING_DIRECTIONAL_HELPERS(/obj/structure/sign/clock, 32)
/obj/structure/sign/clock/examine(mob/user)
. = ..()
. += span_info("The current CST (local) time is: [station_time_timestamp()].")
. += span_info("The current TCT (galactic) time is: [time2text(world.realtime, "hh:mm:ss")].")
/obj/structure/sign/calendar
name = "wall calendar"
desc = "It's an old-school wall calendar. Sure, it might be obsolete with modern technology, but it's still hard to imagine an office without one."
icon_state = "calendar"
MAPPING_DIRECTIONAL_HELPERS(/obj/structure/sign/calendar, 32)
/obj/structure/sign/calendar/examine(mob/user)
. = ..()
. += span_info("The current date is: [time2text(world.realtime, "DDD, MMM DD")], [GLOB.year_integer+540].")
if(SSevents.holidays)
. += span_info("Events:")
for(var/holidayname in SSevents.holidays)
. += span_info("[holidayname]")