Ice Pick: Difference between revisions

From PZwiki
(added model image + changed navbox + updated to build 41.53)
m (Add gallery)
Line 1: Line 1:
{{languages}}
{{Languages}}{{Header|The Game World|Items|Weapons|Melee Weapons|version=Version 41|incver=53}}
{{header|The Game World|Items|Weapons|Melee Weapons|version=Version 41|incver=53}}
{{Infobox weapon
{{Infobox weapon
|display_name=Ice Pick
|display_name=Ice Pick
Line 43: Line 42:
|}
|}


== Code ==
==Gallery==
<gallery style="image-rendering:optimizeSpeed;image-rendering:-moz-crisp-edges;image-rendering:-o-crisp-edges;image-rendering:-webkit-optimize-contrast;image-rendering:optimize-contrast;image-rendering:pixelated;image-rendering:crisp-edges;-ms-interpolation-mode:nearest-neighbor">
IcePick-old.png|Old icon.
</gallery>
 
==Code==
'''''From items_weapons.txt (Project Zomboid directory/media/scripts/)'''''
'''''From items_weapons.txt (Project Zomboid directory/media/scripts/)'''''
{{Retrieved|version=41|incver=53}}
{{Retrieved|version=41|incver=53}}
<pre>   item IcePick
<pre>
    item IcePick
{
{
MaxRange = 0.8,
MaxRange = 0.8,
Line 90: Line 95:
HitSound = BladeHit,
HitSound = BladeHit,
AttachmentType = Screwdriver,
AttachmentType = Screwdriver,
     }</pre>
     }
</pre>


==See also==
==See also==
Line 96: Line 102:
*[[Scissors]]
*[[Scissors]]


{{Navbox_weapons}}
{{Navbox weapons}}

Revision as of 00:12, 1 May 2023

Ice Pick
Ice Pick
Ice Pick
General
Category Weapon
Encumbrance
Heavy Load
0.3
Equipped One-handed
Condition max. 10
Skill Short Blade
Attachment Belt
Damage
Type SmallBlade
Attack speed 2
Range 0.61–0.8 tiles
Damage 0.6–0.9
Knockback 0.3
Execution Jaw Stab
Technical details
Base ID IcePick

A ice pick is a short blade melee weapon.

Usage

It is light, and in terms of durability, is better than the kitchen knife but worse than the hunting knife. As the Ice Pick is one of the weapons with the 'Jaw Stab' attack, it can kill a zombie instantly if close enough and timed correctly.

The Ice Pick is a single attack weapon, so it is best if used in single combat or if zombies are relatively spread out when attacking.

Its tree/door damage is negligible. (2 tree, 1 door per attack).

Crafting

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2 Ingredient 3
SpearIcePick.png
Spear with Ice Pick
0 XP none SpearStick.png
Crafted Spear
(consumed)
IcePick.png
Ice Pick
(consumed)
DuctTape.png
Duct Tape (2 units)
(consumed)
IcePick.png
Ice Pick
0 XP none SpearIcePick.png
Spear with Ice Pick
(consumed)


Gallery

Code

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

    item IcePick
	{
	MaxRange	=	0.8,
	WeaponSprite	=	IcePick,
	MinAngle	=	0.65,
	Type	=	Weapon,
	MinimumSwingTime	=	2,
	KnockBackOnNoDeath	=	FALSE,
	SwingAmountBeforeImpact	=	0.02,
	Categories	=	SmallBlade,
	ConditionLowerChanceOneIn	=	7,
	Weight	=	0.3,
	SplatNumber	=	4,
	PushBackMod	=	0.3,
	SubCategory	=	Stab,
	AimingMod	=	0.8,
	ConditionMax	=	10,
	MaxHitCount	=	1,
	IsAimedHandWeapon	=	TRUE,
	DoorDamage	=	1,
	SwingAnim	=	Stab,
	DisplayName	=	Ice Pick,
	MinRange	=	0.61,
	CloseKillMove = Jaw_Stab,
	SwingTime	=	2,
	KnockdownMod	=	0,
	SplatBloodOnNoDeath	=	TRUE,
	Icon	=	IcePick,
	RunAnim	=	Run_Weapon2,
        IdleAnim	=	Idle_Weapon2,
        TreeDamage  =   2,
        BreakSound  =   BreakMetalItem,
        EnduranceMod = 0.5,
        CriticalChance	=	10,
        CritDmgMultiplier = 5,
        MinDamage	=	0.6,
        MaxDamage	=	0.9,
	WeaponLength = 0.25,
        DamageCategory = Slash,
        DamageMakeHole = TRUE,
        HitFloorSound	=	BladeHit,
        ImpactSound	=	BladeHit,
	HitSound	=	BladeHit,
	AttachmentType = Screwdriver,
    }

See also