Snare Trap/pt-br

From PZwiki
< Snare Trap
Revision as of 03:13, 19 April 2024 by Sarah52 (talk | contribs) (Created page with "{{Header|Project Zomboid|Items|Trapping}} {{Page version|41.78.16}} {{Infobox tile |name=Snare Trap |image=SnareTrapAnim.gif |icon=TrapSnare.png |icon_name=Snare Trap <!--General--> |category=Trapping |weight=0.5 |size=1 |function=Catch animals <!--Properties--> |health=50 |strength=10 |animals=link=Rabbit link=Squirrel <!--Build--> |crafting=true |build_skill=The Hunter Magazine Vol. 1 |build_skill2=[...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Snare Trap/pt-br
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Snare Trap
SnareTrapAnim.gif
[[File:{{{icon2}}}|Snare Trap|]]
[[File:{{{icon3}}}|Snare Trap|]]
[[File:{{{icon4}}}|Snare Trap|]]
[[File:{{{icon5}}}|Snare Trap|]]
Geral
Categoria
Trapping
PesoMoodle Icon HeavyLoad.png
0.5
Tamanho
1 ladrilho
Função
Catch animals
Propriedades
Vida
50
Resistência
10
Animais
Rabbit.png Squirrel.png
Criação
Habilidade (nível)
Ferramenta(s)
Ingredientes
Plank
Twine (2 units)
Destruir
Produtos
Scrap Wood
Twine (2 units)
Técnico
ID(s) do Item
Base.TrapSnare
ID(s) do Tile
constructedobjects_01_16

A snare trap is a medium-sized trap used by novice trappers.

Usage

A snare trap is one of several traps used in trapping to catch a variety of wildlife.

Trapping

Artigo principal: Caça

Snare traps can be used to catch rabbits and squirrels.

Catch chance:
Rabbit 30%
Squirrel 30%

Crafting

To craft a snare trap, the player must have picked either the "Park Ranger" occupation or "Hunter" trait during character creation. Otherwise, it will be learned after reaching trapping level 1, or reading The Hunter Magazine Vol.1

Trapping

Artigo principal: Caça
Product Ingredients Tools Requirements Workstation XP
TrapSnare.png
Armadilha de Laço
Plank.png Tábua ×1
Twine.png Barbante ×2 unit(s)

Handsaw.png
Saw (tag)
Caça 1
(and)
MagazineHunting.png
The Hunter Magazine Vol.1/pt-br
none 0.25 Carpintaria

Code

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

Item

Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16/pt-br
item TrapSnare
    {
        DisplayCategory = Trapping,
        Weight	=	0.5,
        Type	=	Normal,
        DisplayName	=	Snare Trap,
        Icon	=	TrapSnare,
        Trap    =   true,
    }

Tile

Source: ProjectZomboid\media\lua\server\Traps\TrapDefinition.lua

Retrieved: Build 41.78.16/pt-br
local snareTrap = {};
snareTrap.type = "Base.TrapSnare";
snareTrap.sprite = "constructedobjects_01_16";
snareTrap.closedSprite = "constructedobjects_01_17";
snareTrap.trapStrength = 10;
snareTrap.destroyItem = { "Base.UnusableWood", "Base.Twine", "Base.Twine" };
table.insert(Traps, snareTrap);

See also