mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-18 05:32:58 +00:00
* Pollution no longer happens when the subsystem is offline * Removes the code for bonfire pollution that wasn't done modularly * Modularizes bonfire pollution, makes the default bonfire not produce pollution * Player-made campfires produce pollution
58 lines
1.4 KiB
Plaintext
58 lines
1.4 KiB
Plaintext
/datum/crafting_recipe/gold_horn
|
|
name = "Golden Bike Horn"
|
|
result = /obj/item/bikehorn/golden
|
|
time = 2 SECONDS
|
|
reqs = list(
|
|
/obj/item/stack/sheet/mineral/bananium = 5,
|
|
/obj/item/bikehorn = 1,
|
|
)
|
|
category = CAT_TOOLS
|
|
|
|
/datum/crafting_recipe/bonfire
|
|
name = "Bonfire"
|
|
time = 6 SECONDS
|
|
reqs = list(/obj/item/grown/log = 5)
|
|
parts = list(/obj/item/grown/log = 5)
|
|
blacklist = list(/obj/item/grown/log/steel)
|
|
result = /obj/structure/bonfire/player_made // SKYRAT EDIT - Pollution - ORIGINAL: result = /obj/structure/bonfire
|
|
category = CAT_TOOLS
|
|
|
|
/datum/crafting_recipe/boneshovel
|
|
name = "Serrated Bone Shovel"
|
|
always_available = FALSE
|
|
reqs = list(
|
|
/obj/item/stack/sheet/bone = 4,
|
|
/datum/reagent/fuel/oil = 5,
|
|
/obj/item/shovel = 1,
|
|
)
|
|
result = /obj/item/shovel/serrated
|
|
category = CAT_TOOLS
|
|
|
|
/datum/crafting_recipe/lasso
|
|
name = "Bone Lasso"
|
|
reqs = list(
|
|
/obj/item/stack/sheet/bone = 1,
|
|
/obj/item/stack/sheet/sinew = 5,
|
|
)
|
|
result = /obj/item/key/lasso
|
|
category = CAT_TOOLS
|
|
|
|
/datum/crafting_recipe/ipickaxe
|
|
name = "Improvised Pickaxe"
|
|
reqs = list(
|
|
/obj/item/crowbar = 1,
|
|
/obj/item/knife = 1,
|
|
/obj/item/stack/sticky_tape = 1,
|
|
)
|
|
result = /obj/item/pickaxe/improvised
|
|
category = CAT_TOOLS
|
|
|
|
/datum/crafting_recipe/bandage
|
|
name = "Makeshift Bandage"
|
|
reqs = list(
|
|
/obj/item/stack/sheet/cloth = 3,
|
|
/datum/reagent/medicine/c2/libital = 10,
|
|
)
|
|
result = /obj/item/stack/medical/bandage/makeshift
|
|
category = CAT_TOOLS
|