mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-01-04 14:33:10 +00:00
Added a "lights out" event. Flashlights Red toolboxes now have only a 50% chance to spawn a flashlight (to add diversity and make the lights out event less easy to circumvent). Explosions Explosions are now round. This is quite a big balance change, so it's subject to change in the future. Hydroponics Hopefully fixed the bug with invading weeds etc being unharvestable. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1516 316c924e-a436-60f5-8080-3fe189b3f50e
35 lines
1.1 KiB
Plaintext
35 lines
1.1 KiB
Plaintext
/obj/item/weapon/storage/toolbox/New()
|
|
..()
|
|
if (src.type == /obj/item/weapon/storage/toolbox)
|
|
world << "BAD: [src] ([src.type]) spawned at [src.x] [src.y] [src.z]"
|
|
del(src)
|
|
|
|
/obj/item/weapon/storage/toolbox/emergency/New()
|
|
..()
|
|
new /obj/item/weapon/crowbar/red(src)
|
|
new /obj/item/weapon/extinguisher(src)
|
|
if(prob(50))
|
|
new /obj/item/device/flashlight(src)
|
|
new /obj/item/device/radio(src)
|
|
|
|
/obj/item/weapon/storage/toolbox/mechanical/New()
|
|
..()
|
|
new /obj/item/weapon/screwdriver(src)
|
|
new /obj/item/weapon/wrench(src)
|
|
new /obj/item/weapon/weldingtool(src)
|
|
new /obj/item/weapon/crowbar(src)
|
|
new /obj/item/device/analyzer(src)
|
|
new /obj/item/weapon/wirecutters(src)
|
|
|
|
/obj/item/weapon/storage/toolbox/electrical/New()
|
|
..()
|
|
new /obj/item/weapon/screwdriver(src)
|
|
new /obj/item/weapon/wirecutters(src)
|
|
new /obj/item/device/t_scanner(src)
|
|
new /obj/item/weapon/crowbar(src)
|
|
new /obj/item/weapon/cable_coil(src)
|
|
new /obj/item/weapon/cable_coil(src)
|
|
if(prob(5))
|
|
new /obj/item/clothing/gloves/yellow(src)
|
|
else
|
|
new /obj/item/weapon/cable_coil(src) |