Fishing Net Trap: Difference between revisions

From PZwiki
(added gallery with models + updated code blocks)
m (updated recipe magazine links)
Line 26: Line 26:


== Crafting ==
== Crafting ==
Crafting fishing traps requires the player to either pick the [[Occupation#Fisherman|Fisherman occupation]] or the [[Trait|Angler trait]] on [[Player#Character Creation|character creation]], else they'll have to read ''{{T|Recipe Magazines#Fishing|Angler USA Magazine Vol. 2}}''  , which can be found in the [[Knox Country|world]].
Crafting fishing traps requires the player to either pick the [[Occupation#Fisherman|Fisherman occupation]] or the [[Trait|Angler trait]] on [[Player#Character Creation|character creation]], else they'll have to read ''[[Angler USA Magazine|Angler USA Magazine Vol. 2]]''  , which can be found in the [[Knox Country|world]].


===Fishing===
===Fishing===

Revision as of 02:56, 2 January 2024

The Game WorldItemsToolsFishing ToolsFishing Net Trap
Fishing Net Trap
Fishing Net Trap
Fishing Net Trap Broken Fishing Net Trap
General
Category Item
Encumbrance
Heavy Load
0.5
0.4 (Broken)
Catchable animals FishMinnow.png
Placement Water
Technical details
Ingredients 5 × Wire
10 × Twine
Item ID Base.FishingNet
Base.BrokenFishingNet

A fishing net trap is an item used in fishing.

Usage

Fishing

Main article: Fishing

It is used to trap little bait fish.

To use a fishing net trap, right-click on water with the fishing net in your main inventory, and select "Place Fishing Net" then left-click to place the trap in the water. Return in a an hour to "Check Trap"; leaving the fishing net in the water for >15 hours results in a chance the fishing net will break, replacing it with a broken fishing net trap. The fishing net can be removed before it breaks by selecting "Remove Trap".

Crafting

Crafting fishing traps requires the player to either pick the Fisherman occupation or the Angler trait on character creation, else they'll have to read Angler USA Magazine Vol. 2 , which can be found in the world.

Fishing

Main article: Fishing
Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2
FishTrap.png
Fishing Net Trap
0 XP none Angler USA Magazine Vol. 2 Twine.png
Twine
(10 units)

(consumed)
Wire.png
Wire
(5 units)

(consumed)
Wire.png
Wire
0 XP none Angler USA Magazine Vol. 2 FishTrapBroken.png
Fishing Net Trap
(consumed)

Gallery

Code

From newitems.txt (Project Zomboid directory/media/scripts/)

Fishing Net Trap FishTrap.png Retrieved: Build 41.78.16

    item FishingNet
    {
        DisplayCategory = Fishing,
        Type = Normal,
        DisplayName = Fishing Net Trap,
        Icon = FishTrap,
        Weight = 0.5,
        SurvivalGear = TRUE,
        WorldStaticModel = FishingNet,
    }

Broken Fishing Net Trap FishTrapBroken.png Retrieved: Build 41.78.16

    item BrokenFishingNet
    {
        DisplayCategory = Fishing,
        Type = Normal,
        DisplayName = Broken Fishing Net Trap,
        Icon = FishTrapBroken,
        Weight = 0.4,
        WorldStaticModel = BrokenFishingNet,
    }

See also