diff --git a/code/game/objects/items/weapons/storage/boxes.dm b/code/game/objects/items/weapons/storage/boxes.dm
index 4e31dd5f9a8..2f293ddde9b 100644
--- a/code/game/objects/items/weapons/storage/boxes.dm
+++ b/code/game/objects/items/weapons/storage/boxes.dm
@@ -22,6 +22,7 @@
/obj/item/weapon/storage/box
name = "box"
desc = "It's just an ordinary box."
+ icon = 'icons/obj/boxes.dmi'
icon_state = "box"
item_state = "syringe_kit"
center_of_mass = list("x" = 13,"y" = 10)
@@ -72,21 +73,29 @@
/obj/item/weapon/storage/box/survival
name = "emergency supply box"
desc = "A survival box issued to crew members for use in emergency situations."
+ icon_state = "survival"
starts_with = list(
+ /obj/item/weapon/tool/prybar/red,
+ /obj/item/clothing/glasses/goggles,
/obj/item/clothing/mask/breath
)
/obj/item/weapon/storage/box/survival/synth
name = "synthetic supply box"
desc = "A survival box issued to synthetic crew members for use in emergency situations."
+ icon_state = "survival_synth"
starts_with = list(
+ /obj/item/weapon/tool/prybar/red,
+ /obj/item/clothing/glasses/goggles
)
/obj/item/weapon/storage/box/survival/comp
name = "emergency supply box"
desc = "A comprehensive survival box issued to crew members for use in emergency situations. Contains additional supplies."
- icon_state = "survival"
+ icon_state = "survival_comp"
starts_with = list(
+ /obj/item/weapon/tool/prybar/red,
+ /obj/item/clothing/glasses/goggles,
/obj/item/weapon/reagent_containers/hypospray/autoinjector,
/obj/item/stack/medical/bruise_pack,
/obj/item/device/flashlight/glowstick,
@@ -115,7 +124,7 @@
/obj/item/weapon/storage/box/syringegun
name = "box of syringe gun cartridges"
desc = "A box full of compressed gas cartridges."
- icon_state = "syringe"
+ icon_state = "syringe2"
starts_with = list(/obj/item/weapon/syringe_cartridge = 7)
/obj/item/weapon/storage/box/beakers
@@ -127,6 +136,7 @@
/obj/item/weapon/storage/box/injectors
name = "box of DNA injectors"
desc = "This box contains injectors it seems."
+ icon_state = "dna"
starts_with = list(
/obj/item/weapon/dnainjector/h2m = 3,
/obj/item/weapon/dnainjector/m2h = 3
@@ -374,17 +384,19 @@
/obj/item/weapon/storage/box/condimentbottles
name = "box of condiment bottles"
desc = "It has a large ketchup smear on it."
+ icon_state = "condiment"
starts_with = list(/obj/item/weapon/reagent_containers/food/condiment = 7)
/obj/item/weapon/storage/box/cups
name = "box of paper cups"
desc = "It has pictures of paper cups on the front."
+ icon_state = "cups"
starts_with = list(/obj/item/weapon/reagent_containers/food/drinks/sillycup = 7)
/obj/item/weapon/storage/box/donkpockets
name = "box of donk-pockets"
desc = "Instructions: Heat in microwave. Product will cool if not eaten within seven minutes."
- icon_state = "donk_kit"
+ icon_state = "donkpocketbox"
starts_with = list(/obj/item/weapon/reagent_containers/food/snacks/donkpocket = 7)
/obj/item/weapon/storage/box/sinpockets
@@ -450,6 +462,7 @@
/obj/item/weapon/storage/box/pillbottles
name = "box of pill bottles"
desc = "It has pictures of pill bottles on its front."
+ icon_state = "pillbox"
starts_with = list(/obj/item/weapon/storage/pill_bottle = 7)
/obj/item/weapon/storage/box/snappops
@@ -485,12 +498,12 @@
/obj/item/weapon/storage/box/autoinjectors
name = "box of injectors"
desc = "Contains autoinjectors."
- icon_state = "syringe"
+ icon_state = "auto"
starts_with = list(/obj/item/weapon/reagent_containers/hypospray/autoinjector = 7)
/obj/item/weapon/storage/box/lights
name = "box of replacement bulbs"
- icon = 'icons/obj/storage.dmi'
+ icon = 'icons/obj/boxes.dmi'
icon_state = "light"
desc = "This box is shaped on the inside so that only light tubes and bulbs fit."
item_state_slots = list(slot_r_hand_str = "syringe_kit", slot_l_hand_str = "syringe_kit")
diff --git a/code/game/objects/items/weapons/storage/boxes_vr.dm b/code/game/objects/items/weapons/storage/boxes_vr.dm
index 8feee76bdda..1f2bc914049 100644
--- a/code/game/objects/items/weapons/storage/boxes_vr.dm
+++ b/code/game/objects/items/weapons/storage/boxes_vr.dm
@@ -1,27 +1,3 @@
-/obj/item/weapon/storage/box/survival
- starts_with = list(
- /obj/item/weapon/tool/prybar/red,
- /obj/item/clothing/glasses/goggles,
- /obj/item/clothing/mask/breath
- )
-
-/obj/item/weapon/storage/box/survival/synth
- starts_with = list(
- /obj/item/weapon/tool/prybar/red,
- /obj/item/clothing/glasses/goggles
- )
-
-/obj/item/weapon/storage/box/survival/comp
- starts_with = list(
- /obj/item/weapon/tool/prybar/red,
- /obj/item/clothing/glasses/goggles,
- /obj/item/weapon/reagent_containers/hypospray/autoinjector,
- /obj/item/stack/medical/bruise_pack,
- /obj/item/device/flashlight/glowstick,
- /obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,
- /obj/item/clothing/mask/breath
- )
-
/obj/item/weapon/storage/box/explorerkeys
name = "box of volunteer headsets"
desc = "A box full of volunteer headsets, for issuing out to exploration volunteers."
@@ -39,7 +15,7 @@
/obj/item/weapon/storage/box/survival/space
name = "boxed emergency suit and helmet"
- icon_state = "survivaleng"
+ icon_state = "survival_comp3"
starts_with = list(
/obj/item/clothing/suit/space/emergency,
/obj/item/clothing/head/helmet/space/emergency,
diff --git a/code/modules/nifsoft/nifsoft.dm b/code/modules/nifsoft/nifsoft.dm
index 951e2932183..ef628a9bac1 100644
--- a/code/modules/nifsoft/nifsoft.dm
+++ b/code/modules/nifsoft/nifsoft.dm
@@ -264,7 +264,7 @@
/obj/item/weapon/storage/box/nifsofts_security
name = "security nifsoft uploaders"
desc = "A box of free nifsofts for security employees."
- icon = 'icons/obj/storage_vr.dmi'
+ icon = 'icons/obj/boxes.dmi'
icon_state = "nifsoft_kit_sec"
/obj/item/weapon/storage/box/nifsofts_security/New()
@@ -289,7 +289,7 @@
/obj/item/weapon/storage/box/nifsofts_engineering
name = "engineering nifsoft uploaders"
desc = "A box of free nifsofts for engineering employees."
- icon = 'icons/obj/storage_vr.dmi'
+ icon = 'icons/obj/boxes.dmi'
icon_state = "nifsoft_kit_eng"
/obj/item/weapon/storage/box/nifsofts_engineering/New()
@@ -313,7 +313,7 @@
/obj/item/weapon/storage/box/nifsofts_medical
name = "medical nifsoft uploaders"
desc = "A box of free nifsofts for medical employees."
- icon = 'icons/obj/storage_vr.dmi'
+ icon = 'icons/obj/boxes.dmi'
icon_state = "nifsoft_kit_med"
/obj/item/weapon/storage/box/nifsofts_medical/New()
@@ -338,7 +338,7 @@
/obj/item/weapon/storage/box/nifsofts_mining
name = "mining nifsoft uploaders"
desc = "A box of free nifsofts for mining employees."
- icon = 'icons/obj/storage_vr.dmi'
+ icon = 'icons/obj/boxes.dmi'
icon_state = "nifsoft_kit_mining"
/obj/item/weapon/storage/box/nifsofts_mining/New()
diff --git a/icons/obj/boxes.dmi b/icons/obj/boxes.dmi
index b1391ef9b52..1f7e82c9600 100644
Binary files a/icons/obj/boxes.dmi and b/icons/obj/boxes.dmi differ