mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 13:10:02 +01:00
## About The Pull Request - null all GAGS vars for brass wirecutters as it doesn't use GAGS - Repath `mothbomb.dmi` so it actually gets deployed with the server - Generate map icons - Fix 150+ crafting material parity failures - Fix airlock lights not working - Fix certain species missing eyes ## Why It's Good For The Game Don't like red X ## Proof Of Testing If this PR is green check then you Know
67 lines
2.2 KiB
Plaintext
67 lines
2.2 KiB
Plaintext
/datum/crafting_recipe/makeshift/crowbar
|
|
name = "Makeshift Crowbar"
|
|
result = /obj/item/crowbar/makeshift
|
|
reqs = list(/obj/item/stack/sheet/iron = 4,
|
|
/obj/item/stack/sheet/cloth = 1,
|
|
/obj/item/stack/cable_coil = 1)
|
|
requirements_mats_blacklist = list(/obj/item/stack/cable_coil)
|
|
time = 120
|
|
category = CAT_MISC
|
|
|
|
/datum/crafting_recipe/makeshift/screwdriver
|
|
name = "Makeshift Screwdriver"
|
|
tool_paths = list(/obj/item/crowbar/makeshift)
|
|
result = /obj/item/screwdriver/makeshift
|
|
reqs = list(/obj/item/stack/cable_coil = 1,
|
|
/obj/item/stack/sheet/cloth = 2,
|
|
/obj/item/stack/rods = 2)
|
|
requirements_mats_blacklist = list(/obj/item/stack/cable_coil)
|
|
time = 80
|
|
category = CAT_MISC
|
|
|
|
/datum/crafting_recipe/makeshift/welder
|
|
name = "Makeshift Welder"
|
|
tool_paths = list(/obj/item/crowbar/makeshift)
|
|
tool_behaviors = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER)
|
|
result = /obj/item/weldingtool/makeshift
|
|
reqs = list(/obj/item/tank/internals/emergency_oxygen = 1,
|
|
/obj/item/stack/sheet/iron = 6,
|
|
/obj/item/stack/sheet/glass = 2,
|
|
/obj/item/stack/cable_coil = 2)
|
|
time = 160
|
|
category = CAT_MISC
|
|
|
|
/datum/crafting_recipe/makeshift/wirecutters
|
|
name = "Makeshift Wirecutters"
|
|
tool_paths = list(/obj/item/crowbar/makeshift)
|
|
tool_behaviors = list(TOOL_SCREWDRIVER)
|
|
result = /obj/item/wirecutters/makeshift
|
|
reqs = list(/obj/item/stack/cable_coil = 2,
|
|
/obj/item/stack/rods = 4)
|
|
requirements_mats_blacklist = list(/obj/item/stack/cable_coil)
|
|
time = 80
|
|
category = CAT_MISC
|
|
|
|
/datum/crafting_recipe/makeshift/wrench
|
|
name = "Makeshift Wrench"
|
|
tool_paths = list(/obj/item/crowbar/makeshift)
|
|
tool_behaviors = list(TOOL_SCREWDRIVER)
|
|
result = /obj/item/wrench/makeshift
|
|
reqs = list(/obj/item/stack/cable_coil = 1,
|
|
/obj/item/stack/sheet/iron = 3,
|
|
/obj/item/stack/rods = 1,
|
|
/obj/item/stack/sheet/cloth = 2)
|
|
requirements_mats_blacklist = list(/obj/item/stack/cable_coil)
|
|
time = 80
|
|
category = CAT_MISC
|
|
|
|
/datum/crafting_recipe/makeshift/chisel //BUBBERSTATION ADDITION
|
|
name = "Makeshift Chisel"
|
|
tool_behaviors = list(TOOL_SCREWDRIVER)
|
|
result = /obj/item/chisel
|
|
reqs = list(/obj/item/stack/sheet/iron = 1,
|
|
/obj/item/stack/sheet/mineral/wood = 1)
|
|
time = 80
|
|
category = CAT_MISC
|
|
crafting_flags = parent_type::crafting_flags | CRAFT_SKIP_MATERIALS_PARITY
|