Wooden Mallet

From PZwiki
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Wooden Mallet
WoodMallet Model.png
General
Category
Weapon
Encumbrance
Moodle Icon HeavyLoad.png
1
Equipped
One-handed
Slot attached
Belt
Properties
Max condition
8
Performance
Damage
0.4–0.9
Range
0.61–1
Knockback
0.5
Knockdown
0
Technical
Item ID
Base.WoodenMallet
Too unwieldy to drive nails.
— In-game tooltip

A wooden mallet is a short blunt melee weapon.

Usage

It currently can't be used as a crafting tool, such as Hammer, Stone Hammer or Ball-peen Hammer, and is only used as a weapon.

Weapon

A wooden mallet is a short blunt weapon with high durability and moderate damage. Compared to many short blunt alternatives, a wooden mallet is considered a good secondary weapon.

Condition

The wooden mallet has a maximum condition of 8. Its rate of degradation is influenced by the short blunt and maintenance skills. The chance of losing durability can be simplified to the following formula: 1 in (20 + maintenanceMod × 2). Where "maintenanceMod" is calculated using the short blunt and maintenance skills.
Below is an example of the chance of losing durability at varying levels of the maintenance and short blunt skills.

For how this is calculated, see: Durability
Maintenance skill Weapon skill Durability lower chance
0 0 1/20 (5%)
0 4 1/22 (5%)
0 8 1/24 (4%)
4 0 1/24 (4%)
8 0 1/28 (4%)
4 4 1/26 (4%)
4 8 1/28 (4%)
8 8 1/32 (3%)
10 10 1/34 (3%)

Distribution

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

Containers
Building/Room Container Rolls Chance
SafehouseLoot counter 4 6
all toolcabinet 4 4
bedroom crate 1 0.4
butcher counter 4 8
cabinetfactory crate 4 8
cafeteriakitchen counter 4 4
closet crate 4 8
crate 4 4
crate 4 4
deepfry_kitchen counter 4 4
drugshack counter 4 4
crate 4 4
garagestorage counter 4 4
counter 4 4
generalstore metal_shelves 4 4
italiankitchen counter 4 4
pawnshop counter 4 4
toolstorestorage metal_shelves 4 4
westernkitchen counter 4 4

Code

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

Source: ProjectZomboid\media\scripts\items_weapons.txt

Retrieved: Build 41.78.16
item WoodenMallet
	{
	    DisplayCategory = ToolWeapon,
		MaxRange	=	1,
		WeaponSprite	=	WoodenMallet,
		MinAngle	=	0.65,
		Type	=	Weapon,
		MinimumSwingTime	=	3,
		KnockBackOnNoDeath	=	TRUE,
		SwingAmountBeforeImpact	=	0.02,
		Categories	=	SmallBlunt,
		ConditionLowerChanceOneIn	=	20,
		Weight	=	1,
		SplatNumber	=	1,
		PushBackMod	=	0.5,
		SubCategory	=	Swinging,
		ConditionMax	=	8,
		MaxHitCount	=	1,
		DoorDamage	=	9,
		CanBarricade	=	TRUE,
		SwingAnim	=	Bat,
		DisplayName	=	Wooden Mallet,
		MinRange	=	0.61,
		SwingTime	=	3,
		KnockdownMod	=	0,
		SplatBloodOnNoDeath	=	TRUE,
		Icon	=	WoodMallet,
		RunAnim	=	Run_Weapon2,
        IdleAnim	=	Idle_Weapon2,
        BreakSound  =   WoodenMalletBreak,
        DoorHitSound = WoodenMalletHit,
		HitSound = WoodenMalletHit,
		HitFloorSound = WoodenMalletHit,
		SwingSound = WoodenMalletSwing,
        TreeDamage  =   0,
        MetalValue = 25,
        CriticalChance	=	17,
        CritDmgMultiplier = 3,
        MinDamage	=	0.4,
        MaxDamage	=	0.9,
        BaseSpeed = 1.1,
		WeaponLength = 0.23,
		AttachmentType = Hammer,
		Tooltip = Tooltip_no_nails,
  	}

See also