mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-01-17 20:44:33 +00:00
17 lines
430 B
Plaintext
17 lines
430 B
Plaintext
/obj/structure/closet/emcloset/New()
|
|
..()
|
|
|
|
if (prob(40))
|
|
new /obj/item/weapon/storage/toolbox/emergency(src)
|
|
|
|
new /obj/item/clothing/mask/breath(src)
|
|
new /obj/item/weapon/tank/emergency_oxygen(src)
|
|
var/counter = 0
|
|
while(prob(60) && counter < 3)
|
|
new /obj/item/weapon/tank/emergency_oxygen(src)
|
|
counter++
|
|
counter = 0
|
|
while(prob(60) && counter < 3)
|
|
new /obj/item/clothing/mask/breath(src)
|
|
counter++
|