Mouse Trap: Difference between revisions

From PZwiki
m (Automated navbox update)
m (Automated Formatting)
(3 intermediate revisions by the same user not shown)
Line 21: Line 21:
|tile_id=constructedobjects_01_18
|tile_id=constructedobjects_01_18
}}
}}
A '''mouse trap''' is a small-sized trap used by beginner trappers.
A '''mouse trap''' is a small-sized trap used by beginner trappers.


Line 43: Line 42:
! colspan="4" | Containers
! colspan="4" | Containers
|-
|-
!Building/Room
! Building/Room
!Container
! Container
! style="width: 3.2em;" |Rolls
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" |Chance
! style="width: 3.2em;" | Chance
|-
|closet
|[[crate]]
|4
|1
|-
|-
| rowspan="1"|gardenstore
|gardenstore
| [[counter]]
|[[counter]]
| 4
|4
| 8
|8
|-
|-
| rowspan="1"|gasstorage
|gasstorage
| [[counter]]
|[[counter]]
| 4
|4
| 1
|1
|-
|-
| rowspan="1"|kitchen
|kitchen
| [[counter]]
|[[counter]]
| 4
|4
| 8
|8
|-
|-
| rowspan="1"|toolstore
|toolstore
| [[counter]]
|[[counter]]
| 4
|4
| 4
|4
|}
|}


==Code==
==Code==
{{CodeBox|
{{CodeBox|
===Item===
===Item===
{{CodeSnip
{{CodeSnip
   | lang = java
   | lang = java
   | line = false
   | line = true
  | start = 2312
   | source = newitems.txt
   | source = newitems.txt
   | retrieved = true
   | retrieved = true
   | version = 41.78.16
   | version = 41.78.16
   | code =
   | code =
    item TrapMouse
item TrapMouse
     {
     {
         DisplayCategory = Trapping,
         DisplayCategory = Trapping,
Line 89: Line 95:
         MetalValue = 2,
         MetalValue = 2,
     }
     }
  }}
}}
 
===Tile===
===Tile===
{{CodeSnip
{{CodeSnip
Line 116: Line 123:
*[[Stick Trap]]
*[[Stick Trap]]


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

Revision as of 10:24, 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]
Mouse Trap
MouseTrap.png
[[File:{{{icon2}}}|Mouse Trap|]]
[[File:{{{icon3}}}|Mouse Trap|]]
[[File:{{{icon4}}}|Mouse Trap|]]
[[File:{{{icon5}}}|Mouse Trap|]]
General
Category
Item
EncumbranceMoodle Icon HeavyLoad.png
0.3
Size
1 tile
Function
Catch animals
Properties
Health
50
Strength
50
Animals
Mouse.png Rat.png
Destroy
Products
Technical
Item ID(s)
Base.TrapMouse
Tile ID(s)
constructedobjects_01_18

A mouse trap is a small-sized trap used by beginner trappers.

Usage

A mouse trap is one of several traps used in trapping to catch a variety of wildlife. However, it is the only trap that cannot be crafted.

Trapping

Main article: Trapping

Cage traps can be used to catch mice and rats.

Catch chance:
Mouse 30%
Rat 25%

Distribution

The loot distributions can be found in the table(s) below.

Containers
Building/Room Container Rolls Chance
closet crate 4 1
gardenstore counter 4 8
gasstorage counter 4 1
kitchen counter 4 8
toolstore counter 4 4

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 TrapMouse
    {
        DisplayCategory = Trapping,
        Weight	=	0.3,
        Type	=	Normal,
        DisplayName	=	Mouse Trap,
        Icon	=	Mousetrap,
        Trap    =   true,
        MetalValue = 2,
    }

Tile

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

Retrieved: Build 41.78.16
local mouseTrap = {};
mouseTrap.type = "Base.TrapMouse";
mouseTrap.sprite = "constructedobjects_01_18";
mouseTrap.closedSprite = "constructedobjects_01_19";
mouseTrap.trapStrength = 50;
mouseTrap.destroyItem = "Base.UnusableWood";
table.insert(Traps, mouseTrap);

See also