mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-19 19:13:30 +01:00
Adds 3 new light crates (#26449)
* adds 3 illumination crates * adds more glowsticks to premium box * Update code/game/objects/items/weapons/storage/boxes.dm Co-authored-by: Ryan <80364400+Sirryan2002@users.noreply.github.com> Signed-off-by: PopeDaveThe3th <80988376+PopeDaveThe3th@users.noreply.github.com> * Update code/game/objects/items/weapons/storage/boxes.dm Co-authored-by: Ryan <80364400+Sirryan2002@users.noreply.github.com> Signed-off-by: PopeDaveThe3th <80988376+PopeDaveThe3th@users.noreply.github.com> * Update code/game/objects/items/weapons/storage/boxes.dm Co-authored-by: Ryan <80364400+Sirryan2002@users.noreply.github.com> Signed-off-by: PopeDaveThe3th <80988376+PopeDaveThe3th@users.noreply.github.com> * Update code/game/objects/items/weapons/storage/boxes.dm Co-authored-by: Ryan <80364400+Sirryan2002@users.noreply.github.com> Signed-off-by: PopeDaveThe3th <80988376+PopeDaveThe3th@users.noreply.github.com> --------- Signed-off-by: PopeDaveThe3th <80988376+PopeDaveThe3th@users.noreply.github.com> Co-authored-by: Ryan <80364400+Sirryan2002@users.noreply.github.com>
This commit is contained in:
@@ -341,6 +341,31 @@
|
||||
new /obj/item/stack/sheet/metal/fifty(src)
|
||||
new /obj/item/stack/cable_coil(src)
|
||||
|
||||
/obj/item/storage/box/large/glowstick/emergency
|
||||
name = "emergency glowstick box"
|
||||
desc = "A large box filled to the brim with cheap emergency glowsticks."
|
||||
|
||||
/obj/item/storage/box/large/glowstick/emergency/populate_contents()
|
||||
for(var/i in 1 to 15)
|
||||
new /obj/item/flashlight/flare/glowstick/emergency(src)
|
||||
|
||||
/obj/item/storage/box/glowstick/premium
|
||||
name = "premium glowstick box"
|
||||
desc = "A box filled with high-quality military surplus glowsticks."
|
||||
|
||||
/obj/item/storage/box/glowstick/premium/populate_contents()
|
||||
for(var/i in 1 to 5)
|
||||
new /obj/item/flashlight/flare/glowstick(src)
|
||||
|
||||
/obj/item/storage/box/flares
|
||||
name = "emergency flare box"
|
||||
desc = "A box full of magnesium signal flares."
|
||||
|
||||
/obj/item/storage/box/flares/populate_contents()
|
||||
for(var/i in 1 to 5)
|
||||
new /obj/item/flashlight/flare(src)
|
||||
|
||||
|
||||
//////////////////
|
||||
/* Monkey Boxes */
|
||||
//////////////////
|
||||
|
||||
Reference in New Issue
Block a user