Fishing Net Trap: Difference between revisions

From PZwiki
No edit summary
m (Automated CodeBox update)
(18 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{languages}}
{{Header|Project Zomboid|Items|Equipment|Tools|Fishing tools}}
{{header|The Game World|Items|Tools|type=Tool|version=Version 41|incver=73}}{{Infobox trap
{{Page version|41.78.16}}
|display_name=Fishing Net Trap
{{Infobox tile
|name_colour=Tool
|name=Fishing Net Trap
|name_text_colour=Tool
|model=FishingNet_Model.png
|image = FishingNetTrap.png
|icon=FishTrap.png
|alternate_image=FishTrap.png
|icon_name=Fishing Net Trap
|alternate_name=Fishing Net Trap
|model2=BrokenFishingNet_Model.png
|alternate_link=
|icon2=FishTrapBroken.png
|alternate_image2=FishTrapBroken.png
|icon_name2=Broken Fishing Net Trap
|alternate_name2=Broken Fishing Net Trap
|image3=FishingNetTrap.png
|alternate_link2=
|image_name3=World tile
|weight = 0.5<br>0.4 <small>(Broken)</small>
|category=Fishing
|animals = [[File:FishMinnow.png|link=Little Bait Fish]]
|weight=0.5
|placement = {{T|Water}}
|weight2=0.4
|ingredients = 5 × {{T|Wire}}<br>10 × {{T|Twine}}
|weight_text2=(broken)
|class_name = Base.FishingNet<br>Base.BrokenFishingNet
|animals=[[File:FishMinnow.png|link=Little Bait Fish]]
}}A '''fishing net trap''' is an item used in [[fishing]].
|placement={{ll|Water}}
|crafting=true
|build_skill=[[Angler USA Magazine|Angler USA Magazine Vol. 2]]
|ingredients={{ll|Wire}} × 5<br>{{ll|Twine}} × 10
|item_id=Base.FishingNet
|item_id2=Base.BrokenFishingNet
|tile_id=constructedobjects_01_15
}}
 
A '''fishing net trap''' is an item used in [[fishing]].


==Usage==
==Usage==
===Fishing===
===Fishing===
{{Main|Fishing}}
{{Main|Fishing}}
It is used to trap [[Little Bait Fish|little bait fish]].
A fishing net trap is used to catch [[Little Bait Fish|little bait fish]], which can be used as bait to catch [[pike]].
 
To use a fishing net trap:
#Right-click on [[water]] with the fishing net in the main inventory.
#Select "Place Fishing Net", then left-click to place the trap in the water.
#Leave for at least 1 hour, then "Check Trap".


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".
Checking a trap will gain {{xp|1|media=false}} [[fishing]] experience, while successfully catching a fish will gain an additional {{xp|1|media=false}} fishing experience ({{xp|2|media=false}} total). The longer it is left, the more likely it is to catch a fish. Each hour, adds 25% to the probability (maximum of 20 hours), so checking after 4 hours would have a 68.36% chance, while after 20 hours would have a 99.68% chance. However, leaving the fishing net in the water for more than 15 hours has a 20% chance of breaking upon being checked, replacing it with a '''broken fishing net trap'''. The fishing net can be removed before it breaks by selecting "Remove Trap". <!-- COMMENT: probability calculations: 1-0.75^hours --><!-- COMMENT: mechanics retrieved 41.78.16 from ISCheckFishingNeetAction.lua and FishingNet.lua -->


== 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===
Line 35: Line 50:
|}
|}


== Code ==
==Code==
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox|


''Fishing Net Trap'' [[File:FishTrap.png|32px]]
===Item===
{{Retrieved|version=39|incver=67.5}}
''Fishing Net Trap'' [[File:FishTrap.png|32px]]<br>
<pre> item FishingNet
{{CodeSnip
Type = Normal,
  | lang = java
DisplayName = Fishing Net Trap,
  | line = true
Icon = FishTrap,
  | start = 2423
Weight = 0.5,</pre>
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item FishingNet
    {
        DisplayCategory = Fishing,
        Type = Normal,
        DisplayName = Fishing Net Trap,
        Icon = FishTrap,
        Weight = 0.5,
        SurvivalGear = TRUE,
        WorldStaticModel = FishingNet,
    }
}}


''Broken Fishing Net Trap'' [[File:FishTrapBroken.png|32px]]
''Broken Fishing Net Trap'' [[File:FishTrapBroken.png|32px]]<br>
{{Retrieved|version=39|incver=67.5}}
{{CodeSnip
<pre> item BrokenFishingNet
  | lang = java
Type = Normal,
  | line = true
DisplayName = Broken Fishing Net Trap,
  | start = 2434
Icon = FishTrapBroken,
  | source = newitems.txt
Weight = 0.4,</pre>
  | retrieved = true
  | version = 41.78.16
  | code =
item BrokenFishingNet
    {
        DisplayCategory = Fishing,
        Type = Normal,
        DisplayName = Broken Fishing Net Trap,
        Icon = FishTrapBroken,
        Weight = 0.4,
        WorldStaticModel = BrokenFishingNet,
    }
}}
}}


==See also==
==See also==
* [[Fishing|Fishing Guide]]
*[[Fishing]]
* [[Insects]]
*[[Insects]]
* [[Fishing Rod]]
*[[Fishing Rod]]
 
{{Navbox equipment|survival}}


{{Navbox/Tools}}
[[Category:Tools]]

Revision as of 10:38, 26 March 2024

Project ZomboidItemsEquipmentToolsFishing toolsFishing Net Trap
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Fishing Net Trap
FishingNet Model.png
BrokenFishingNet Model.png
FishingNetTrap.png
[[File:{{{icon4}}}|Fishing Net Trap|]]
[[File:{{{icon5}}}|Fishing Net Trap|]]
General
Category
Fishing
EncumbranceMoodle Icon HeavyLoad.png
0.5
0.4 (broken)
Placement
Properties
Animals
FishMinnow.png
Crafting
Ingredients
Wire × 5
Twine × 10
Technical
Item ID(s)
Base.FishingNet
Base.BrokenFishingNet
Tile ID(s)
constructedobjects_01_15

A fishing net trap is an item used in fishing.

Usage

Fishing

Main article: Fishing

A fishing net trap is used to catch little bait fish, which can be used as bait to catch pike.

To use a fishing net trap:

  1. Right-click on water with the fishing net in the main inventory.
  2. Select "Place Fishing Net", then left-click to place the trap in the water.
  3. Leave for at least 1 hour, then "Check Trap".

Checking a trap will gain 0.25 fishing experience, while successfully catching a fish will gain an additional 0.25 fishing experience (0.5 total). The longer it is left, the more likely it is to catch a fish. Each hour, adds 25% to the probability (maximum of 20 hours), so checking after 4 hours would have a 68.36% chance, while after 20 hours would have a 99.68% chance. However, leaving the fishing net in the water for more than 15 hours has a 20% chance of breaking upon being checked, 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)

Code

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

Item

Fishing Net Trap FishTrap.png
Source: ProjectZomboid\media\scripts\newitems.txt

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
Source: ProjectZomboid\media\scripts\newitems.txt

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