mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-26 13:39:16 +01:00
Adds in flashlights from #11488
This commit is contained in:
@@ -8,14 +8,21 @@
|
||||
/obj/random/empty_or_lootable_crate/item_to_spawn()
|
||||
return pick(/obj/random/crate,
|
||||
/obj/random/multiple/corp_crate)
|
||||
|
||||
|
||||
/obj/random/forgotten_tram
|
||||
name = "random forgotten tram item"
|
||||
desc = "Spawns a random item that someone might accidentally leave on a tram. Sometimes spawns nothing."
|
||||
spawn_nothing_percentage = 30
|
||||
|
||||
/obj/random/forgotten_tram/item_to_spawn()
|
||||
return pick(prob(2);/obj/item/device/flashlight,
|
||||
return pick(
|
||||
prob(2);/obj/item/device/flashlight,
|
||||
prob(2);/obj/item/device/flashlight/color,
|
||||
prob(2);/obj/item/device/flashlight/color/green,
|
||||
prob(2);/obj/item/device/flashlight/color/purple,
|
||||
prob(2);/obj/item/device/flashlight/color/red,
|
||||
prob(2);/obj/item/device/flashlight/color/orange,
|
||||
prob(2);/obj/item/device/flashlight/color/yellow,
|
||||
prob(2);/obj/item/device/flashlight/glowstick,
|
||||
prob(2);/obj/item/device/flashlight/glowstick/blue,
|
||||
prob(1);/obj/item/device/flashlight/glowstick/orange,
|
||||
|
||||
Reference in New Issue
Block a user