Skip to content
Open
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
31 changes: 31 additions & 0 deletions code/modules/clothing/head/god_hats.dm
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,37 @@
salvage_amount = 1
salvage_result = /obj/item/natural/silk

/obj/item/clothing/head/roguehood/malumcowl
name = "toiler's cowl"
desc = "A simple cowl worn by those who toil in worship of Malum."
icon_state = "malumcowl"
flags_inv = HIDEEARS|HIDEHAIR
default_hidden = HIDEEARS|HIDEHAIR
item_weight = 250 GRAMS

/obj/item/clothing/head/roguehood/malumcowl/AdjustClothes(mob/user)
if(loc == user)
playsound(user, "rustle", 70, TRUE, -5)
if(adjustable == CAN_CADJUST)
adjustable = CADJUSTED
if(toggle_icon_state)
icon_state = "[initial(icon_state)]_t"
flags_inv = HIDEEARS|HIDEHAIR
body_parts_covered = NECK|HAIR|EARS|HEAD
dynamic_hair_suffix = "+generic"
if(ishuman(user))
var/mob/living/carbon/H = user
H.update_inv_head()
else if(adjustable == CADJUSTED)
ResetAdjust(user)
flags_inv = default_hidden
if(user)
if(ishuman(user))
var/mob/living/carbon/H = user
H.update_inv_head()
user.update_fov_angles()
user.regenerate_clothes()

/obj/item/clothing/head/padded/deathface
name = "death shroud"
desc = "A Veil for those in service to the Veiled Lady. When inducted into the cult of Necra, the supplicant must make a talisman to hold the memory of a loved one since passed."
Expand Down
9 changes: 9 additions & 0 deletions code/modules/clothing/shirts/robe.dm
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,15 @@
desc = "Black robes which cover the body not unlike those in depictions of the Carriageman himself."
icon_state = "necrarobe"

/obj/item/clothing/shirt/robe/malum
name = "toiler's vest"
desc = "A red vest worn by those who toil in the name of Malum."
icon_state = "malumrobe"
slot_flags = ITEM_SLOT_ARMOR
body_parts_covered = CHEST|GROIN|ARMS|VITALS
r_sleeve_status = SLEEVE_NOMOD
l_sleeve_status = SLEEVE_NOMOD

/obj/item/clothing/shirt/robe/priest
name = "solar vestments"
desc = "Holy vestments sanctified by divine hands. Caution is advised if not a faithful."
Expand Down
15 changes: 15 additions & 0 deletions code/modules/crafting/quality_of_crafting/weaving.dm
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,14 @@
craftdiff = 3
category = "Hat"

/datum/repeatable_crafting_recipe/sewing/weaving/malumcoif
name = "hood (Malum)"
output = /obj/item/clothing/head/roguehood/malumcowl
requirements = list(/obj/item/natural/cloth = 2,
/obj/item/natural/silk = 1)
craftdiff = 3
category = "Hat"

/datum/repeatable_crafting_recipe/sewing/weaving/eorahood
name = "hood (eora)"
output = /obj/item/clothing/head/roguehood/eora
Expand Down Expand Up @@ -297,6 +305,13 @@
/obj/item/natural/silk = 1)
craftdiff = 4

/datum/repeatable_crafting_recipe/sewing/weaving/malumrobe
name = "robes (Malum)"
output = /obj/item/clothing/shirt/robe/malum
requirements = list(/obj/item/natural/cloth = 3,
/obj/item/natural/silk = 1)
craftdiff = 4

/datum/repeatable_crafting_recipe/sewing/weaving/necrarobe
name = "robes (Necra)"
output = /obj/item/clothing/shirt/robe/necra
Expand Down
6 changes: 4 additions & 2 deletions code/modules/jobs/job_types/church/monk.dm
Original file line number Diff line number Diff line change
Expand Up @@ -260,10 +260,12 @@
shoes = /obj/item/clothing/shoes/boots
armor = /obj/item/clothing/shirt/robe/colored/purple
if(/datum/patron/divine/malum)
head = /obj/item/clothing/head/headband/colored/red
head = /obj/item/clothing/head/roguehood/malumcowl
neck = /obj/item/clothing/neck/psycross/silver/divine/malum
shoes = /obj/item/clothing/shoes/boots
armor = /obj/item/clothing/shirt/robe/colored/red
pants = /obj/item/clothing/pants/tights/colored/black
shirt = /obj/item/clothing/shirt/shortshirt/colored/uncolored
armor = /obj/item/clothing/shirt/robe/malum
backl = /obj/item/weapon/polearm/woodstaff/quarterstaff
backpack_contents += /obj/item/weapon/hammer/iron
else
Expand Down
Binary file modified icons/roguetown/clothing/armor.dmi
Binary file not shown.
Binary file modified icons/roguetown/clothing/head.dmi
Binary file not shown.
Binary file modified icons/roguetown/clothing/onmob/armor.dmi
Binary file not shown.
Binary file modified icons/roguetown/clothing/onmob/head.dmi
Binary file not shown.
Binary file modified icons/roguetown/clothing/onmob/helpers/sleeves_armor.dmi
Binary file not shown.
Loading