Adds skrell glowing algae (#7145)

At the request of their writer, it works like the skrell ear items, but it glows.
This commit is contained in:
Alberyk
2019-10-13 16:04:04 -03:00
committed by Erki
parent 5fb4aff9f6
commit 82cf8aac95
6 changed files with 43 additions and 2 deletions
@@ -85,4 +85,19 @@
display_name = "nralakk projector"
path = /obj/item/skrell_projector
whitelisted = list("Skrell")
sort_category = "Xenowear - Skrell"
sort_category = "Xenowear - Skrell"
/datum/gear/ears/skrell/goop
display_name = "glowing algae"
path = /obj/item/clothing/ears/skrell/goop
whitelisted = list("Skrell")
sort_category = "Xenowear - Skrell"
/datum/gear/ears/skrell/goop/New()
..()
var/algae = list()
algae["glowing algae(dots)"] = /obj/item/clothing/ears/skrell/goop
algae["glowing algae(stripes)"] = /obj/item/clothing/ears/skrell/goop/stripes
algae["glowing algae(circles)"] = /obj/item/clothing/ears/skrell/goop/circles
gear_tweaks += new/datum/gear_tweak/path(algae)
gear_tweaks += list(gear_tweak_free_color_choice)