Adds bio-bags.

This commit is contained in:
bgobandit
2015-10-13 23:06:35 -04:00
parent 1d4cc5fea7
commit cee7614cb7
3 changed files with 19 additions and 1 deletions
@@ -10,6 +10,7 @@
* Plant Bag
* Sheet Snatcher
* Book Bag
* Biowaste Bag
*
* -Sayu
*/
@@ -359,3 +360,19 @@
preposition = "in"
can_hold = list(/obj/item/weapon/reagent_containers/pill, /obj/item/weapon/reagent_containers/glass/beaker, /obj/item/weapon/reagent_containers/glass/bottle)
burn_state = 0 //Burnable
/*
* Biowaste bag (mostly for xenobiologists)
*/
/obj/item/weapon/storage/bag/bio
name = "biowaste bag"
icon = 'icons/obj/chemical.dmi'
icon_state = "biobag"
desc = "A bag for the safe disposal of biowaste."
storage_slots = 50
max_combined_w_class = 200
w_class = 1
preposition = "in"
can_hold = list(/obj/item/slime_extract, /obj/item/weapon/reagent_containers/syringe, /obj/item/weapon/reagent_containers/glass/beaker, /obj/item/weapon/reagent_containers/glass/bottle, /obj/item/weapon/reagent_containers/blood, /obj/item/weapon/reagent_containers/hypospray/medipen)
burn_state = 0 //Burnable
@@ -1,5 +1,5 @@
/obj/structure/closet/l3closet
name = "level-3 biohazard suit closet"
name = "level-3 biohazard gear closet"
desc = "It's a storage unit for level-3 biohazard gear."
icon_state = "bio"
@@ -7,6 +7,7 @@
..()
new /obj/item/clothing/suit/bio_suit/general( src )
new /obj/item/clothing/head/bio_hood/general( src )
new /obj/item/weapon/storage/bag/bio( src )
/obj/structure/closet/l3closet/virology
icon_state = "bio_viro"
Binary file not shown.

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 34 KiB