Migrates random glowstick to spawner + makes red glowstick more.. red (#28755)

* random glowstick migration

* pure red
This commit is contained in:
kyunkyunkyun
2025-03-28 03:28:11 +05:00
committed by GitHub
parent e766a767ce
commit 6cbbe75b7a
12 changed files with 84 additions and 81 deletions
@@ -102,3 +102,16 @@
/obj/effect/spawner/random/stock_parts/Initialize(mapload)
spawn_loot_count = rand(4, 7)
. = ..()
/obj/effect/spawner/random/glowstick
name = "random glowstick spawner"
icon = 'icons/effects/random_spawners.dmi'
icon_state = "glowstick"
loot = list(
/obj/item/flashlight/flare/glowstick,
/obj/item/flashlight/flare/glowstick/red,
/obj/item/flashlight/flare/glowstick/blue,
/obj/item/flashlight/flare/glowstick/orange,
/obj/item/flashlight/flare/glowstick/yellow,
/obj/item/flashlight/flare/glowstick/pink,
)