From 1b96cfbdaadeb1a76f215bf4c9ffd85dce634a08 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Wed, 16 Dec 2020 07:15:11 +0100 Subject: [PATCH] [MIRROR] Adds Waitangi Day and ANZAC Day to holidays.dm (#2184) * Adds Waitangi Day and ANZAC Day to holidays.dm (#55519) * Adds Waitangi Day and ANZAC Day to holidays.dm * Makes the poppy the default drone hat on ANZAC day The remembrance poppy is an artificial flower worn to commemorate those who died for their country. * Adds Waitangi Day and ANZAC Day to holidays.dm Co-authored-by: cacogen <25089914+cacogen@users.noreply.github.com> --- code/modules/holiday/holidays.dm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/code/modules/holiday/holidays.dm b/code/modules/holiday/holidays.dm index 97a6a4ba8e3..8aa4e6c4d37 100644 --- a/code/modules/holiday/holidays.dm +++ b/code/modules/holiday/holidays.dm @@ -262,6 +262,27 @@ /datum/holiday/usa/getStationPrefix() return pick("Independent","American","Burger","Bald Eagle","Star-Spangled", "Fireworks") +/datum/holiday/nz + name = "Waitangi Day" + begin_day = 6 + begin_month = FEBRUARY + +/datum/holiday/nz/getStationPrefix() + return pick("Aotearoa","Kiwi","Fish 'n' Chips","Kākāpō","Southern Cross") + +/datum/holiday/nz/greet() + var/nz_age = text2num(time2text(world.timeofday, "YYYY")) - 1840 //is this work + return "On this day [nz_age] years ago, New Zealand's Treaty of Waitangi, the founding document of the nation, was signed!" //thus creating much controversy + +/datum/holiday/anz + name = "ANZAC Day" + begin_day = 25 + begin_month = APRIL + drone_hat = /obj/item/food/grown/poppy + +/datum/holiday/anz/getStationPrefix() + return pick("Australian","New Zealand","Poppy", "Southern Cross") + /datum/holiday/writer name = "Writer's Day" begin_day = 8