Skip to content

Commit 0548b13

Browse files
authored
adds some items to the loadout shop (#1053)
1 parent b247fe0 commit 0548b13

File tree

4 files changed

+23
-0
lines changed

4 files changed

+23
-0
lines changed

code/modules/client/preferences/loadout/loadout_item/backpack.dm

+4
Original file line numberDiff line numberDiff line change
@@ -86,3 +86,7 @@
8686
/datum/loadout_item/backpack/fountainpen
8787
path = /obj/item/pen/fountain
8888
cost = 2
89+
90+
/datum/loadout_item/backpack/skateboard
91+
path = /obj/item/melee/skateboard
92+
cost = 2

code/modules/client/preferences/loadout/loadout_item/head.dm

+3
Original file line numberDiff line numberDiff line change
@@ -78,3 +78,6 @@
7878
/datum/loadout_item/head/cone
7979
path = /obj/item/clothing/head/cone
8080
cost = 2
81+
82+
/datum/loadout_item/head/delinquent
83+
path = /obj/item/clothing/head/delinquent

code/modules/client/preferences/loadout/loadout_item/shoes.dm

+12
Original file line numberDiff line numberDiff line change
@@ -57,3 +57,15 @@
5757

5858
/datum/loadout_item/shoes/yellowsinger
5959
path = /obj/item/clothing/shoes/singery
60+
61+
/datum/loadout_item/shoes/swag
62+
path = /obj/item/clothing/shoes/swagshoes
63+
cost = 4
64+
65+
/datum/loadout_item/shoes/wheelys
66+
path = /obj/item/clothing/shoes/wheelys
67+
cost = 4
68+
69+
/datum/loadout_item/shoes/rollerskates
70+
path = /obj/item/clothing/shoes/wheelys/rollerskates
71+
cost = 3

code/modules/client/preferences/loadout/loadout_item/undersuit.dm

+4
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@
3232
/datum/loadout_item/uniform/kilt
3333
path = /obj/item/clothing/under/costume/kilt
3434

35+
/datum/loadout_item/uniform/swag
36+
path = /obj/item/clothing/under/costume/swagoutfit
37+
cost = 4
38+
3539
//SUITS
3640
/datum/loadout_item/uniform/suit
3741
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_SUITS

0 commit comments

Comments
 (0)