Adds some full Th'akh Wrappings (#7992)

This commit is contained in:
Geeves
2020-01-31 00:01:33 +01:00
committed by GitHub
parent 70c126f05f
commit bd5dc2c66a
8 changed files with 45 additions and 22 deletions
@@ -120,3 +120,19 @@
path = /obj/item/clothing/under/unathi/zozo
whitelisted = list("Unathi", "Aut'akh Unathi")
sort_category = "Xenowear - Unathi"
/datum/gear/suit/unathi/wrapping_head
display_name = "thakh shaman head wrappings"
description = "Head wrappings with a breath mask. Only very traditional Th'akh Shamans would wear these."
path = /obj/item/clothing/mask/gas/wrapping
cost = 1
whitelisted = list("Unathi")
sort_category = "Xenowear - Unathi"
/datum/gear/suit/unathi/wrapping_body
display_name = "thakh shaman body wrappings"
description = "Closed body wrappings. Only very traditional Th'akh Shamans would wear these."
path = /obj/item/clothing/suit/unathi/mantle/wrapping
cost = 1
whitelisted = list("Unathi")
sort_category = "Xenowear - Unathi"
+23 -1
View File
@@ -107,4 +107,26 @@
item_state = "[initial(item_state)]_r"
to_chat(usr, span("notice", "You roll up your [src]'s sleeves."))
rolled_sleeves = TRUE
update_clothing_icon()
update_clothing_icon()
/obj/item/clothing/suit/unathi/mantle/wrapping
name = "unathi wrappings"
desc = "Stitched together clothing with bandages covering them, looks tailored for an unathi."
description_fluff = "This is a very traditional Sinta wear for Th'akh shamans, most modern Sinta do not wear these."
icon = 'icons/obj/unathi_items.dmi'
icon_state = "thakh_wrappings" //special thanks to Araskael
item_state = "thakh_wrappings"
body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS|ARMS
flags_inv = HIDEJUMPSUIT|HIDETAIL
species_restricted = list("Unathi")
contained_sprite = TRUE
/obj/item/clothing/mask/gas/wrapping
name = "unathi head wrappings"
desc = "A bunch of stitched together bandages with a fibreglass breath mask on it, openings for the eyes. Looks tailored for an unathi."
description_fluff = "This is a very traditional Sinta wear for Th'akh shamans, most modern Sinta do not wear these."
icon = 'icons/obj/unathi_items.dmi'
icon_state = "thakh_mask" //special thanks to Araskael
item_state = "thakh_mask"
species_restricted = list("Unathi")
contained_sprite = TRUE
-21
View File
@@ -200,27 +200,6 @@ All custom items with worn sprites must follow the contained sprite system: http
icon_state = "coin_yoiko_heads" //thanks fireandglory for the sprites
cmineral = "yoiko"
/obj/item/clothing/suit/unathi/mantle/fluff/karnaikai_wrappings //Unathi Wrappings - Azeazekal Karnaikai - canon35
name = "unathi wrappings"
desc = "Stitched together clothing with bandages covering them, looks tailored for an unathi."
icon = 'icons/obj/custom_items/karnaikai_wrappings.dmi'
icon_state = "karnaikai_wrappings" //special thanks to Araskael
item_state = "karnaikai_wrappings"
body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS|ARMS
flags_inv = HIDEJUMPSUIT|HIDETAIL
species_restricted = list("Unathi")
contained_sprite = TRUE
/obj/item/clothing/mask/gas/fluff/karnaikai_mask //Unathi head wrappings - Azeazekal Karnaikai - canon35
name = "unathi head wrappings"
desc = "A bunch of stitched together bandages with a fibreglass breath mask on it, openings for the eyes. Looks tailored for an unathi."
icon = 'icons/obj/custom_items/karnaikai_mask.dmi'
icon_state = "karnaikai_mask" //special thanks to Araskael
item_state = "karnaikai_mask"
species_restricted = list("Unathi")
contained_sprite = TRUE
/obj/item/flame/lighter/zippo/fluff/locke_zippo //Fire Extinguisher Zippo - Jacob Locke - completegarbage
name = "fire extinguisher lighter"
desc = "Most fire extinguishers on the station are way too heavy. This one's a little lighter."
@@ -0,0 +1,6 @@
author: Geeves, sprites by Araskael
delete-after: True
changes:
- rscadd: "Added some Unathi shaman wrappings to the Xenowear tab."
Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 26 KiB

View File