Mouse Trap: Difference between revisions

From PZwiki
m (Fixed error caused by closing the missing brace)
m (Automated Formatting)
(27 intermediate revisions by 12 users not shown)
Line 1: Line 1:
(v32.30)
{{Header|Project Zomboid|Items|Trapping}}
{{Page version|41.78.16}}
{{Infobox tile
|name=Mouse Trap
|image=MouseTrap.png
|icon=Mousetrap.png
|icon_name=Mouse Trap
|category=Item
|weight=0.3
|size=1
|function=Catch [[animals]]
<!--Properties-->
|health=50
|strength=50
|animals=[[File:Mouse.png|link=Mouse]] [[File:Rat.png|link=Rat]]
<!--Disassemble-->
|destroy=true
|products=[[Scrap Wood]]
<!--Technical-->
|item_id=Base.TrapMouse
|tile_id=constructedobjects_01_18
}}
A '''mouse trap''' is a small-sized trap used by beginner trappers.


A small trap used by beginner trappers, Used to catch [[Dead Mouse|Mice]] and [[Dead Rat|Rats]]. This item can occasionally be found in many different containers throughout the game world.  
==Usage==
A mouse trap is one of several traps used in [[trapping]] to catch a variety of [[animals|wildlife]]. However, it is the only trap that cannot be crafted.


'''There is currently no way to craft a mouse trap, as of build v32.30'''
===Trapping===
{{Main|Trapping}}
Cage traps can be used to catch [[mouse|mice]] and [[rat]]s.
{| width="100px" style="text-align:left;"
|+ '''''Catch chance:'''''
| [[File:Mouse.png|32px|link=Dead Mouse|Mouse]] || 30%
|-
| [[File:Rat.png|32px|link=Dead Rat|Rat]] || 25%
|}
 
==Distribution==
The loot distributions can be found in the table(s) below.


{| class="wikitable sortable" style="text-align:center;"
{| class="mw-collapsible mw-collapsed wikitable theme-red" data-expandtext="{{int:show}}" data-collapsetext="{{int:hide}}" style="text-align:center; min-width:24em;"
! colspan="4" | Containers
|-
! Building/Room
! Container
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" | Chance
|-
|closet
|[[crate]]
|4
|1
|-
|gardenstore
|[[counter]]
|4
|8
|-
|-
! class="unsortable" | Type
|gasstorage
! class="unsortable" | Strength
|[[counter]]
! class="unsortable" | Weight
|4
! class="unsortable" | Chance - %
|1
! class="unsortable" | Classname
|-
|-
 
|kitchen
| [[File:TRAPMouse.png|32px|link=Mouse Trap|Mouse Trap]] <br> [[Mouse Trap]]
|[[counter]]
| 50
|4
| 0.3
|8
| [[File:ANIMALMouse.png|32px|link=#Mouse|Mouse]] - 20% <br> [[File:ANIMALRat.png|32px|link=#Rat|Rat]] - 15%
| Base.TrapMouse
|-
|-
|toolstore
|[[counter]]
|4
|4
|}
|}
==Code==
{{CodeBox|
===Item===
{{CodeSnip
  | lang = java
  | line = true
  | start = 2312
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item TrapMouse
    {
        DisplayCategory = Trapping,
        Weight = 0.3,
        Type = Normal,
        DisplayName = Mouse Trap,
        Icon = Mousetrap,
        Trap    =  true,
        MetalValue = 2,
    }
}}
===Tile===
{{CodeSnip
  | lang = lua
  | line = false
  | path = ProjectZomboid\media\lua\server\Traps
  | source = TrapDefinition.lua
  | retrieved = true
  | version = 41.78.16
  | code =
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==
*[[Trap Crate]]
*[[Trap Box]]
*[[Snare Trap]]
*[[Cage Trap]]
*[[Stick Trap]]
{{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