Files
Bubberstation/code/datums/components/crafting/misc.dm
tattle 57e88e6091 Crafting fireaxe cabinets, mech removal cabinets, and mirrors (#72856)
## About The Pull Request
Breaking down #72371 because it's... unreasonably large.
So this PR splits the crafting recipe file, and adds 3 new recipes for
fireaxe cabinets, mech removal cabinets, and mirrors.

## Why It's Good For The Game
Wallening compliance, and more of me on my shit breaking down long
files.

## Changelog
🆑 Tattle
qol: fireaxe cabinets, mech removal cabinets, and mirrors can now all be
crafted
/🆑

Co-authored-by: tattle <article.disaster@gmail.com>
2023-01-23 10:45:27 +01:00

26 lines
728 B
Plaintext

/datum/crafting_recipe/naturalpaper
name = "Hand-Pressed Paper"
time = 3 SECONDS
reqs = list(/datum/reagent/water = 50, /obj/item/stack/sheet/mineral/wood = 1)
tool_paths = list(/obj/item/hatchet)
result = /obj/item/paper_bin/bundlenatural
category = CAT_MISC
/datum/crafting_recipe/skeleton_key
name = "Skeleton Key"
time = 3 SECONDS
reqs = list(/obj/item/stack/sheet/bone = 5)
result = /obj/item/skeleton_key
always_available = FALSE
category = CAT_MISC
/datum/crafting_recipe/coffee_cartridge
name = "Bootleg Coffee Cartridge"
result = /obj/item/coffee_cartridge/bootleg
time = 2 SECONDS
reqs = list(
/obj/item/blank_coffee_cartridge = 1,
/datum/reagent/toxin/coffeepowder = 10,
)
category = CAT_MISC