Skip to content

Commit 0fb40c7

Browse files
SantaKO1Dimach
authored andcommitted
add: Techpriest robes for chapelan (#33)
1 parent dfdbe0e commit 0fb40c7

File tree

6 files changed

+37
-0
lines changed

6 files changed

+37
-0
lines changed

code/game/objects/items/storage/boxes/clothes_boxes.dm

+7
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,13 @@
156156
new /obj/item/clothing/suit/chaplainsuit/armor/studentuni(src)
157157
new /obj/item/clothing/head/helmet/chaplain/cage(src)
158158

159+
/obj/item/storage/box/holy/techpriest
160+
name = "Techpriest Kit"
161+
typepath_for_preview = /obj/item/clothing/suit/hooded/techpriest
162+
163+
/obj/item/storage/box/holy/techpriest/PopulateContents()
164+
new /obj/item/clothing/suit/hooded/chaplainsuit/techchapel(src)
165+
159166
/obj/item/storage/box/holy/sentinel
160167
name = "Stone Sentinel Kit"
161168
typepath_for_preview = /obj/item/clothing/suit/chaplainsuit/armor/ancient

code/modules/jobs/job_types/chaplain/chaplain_costumes.dm

+30
Original file line numberDiff line numberDiff line change
@@ -288,3 +288,33 @@
288288
inhand_icon_state = "shrinehand"
289289
body_parts_covered = CHEST|GROIN|LEGS|ARMS
290290
flags_inv = HIDEJUMPSUIT
291+
292+
/obj/item/clothing/suit/hooded/chaplainsuit/techchapel
293+
name = "techpriest suit"
294+
desc = "A techpriest suit"
295+
icon = 'icons/obj/clothing/suits/chaplain.dmi'
296+
worn_icon = 'icons/mob/clothing/suits/chaplain.dmi'
297+
icon_state = "techpriest"
298+
inhand_icon_state = null
299+
body_parts_covered = CHEST|GROIN|LEGS|ARMS
300+
armor_type = /datum/armor/techpriest
301+
hoodtype = /obj/item/clothing/head/hooded/techchapel
302+
303+
/datum/armor/techpriest
304+
melee = 25
305+
bullet = 10
306+
laser = 10
307+
energy = 10
308+
fire = 40
309+
acid = 40
310+
wound = 20
311+
312+
/obj/item/clothing/head/hooded/techchapel
313+
name = "techpriest hood"
314+
desc = "A techpriest hood. Seems, someone just tore it from suit"
315+
icon = 'icons/obj/clothing/head/chaplain.dmi'
316+
worn_icon = 'icons/mob/clothing/head/chaplain.dmi'
317+
icon_state = "techpriesthood"
318+
body_parts_covered = HEAD
319+
inhand_icon_state = null
320+
flags_inv = HIDEHAIR|HIDEEARS|HIDEFACE

icons/mob/clothing/head/chaplain.dmi

-81 Bytes
Binary file not shown.

icons/mob/clothing/suits/chaplain.dmi

8.51 KB
Binary file not shown.

icons/obj/clothing/head/chaplain.dmi

169 Bytes
Binary file not shown.

icons/obj/clothing/suits/chaplain.dmi

6.27 KB
Binary file not shown.

0 commit comments

Comments
 (0)