mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-27 09:31:54 +00:00
## 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>
63 lines
1.5 KiB
Plaintext
63 lines
1.5 KiB
Plaintext
/datum/crafting_recipe/paperframes
|
|
name = "Paper Frames"
|
|
time = 1 SECONDS
|
|
reqs = list(
|
|
/obj/item/stack/sheet/mineral/wood = 5,
|
|
/obj/item/paper = 20,
|
|
)
|
|
result = /obj/item/stack/sheet/paperframes
|
|
result_amount = 5
|
|
category = CAT_STRUCTURE
|
|
|
|
/datum/crafting_recipe/rib
|
|
name = "Colossal Rib"
|
|
always_available = FALSE
|
|
reqs = list(
|
|
/obj/item/stack/sheet/bone = 10,
|
|
/datum/reagent/fuel/oil = 5,
|
|
)
|
|
result = /obj/structure/statue/bone/rib
|
|
category = CAT_STRUCTURE
|
|
|
|
/datum/crafting_recipe/skull
|
|
name = "Skull Carving"
|
|
always_available = FALSE
|
|
reqs = list(
|
|
/obj/item/stack/sheet/bone = 6,
|
|
/datum/reagent/fuel/oil = 5,
|
|
)
|
|
result = /obj/structure/statue/bone/skull
|
|
category = CAT_STRUCTURE
|
|
|
|
/datum/crafting_recipe/halfskull
|
|
name = "Cracked Skull Carving"
|
|
always_available = FALSE
|
|
reqs = list(
|
|
/obj/item/stack/sheet/bone = 3,
|
|
/datum/reagent/fuel/oil = 5,
|
|
)
|
|
result = /obj/structure/statue/bone/skull/half
|
|
category = CAT_STRUCTURE
|
|
|
|
/datum/crafting_recipe/firecabinet
|
|
name = "Fire Axe Cabinet"
|
|
result = /obj/item/wallframe/fireaxecabinet
|
|
time = 8 SECONDS
|
|
reqs = list(
|
|
/obj/item/stack/sheet/plasteel = 5,
|
|
/obj/item/stack/sheet/glass = 5,
|
|
/obj/item/stack/cable_coil = 10,
|
|
)
|
|
category = CAT_STRUCTURE
|
|
|
|
/datum/crafting_recipe/mechcabinet
|
|
name = "Mech Removal Cabinet"
|
|
result = /obj/item/wallframe/fireaxecabinet/mechremoval
|
|
time = 8 SECONDS
|
|
reqs = list(
|
|
/obj/item/stack/sheet/plasteel = 5,
|
|
/obj/item/stack/sheet/glass = 5,
|
|
/obj/item/stack/cable_coil = 10,
|
|
)
|
|
category = CAT_STRUCTURE
|