mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-16 20:52:33 +00:00
* Binoculars removed from ritual of knowledge, clipboards made craftable (#85221) ## About The Pull Request This pull request removes the clipboard from the pool of heretic ritual of knowledge items, specifically the "Easy" ones to obtain. The rest is unchanged. ## Why It's Good For The Game Clipboards are substantially harder to obtain than it's fellow objects for the ritual. - Shards are able to be made from glass from autolathes, maintenance loot, protolathes, salvaged from structures - Candles are printable from biomass, plenty of them in the chapel, orderable, sometimes maintenance has them - Paper is printable from biogen iirc and in huge quantities across the entire station, you can also handcraft some or order it - Everyone has a pen roundstart, obtainable from library, lathes, maints - Flashlights are the same as above yet obtainable from most tool closets and even emergency closets - Crayons are able to be made with xenobiology, ordered, have a few map spawns but are generally in good quantity and are maintenance loot. The clipboard however is not printable, orders in sets of 2 for an interesting sum in a suspiciously never ordered package, has lackluster map spawns (One or two in cargo, one psychologist's), is sometimes required in pairs if not more and it's severely more difficult to get. I do not think anyone would miss this, as it's just tedious and too low-supply to get. There are more batons on station then there are clipboards, even organs are easier to access. ## Changelog 🆑 add: The heretic's ritual of knowledge no longer requires binoculars add: Clipboards are craftable using a wood plank, an iron rod and wirecutters /🆑 * Binoculars removed from ritual of knowledge, clipboards made craftable --------- Co-authored-by: KazooBard <65713506+KazooBard@users.noreply.github.com>
58 lines
1.5 KiB
Plaintext
58 lines
1.5 KiB
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
|
|
category = CAT_MISC
|
|
crafting_flags = CRAFT_CHECK_DENSITY | CRAFT_MUST_BE_LEARNED
|
|
|
|
/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
|
|
|
|
/datum/crafting_recipe/corporate_paper_slip
|
|
name = "Corporate Plastic Card"
|
|
result = /obj/item/paper/paperslip/corporate
|
|
time = 3 SECONDS
|
|
reqs = list(
|
|
/obj/item/paper/paperslip = 1,
|
|
/obj/item/stack/sheet/plastic = 3,
|
|
)
|
|
tool_paths = list(/obj/item/stamp/head/captain)
|
|
category = CAT_MISC
|
|
|
|
/datum/crafting_recipe/clipboard
|
|
name = "Clipboard"
|
|
result = /obj/item/clipboard
|
|
time = 3 SECONDS
|
|
reqs = list(
|
|
/obj/item/stack/sheet/mineral/wood = 1,
|
|
/obj/item/stack/rods = 1,
|
|
)
|
|
tool_behaviors = list(TOOL_WIRECUTTER)
|
|
category = CAT_MISC
|
|
|
|
/datum/crafting_recipe/cardboard_id
|
|
name = "Cardboard ID Card"
|
|
tool_behaviors = list(TOOL_WIRECUTTER)
|
|
result = /obj/item/card/cardboard
|
|
time = 4 SECONDS
|
|
reqs = list(
|
|
/obj/item/stack/sheet/cardboard = 1,
|
|
)
|
|
category = CAT_MISC
|