diff --git a/code/game/objects/items/stacks/sheets/sheet_types.dm b/code/game/objects/items/stacks/sheets/sheet_types.dm index 8bfb1983ff8..33b7b9108fa 100644 --- a/code/game/objects/items/stacks/sheets/sheet_types.dm +++ b/code/game/objects/items/stacks/sheets/sheet_types.dm @@ -455,8 +455,9 @@ GLOBAL_LIST_INIT(cardboard_recipes, list ( \ new /datum/stack_recipe("syringe box", /obj/item/storage/box/syringes), \ new /datum/stack_recipe("latex gloves box", /obj/item/storage/box/gloves), \ new /datum/stack_recipe("sterile masks box", /obj/item/storage/box/masks), \ - new /datum/stack_recipe("body bag box", /obj/item/storage/box/bodybags), \ + new /datum/stack_recipe("body bag box", /obj/item/storage/box/bodybags), \ new /datum/stack_recipe("perscription glasses box", /obj/item/storage/box/rxglasses), \ + new /datum/stack_recipe("medipen box", /obj/item/storage/box/medipens), \ null, \ new /datum/stack_recipe("disk box", /obj/item/storage/box/disks), \ diff --git a/code/game/objects/items/storage/boxes.dm b/code/game/objects/items/storage/boxes.dm index 625917e8084..55ecf83f7ce 100644 --- a/code/game/objects/items/storage/boxes.dm +++ b/code/game/objects/items/storage/boxes.dm @@ -210,7 +210,7 @@ /obj/item/storage/box/medipens name = "box of medipens" desc = "A box full of epinephrine MediPens." - illustration = "syringe" + illustration = "epipen" /obj/item/storage/box/medipens/PopulateContents() for(var/i in 1 to 7) @@ -219,7 +219,7 @@ /obj/item/storage/box/medipens/utility name = "stimpack value kit" desc = "A box with several stimpack medipens for the economical miner." - illustration = "syringe" + illustration = "epipen" /obj/item/storage/box/medipens/utility/PopulateContents() ..() // includes regular medipens. diff --git a/code/modules/reagents/reagent_containers/hypospray.dm b/code/modules/reagents/reagent_containers/hypospray.dm index e83fd42d0a9..8c6d4654cb0 100644 --- a/code/modules/reagents/reagent_containers/hypospray.dm +++ b/code/modules/reagents/reagent_containers/hypospray.dm @@ -287,6 +287,7 @@ /obj/item/reagent_containers/hypospray/medipen/ekit name = "emergency first-aid autoinjector" desc = "An epinephrine medipen with extra coagulant and antibiotics to help stabilize bad cuts and burns." + icon_state = "firstaid" volume = 15 amount_per_transfer_from_this = 15 list_reagents = list(/datum/reagent/medicine/epinephrine = 12, /datum/reagent/medicine/coagulant = 2.5, /datum/reagent/medicine/spaceacillin = 0.5) @@ -294,6 +295,7 @@ /obj/item/reagent_containers/hypospray/medipen/blood_loss name = "hypovolemic-response autoinjector" desc = "A medipen designed to stabilize and rapidly reverse severe bloodloss." + icon_state = "hypovolemic" volume = 15 amount_per_transfer_from_this = 15 list_reagents = list(/datum/reagent/medicine/epinephrine = 5, /datum/reagent/medicine/coagulant = 2.5, /datum/reagent/iron = 3.5, /datum/reagent/medicine/salglu_solution = 4) diff --git a/icons/obj/storage.dmi b/icons/obj/storage.dmi index 93ff14ac14b..ee6f37b66b3 100644 Binary files a/icons/obj/storage.dmi and b/icons/obj/storage.dmi differ diff --git a/icons/obj/syringe.dmi b/icons/obj/syringe.dmi index 9d47e452af0..d0f24abe450 100644 Binary files a/icons/obj/syringe.dmi and b/icons/obj/syringe.dmi differ