From 6e31938638b151b3ede3ec666dfa5ab1d3bf9af2 Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Sun, 25 Aug 2019 10:14:51 +0200 Subject: [PATCH] Include SYNTH Facemask in Loadout Facemask can have coloured eyes and nostrills Thanks to skits for helping with the sprites. --- .../preference_setup/loadout/loadout_xeno_vr.dm | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/code/modules/client/preference_setup/loadout/loadout_xeno_vr.dm b/code/modules/client/preference_setup/loadout/loadout_xeno_vr.dm index a38b489827..58a4874cb0 100644 --- a/code/modules/client/preference_setup/loadout/loadout_xeno_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_xeno_vr.dm @@ -1,3 +1,16 @@ +//CHOMPEDIT; SYNTH FACEMASK +/datum/gear/mask/synthface/ + display_name = "Synth Facemask(Tesh)" + path = /obj/item/clothing/mask/synthfacemask + sort_category = "Xenowear" + whitelisted = SPECIES_TESHARI + cost = 1 +//CHOMPEDIT; END + +/datum/gear/mask/synthface/New() + ..() + gear_tweaks = list(gear_tweak_free_color_choice) + /datum/gear/uniform/voxcasual display_name = "casual wear (Vox)" path = /obj/item/clothing/under/vox/vox_casual @@ -37,4 +50,4 @@ /datum/gear/uniform/loincloth display_name = "loincloth" path = /obj/item/clothing/suit/storage/fluff/loincloth - sort_category = "Xenowear" \ No newline at end of file + sort_category = "Xenowear"