mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-29 10:31:34 +00:00
## About The Pull Request adds supermatter sword craft made out of: 20 adamantium 2 vortex cores actual sm 6 minutes of crafting announcement on fourth minute shrinking wand first of all, you need to craft adamantium pedestal (2 min)  then, you should combine it with shrink wand and sm (2 min) (announcement once you craft it) (it has a gps signal)  and the last one, small sm and 2 vortex cores (2 min) (dont forget about gps signal)   ## Why It's Good For The Game wiz needs more challenges and fun craft is very hard and challenging, but the reward is powerfull as fuck ## Changelog 🆑 MelokGleb and KREKS add: very hard wiz-only sm sword craft sprite: sm sword resprite /🆑
111 lines
2.9 KiB
Plaintext
111 lines
2.9 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"
|
|
reqs = list(
|
|
/obj/item/stack/sheet/bone = 10,
|
|
/datum/reagent/fuel/oil = 5,
|
|
)
|
|
result = /obj/structure/statue/bone/rib
|
|
category = CAT_STRUCTURE
|
|
crafting_flags = CRAFT_CHECK_DENSITY | CRAFT_MUST_BE_LEARNED
|
|
|
|
/datum/crafting_recipe/skull
|
|
name = "Skull Carving"
|
|
reqs = list(
|
|
/obj/item/stack/sheet/bone = 6,
|
|
/datum/reagent/fuel/oil = 5,
|
|
)
|
|
result = /obj/structure/statue/bone/skull
|
|
category = CAT_STRUCTURE
|
|
crafting_flags = CRAFT_CHECK_DENSITY | CRAFT_MUST_BE_LEARNED
|
|
|
|
/datum/crafting_recipe/halfskull
|
|
name = "Cracked Skull Carving"
|
|
reqs = list(
|
|
/obj/item/stack/sheet/bone = 3,
|
|
/datum/reagent/fuel/oil = 5,
|
|
)
|
|
result = /obj/structure/statue/bone/skull/half
|
|
category = CAT_STRUCTURE
|
|
crafting_flags = CRAFT_CHECK_DENSITY | CRAFT_MUST_BE_LEARNED
|
|
|
|
/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
|
|
|
|
/datum/crafting_recipe/syndicate_uplink_beacon
|
|
name = "Syndicate Uplink Beacon"
|
|
result = /obj/structure/syndicate_uplink_beacon
|
|
tool_behaviors = list(TOOL_SCREWDRIVER)
|
|
time = 6 SECONDS
|
|
reqs = list(
|
|
/obj/item/stack/sheet/iron = 5,
|
|
/obj/item/stack/cable_coil = 5,
|
|
/obj/item/beacon = 1,
|
|
/obj/item/stack/ore/bluespace_crystal = 1,
|
|
)
|
|
category = CAT_STRUCTURE
|
|
crafting_flags = CRAFT_CHECK_DENSITY | CRAFT_MUST_BE_LEARNED
|
|
|
|
/datum/crafting_recipe/manucrate
|
|
name = "Manufacturing Storage Unit"
|
|
result = /obj/machinery/power/manufacturing/storagebox
|
|
tool_behaviors = list(TOOL_SCREWDRIVER, TOOL_WELDER)
|
|
time = 6 SECONDS
|
|
reqs = list(
|
|
/obj/item/stack/sheet/iron = 10,
|
|
)
|
|
category = CAT_STRUCTURE
|
|
crafting_flags = CRAFT_CHECK_DENSITY
|
|
|
|
/datum/crafting_recipe/adam_pedestal
|
|
name = "Adamantine Pedestal"
|
|
result = /obj/item/adamantine_pedestal
|
|
reqs = list(
|
|
/obj/item/stack/sheet/mineral/adamantine = 20,
|
|
)
|
|
time = 120 SECONDS
|
|
category = CAT_STRUCTURE
|
|
|
|
|
|
/datum/crafting_recipe/sm_small
|
|
name = "Small Supermatter Crystal"
|
|
result = /obj/machinery/power/supermatter_crystal/small
|
|
reqs = list(
|
|
/obj/item/gun/magic/wand/shrink = 1,
|
|
/obj/item/adamantine_pedestal = 1,
|
|
)
|
|
machinery = list(
|
|
/obj/machinery/power/supermatter_crystal = CRAFTING_MACHINERY_CONSUME,
|
|
)
|
|
time = 120 SECONDS
|
|
category = CAT_STRUCTURE
|