Skip to content

Commit

Permalink
aertyuughhghhg
Browse files Browse the repository at this point in the history
  • Loading branch information
meemofcourse committed Sep 30, 2023
1 parent 682ff40 commit a3cbaae
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions code/game/objects/structures/crates_lockers/crates.dm
Original file line number Diff line number Diff line change
Expand Up @@ -262,3 +262,17 @@
icon_state = "chemcrate"
material_drop = /obj/item/stack/sheet/mineral/gold
material_drop_amount = 1

/obj/structure/closet/crate/eva
name = "EVA crate"

/obj/structure/closet/crate/eva/PopulateContents()
..()
for(var/i in 1 to 3)
new /obj/item/clothing/suit/space/eva(src)
for(var/i in 1 to 3)
new /obj/item/clothing/head/helmet/space/eva(src)
for(var/i in 1 to 3)
new /obj/item/clothing/mask/breath(src)
for(var/i in 1 to 3)
new /obj/item/tank/internals/oxygen(src)

0 comments on commit a3cbaae

Please sign in to comment.