Hand Axe: Difference between revisions

From PZwiki
(Updated the code)
(Updated to 41.78.16 and now using the latest recipe template.)
Line 1: Line 1:
{{languages|Hand Axe}}
{{languages|Hand Axe}}
{{header|The Game World|Items|Tools|type=Tool|version=Version 41|incver=50}}
{{header|The Game World|Items|Tools|type=Tool|version=Version 41|incver=78.16}}
{{Infobox weapon
{{Infobox weapon
|display_name=Hand Axe
|display_name=Hand Axe
Line 60: Line 60:
== Crafting ==
== Crafting ==
=== Cooking ===
=== Cooking ===
{{Crafting header|ing=2}}<!-- Automatically generated by ReLookup. Subject RecipeLookup: 2016 -->
{{Crafting header|ing=2}}
{{Crafting/core|ing=2
{{Crafting cooking|401|ing=2}}
| product_image = [[File:Watermelon Slice.png|link=Watermelon Slice|Watermelon Slice]] | product_name = [[Watermelon Slice]] | product_quantity = x10
| xp = <!-- Not present in the old template. Please fill in manually. -->
| sl = ''none''
| req =
| f1 = [[File:Watermelon.png|link=Watermelon|Watermelon]] | i1 = [[Watermelon]] | q1 = x1 | tag1 = (consumed)
| f2 = [[File:Saw.png]] | i2 = [[Hand Axe]]<br>or<br>[[Kitchen Knife]]<br>or<br>[[Saw]]<br>or<br>[[Stone Knife]]<br>or<br>[[Axe]]<br>or<br>[[Hunting Knife]]<br>or<br>[[Machete]]<br>or<br>[[Meat Cleaver]]<br>or<br>[[Stone Axe]]<br>or<br>[[Wood Axe]]<br>or<br> | q2 = x1
}}
|}
|}


Line 78: Line 71:
== Code ==
== Code ==
'''''From items_weapons.txt (Project Zomboid directory/media/scripts/)'''''
'''''From items_weapons.txt (Project Zomboid directory/media/scripts/)'''''
{{Retrieved|version=41|incver=50}}
{{Retrieved|version=41|incver=78.16}}
<pre>
<pre>
     item HandAxe
     item HandAxe
{
{
    DisplayCategory = ToolWeapon,
DisplayCategory = ToolWeapon,
MaxRange = 1.1,
MaxRange = 1.1,
WeaponSprite = HandAxe,
WeaponSprite = HandAxe,
Line 106: Line 99:
SplatBloodOnNoDeath = FALSE,
SplatBloodOnNoDeath = FALSE,
Icon = AxeHand,
Icon = AxeHand,
        BreakSound  =  HandAxeBreak,
BreakSound  =  HandAxeBreak,
        DoorHitSound = HandAxeHit,
DoorHitSound = HandAxeHit,
        HitSound = HandAxeHit,
HitSound = HandAxeHit,
        HitFloorSound = HandAxeHit,
HitFloorSound = HandAxeHit,
SwingSound = HandAxeSwing,
SwingSound = HandAxeSwing,
        TreeDamage  =  15,
TreeDamage  =  15,
        CriticalChance = 15,
CriticalChance = 15,
        CritDmgMultiplier = 5,
CritDmgMultiplier = 5,
        MinDamage = 0.7,
MinDamage = 0.7,
        MaxDamage = 1.5,
MaxDamage = 1.5,
        BaseSpeed = 1,
BaseSpeed = 1,
      WeaponLength = 0.35,
WeaponLength = 0.35,
      DamageCategory = Slash,
DamageCategory = Slash,
        DamageMakeHole = TRUE,
DamageMakeHole = TRUE,
        AttachmentType = Hammer,
AttachmentType = Hammer,
        Tags = ChopTree;CutPlant,
Tags = ChopTree;CutPlant,
   }
   }
</pre>
</pre>


{{Navbox_weapons}}
{{Navbox_weapons}}

Revision as of 03:09, 28 March 2023

The Game WorldItemsToolsHand Axe
Hand Axe
Hand Axe
AxeHand.png
General
Category Tool
Encumbrance
Heavy Load
2
Equipped One-handed
Condition max. 10
Skill Axe
Attachment Belt
Damage
Type Axe
Attack speed 4
Range 0.61–1.1 tiles
Damage 0.7–1.5
Tree damage 15
Door damage 20
Knockback 0.3
Knockdown 2
Technical details
Base ID HandAxe

A hand axe is a one-handed weapon and tool. The weapon can be attached to the left or right slot of a Belt for quick access and weight reduction.

Usage

Pros Cons
  • Fastest swing speed of any axe.
  • Weighs less than most axes.
  • Can be used as an effective tool for chopping down trees and breaking down doors.
  • Not too difficult to find.
  • Shortest range of any axe.
  • Deals less damage than most axes.
  • Not as durable as most axes.
  • Tied with the Stone Axe for lowest critical hit chance of any axe.

Chopping trees

A hand axe is a decent choice when chopping trees and collecting logs to turn into planks using a saw. It does 15 damage per swing. For comparison, a regular axe deals 35.

Breaking doors

A hand axe is a decent choice when breaking down doors. It does 20 damage per swing. For comparison, a regular axe deals 35.

Distribution

  • The best method of finding a hand axe is looting places like hardware stores and industrial locations such as warehouses, factories and storage units. It can also sometimes be found in garages.
  • Hand axes can also be found inside of barricaded buildings and carpenter's houses.
  • Occasionally, some zombies can be found with hand axes stuck to them.

Crafting

Cooking

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2
WatermelonSliced.png
Watermelon Slice x10
0.75 Cooking none
(keep)
Watermelon.png
Watermelon
(consumed)

Gallery

Code

From items_weapons.txt (Project Zomboid directory/media/scripts/) Retrieved: Build 41.78.16

    item HandAxe
	{
		DisplayCategory = ToolWeapon,
		MaxRange	=	1.1,
		WeaponSprite	=	HandAxe,
		MinAngle	=	0.67,
		Type	=	Weapon,
		MinimumSwingTime	=	3,
		KnockBackOnNoDeath	=	FALSE,
		SwingAmountBeforeImpact	=	0.02,
		Categories	=	Axe,
		ConditionLowerChanceOneIn	=	15,
		Weight	=	2,
		SplatNumber	=	2,
		PushBackMod	=	0.3,
		SubCategory	=	Swinging,
		ConditionMax	=	10,
		MaxHitCount	=	2,
		DoorDamage	=	20,
		SwingAnim	=	Bat,
		DisplayName	=	Hand Axe,
		MinRange	=	0.61,
		SwingTime	=	4,
		KnockdownMod	=	2,
		SplatBloodOnNoDeath	=	FALSE,
		Icon	=	AxeHand,
		BreakSound  =   HandAxeBreak,
		DoorHitSound = HandAxeHit,
		HitSound = HandAxeHit,
		HitFloorSound = HandAxeHit,
		SwingSound = HandAxeSwing,
		TreeDamage  =   15,
		CriticalChance	=	15,
		CritDmgMultiplier = 5,
		MinDamage	=	0.7,
		MaxDamage	=	1.5,
		BaseSpeed = 1,
		WeaponLength = 0.35,
		DamageCategory = Slash,
		DamageMakeHole = TRUE,
		AttachmentType = Hammer,
		Tags = ChopTree;CutPlant,
  	}