diff --git a/code/game/objects/items/stacks/sheets/sheet_types.dm b/code/game/objects/items/stacks/sheets/sheet_types.dm index 5c066edcbb1..3a710799b8b 100644 --- a/code/game/objects/items/stacks/sheets/sheet_types.dm +++ b/code/game/objects/items/stacks/sheets/sheet_types.dm @@ -686,6 +686,8 @@ GLOBAL_LIST_INIT(plastic_recipes, list( new /datum/stack_recipe("toxin first aid kit", /obj/item/storage/firstaid/toxin, 4), new /datum/stack_recipe("oxygen deprivation first aid kit", /obj/item/storage/firstaid/o2, 4), new /datum/stack_recipe("advanced first-aid kit", /obj/item/storage/firstaid/adv, 4), + new /datum/stack_recipe("machine repair kit", /obj/item/storage/firstaid/machine, 4), + new /datum/stack_recipe("aquatic starter kit", /obj/item/storage/firstaid/aquatic_kit, 4), )), new /datum/stack_recipe("pill bottle", /obj/item/storage/pill_bottle), new /datum/stack_recipe("IV bag", /obj/item/reagent_containers/iv_bag, 2), diff --git a/code/game/objects/items/weapons/storage/firstaid.dm b/code/game/objects/items/weapons/storage/firstaid.dm index f50cb2fc226..088781d37e9 100644 --- a/code/game/objects/items/weapons/storage/firstaid.dm +++ b/code/game/objects/items/weapons/storage/firstaid.dm @@ -219,6 +219,7 @@ name = "ert first-aid kit" icon_state = "bezerk" desc = "A medical kit used by Nanotrasen emergency response team personnel." + med_bot_skin = "bezerk" /obj/item/storage/firstaid/ert/populate_contents() new /obj/item/healthanalyzer/advanced(src) @@ -244,6 +245,15 @@ new /obj/item/storage/pill_bottle/ert_amber(src) new /obj/item/storage/pill_bottle/patch_pack/ert_amber(src) +/obj/item/storage/firstaid/fake_tactical + name = "tactical first-aid kit" + icon_state = "bezerk" + desc = "I hope you've got insurance. The paint is still wet." + med_bot_skin = "bezerk" + +/obj/item/storage/firstaid/fake_tactical/populate_contents() + return + /* * Pill Bottles */ diff --git a/code/modules/crafting/recipes.dm b/code/modules/crafting/recipes.dm index 30781d19040..048e7e56d77 100644 --- a/code/modules/crafting/recipes.dm +++ b/code/modules/crafting/recipes.dm @@ -919,6 +919,16 @@ pathtools = list(/obj/item/reagent_containers/glass/rag = 1) //need something to paint with it category = CAT_MISC +/datum/crafting_recipe/fake_tactical_medkit + name = "Tactical First-Aid Kit" + result = list(/obj/item/storage/firstaid/fake_tactical) + time = 40 + reqs = list(/datum/reagent/paint/blue = 10, + /datum/reagent/paint/black = 30, + /obj/item/storage/firstaid = 1) + pathtools = list(/obj/item/reagent_containers/glass/rag = 1) + category = CAT_MISC + /datum/crafting_recipe/snowman name = "Snowman" result = list(/obj/structure/snowman/built)