diff --git a/code/game/objects/items/holy_weapons.dm b/code/game/objects/items/holy_weapons.dm index 56d33a723ee..1045065420d 100644 --- a/code/game/objects/items/holy_weapons.dm +++ b/code/game/objects/items/holy_weapons.dm @@ -1,5 +1,25 @@ // CHAPLAIN CUSTOM ARMORS // +/obj/item/clothing/head/helmet/chaplain/clock + name = "forgotten helmet" + desc = "It has the unyielding gaze of a god eternally forgotten." + icon_state = "clockwork_helmet" + inhand_icon_state = "clockwork_helmet_inhand" + armor = list(MELEE = 50, BULLET = 10, LASER = 10, ENERGY = 10, BOMB = 0, BIO = 0, RAD = 0, FIRE = 80, ACID = 80) + flags_inv = HIDEMASK|HIDEEARS|HIDEEYES|HIDEFACE|HIDEHAIR|HIDESNOUT + flags_cover = HEADCOVERSEYES | HEADCOVERSMOUTH + strip_delay = 8 SECONDS + dog_fashion = null + +/obj/item/clothing/suit/armor/riot/chaplain/clock + name = "forgotten armour" + desc = "It sounds like hissing steam, ticking cogs, gone silent, It looks like a dead machine, trying to tick with life." + icon_state = "clockwork_cuirass" + inhand_icon_state = "clockwork_cuirass_inhand" + allowed = list(/obj/item/storage/book/bible, /obj/item/nullrod, /obj/item/reagent_containers/food/drinks/bottle/holywater, /obj/item/storage/fancy/candle_box, /obj/item/candle, /obj/item/tank/internals/emergency_oxygen, /obj/item/tank/internals/plasmaman) + slowdown = 0 + clothing_flags = NONE + /obj/item/clothing/head/helmet/chaplain name = "crusader helmet" desc = "Deus Vult." @@ -52,6 +72,13 @@ return +/obj/item/storage/box/holy/clock + name = "Forgotten kit" + +/obj/item/storage/box/holy/clock/PopulateContents() + new /obj/item/clothing/head/helmet/chaplain/clock(src) + new /obj/item/clothing/suit/armor/riot/chaplain/clock(src) + /obj/item/storage/box/holy name = "Templar Kit" diff --git a/icons/obj/clothing/clockwork_garb.dmi b/icons/obj/clothing/clockwork_garb.dmi index d3008a0f446..81c7181765f 100644 Binary files a/icons/obj/clothing/clockwork_garb.dmi and b/icons/obj/clothing/clockwork_garb.dmi differ diff --git a/icons/obj/clothing/hats.dmi b/icons/obj/clothing/hats.dmi index f5b843e0fdb..dd6d9e03534 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 07c20cdbc03..c81a9436de6 100644 Binary files a/icons/obj/clothing/suits.dmi and b/icons/obj/clothing/suits.dmi differ