adds more loadout equipment, adds working ckey whitelist system, and more

This commit is contained in:
deathride58
2018-01-16 16:23:22 -05:00
parent b55a497ffc
commit b74518a24a
10 changed files with 159 additions and 20 deletions
@@ -0,0 +1,24 @@
/datum/gear/plushcarp
name = "Space carp plushie"
category = slot_in_backpack
path = /obj/item/toy/plush/carpplushie
/datum/gear/plushliz
name = "Lizard plushie"
category = slot_in_backpack
path = /obj/item/toy/plush/lizardplushie
/datum/gear/plushsnek
name = "Snake plushie"
category = slot_in_backpack
path = /obj/item/toy/plush/snakeplushie
/datum/gear/plushslime
name = "Slime plushie"
category = slot_in_backpack
path = /obj/item/toy/plush/slimeplushie
/datum/gear/dildo
name = "Customizable dildo"
category = slot_in_backpack
path = /obj/item/dildo/custom
@@ -0,0 +1,13 @@
//This is the file that handles donator loadout items.
/datum/gear/aaapingcoderfailsafe
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 hardcore")
/datum/gear/donortestingbikehorn
name = "Only coders should see this"
category = slot_in_backpack
path = /obj/item/bikehorn
ckeywhitelist = list("deathride58")
@@ -13,11 +13,6 @@
category = slot_hands
path = /obj/item/storage/pill_bottle/dice
/datum/gear/flyswatter
name = "Flyswatter"
category = slot_hands
path = /obj/item/melee/flyswatter
/datum/gear/eightball
name = "Magic eightball"
category = slot_hands
@@ -0,0 +1,59 @@
/datum/gear/poncho
name = "Poncho"
category = slot_wear_suit
path = /obj/item/clothing/suit/poncho
/datum/gear/ponchogreen
name = "Green poncho"
category = slot_wear_suit
path = /obj/item/clothing/suit/poncho/green
/datum/gear/ponchored
name = "Red poncho"
category = slot_wear_suit
path = /obj/item/clothing/suit/poncho/red
/datum/gear/jacketbomber
name = "Bomber jacket"
category = slot_wear_suit
path = /obj/item/clothing/suit/jacket
/datum/gear/jacketleather
name = "Leather jacket"
category = slot_wear_suit
path = /obj/item/clothing/suit/jacket/leather
/datum/gear/overcoatleather
name = "Leather overcoat"
category = slot_wear_suit
path = /obj/item/clothing/suit/jacket/leather/overcoat
/datum/gear/jacketpuffer
name = "Puffer jacket"
category = slot_wear_suit
path = /obj/item/clothing/suit/jacket/puffer
/datum/gear/vestpuffer
name = "Puffer vest"
category = slot_wear_suit
path = /obj/item/clothing/suit/jacket/puffer/vest
/datum/gear/jacketlettermanbrown
name = "Brown letterman jacket"
category = slot_wear_suit
path = /obj/item/clothing/suit/jacket/letterman
/datum/gear/jacketlettermanred
name = "Red letterman jacket"
category = slot_wear_suit
path = /obj/item/clothing/suit/jacket/letterman_red
/datum/gear/jacketlettermanNT
name = "Nanotrasen letterman jacket"
category = slot_wear_suit
path = /obj/item/clothing/suit/jacket/letterman_nanotrasen
/datum/gear/coat
name = "Winter coat"
category = slot_wear_suit
path = /obj/item/clothing/suit/hooded/wintercoat
@@ -1,39 +1,39 @@
/datum/gear/suit
/datum/gear/suitblack
name = "Black suit"
category = slot_w_uniform
path = /obj/item/clothing/under/suit_jacket
/datum/gear/greensuit
/datum/gear/suitgreen
name = "Green suit"
category = slot_w_uniform
path = /obj/item/clothing/under/suit_jacket/green
/datum/gear/redsuit
/datum/gear/suitred
name = "Red suit"
category = slot_w_uniform
path = /obj/item/clothing/under/suit_jacket/red
/datum/gear/charcoalsuit
/datum/gear/suitcharcoal
name = "Charcoal suit"
category = slot_w_uniform
path = /obj/item/clothing/under/suit_jacket/charcoal
/datum/gear/navysuit
/datum/gear/suitnavy
name = "Navy suit"
category = slot_w_uniform
path = /obj/item/clothing/under/suit_jacket/navy
/datum/gear/burgundysuit
/datum/gear/suitburgundy
name = "Burgundy suit"
category = slot_w_uniform
path = /obj/item/clothing/under/suit_jacket/burgundy
/datum/gear/tansuit
/datum/gear/suittan
name = "Tan suit"
category = slot_w_uniform
path = /obj/item/clothing/under/suit_jacket/tan
/datum/gear/whitesuit
/datum/gear/suitwhite
name = "White suit"
category = slot_w_uniform
path = /obj/item/clothing/under/suit_jacket/white
@@ -47,3 +47,33 @@
name = "Maid costume"
category = slot_w_uniform
path = /obj/item/clothing/under/maid
/datum/gear/mailmanuniform
name = "Mailman's jumpsuit"
category = slot_w_uniform
path = /obj/item/clothing/under/rank/mailman
/datum/gear/skirtblack
name = "Black skirt"
category = slot_w_uniform
path = /obj/item/clothing/under/skirt/black
/datum/gear/skirtblue
name = "Blue skirt"
category = slot_w_uniform
path = /obj/item/clothing/under/skirt/blue
/datum/gear/skirtred
name = "Red skirt"
category = slot_w_uniform
path = /obj/item/clothing/under/skirt/red
/datum/gear/skirtpurple
name = "Purple skirt"
category = slot_w_uniform
path = /obj/item/clothing/under/skirt/purple
/datum/gear/kilt
name = "Kilt"
category = slot_w_uniform
path = /obj/item/clothing/under/kilt
@@ -3,7 +3,7 @@
#define BACKPACK_SLOT_AMT 3
/datum/preferences
var/gear_points = 5
var/gear_points = 10
var/list/gear_categories
var/list/chosen_gear
var/gear_tab