Skip to content

Commit

Permalink
[Feature] Allows to make Material Fishing Rods in the workbench (#4918)
Browse files Browse the repository at this point in the history
Initial Commit
  • Loading branch information
OrbisAnima authored and StealsThePRs committed Feb 20, 2025
1 parent 56658af commit baf5db1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
/datum/crafting_bench_recipe/soup_pot,
/datum/crafting_bench_recipe/bokken,
/datum/crafting_bench_recipe/bow,
/datum/crafting_bench_recipe/fishing_rod,
)
/// Radial options for recipes in the allowed_choices list, populated by populate_radial_choice_list
var/list/radial_choice_list = list()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,3 +148,11 @@
)
resulting_item = /obj/item/forging/incomplete_bow
required_good_hits = 8

/datum/crafting_bench_recipe/fishing_rod
recipe_name = "fishing rod"
recipe_requirements = list(
/obj/item/forging/complete/staff = 1,
)
resulting_item = /obj/item/fishing_rod/material
required_good_hits = 8

0 comments on commit baf5db1

Please sign in to comment.