loadout stuff

This commit is contained in:
Metis
2024-09-18 20:40:23 -04:00
parent a638b7fda0
commit c7aa189af0
6 changed files with 78 additions and 0 deletions

View File

@@ -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"

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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"