diff --git a/hyperstation/code/obj/rewards.dm b/hyperstation/code/obj/rewards.dm index fbebaa6c..289fcec5 100644 --- a/hyperstation/code/obj/rewards.dm +++ b/hyperstation/code/obj/rewards.dm @@ -48,3 +48,29 @@ icon_state = "d20_blue" sides = 20 unique = TRUE + +/obj/item/clothing/suit/hooded/wintercoat/death + name = "inconspicuous winter coat" + icon_state = "rdeath" + item_state = "rdeath" + allowed = list(/obj/item/analyzer, /obj/item/stack/medical, /obj/item/dnainjector, /obj/item/reagent_containers/dropper, /obj/item/reagent_containers/syringe, /obj/item/reagent_containers/hypospray, /obj/item/healthanalyzer, /obj/item/melee/classic_baton/telescopic, /obj/item/toy, /obj/item/storage/fancy/cigarettes, /obj/item/lighter, /obj/item/tank/internals/emergency_oxygen, /obj/item/tank/internals/plasmaman, /obj/item/screwdriver, /obj/item/crowbar, /obj/item/wrench, /obj/item/stack/cable_coil, /obj/item/weldingtool, /obj/item/multitool) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 0) + hoodtype = /obj/item/clothing/head/hooded/winterhood/death + +/obj/item/clothing/head/hooded/winterhood/death + icon_state = "winterhood_death" + +/obj/item/storage/pill_bottle/heat + name = "heat-b-gone pill bottle" + desc = "a bottle of pills from a sketchy pharmaceutical corporation. at the bottom of the label is a small red S." + +/obj/item/reagent_containers/pill/heat + name = "heat-b-gone pill" + desc = "claims to be foolproof heat repression medication but it tastes extremely sweet." + icon_state = "pill8" + list_reagents = list(/datum/reagent/consumable/sugar = 10) + roundstart = 1 + +/obj/item/storage/pill_bottle/heat/PopulateContents() + for(var/i in 1 to 7) + new /obj/item/reagent_containers/pill/heat(src) diff --git a/icons/mob/head.dmi b/icons/mob/head.dmi index 29610bf3..7b4e1289 100644 Binary files a/icons/mob/head.dmi and b/icons/mob/head.dmi differ diff --git a/icons/mob/suit.dmi b/icons/mob/suit.dmi index f34382c5..d8fbc85e 100644 Binary files a/icons/mob/suit.dmi and b/icons/mob/suit.dmi differ diff --git a/icons/obj/clothing/hats.dmi b/icons/obj/clothing/hats.dmi index 0fdee644..c2b77a0c 100644 Binary files a/icons/obj/clothing/hats.dmi and b/icons/obj/clothing/hats.dmi differ diff --git a/icons/obj/clothing/suits.dmi b/icons/obj/clothing/suits.dmi index 15f8b62d..c349c692 100644 Binary files a/icons/obj/clothing/suits.dmi and b/icons/obj/clothing/suits.dmi differ diff --git a/modular_citadel/code/modules/client/loadout/__donator.dm b/modular_citadel/code/modules/client/loadout/__donator.dm index 0251059b..95e66462 100644 --- a/modular_citadel/code/modules/client/loadout/__donator.dm +++ b/modular_citadel/code/modules/client/loadout/__donator.dm @@ -80,3 +80,16 @@ category = SLOT_IN_BACKPACK path = /obj/item/dice/d20/blue ckeywhitelist = list("jackattack41498") + +/datum/gear/demoncat + name = "Inconspicuous winter coat" + category = SLOT_IN_BACKPACK + path = /obj/item/clothing/suit/hooded/wintercoat/death + ckeywhitelist = list("demoncat") + +/datum/gear/natak + name = "Heat-B-Gone Pills" + category = SLOT_IN_BACKPACK + path = /obj/item/storage/pill_bottle/heat + ckeywhitelist = list("natak") + diff --git a/modular_citadel/icons/mob/suit_digi.dmi b/modular_citadel/icons/mob/suit_digi.dmi index 9f820c90..a799deb3 100644 Binary files a/modular_citadel/icons/mob/suit_digi.dmi and b/modular_citadel/icons/mob/suit_digi.dmi differ