Trap Box: Difference between revisions

From PZwiki
(Created page with "(as of version 30.12) It says it is used for birds but it only can trap rabbits and squirrels. Rabbit - base chance 20% Squirrel - base chance 15% This is the worst of all o...")
 
m (Automated Formatting)
 
(34 intermediate revisions by 14 users not shown)
Line 1: Line 1:
(as of version 30.12)
{{Header|Project Zomboid|Items|Trapping}}
It says it is used for birds but it only can trap rabbits and squirrels.
{{Page version|41.78.16}}
{{Infobox tile
|name=Trap Box
|image=BoxTrapAnim.gif
|icon=TrapBox.png
|icon_name=Trap Box
<!--General-->
|category=Trapping
|weight=1.0
|size=1
|function=Catch [[animals]]
<!--Properties-->
|health=50
|strength=15
|animals=[[File:Rabbit.png|link=Rabbit]] [[File:Squirrel.png|link=Squirrel]]
<!--Build-->
|crafting=true
|build_skill=[[The Hunter Magazine|The Hunter Magazine Vol. 3]]
|build_skill2=[[Carpentry]]
|build_skill3=[[Trapping]]
|build_level2=1
|build_level3=2
|build_tool_tag=Saw
|ingredients=[[Plank]] × 4<br>[[Nails]] × 7
<!--Disassemble-->
|destroy=true
|products=[[Scrap Wood]]<br>[[Nails]] × 2
<!--Technical-->
|item_id=Base.TrapBox
|tile_id=constructedobjects_01_4
}}
A '''trap box''' is a medium sized trap used by apprentice trappers.


Rabbit - base chance 20%
==Usage==
Squirrel - base chance 15%
A trap box is one of several traps used in [[trapping]] to catch a variety of [[animals|wildlife]].


This is the worst of all of the small animal traps at catching animals as all other traps have a higher base chance of catching Squirrels and it is the same as the snare and crate traps for Rabbits. The only advantage to using the box trap is that is is slightly tougher than the snare trap but the same as the crate trap.
===Trapping===
{{Main|Trapping}}
Trap boxes can be used to catch [[rabbit]]s and [[squirrel]]s.
{| width="100px" style="text-align:left;"
|+ '''''Catch chance:'''''
| [[File:Rabbit.png|32px|link=Dead Rabbit|Rabbit]] || 30%
|-
| [[File:Squirrel.png|32px|link=Dead Squirrel|Squirrel]] || 25%
|}
 
==Crafting==
To craft a trap box, the player must have picked either the "[[Occupation|Park Ranger" occupation]] or [[Traits|"Hunter" trait]] during character creation. Otherwise it will be learnt after reaching trapping level 2 and [[carpentry]] level 1, or reading ''[[The Hunter Magazine|The Hunter Magazine Vol.3]]''
 
===Trapping===
{{Main|Trapping}}
{{Crafting/sandbox2
|trap_box
}}
 
==Code==
{{CodeBox|
 
===Item===
{{CodeSnip
  | lang = java
  | line = true
  | start = 2323
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item TrapBox
    {
        DisplayCategory = Trapping,
        Weight = 1,
        Type = Normal,
        DisplayName = Trap Box,
        Icon = TrapBox,
        Trap    =  true,
    }
}}
 
===Tile===
{{CodeSnip
  | lang = lua
  | line = false
  | path = ProjectZomboid\media\lua\server\Traps
  | source = TrapDefinition.lua
  | retrieved = true
  | version = 41.78.16
  | code =
local trapBox = {};
trapBox.type = "Base.TrapBox";
trapBox.sprite = "constructedobjects_01_4";
trapBox.northSprite = "constructedobjects_01_7";
trapBox.closedSprite = "constructedobjects_01_5";
trapBox.northClosedSprite = "constructedobjects_01_6";
trapBox.trapStrength = 15;
trapBox.destroyItem = { "Base.UnusableWood", "Base.Nails", "Base.Nails" };
table.insert(Traps, trapBox);
  }}
}}
 
==See also==
*[[Cage Trap]]
*[[Trap Crate]]
*[[Snare Trap]]
*[[Stick Trap]]


{| class="wikitable sortable" style="text-align:center;"
{{Navbox items|survival}}
|-
! Output
! class="unsortable" | Ingredients
! class="unsortable" | Description
! Skill Level
{{RecipeLookup|6003}}
|}

Latest revision as of 12:58, 14 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 Box
BoxTrapAnim.gif
[[File:{{{icon2}}}|Trap Box|]]
[[File:{{{icon3}}}|Trap Box|]]
[[File:{{{icon4}}}|Trap Box|]]
[[File:{{{icon5}}}|Trap Box|]]
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 × 4
Nails × 7
Destroy
Products
Technical
Item ID(s)
Base.TrapBox
Tile ID(s)
constructedobjects_01_4

A trap box is a medium sized trap used by apprentice trappers.

Usage

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

Trapping

Main article: Trapping

Trap boxes can be used to catch rabbits and squirrels.

Catch chance:
Rabbit 30%
Squirrel 25%

Crafting

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

Trapping

Main article: Trapping
Product Ingredients Tools Requirements Workstation XP
TrapBox.png
Trap Box
Plank.png Plank ×4
Nails.png Nails ×7

Handsaw.png
Saw (tag)
Carpentry 1
(and)
Trapping 2
none 1 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 TrapBox
    {
        DisplayCategory = Trapping,
        Weight	=	1,
        Type	=	Normal,
        DisplayName	=	Trap Box,
        Icon	=	TrapBox,
        Trap    =   true,
    }

Tile

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

Retrieved: Build 41.78.16
local trapBox = {};
trapBox.type = "Base.TrapBox";
trapBox.sprite = "constructedobjects_01_4";
trapBox.northSprite = "constructedobjects_01_7";
trapBox.closedSprite = "constructedobjects_01_5";
trapBox.northClosedSprite = "constructedobjects_01_6";
trapBox.trapStrength = 15;
trapBox.destroyItem = { "Base.UnusableWood", "Base.Nails", "Base.Nails" };
table.insert(Traps, trapBox);

See also