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 22: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)
+20 -1
View File
@@ -218,4 +218,23 @@
name = "skrell purple head cloth"
desc = "A purple cloth band worn by skrell around their head tails."
icon_state = "skrell_cloth_purple_male"
item_state = "skrell_cloth_purple_male"
item_state = "skrell_cloth_purple_male"
/obj/item/clothing/ears/skrell/goop
name = "glowing algae"
desc = "A mixture of glowing algae applied by skrell on their head tails."
icon_state = "skrell_dots"
item_state = "skrell_dots"
/obj/item/clothing/ears/skrell/goop/Initialize()
. = ..()
if(color)
set_light(1,1,color)
/obj/item/clothing/ears/skrell/goop/stripes
icon_state = "skrell_stripes"
item_state = "skrell_stripes"
/obj/item/clothing/ears/skrell/goop/circles
icon_state = "skrell_circles"
item_state = "skrell_circles"
@@ -672,6 +672,7 @@ There are several things that need to be remembered:
if (result_layer)
result_layer = list(result_layer, I)
I.color = r_ear.color
else
result_layer = I
+6
View File
@@ -0,0 +1,6 @@
author: Alberyk. BRAINOS
delete-after: True
changes:
- rscadd: "Added a new option for skrell in their xeno loadout."
Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB