mirror of
https://github.com/KabKebab/GS13.git
synced 2026-08-31 09:00:47 +01:00
21 lines
791 B
Plaintext
21 lines
791 B
Plaintext
//This is the file that handles donator loadout items.
|
|
|
|
|
|
/datum/gear/pingcoderfailsafe
|
|
name = "IF YOU SEE THIS, PING A CODER RIGHT NOW!"
|
|
category = SLOT_IN_BACKPACK
|
|
path = /obj/item/bikehorn/golden
|
|
ckeywhitelist = list("This entry should never appear with this variable set.") //If it does, then that means somebody fucked up the whitelist system pretty hard
|
|
|
|
/datum/gear/donortestingbikehorn
|
|
name = "Donor item testing bikehorn"
|
|
category = SLOT_IN_BACKPACK
|
|
path = /obj/item/bikehorn
|
|
geargroupID = list("DONORTEST") //This is a list mainly for the sake of testing, but geargroupID works just fine with ordinary strings
|
|
|
|
/datum/gear/winterblooplush
|
|
name = "Will Plush"
|
|
category = SLOT_IN_BACKPACK
|
|
path = /obj/item/toy/plush/mammal/winterbloo
|
|
ckeywhitelist = list("Wolfy_wolf967")
|