Trap Crate: Difference between revisions

From PZwiki
m (Removing trailing whitespace(s))
(Undo revision 316517 by Sarah52 (talk))
Tag: Undo
 
(9 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Languages}}
{{Header|Project Zomboid|Items|Trapping}}
{{Header/sandbox2|Project Zomboid|Items|Trapping}}
{{Page version|41.78.16}}
{{Page version|41.78.16}}
{{Infobox tile
{{Infobox tile
Line 27: Line 26:
|item_id=Base.TrapCrate
|item_id=Base.TrapCrate
|tile_id=constructedobjects_01_3
|tile_id=constructedobjects_01_3
}}A '''trap crate''' is a medium-sized trap used by beginner trappers.
}}
A '''trap crate''' is a medium-sized trap used by beginner trappers.


==Usage==
==Usage==
Line 47: Line 47:
===Trapping===
===Trapping===
{{Main|Trapping}}
{{Main|Trapping}}
{{Crafting header|ing=3}}
{{Crafting/sandbox2
{{Crafting hunting|005|ing=3}}
|trap_crate
|}
}}


== Code ==
== Code ==
{{CodeBox|
{{CodeBox|
===Item===
===Item===
{{CodeSnip
{{CodeSnip
   | lang = java
   | lang = java
   | line = false
   | line = true
  | start = 2333
   | source = newitems.txt
   | source = newitems.txt
   | retrieved = true
   | retrieved = true
   | version = 41.78.16
   | version = 41.78.16
   | code =
   | code =
    item TrapCrate
item TrapCrate
     {
     {
         DisplayCategory = Trapping,
         DisplayCategory = Trapping,
Line 70: Line 72:
         Trap    =  true,
         Trap    =  true,
     }
     }
  }}
}}
 
===Tile===
===Tile===
{{CodeSnip
{{CodeSnip
Line 96: Line 99:
*[[Stick Trap]]
*[[Stick Trap]]


{{Navbox equipment}}
{{Navbox items|survival}}

Latest revision as of 06:50, 19 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]
Trap Crate
CrateTrapAnim.gif
[[File:{{{icon2}}}|Trap Crate|]]
[[File:{{{icon3}}}|Trap Crate|]]
[[File:{{{icon4}}}|Trap Crate|]]
[[File:{{{icon5}}}|Trap Crate|]]
General
Category
Trapping
EncumbranceMoodle Icon HeavyLoad.png
1.0
Size
1 tile
Function
Catch animals
Properties
Health
50
Strength
15
Animals
Rabbit.png Squirrel.png
Crafting
Tool(s)
Ingredients
Plank × 3
Nails × 5
Destroy
Products
Technical
Item ID(s)
Base.TrapCrate
Tile ID(s)
constructedobjects_01_3

A trap crate is a medium-sized trap used by beginner trappers.

Usage

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

Trapping

Main article: Trapping

Trap crates can be used to catch rabbits and squirrels.

Catch chance:
Rabbit 30%
Squirrel 30%

Crafting

To craft a trap crate, the player requires no skill but must read The Hunter Magazine Vol.2 or have picked the "Park Ranger" occupation or "Hunter" trait during character creation. After crafting it, you can right-click on ground and use Place Trap option to place it.

Trapping

Main article: Trapping
Product Ingredients Tools Requirements Workstation XP
TrapCrate.png
Trap Crate
Plank.png Plank ×3
Nails.png Nails ×5

Handsaw.png
Saw (tag)
none none 0.75 Carpentry

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
item TrapCrate
    {
        DisplayCategory = Trapping,
        Weight	=	1,
        Type	=	Normal,
        DisplayName	=	Trap Crate,
        Icon	=	TrapCrate,
        Trap    =   true,
    }

Tile

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

Retrieved: Build 41.78.16
local crateTrap = {};
crateTrap.type = "Base.TrapCrate";
crateTrap.sprite = "constructedobjects_01_3";
crateTrap.closedSprite = "constructedobjects_01_2";
crateTrap.trapStrength = 15;
crateTrap.destroyItem = { "Base.UnusableWood", "Base.Nails" };
table.insert(Traps, crateTrap);

See also