Fishing Tackle: Difference between revisions

From PZwiki
m (Remove lines))
m (Improve the page)
Line 1: Line 1:
{{Header|Project Zomboid|Items|Materials|Fishing materials}}
{{Header|Project Zomboid|Items|Materials|Fishing materials}}
{{Page version|41.78.16}}
{{Page version|41.78.16}}
{{Improve}}
{{Infobox item
{{Infobox item
|name=Fishing Tackle
|name=Fishing Tackle
Line 12: Line 11:
|function=[[Fishing]] lure
|function=[[Fishing]] lure
|weight=0.1
|weight=0.1
|item_id=Base.FishingTackle<br>Base.FishingTackle2
|item_id=Base.FishingTackle
|item_id2=Base.FishingTackle2
}}
}}
{{Quote|text=Increases chance of catching fish. Attach to Fishing Rod before use.|author=In-game tooltip.}}
{{Quote|text=Increases chance of catching fish. Attach to Fishing Rod before use.|author=In-game tooltip.}}
Line 40: Line 40:
|2
|2
|}
|}
==Gallery==
<gallery>
FishingTackle_Model.png|Blue fishing tackle
FishingTackle2_Model.png|Orange fishing tackle
</gallery>


==Code==
==Code==
Line 99: Line 93:


{{Navbox items|fishing_materials}}
{{Navbox items|fishing_materials}}


[[Category:Tools]]
[[Category:Tools]]
[[Category:Materials]]
[[Category:Materials]]

Revision as of 20:41, 20 April 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Fishing Tackle
FishingTackle Model.png
FishingTackle2 Model.png
General
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Function
Fishing lure
Technical
Item ID
Base.FishingTackle
Base.FishingTackle2
Increases chance of catching fish. Attach to Fishing Rod before use.
— In-game tooltip.

A fishing tackle is a bright piece of plastic shaped like a fish to lure larger fish and can come in two variants: blue and orange.

Usage

It is used when fishing as bait.

Distribution

The loot distributions can be found in the table(s) below.

Containers
Building/Room Container Rolls Chance
camping counter 4 1
counter 4 2

Code

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

Fishing Tackle FishingTackle
Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item FishingTackle
    {
        DisplayCategory = Fishing,
        Type				=			Normal,
        DisplayName			=		    Fishing Tackle,
        Icon				=			FishingTackle,
        Weight				=			0.1,
        FishingLure         =           true,
        Tooltip = Tooltip_FishingTackle,
        SurvivalGear = TRUE,
        WorldStaticModel = FishingTackle,
    }

Fishing Tackle FishingTackle2
Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item FishingTackle2
    {
        DisplayCategory = Fishing,
        Type				=			Normal,
        DisplayName			=		    Fishing Tackle,
        Icon				=			FishingTackle2,
        Weight				=			0.1,
        FishingLure         =           true,
        Tooltip = Tooltip_FishingTackle,
        SurvivalGear = TRUE,
        WorldStaticModel = FishingTackle2,
    }

See also