Fishing Tackle: Difference between revisions

From PZwiki
(3d model request tag)
(Added model. Removed image improvement tag. Retrieved code for Build 41.78.16 (was 39.67.5) Added gallery section for model variants.)
Line 1: Line 1:
{{Languages}}
{{Languages}}
{{Header|The Game World|Items|Tools|Fishing Tools|type=Water|version=Version 41|incver=78.16}}
{{Header|The Game World|Items|Tools|Fishing Tools|type=Water|version=Version 41|incver=78.16}}
{{Reupload}} <!-- Needs model image in infobox along with variants in a <gallery> section-->
{{Improve}}
{{Improve}}
{{Infobox item
{{Infobox item
Line 7: Line 6:
|name_colour=Water
|name_colour=Water
|name_text_colour=Water
|name_text_colour=Water
|model=FishingTackle_Anim.gif
|model=FishingTackle_Model.png
|icon=FishingTackle_Anim.gif
|primary_use=[[Fishing]] lure
|primary_use=[[Fishing]] lure
|weight=0.1
|weight=0.1
Line 20: Line 20:
==Distribution==
==Distribution==
It can be found in hardware stores and sheds.  
It can be found in hardware stores and sheds.  
==Gallery==
<gallery>
FishingTackle_Model.png|Blue fishing tackle
FishingTackle2_Model.png|Orange fishing tackle
</gallery>


==Code==
==Code==
Line 25: Line 31:


''Fishing Tackle (Blue)'' [[File:FishingTackle.png|32px|Fishing Tackle]]
''Fishing Tackle (Blue)'' [[File:FishingTackle.png|32px|Fishing Tackle]]
{{Retrieved|version=39|incver=67.5}}
{{Retrieved|version=41|incver=78.16}}
<pre>
<pre>
item FishingTackle
item FishingTackle
Type = Normal,
{
DisplayName = Fishing Tackle,
DisplayCategory = Fishing,
Icon = FishingTackle,
Type = Normal,
Weight = 0.1,
DisplayName =     Fishing Tackle,
FishingLure = true,
Icon = FishingTackle,
Tooltip = Tooltip_FishingTackle,
Weight = 0.1,
FishingLure         =           true,
Tooltip = Tooltip_FishingTackle,
SurvivalGear = TRUE,
WorldStaticModel = FishingTackle,
}
</pre>
</pre>


''Fishing Tackle (Orange)'' [[File:FishingTackle2.png|32px|Fishing Tackle]]
''Fishing Tackle (Orange)'' [[File:FishingTackle2.png|32px|Fishing Tackle]]
{{Retrieved|version=39|incver=67.5}}
{{Retrieved|version=41|incver=78.16}}
<pre>
<pre>
item FishingTackle2
item FishingTackle2
Type = Normal,
{
DisplayName = Fishing Tackle,
DisplayCategory = Fishing,
Icon = FishingTackle2,
Type = Normal,
Weight = 0.1,
DisplayName =     Fishing Tackle,
FishingLure = true,
Icon = FishingTackle2,
Tooltip = Tooltip_FishingTackle,
Weight = 0.1,
FishingLure         =           true,
Tooltip = Tooltip_FishingTackle,
SurvivalGear = TRUE,
WorldStaticModel = FishingTackle2,
}
</pre>
</pre>



Revision as of 09:38, 31 December 2023

The Game WorldItemsToolsFishing ToolsFishing Tackle
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
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

It can be found in hardware stores and sheds.

Gallery

Code

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

Fishing Tackle (Blue) Fishing Tackle 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 (Orange) Fishing Tackle 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