From 03388d29da9422149ff0a6b7874b39141ee8a1e8 Mon Sep 17 00:00:00 2001 From: Marmio Date: Thu, 22 Feb 2024 20:58:39 -0600 Subject: [PATCH] choir suit --- code/game/objects/items/holy_armours.dm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/code/game/objects/items/holy_armours.dm b/code/game/objects/items/holy_armours.dm index d9124b65e11d..1b3e135ea875 100644 --- a/code/game/objects/items/holy_armours.dm +++ b/code/game/objects/items/holy_armours.dm @@ -233,3 +233,27 @@ icon_state = "darktemplar-chaplain1" item_state = "darktemplar-chaplain1" armor = list(MELEE = 30, BULLET = 10, LASER = 15, ENERGY = 10, BOMB = 20, BIO = 60, RAD = 40, FIRE = 90, ACID = 80) + +///choir equipment is identical to witch hunter stuff +/obj/item/clothing/suit/armor/riot/chaplain/witchhunter/choir + name = "choir garb" + desc = "An armored garb worn by high ranking members of the church." + icon_state = "choirgarb" + item_state = "choirgarb" + armor = list(MELEE = 40, BULLET = 10, LASER = 10, ENERGY = 5, BOMB = 10, BIO = 0, RAD = 0, FIRE = 0, ACID = 40) + slowdown = 0.1 + body_parts_covered = CHEST|GROIN|LEGS|ARMS + mutantrace_variation = MUTANTRACE_VARIATION + +/obj/item/clothing/head/helmet/chaplain/witchunter_hat/choir + name = "blindfold cap" + desc = "The hat of a high ranking member of the church." + icon_state = "blindfoldcap" + item_state = "blindfoldcap" + +/obj/item/storage/box/holy/choir + name = "Healing Church Choir Kit" + +/obj/item/storage/box/holy/choir/PopulateContents() + new /obj/item/clothing/suit/armor/riot/chaplain/witchhunter/choir(src) + new /obj/item/clothing/head/helmet/chaplain/witchunter_hat/choir(src)