Stone Hammer: Difference between revisions

From PZwiki
(Standardized page and updated to 41.50)
(added model image + changed navbox & crafting table)
Line 1: Line 1:
{{languages|Stone Hammer}}
{{languages}}
{{header|The Game World|Items|Tools|version=Version 41|incver=50}}
{{header|The Game World|Items|Tools|version=Version 41|incver=50}}
{{Infobox weapon
{{Infobox weapon
Line 5: Line 5:
|name_colour=Tool
|name_colour=Tool
|name_text_colour=Tool
|name_text_colour=Tool
|image=HammerStone.png
|image=StoneHammer_Model.png
|image_width=200px
|alternate_image=HammerStone.png
|alternate_name=Stone Hammer
|alternate_link=
<!--GENERAL-->
<!--GENERAL-->
|category=Tool
|category=Tool
Line 25: Line 29:
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|ingredients=1 × [[Stone]]<br>1 × [[Tree Branch]]<br>1 × [[Ripped Sheet]] or [[Twine]]
|ingredients=1 × [[Stone]]<br>1 × [[Tree Branch]]<br>1 × [[Ripped Sheet]] or [[Twine]]
|class_name=HammerStone
|class_name=Base.HammerStone
}}
}}
A '''stone hammer''' construction tool and weapon that can be made through [[foraging]]. It is strictly worse than a [[hammer]] as both a weapon and construction tool.
A '''stone hammer''' construction tool and weapon that can be made through [[foraging]]. It is strictly worse than a [[hammer]] as both a weapon and construction tool.
Line 31: Line 35:
== Usage ==
== Usage ==
=== Construction ===
=== Construction ===
:''For main article see [[Carpentry_Guide|Carpentry Guide]].''
{{Main|Carpentry}}
A hammer or stone hammer, in combination with [[Wooden Plank|wooden planks]] and [[nails]], is required for most carpentry recipes.
A hammer or stone hammer, in combination with [[Wooden Plank|wooden planks]] and [[nails]], is required for most carpentry recipes.
It is also necessary for [[Barricade|barricading]] [[doors]] and [[window]]s.
It is also necessary for [[Barricade|barricading]] [[doors]] and [[window]]s.
Line 45: Line 49:
== Crafting ==
== Crafting ==
Stone Hammers are made up of items which are scavenged via [[Foraging]].[[Tree Branch|Tree branches]], [[stone]]s and [[ripped sheet]]s (or [[twine]]) are required.
Stone Hammers are made up of items which are scavenged via [[Foraging]].[[Tree Branch|Tree branches]], [[stone]]s and [[ripped sheet]]s (or [[twine]]) are required.
 
{{Crafting header|ing=3}}
{| class="pztable sortable" style="text-align:center;"
{{Crafting survivalist|008|ing=3}}
|-
! Name
! class="unsortable" | Recipe
! class="unsortable" | Description
! Crafting Level
{{RecipeLookup|3004}}
|}
|}


Line 115: Line 113:
* [[Hammer]]
* [[Hammer]]


{{Navbox/Tools}}{{Navbox/Weapons}}
{{Navbox_equipment}}{{Navbox_weapons}}
[[Category:Weapons]]
[[Category:Weapons]]
[[Category:Melee Weapons]]
[[Category:Melee Weapons]]

Revision as of 16:24, 30 July 2021

The Game WorldItemsToolsStone Hammer
Stone Hammer
Stone Hammer
Stone Hammer
General
Category Tool
Encumbrance
Heavy Load
1.2
Function Carpentry
Equipped One-handed
Condition max. 5
Skill Small Blunt
Attachment Belt
Damage
Type Small Blunt
Attack speed 3
Range 0.61–1.05 tiles
Damage 0.3–0.7
Knockback 0.5
Knockdown 0
Technical details
Ingredients 1 × Stone
1 × Tree Branch
1 × Ripped Sheets or Twine
Base ID Base.HammerStone

A stone hammer construction tool and weapon that can be made through foraging. It is strictly worse than a hammer as both a weapon and construction tool.

Usage

Construction

Main article: Carpentry

A hammer or stone hammer, in combination with wooden planks and nails, is required for most carpentry recipes. It is also necessary for barricading doors and windows.

A stone hammer will lose durability during construction, whereas a regular hammer will not.

Weapon

A stone hammer can be used as a low tier weapon. Compared to a regular hammer, it is heavier, less damaging, has slightly shorter range, and has a much lower durability.

Breaking doors

The crowbar is capable of breaking down doors dealing 2 damage per swing. For comparison, an axe deals 35 damage.

Crafting

Stone Hammers are made up of items which are scavenged via Foraging.Tree branches, stones and ripped sheets (or twine) are required.

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2 Ingredient 3
HammerStone.png
Stone Hammer
0 XP none Branch.png
Tree Branch
(consumed)
Rock.png
Stone
(consumed)

(consumed)

Code

Item

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

	item HammerStone
		MaxRange			= 1.05,
		WeaponSprite			= StoneHammer,
		MinAngle			= 0.65,
		Type				= Weapon,
		MinimumSwingTime		= 3,
		KnockBackOnNoDeath		= TRUE,
		SwingAmountBeforeImpact		= 0.02,
		Categories			= SmallBlunt,
		ConditionLowerChanceOneIn	= 5,
		Weight				= 1.2,
		SplatNumber			= 1,
		PushBackMod			= 0.5,
		SubCategory			= Swinging,
		ConditionMax			= 5,
		MaxHitCount			= 1,
		DoorDamage			= 2,
		CanBarricade			= TRUE,
		SwingAnim			= Bat,
		DisplayName			= Stone Hammer,
		MinRange			= 0.61,
		SwingTime			= 3,
		KnockdownMod			= 0,
		SplatBloodOnNoDeath		= TRUE,
		Icon				= HammerStone,
		RunAnim				= Run_Weapon2,
		IdleAnim			= Idle_Weapon2,
		BreakSound			= BreakMetalItem,
		TreeDamage			= 0,
		CriticalChance			= 15,
		CritDmgMultiplier		= 3,
		MinDamage			= 0.3,
		MaxDamage			= 0.7,
		BaseSpeed			= 1,
		WeaponLength			= 0.23,
		AttachmentType			= Hammer,
		Tags				= Hammer;RemoveBarricade,

Building

From perform() in ISBuildAction.lua (Project Zomboid directory/media/lua/client/BuildingObjects/TimedActions/) Retrieved: Build 41.50

    -- reduce the condition of the hammer if it's a stone hammer
    local hammer = self.character:getPrimaryHandItem()
    if hammer and hammer:getType() == "HammerStone" and ZombRand(hammer:getConditionLowerChance()) == 0 then
        hammer:setCondition(hammer:getCondition() - 1)
        ISWorldObjectContextMenu.checkWeapon(self.character);
    end


See also