mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-10 10:01:40 +00:00
Adds international garbage day, a day to respect janitors everywhere
This commit is contained in:
@@ -21,7 +21,7 @@
|
||||
#define HALLOWEEN "Halloween"
|
||||
#define CHRISTMAS "Christmas"
|
||||
#define FESTIVE_SEASON "Festive Season"
|
||||
|
||||
#define GARBAGEDAY "Garbage Day"
|
||||
/*
|
||||
|
||||
Days of the week to make it easier to reference them.
|
||||
|
||||
@@ -93,6 +93,16 @@
|
||||
/datum/holiday/valentines/getStationPrefix()
|
||||
return pick("Love","Amore","Single","Smootch","Hug")
|
||||
|
||||
/// Garbage DAYYYYY
|
||||
/// Huh?.... NOOOO
|
||||
/// *GUNSHOT*
|
||||
/// AHHHGHHHHHHH
|
||||
/datum/holiday/garbageday
|
||||
name = GARBAGEDAY
|
||||
begin_day = 17
|
||||
end_day = 17
|
||||
begin_month = JUNE
|
||||
|
||||
/datum/holiday/birthday
|
||||
name = "Birthday of Space Station 13"
|
||||
begin_day = 16
|
||||
@@ -170,8 +180,8 @@
|
||||
/datum/holiday/april_fools/celebrate()
|
||||
SSjob.set_overflow_role("Clown")
|
||||
SSticker.login_music = 'sound/ambience/clown.ogg'
|
||||
for(var/i in GLOB.new_player_list)
|
||||
var/mob/dead/new_player/P = i
|
||||
for(var/i in GLOB.new_player_list)
|
||||
var/mob/dead/new_player/P = i
|
||||
if(P.client)
|
||||
P.client.playtitlemusic()
|
||||
|
||||
|
||||
@@ -26,3 +26,9 @@
|
||||
ears = /obj/item/radio/headset/headset_srv
|
||||
uniform = /obj/item/clothing/under/rank/civilian/janitor
|
||||
backpack_contents = list(/obj/item/modular_computer/tablet/preset/advanced=1)
|
||||
|
||||
/datum/outfit/job/janitor/pre_equip(mob/living/carbon/human/H, visualsOnly)
|
||||
. = ..()
|
||||
if(GARBAGEDAY in SSevents.holidays)
|
||||
l_pocket = /obj/item/gun/ballistic/revolver
|
||||
r_pocket = /obj/item/ammo_box/a357
|
||||
|
||||
Reference in New Issue
Block a user