Skip to content

Commit

Permalink
QoL: fishing pouch for ashwalkers (#6614)
Browse files Browse the repository at this point in the history
красота
  • Loading branch information
NightDawnFox authored Mar 3, 2025
1 parent 721651a commit c0cc5f2
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 8 deletions.
40 changes: 34 additions & 6 deletions code/game/objects/items/weapons/storage/bags.dm
Original file line number Diff line number Diff line change
Expand Up @@ -626,15 +626,43 @@

/obj/item/storage/bag/medpouch
name = "medicinal pouch"
desc = "Небольшой мешочек для хранения трав, припарок, наживки и мелких предметов."
ru_names = list(
NOMINATIVE = "лекарственный мешочек",
GENITIVE = "лекарственного мешочка",
DATIVE = "лекарственному мешочку",
ACCUSATIVE = "лекарственный мешочек",
INSTRUMENTAL = "лекарственным мешочком",
PREPOSITIONAL = "лекарственном мешочке"
)
icon = 'icons/obj/storage.dmi'
icon_state = "pouch_ash"
desc = "A small pouch for holding plants, poultices, resin, and pestles."
storage_slots = 40
max_combined_w_class = 200
can_hold = list(/obj/item/reagent_containers/food/snacks/grown,
/obj/item/stack/medical,
/obj/item/reagent_containers/food/snacks/bait,
/obj/item/reagent_containers/food/snacks/charred_krill,
/obj/item/stack/sheet/cartilage_plate,
/obj/item/stack/sheet/razor_sharp_teeth,
/obj/item/stack/medical,
/obj/item/reagent_containers/food/snacks/bait,
/obj/item/reagent_containers/food/snacks/charred_krill,
/obj/item/stack/sheet/cartilage_plate,
/obj/item/stack/sheet/razor_sharp_teeth,
)

/obj/item/storage/bag/medpouch/fishing
name = "fishing pouch"
desc = "Небольшой мешочек для хранения различной наживки и частей рыб."
ru_names = list(
NOMINATIVE = "рыболовный мешочек",
GENITIVE = "рыболовного мешочка",
DATIVE = "рыболовному мешочку",
ACCUSATIVE = "рыболовный мешочек",
INSTRUMENTAL = "рыболовным мешочком",
PREPOSITIONAL = "рыболовным мешочке"
)
icon_state = "fishpouch_ash"
storage_slots = 40
max_combined_w_class = 200
can_hold = list(/obj/item/reagent_containers/food/snacks/bait,
/obj/item/reagent_containers/food/snacks/charred_krill,
/obj/item/stack/sheet/cartilage_plate,
/obj/item/stack/sheet/razor_sharp_teeth,
)
13 changes: 11 additions & 2 deletions code/modules/crafting/recipes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1771,7 +1771,7 @@
time = 1 SECONDS

/datum/crafting_recipe/drone_circ_adv
name = "Combar drone Advanced IFF Module"
name = "Combat drone Advanced IFF Module"
result = list(/obj/item/drone_modules/drone_IFF)
reqs = list(
/obj/item/stack/sheet/plasteel = 2,
Expand All @@ -1786,7 +1786,7 @@
time = 1 SECONDS

/datum/crafting_recipe/drone_circ_ai
name = "Combar drone AI Control Module"
name = "Combat drone AI Control Module"
result = list(/obj/item/drone_modules/drone_AI)
reqs = list(
/obj/item/stack/sheet/plasteel = 2,
Expand Down Expand Up @@ -1817,3 +1817,12 @@
/obj/item/stack/sheet/animalhide/weaver_chitin = 2)
category = CAT_PRIMAL
subcategory = CAT_WEAPONS

/datum/crafting_recipe/fishing_pouch
name = "Fishing pouch"
result = /obj/item/storage/bag/medpouch/fishing
time = 4 SECONDS
reqs = list(/obj/item/stack/sheet/cloth = 3,
/obj/item/stack/sheet/sinew = 1)
category = CAT_PRIMAL
subcategory = CAT_MISC2
Binary file modified icons/obj/storage.dmi
Binary file not shown.

0 comments on commit c0cc5f2

Please sign in to comment.