Fishing Tackle: Difference between revisions

From PZwiki
(Updates to layout +other minor changes/updates)
m (Automated CodeBox update)
(26 intermediate revisions by 9 users not shown)
Line 1: Line 1:
{{languages|Fishing Tackle}}
{{Header|Project Zomboid|Items|Materials|Fishing materials}}
{{header|The Game World|Items|Tools|version=Version 39|incver=66.3}}{{Tools
{{Page version|41.78.16}}
|image = FishingTackleAnim_120px.gif
{{Improve}}
|primaryuse = Fishing
{{Infobox item
|otheruses = ''none''
|name=Fishing Tackle
|weight = 0.1
|name_colour=Water
|name_text_colour=Water
|model=FishingTackle_Model.png
|icon=FishingTackle.png
|icon_name=Fishing Tackle (blue)
|model2=FishingTackle2_Model.png
|icon2=FishingTackle2.png
|icon_name2=Fishing Tackle (orange)
|function=[[Fishing]] lure
|weight=0.1
|item_id=Base.FishingTackle<br>Base.FishingTackle2
}}
}}
[[File:FishingTackle.png|32px|Fishing Tackle]]
[[File:FishingTackle2.png|32px|Fishing Tackle]]


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. It can be found in hardware stores and sheds. It is used when [[fishing]] as bait.
{{Quote|text=Increases chance of catching fish. Attach to Fishing Rod before use.|author=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.


Tooltip: ''"Increases chance of catching fish. Attach to Fishing Rod before use."''
==Usage==
It is used when [[fishing]] as bait.
 
==Distribution==
The loot distributions can be found in the table(s) below.
 
{| class="mw-collapsible mw-collapsed wikitable theme-red" data-expandtext="{{int:show}}" data-collapsetext="{{int:hide}}" style="text-align:center; min-width:24em;"
! colspan="4" | Containers
|-
! Building/Room
! Container
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" | Chance
|-
|rowspan="2"|camping
|[[counter]]
|4
|1
|-
|[[counter]]
|4
|2
|}
 
==Gallery==
<gallery>
FishingTackle_Model.png|Blue fishing tackle.
FishingTackle2_Model.png|Orange fishing tackle.
</gallery>


==Code==
==Code==
''Fishing Tackle (Blue)'' [[File:FishingTackle.png|32px|Fishing Tackle]]
{{CodeBox|[[File:FishingTackle.png|32px|Fishing Tackle]] {{ID|FishingTackle}}<br>
<nowiki>
{{CodeSnip
item FishingTackle
  | lang = java
Type = Normal,
  | line = true
DisplayName = Fishing Tackle,
  | start = 2353
Icon = FishingTackle,
  | source = newitems.txt
Weight = 0.1,
  | retrieved = true
FishingLure = true,
  | version = 41.78.16
Tooltip = Tooltip_FishingTackle,
  | code =
</nowiki>
item FishingTackle
    {
        DisplayCategory = Fishing,
        Type = Normal,
        DisplayName =     Fishing Tackle,
        Icon = FishingTackle,
        Weight = 0.1,
        FishingLure         =           true,
        Tooltip = Tooltip_FishingTackle,
        SurvivalGear = TRUE,
        WorldStaticModel = FishingTackle,
    }
}}
 
[[File:FishingTackle2.png|32px|Fishing Tackle]] {{ID|FishingTackle2}}<br>
{{CodeSnip
  | lang = java
  | line = true
  | start = 2366
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item FishingTackle2
    {
        DisplayCategory = Fishing,
        Type = Normal,
        DisplayName =     Fishing Tackle,
        Icon = FishingTackle2,
        Weight = 0.1,
        FishingLure        =          true,
        Tooltip = Tooltip_FishingTackle,
        SurvivalGear = TRUE,
        WorldStaticModel = FishingTackle2,
    }
}}
}}


''Fishing Tackle (Orange)'' [[File:FishingTackle2.png|32px|Fishing Tackle]]
==See also==
<nowiki>
*[[Fishing]]
item FishingTackle2
Type = Normal,
DisplayName = Fishing Tackle,
Icon = FishingTackle2,
Weight = 0.1,
FishingLure = true,
Tooltip = Tooltip_FishingTackle,
</nowiki>


==See Also==
{{Navbox equipment}}
* [[Fishing]]


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

Revision as of 10:39, 26 March 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
WhiskeyHalf.png
This article may be in need of improvement.
Editors are encouraged to add any missing information to the article, while verifying that the article's current content is correct.
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

Gallery

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