Skip to content

Commit

Permalink
craftable epi and atropine medipens (yogstation13#14710)
Browse files Browse the repository at this point in the history
* medipen crafting

* typepath typo

Co-authored-by: tattax <[email protected]>

* Update code/datums/components/crafting/recipes.dm

Co-authored-by: tattax <[email protected]>
Co-authored-by: Jamie D <[email protected]>
  • Loading branch information
3 people authored Jul 9, 2022
1 parent 30e99d8 commit b031a87
Showing 1 changed file with 23 additions and 3 deletions.
26 changes: 23 additions & 3 deletions code/datums/components/crafting/recipes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -551,23 +551,43 @@
/datum/crafting_recipe/bone_spade
name = "Bone Spade"
result = /obj/item/shovel/spade/bone
time = 80
time = 8 SECONDS
reqs = list(/obj/item/stack/sheet/bone = 1,
/obj/item/stack/sheet/sinew = 1)
category = CAT_TOOLS

/datum/crafting_recipe/bone_hatchet
name = "Bone Hatchet"
result = /obj/item/hatchet/bone
time = 80
time = 8 SECONDS
reqs = list(/obj/item/stack/sheet/bone = 1,
/obj/item/stack/sheet/sinew = 1)
category = CAT_TOOLS

/datum/crafting_recipe/bone_cultivator
name = "Bone Cultivator"
result = /obj/item/cultivator/bone
time = 80
time = 8 SECONDS
reqs = list(/obj/item/stack/sheet/bone = 2,
/obj/item/stack/sheet/sinew = 1)
category = CAT_TOOLS

/datum/crafting_recipe/epinephrine_medipen
name = "Epinephrine Medipen"
result = /obj/item/reagent_containers/hypospray/medipen
tools = list(TOOL_SCREWDRIVER)
time = 2 SECONDS
reqs = list(/obj/item/pen = 1, // You feel a tiny prick!
/obj/item/reagent_containers/syringe = 1,
/datum/reagent/medicine/epinephrine = 10) // Sanguirite is unobtainable
category = CAT_TOOLS

/datum/crafting_recipe/atropine_medipen
name = "Atropine Autoinjector"
result = /obj/item/reagent_containers/hypospray/medipen/atropine
tools = list(TOOL_SCREWDRIVER)
time = 4 SECONDS
reqs = list(/obj/item/pen = 1, // You feel a tiny prick!
/obj/item/reagent_containers/syringe = 1,
/datum/reagent/medicine/atropine = 10)
category = CAT_TOOLS

0 comments on commit b031a87

Please sign in to comment.