diff --git a/hyperstation/code/modules/clothing/head.dm b/hyperstation/code/modules/clothing/head.dm new file mode 100644 index 00000000..1e5dfe5a --- /dev/null +++ b/hyperstation/code/modules/clothing/head.dm @@ -0,0 +1,8 @@ +/obj/item/clothing/head/maidband + name = "maid head-band" + desc = "To complete the maid look." + icon_state = "maid_head" + item_state = "maid_head" + icon = 'hyperstation/icons/obj/clothing/head.dmi' + alternate_worn_icon = 'hyperstation/icons/mobs/head.dmi' + mutantrace_variation = NO_MUTANTRACE_VARIATION \ No newline at end of file diff --git a/hyperstation/code/obj/rewards.dm b/hyperstation/code/obj/rewards.dm index b0c5d284..7fa8da30 100644 --- a/hyperstation/code/obj/rewards.dm +++ b/hyperstation/code/obj/rewards.dm @@ -15,3 +15,13 @@ item_state = "napoleonic" body_parts_covered = CHEST|GROIN|ARMS cold_protection = CHEST|GROIN|ARMS + +/obj/item/clothing/suit/shackles + name = "Plastitanium Shackles" + desc = "A set of heavy plastitanium shackles, there are chains still attatched" + icon_state = "shackles" + item_state = "shackles" + icon = 'hyperstation/icons/mobs/rewards.dmi' + alternate_worn_icon = 'hyperstation/icons/mobs/rewards.dmi' + mutantrace_variation = NO_MUTANTRACE_VARIATION + diff --git a/hyperstation/icons/mobs/head.dmi b/hyperstation/icons/mobs/head.dmi index 49bdc682..15994e69 100644 Binary files a/hyperstation/icons/mobs/head.dmi and b/hyperstation/icons/mobs/head.dmi differ diff --git a/hyperstation/icons/mobs/rewards.dmi b/hyperstation/icons/mobs/rewards.dmi new file mode 100644 index 00000000..2e44d0c2 Binary files /dev/null and b/hyperstation/icons/mobs/rewards.dmi differ diff --git a/hyperstation/icons/obj/clothing/head.dmi b/hyperstation/icons/obj/clothing/head.dmi index 38b18e67..7fee1914 100644 Binary files a/hyperstation/icons/obj/clothing/head.dmi and b/hyperstation/icons/obj/clothing/head.dmi differ diff --git a/hyperstation/icons/obj/clothing/rewards.dmi b/hyperstation/icons/obj/clothing/rewards.dmi new file mode 100644 index 00000000..d9500000 Binary files /dev/null and b/hyperstation/icons/obj/clothing/rewards.dmi differ diff --git a/modular_citadel/code/game/machinery/vending.dm b/modular_citadel/code/game/machinery/vending.dm index a266ccbd..63e8e446 100644 --- a/modular_citadel/code/game/machinery/vending.dm +++ b/modular_citadel/code/game/machinery/vending.dm @@ -43,6 +43,7 @@ product_slogans = "Kinky!;Sexy!;Check me out, big boy!" vend_reply = "Have fun, you shameless pervert!" products = list( + /obj/item/clothing/head/maidband = 5, /obj/item/clothing/under/maid = 5, /obj/item/clothing/under/stripper_pink = 5, /obj/item/clothing/under/stripper_green = 5, diff --git a/modular_citadel/code/modules/client/loadout/__donator.dm b/modular_citadel/code/modules/client/loadout/__donator.dm index 27f2177f..5ed231fb 100644 --- a/modular_citadel/code/modules/client/loadout/__donator.dm +++ b/modular_citadel/code/modules/client/loadout/__donator.dm @@ -9,9 +9,9 @@ /datum/gear/testreward //Just so admins can test the recent rewards added. - name = "Caveman Plush" + name = "Plastitanium Shackles" category = SLOT_IN_BACKPACK - path = /obj/item/toy/plush/mammal/grug + path = /obj/item/clothing/suit/shackles ckeywhitelist = list("quotefox") /datum/gear/testrewardtwo @@ -56,3 +56,11 @@ category = SLOT_IN_BACKPACK path = /obj/item/toy/plush/mammal/grug ckeywhitelist = list("herrdoktah") + + +/datum/gear/hshack + name = "Plastitanium Shackles" + category = SLOT_IN_BACKPACK + path = /obj/item/clothing/suit/shackles + ckeywhitelist = list("heliocintrini") + diff --git a/tgstation.dme b/tgstation.dme index ff3cd599..badc040b 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -2881,6 +2881,7 @@ #include "hyperstation\code\mobs\mimic.dm" #include "hyperstation\code\mobs\werewolf.dm" #include "hyperstation\code\modules\antagonists\werewolf\werewolf.dm" +#include "hyperstation\code\modules\clothing\head.dm" #include "hyperstation\code\modules\crafting\recipes.dm" #include "hyperstation\code\modules\resize\holder_micro.dm" #include "hyperstation\code\modules\resize\resizing.dm"