diff --git a/code/modules/clothing/head/hood_vr.dm b/code/modules/clothing/head/hood_vr.dm new file mode 100644 index 0000000000..f669d131f7 --- /dev/null +++ b/code/modules/clothing/head/hood_vr.dm @@ -0,0 +1,3 @@ +/obj/item/clothing/head/hood/techpriest + name = "techpriest hood" + armor = list(melee = 20, bullet = 10, laser = 10, energy = 10, bomb = 25, bio = 50, rad = 25) diff --git a/code/modules/clothing/suits/hooded_vr.dm b/code/modules/clothing/suits/hooded_vr.dm index ef13979bdc..28ae2ccf3f 100644 --- a/code/modules/clothing/suits/hooded_vr.dm +++ b/code/modules/clothing/suits/hooded_vr.dm @@ -1,3 +1,15 @@ // Field Medic Suit - Someone who can sprite should probably reskin this /obj/item/clothing/suit/storage/hooded/explorer/medic starting_accessories = list(/obj/item/clothing/accessory/armband/med/cross) + +/obj/item/clothing/suit/storage/hooded/techpriest + name = "tech priest robe" + desc = "Praise be to the Omnissiah." + icon = 'icons/obj/clothing/suits_vr.dmi' + icon_override = 'icons/mob/suit_vr.dmi' + icon_state = "techpriest" + hoodtype = /obj/item/clothing/head/hood/techpriest + body_parts_covered = FEET|LOWER_TORSO|UPPER_TORSO|LEGS|ARMS + flags_inv = HIDESHOES|HIDEJUMPSUIT|HIDETIE|HIDEHOLSTER + armor = list(melee = 20, bullet = 10, laser = 10, energy = 10, bomb = 25, bio = 50, rad = 25) + item_state_slots = list(slot_r_hand_str = "engspace_suit", slot_l_hand_str = "engspace_suit") diff --git a/icons/mob/head_vr.dmi b/icons/mob/head_vr.dmi index 12b65c43fc..3db239e18d 100644 Binary files a/icons/mob/head_vr.dmi and b/icons/mob/head_vr.dmi differ diff --git a/icons/mob/suit_vr.dmi b/icons/mob/suit_vr.dmi index da3c85c443..12cada28eb 100644 Binary files a/icons/mob/suit_vr.dmi and b/icons/mob/suit_vr.dmi differ diff --git a/icons/obj/clothing/suits_vr.dmi b/icons/obj/clothing/suits_vr.dmi index 5025c5f7d6..a10d6cc9ea 100644 Binary files a/icons/obj/clothing/suits_vr.dmi and b/icons/obj/clothing/suits_vr.dmi differ diff --git a/vorestation.dme b/vorestation.dme index 575aa0602e..1842524429 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -1752,6 +1752,7 @@ #include "code\modules\clothing\head\helmet.dm" #include "code\modules\clothing\head\helmet_vr.dm" #include "code\modules\clothing\head\hood.dm" +#include "code\modules\clothing\head\hood_vr.dm" #include "code\modules\clothing\head\jobs.dm" #include "code\modules\clothing\head\jobs_vr.dm" #include "code\modules\clothing\head\misc.dm"