Trap Crate: Difference between revisions

From PZwiki
(Created the Crate Trap page)
 
(Undo revision 316517 by Sarah52 (talk))
Tag: Undo
(31 intermediate revisions by 13 users not shown)
Line 1: Line 1:
(v32.30)
{{Header|Project Zomboid|Items|Trapping}}
{{Page version|41.78.16}}
{{Infobox tile
|name=Trap Crate
|image=CrateTrapAnim.gif
|icon=TrapCrate.png
|icon_name=Crate Trap
<!--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. 2]]
|build_tool_tag=Saw
|ingredients=[[Plank]] × 3<br>[[Nails]] × 5
<!--Disassemble-->
|destroy=true
|products=[[Scrap Wood]]<br>[[Nails]]
<!--Technical-->
|item_id=Base.TrapCrate
|tile_id=constructedobjects_01_3
}}
A '''trap crate''' is a medium-sized trap used by beginner trappers.


A medium sized trap used by beginner trappers, used to catch both [[Dead Rabbit|Rabbits]] and [[Dead Squirrel|Squirrels]].
==Usage==
A trap crate is one of several traps used in [[trapping]] to catch a variety of [[animals|wildlife]].


{| class="wikitable sortable" style="text-align:center;"
===Trapping===
|-
{{Main|Trapping}}
! class="unsortable" | Type
Trap crates can be used to catch [[rabbit]]s and [[squirrel]]s.
! class="unsortable" | Strength
{| width="100px" style="text-align:left;"
! class="unsortable" | Weight
|+ '''''Catch chance:'''''
! class="unsortable" | Chance - %
| [[File:Rabbit.png|32px|link=Dead Rabbit|Rabbit]] || 30%
! class="unsortable" | Classname
|-
|-
| [[File:Squirrel.png|32px|link=Dead Squirrel|Squirrel]] || 30%
|}
==Crafting==
To craft a trap crate, the player requires no [[Skills|skill]] but must read ''[[The Hunter Magazine|The Hunter Magazine Vol.2]]'' or have picked the [[Occupation|"Park Ranger" occupation]] or [[Traits|"Hunter" trait]] during character creation. After crafting it, you can right-click on ground and use Place Trap option to place it.
===Trapping===
{{Main|Trapping}}
{{Crafting/sandbox2
|trap_crate
}}
== Code ==
{{CodeBox|


| [[File:TRAPCrate.png|32px|link=Trap Crate|Trap Crate]] <br> [[Trap Crate]]
===Item===
| 15
{{CodeSnip
| 1
  | lang = java
| [[File:ANIMALSquirrel.png|32px|link=Dead Squirrel|Squirrel]] - 20% <br> [[File:ANIMALRabbit.png|32px|link=Dead Rabbit|Rabbit]] - 20%
  | line = true
| Base.TrapCrate
  | start = 2333
|-
  | source = newitems.txt
|}
  | retrieved = true
  | version = 41.78.16
  | code =
item TrapCrate
    {
        DisplayCategory = Trapping,
        Weight = 1,
        Type = Normal,
        DisplayName = Trap Crate,
        Icon = TrapCrate,
        Trap    =  true,
    }
}}


== Crafting ==
===Tile===
{{CodeSnip
  | lang = lua
  | line = false
  | path = ProjectZomboid\media\lua\server\Traps
  | source = TrapDefinition.lua
  | retrieved = true
  | version = 41.78.16
  | code =
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);
  }}
}}


'''As of Build 32 crafting traps requires the player to either pick "Park Ranger" profession, a "Hunter" trait on character creation or read one of the [[Recipe Magazines]] that can be found in the world.'''
==See also==
*[[Cage Trap]]
*[[Trap Box]]
*[[Snare Trap]]
*[[Stick Trap]]


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

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