Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added armored version of techpriests suit #29

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions code/game/objects/items/storage/boxes/clothes_boxes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,13 @@
new /obj/item/clothing/suit/chaplainsuit/armor/studentuni(src)
new /obj/item/clothing/head/helmet/chaplain/cage(src)

/obj/item/storage/box/holy/techpriest
name = "Techpriest Kit"
typepath_for_preview = /obj/item/clothing/suit/hooded/techpriest

/obj/item/storage/box/holy/techpriest/PopulateContents()
new /obj/item/clothing/suit/hooded/chaplainsuit/techchapel(src)
new /obj/item/clothing/head/hooded/techchapel(src)
/obj/item/storage/box/holy/sentinel
name = "Stone Sentinel Kit"
typepath_for_preview = /obj/item/clothing/suit/chaplainsuit/armor/ancient
Expand Down
34 changes: 34 additions & 0 deletions code/modules/jobs/job_types/chaplain/chaplain_costumes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -288,3 +288,37 @@
inhand_icon_state = "shrinehand"
body_parts_covered = CHEST|GROIN|LEGS|ARMS
flags_inv = HIDEJUMPSUIT

/obj/item/clothing/suit/hooded/chaplainsuit/techchapel
name = "techpriest suit"
desc = "A techpriest suit"
icon = 'icons/obj/clothing/suits/chaplain.dmi'
worn_icon = 'icons/mob/clothing/suits/chaplain.dmi'
icon_state = "techpriest"
inhand_icon_state = null
body_parts_covered = CHEST|GROIN|LEGS|ARMS
armor_type = /datum/armor/techpriest
hoodtype = /obj/item/clothing/head/hooded/techchapel

/datum/armor/techpriest
melee = 25
bullet = 10
laser = 10
energy = 10
fire = 40
acid = 40
wound = 20

/obj/item/clothing/suit/hooded/chaplainsuit/techchapel/Initialize(mapload)
. = ..()
allowed = GLOB.chaplain_suit_allowed

/obj/item/clothing/head/hooded/techchapel
name = "techpriest hood"
desc = "A techpriest hood. Seems, someone just tore it from suit"
icon = 'icons/obj/clothing/head/chaplain.dmi'
worn_icon = 'icons/mob/clothing/head/chaplain.dmi'
icon_state = "techpriesthood"
body_parts_covered = HEAD
inhand_icon_state = null
flags_inv = HIDEHAIR|HIDEEARS|HIDEFACE
Binary file modified icons/mob/clothing/head/chaplain.dmi
Binary file not shown.
Binary file modified icons/mob/clothing/suits/chaplain.dmi
Binary file not shown.
Binary file modified icons/obj/clothing/head/chaplain.dmi
Binary file not shown.
Binary file modified icons/obj/clothing/suits/chaplain.dmi
Binary file not shown.
Loading