diff --git a/code/modules/client/preferences/loadout/loadout_item/backpack.dm b/code/modules/client/preferences/loadout/loadout_item/backpack.dm index 0e1a0f3b23bd..07984e00ae0a 100644 --- a/code/modules/client/preferences/loadout/loadout_item/backpack.dm +++ b/code/modules/client/preferences/loadout/loadout_item/backpack.dm @@ -86,3 +86,7 @@ /datum/loadout_item/backpack/fountainpen path = /obj/item/pen/fountain cost = 2 + +/datum/loadout_item/backpack/skateboard + path = /obj/item/melee/skateboard + cost = 2 diff --git a/code/modules/client/preferences/loadout/loadout_item/head.dm b/code/modules/client/preferences/loadout/loadout_item/head.dm index 060c39eeef1b..74b99710ca2d 100644 --- a/code/modules/client/preferences/loadout/loadout_item/head.dm +++ b/code/modules/client/preferences/loadout/loadout_item/head.dm @@ -78,3 +78,6 @@ /datum/loadout_item/head/cone path = /obj/item/clothing/head/cone cost = 2 + +/datum/loadout_item/head/delinquent + path = /obj/item/clothing/head/delinquent diff --git a/code/modules/client/preferences/loadout/loadout_item/shoes.dm b/code/modules/client/preferences/loadout/loadout_item/shoes.dm index e64de51920e7..794efc48d283 100644 --- a/code/modules/client/preferences/loadout/loadout_item/shoes.dm +++ b/code/modules/client/preferences/loadout/loadout_item/shoes.dm @@ -57,3 +57,15 @@ /datum/loadout_item/shoes/yellowsinger path = /obj/item/clothing/shoes/singery + +/datum/loadout_item/shoes/swag + path = /obj/item/clothing/shoes/swagshoes + cost = 4 + +/datum/loadout_item/shoes/wheelys + path = /obj/item/clothing/shoes/wheelys + cost = 4 + +/datum/loadout_item/shoes/rollerskates + path = /obj/item/clothing/shoes/wheelys/rollerskates + cost = 3 diff --git a/code/modules/client/preferences/loadout/loadout_item/undersuit.dm b/code/modules/client/preferences/loadout/loadout_item/undersuit.dm index 132aee5cb5ea..66ec1fed9388 100644 --- a/code/modules/client/preferences/loadout/loadout_item/undersuit.dm +++ b/code/modules/client/preferences/loadout/loadout_item/undersuit.dm @@ -32,6 +32,10 @@ /datum/loadout_item/uniform/kilt path = /obj/item/clothing/under/costume/kilt +/datum/loadout_item/uniform/swag + path = /obj/item/clothing/under/costume/swagoutfit + cost = 4 + //SUITS /datum/loadout_item/uniform/suit subcategory = LOADOUT_SUBCATEGORY_UNIFORM_SUITS