Ice Pick: Difference between revisions

From PZwiki
(Updated to 41.50 (it was unversioned and /probably/ incorrect for 40.43))
(Using non-deprecated infobox)
Line 1: Line 1:
__NOTOC__
{{notice|Standard}}
{{notice|Standard}}
{{languages|Ice Pick}}
{{languages|Ice Pick}}
{{header|The Game World|Items|Weapons|Melee Weapons|version=Version 37|incver=8}}{{Weapons|image = IcePick.png |weapontype = Melee |ammo = None|hands = One Handed|weight = 0.3|mindamage = 0.2|maxdamage = 0.4|condition = 10|degrade = 7|id = IcePick}}The '''ice pick''' is a fair secondary backup weapon (or even primary if you prefer stab-type knive weaponary). It is light, and in terms of durability, is better than the [[Kitchen Knife|kitchen knife]] but worse than the [[Hunting Knife|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.  
{{header|The Game World|Items|Weapons|Melee Weapons|version=Version 37|incver=8}}
<br><br>
{{Infobox weapon
|display_name=Ice Pick
|name_colour=Weapon
|name_text_colour=Weapon
|image=IcePick.png
|image_width=120px
<!--GENERAL-->
|category=weapon
|weight=0.3
|equipped=One-handed
|condition_max=10
|attachment_type=Screwdriver
<!--CHARACTERISTICS-->
<!--DAMAGE-->
|type=Small Blade
|swing_time=2
|min_range=0.61
|max_range=0.8
|min_damage=0.6
|max_damage=0.9
|push_back=0.3
|knockdown=0
|kill_move=Jaw Stab
<!--TECHNICAL DETAILS-->
|class_name=IcePick
}}
It is light, and in terms of durability, is better than the [[Kitchen Knife|kitchen knife]] but worse than the [[Hunting Knife|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.
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.
<br><br>
 
Its tree/door damage is negligible. (2 tree, 1 door per attack).
Its tree/door damage is negligible. (2 tree, 1 door per attack).
<br><br><br><br><br><br><br><br><br><br><br><br><br><br>
 
== Code ==
== Code ==
'''''From items_weapons.txt (Project Zomboid directory/media/scripts/)'''''
'''''From items_weapons.txt (Project Zomboid directory/media/scripts/)'''''

Revision as of 02:07, 27 May 2021

WhiskeyHalf.png
This article or section does not conform to the standards of the wiki. The pages either don't have the layout that is expected of a page like this, or the page does not provide enough information on its item. The page should be updated to have the standard that's expected, or risk having the page deleted.
Ice Pick
Ice Pick
General
Category weapon
Encumbrance
Heavy Load
0.3
Equipped One-handed
Condition max. 10
Skill Small Blade
Attachment Belt
Damage
Type Small Blade
Attack speed 2
Range 0.61–0.8 tiles
Damage 0.6–0.9
Knockback 0.3
Knockdown 0
Execution Jaw Stab
Technical details
Base ID IcePick

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).

Code

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

	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,

Template:Navbox/Weapons