Forgot to add new files.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@523 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
Rygzengrho
2010-12-03 11:05:17 +00:00
parent fa8844dd49
commit ce86d6ba76
4 changed files with 996 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
/obj/closet/firecloset/New()
..()
if (prob (1))
del(src)
return
switch (pickweight(list("extinguisher" = 50, "toolbox" = 30, "nothing" = 20)))
if ("extinguisher")
new /obj/item/weapon/extinguisher(src)
if ("toolbox")
new /obj/item/weapon/storage/toolbox/emergency(src)
if (prob (30))
new /obj/item/clothing/mask/breath(src)
if (prob (30))
new /obj/item/weapon/tank/emergency_oxygen(src)
if (prob (10))
new /obj/item/clothing/suit/fire(src)