diff --git a/GainStation13/code/game/donator.dm b/GainStation13/code/game/donator.dm index c3d8e11da3..cf74042a42 100644 --- a/GainStation13/code/game/donator.dm +++ b/GainStation13/code/game/donator.dm @@ -1,3 +1,34 @@ +//GS13: donator items and other ckey-locked junk +/datum/gear/gatobadge_employee //these are available only to admins with CC-related characters + name = "GATO Badge - Employee" + category = LOADOUT_CATEGORY_DONATOR + path = /obj/item/clothing/accessory/medal/gato_badge/employee + ckeywhitelist = list("sonoida", "yeeny") + +/datum/gear/gatobadge_middleman //these are available to players who were granted permission to have their characters to CC + name = "GATO Badge - Correspondent" + category = LOADOUT_CATEGORY_DONATOR + path = /obj/item/clothing/accessory/medal/gato_badge/middleman + ckeywhitelist = list("johnjimjim", "sonoida", "yeeny", "Not Number") + +/datum/gear/halsey_overcoat + name = "Halsey's Commander Overcoat" + category = LOADOUT_CATEGORY_DONATOR + path = /obj/item/clothing/suit/chloe/halsey + ckeywhitelist = list("yeeny") + +/datum/gear/haydee_suit + name = "Haydee Suit" + category = LOADOUT_CATEGORY_DONATOR + path = /obj/item/clothing/suit/space/hardsuit/engine/haydee + ckeywhitelist = list("lumu", "sonoida") + +/datum/gear/haydee_pistol + name = "Haydee Pistol" + category = LOADOUT_CATEGORY_DONATOR + path = /obj/item/gun/ballistic/automatic/toy/pistol/haydee + ckeywhitelist = list("lumu", "sonoida") + //sorry for defining this here, just thought it'd be more convenient /obj/item/clothing/suit/chloe/halsey //sorry to whoever chloe is, but that coat is far too badass not to be used name = "Halsey's Commander Overcoat" diff --git a/GainStation13/code/modules/loadout/glasses.dm b/GainStation13/code/modules/loadout/glasses.dm new file mode 100644 index 0000000000..b694aa3569 --- /dev/null +++ b/GainStation13/code/modules/loadout/glasses.dm @@ -0,0 +1,11 @@ +/datum/gear/glasses/garb + name = "polychromic gar glasses" + category = LOADOUT_CATEGORY_GLASSES + path = /obj/item/clothing/glasses/polychromic/garpoly + cost = 2 + +/datum/gear/glasses/gigagarb + name = "polychromic giga gar glasses" + category = LOADOUT_CATEGORY_GLASSES + path = /obj/item/clothing/glasses/polychromic/supergarpoly + cost = 2 diff --git a/GainStation13/code/modules/loadout/gloves.dm b/GainStation13/code/modules/loadout/gloves.dm new file mode 100644 index 0000000000..32b832fbb7 --- /dev/null +++ b/GainStation13/code/modules/loadout/gloves.dm @@ -0,0 +1,11 @@ +/datum/gear/syntech/ring + name = "Normalizer Ring" + category = LOADOUT_CATEGORY_GLOVES + path = /obj/item/clothing/gloves/ring/syntech + cost = 6 + +/datum/gear/syntech/band + name = "Normalizer Band" + category = LOADOUT_CATEGORY_GLOVES + path = /obj/item/clothing/gloves/ring/syntech/band + cost = 6 diff --git a/GainStation13/code/modules/loadout/neck.dm b/GainStation13/code/modules/loadout/neck.dm new file mode 100644 index 0000000000..19e5bd9592 --- /dev/null +++ b/GainStation13/code/modules/loadout/neck.dm @@ -0,0 +1,17 @@ +/datum/gear/syntech/pendant + name = "Normalizer Pendant" + category = LOADOUT_CATEGORY_NECK + path = /obj/item/clothing/neck/syntech + cost = 6 + +/datum/gear/syntech/choker + name = "Normalizer Choker" + category = LOADOUT_CATEGORY_NECK + path = /obj/item/clothing/neck/syntech/choker + cost = 6 + +/datum/gear/syntech/collar + name = "Normalizer Collar" + category = LOADOUT_CATEGORY_NECK + path = /obj/item/clothing/neck/syntech/collar + cost = 6 diff --git a/GainStation13/code/modules/loadout/tablet.dm b/GainStation13/code/modules/loadout/tablet.dm new file mode 100644 index 0000000000..29b5d5a67f --- /dev/null +++ b/GainStation13/code/modules/loadout/tablet.dm @@ -0,0 +1,5 @@ +/datum/gear/backpack/tablet + name = "Tablet Computer" + category = LOADOUT_CATEGORY_BACKPACK + path = /obj/item/modular_computer/tablet/preset/cheap/ + cost = 3 diff --git a/tgstation.dme b/tgstation.dme index f7788e295a..b9d68a33c5 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -3977,6 +3977,9 @@ #include "GainStation13\code\modules\hydroponics\lipoplant.dm" #include "GainStation13\code\modules\hydroponics\munchies_weed.dm" #include "GainStation13\code\modules\hydroponics\grown\berries.dm" +#include "GainStation13\code\modules\loadout\gloves.dm" +#include "GainStation13\code\modules\loadout\neck.dm" +#include "GainStation13\code\modules\loadout\tablet.dm" #include "GainStation13\code\modules\mapping\areas.dm" #include "GainStation13\code\modules\mapping\ghost_roles.dm" #include "GainStation13\code\modules\mob\living\belly.dm"