From 0548b13587bdaf55e026e7253490ed37cf14b391 Mon Sep 17 00:00:00 2001 From: ToasterBan <54711687+ToasterBan@users.noreply.github.com> Date: Sat, 10 Aug 2024 03:15:12 +0200 Subject: [PATCH] adds some items to the loadout shop (#1053) --- .../preferences/loadout/loadout_item/backpack.dm | 4 ++++ .../client/preferences/loadout/loadout_item/head.dm | 3 +++ .../client/preferences/loadout/loadout_item/shoes.dm | 12 ++++++++++++ .../preferences/loadout/loadout_item/undersuit.dm | 4 ++++ 4 files changed, 23 insertions(+) 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