Adding Hijab's, a variant of the robe, and alien ninja-suits (#1738)

Just adding contained sprites and code for Hijab's and a differently sprited and described variant of the robe Jackboot really liked a while back.

Hijabs (probably) came from Bay, thanks to Alberyk for handing off the robe sprites months ago.

Nanako told me it'd be a good idea to put both the variant and the original robe sprites into their own contained sprites, but I'd probably need to mess with custom-loadout for that and Alberyk already has a PR for that, so, yeah.

EDIT:Also alien ninja suit sprites, yay.
This commit is contained in:
Fire-and-Glory
2017-02-12 19:08:55 +02:00
committed by skull132
parent d0997ee6a2
commit 66466c8d89
12 changed files with 111 additions and 1 deletions
@@ -111,3 +111,19 @@
/datum/gear/head/ushanka
display_name = "ushanka"
path = /obj/item/clothing/head/ushanka
/datum/gear/head/hijab
display_name = "hijab selection"
path = /obj/item/clothing/head/hijab
/datum/gear/head/hijab/New()
..()
var/hijab = list()
hijab["black hijab"] = /obj/item/clothing/head/hijab
hijab["grey hijab"] = /obj/item/clothing/head/hijab/grey
hijab["red hijab"] = /obj/item/clothing/head/hijab/red
hijab["brown hijab"] = /obj/item/clothing/head/hijab/brown
hijab["green hijab"] = /obj/item/clothing/head/hijab/green
hijab["blue hijab"] = /obj/item/clothing/head/hijab/blue
gear_tweaks += new/datum/gear_tweak/path(hijab)
@@ -14,6 +14,13 @@
whitelisted = "Unathi"
sort_category = "Xenowear"
/datum/gear/suit/robe_coat
display_name = "tzirzi robe (Unathi)"
path = /obj/item/clothing/suit/unathi/robe/robe_coat
cost = 1
whitelisted = "Unathi"
sort_category = "Xenowear"
//skrell headtail adorns
/datum/gear/ears/f_skrell
@@ -67,7 +74,7 @@
cost = 1
whitelisted = "Vaurca"
sort_category = "Xenowear"
/datum/gear/cape
display_name = "tunnel cloak (Vaurca)"
path = /obj/item/weapon/storage/backpack/cloak
+40
View File
@@ -250,3 +250,43 @@
desc = "An orange piece of cloth, worn on the head."
icon_state = "orange_bandana"
body_parts_covered = 0
/obj/item/clothing/head/hijab //It might've taken a year but here's your Hijab's, Dea.
name = "hijab"
desc = "Encompassing cloth headwear worn by some human cultures and religions."
icon = 'icons/obj/clothing/hijabs.dmi'
icon_state = "hijab_black"
item_state = "hijab_black"
flags_inv = BLOCKHAIR
body_parts_covered = 0
contained_sprite = 1
/obj/item/clothing/head/hijab/grey
name = "grey hijab"
icon = 'icons/obj/clothing/hijabs.dmi'
icon_state = "hijab_grey"
item_state = "hijab_grey"
/obj/item/clothing/head/hijab/red
name = "red hijab"
icon = 'icons/obj/clothing/hijabs.dmi'
icon_state = "hijab_red"
item_state = "hijab_red"
/obj/item/clothing/head/hijab/brown
name = "brown hijab"
icon = 'icons/obj/clothing/hijabs.dmi'
icon_state = "hijab_brown"
item_state = "hijab_brown"
/obj/item/clothing/head/hijab/green
name = "green hijab"
icon = 'icons/obj/clothing/hijabs.dmi'
icon_state = "hijab_green"
item_state = "hijab_green"
/obj/item/clothing/head/hijab/blue
name = "blue hijab"
icon = 'icons/obj/clothing/hijabs.dmi'
icon_state = "hijab_blue"
item_state = "hijab_blue"
+9
View File
@@ -7,6 +7,15 @@
item_state = "robe-unathi"
body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS
/obj/item/clothing/suit/unathi/robe/robe_coat //I was at a loss for names under-the-hood.
name = "tzirzi"
desc = "A casual Moghes-native garment typically worn by Unathi while planet-side."
icon = 'icons/obj/clothing/robe_coat.dmi'
icon_state = "robe_coat"
item_state = "robe_coat"
body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS
contained_sprite = 1
/obj/item/clothing/suit/unathi/mantle
name = "hide mantle"
desc = "A rather grisly selection of cured hides and skin, sewn together to form a ragged mantle."