Butter Knife: Difference between revisions

From PZwiki
m (Tickleman moved page Butter Knife to Butter Knife over redirect: Official name in game)
(Updated description and code to the latest version)
Line 7: Line 7:
}}
}}


The butter knife is a stabbing weapon found in Project zomboid. It takes about 3-6 decently aimed hits to kill a zombie. Paired up with its short range and its low knockback, it makes it unable to fight large groups of zombies. It is best used in last resort situations or in situations where one has to fight only 1-2 zombies at a time, because it is a stabbing weapon. The butter knife has extremely low door damage, so something else should be used to destroy doors. However, the butter knife is extremely lightweight.
The butter knife is a stabbing weapon found in Project zomboid. It takes about 3-6 decently aimed hits to kill a zombie. Paired up with its short range and its low knockback, it makes it unable to fight large groups of zombies. It is best used in last resort situations or in situations where one has to fight only 1-2 zombies at a time, because it is a stabbing weapon. The butter knife has extremely low door damage, so something else should be used to destroy doors. However, the butter knife is extremely lightweight. Unlike [[Spoon]] and [[Fork]], Butter Knife can be used to perform deadly close skill move, Jaw Stab just like the [[Kitchen Knife]], [[Screwdriver]], [[Hunting Knife]], [[Ice Pick]] and [[Letter Opener]]. It also have a bit more damage and range. Butter knives are abundant in kitchens just like most other stabbing weapons (Spoon, Fork, Kitchen Knife).


== Code ==
== Code ==
  <nowiki>item ButterKnife
  <nowiki>
{
item ButterKnife
MaxRange = 1,
{
MaxRange = 0.9,
WeaponSprite = Knife,
WeaponSprite = Knife,
MinAngle = 0,
MinAngle = 0,
Line 28: Line 29:
AimingMod = 0.8,
AimingMod = 0.8,
CloseKillMove = Jaw_Stab,
CloseKillMove = Jaw_Stab,
ConditionMax = 10,
ConditionMax = 5,
MaxHitCount = 1,
MaxHitCount = 1,
IsAimedHandWeapon = TRUE,
IsAimedHandWeapon = TRUE,
Line 41: Line 42:
SplatBloodOnNoDeath = FALSE,
SplatBloodOnNoDeath = FALSE,
Icon = KnifeButter,
Icon = KnifeButter,
}</nowiki>
RunAnim = Run_Weapon2,
        IdleAnim = Idle_Weapon2,
        BreakSound  =  PZ_MetalSnap,
        TreeDamage  =  0,
        EnduranceMod = 0.5,
}
</nowiki>
== History ==
== History ==



Revision as of 11:20, 11 February 2016

Template:Weapons

The butter knife is a stabbing weapon found in Project zomboid. It takes about 3-6 decently aimed hits to kill a zombie. Paired up with its short range and its low knockback, it makes it unable to fight large groups of zombies. It is best used in last resort situations or in situations where one has to fight only 1-2 zombies at a time, because it is a stabbing weapon. The butter knife has extremely low door damage, so something else should be used to destroy doors. However, the butter knife is extremely lightweight. Unlike Spoon and Fork, Butter Knife can be used to perform deadly close skill move, Jaw Stab just like the Kitchen Knife, Screwdriver, Hunting Knife, Ice Pick and Letter Opener. It also have a bit more damage and range. Butter knives are abundant in kitchens just like most other stabbing weapons (Spoon, Fork, Kitchen Knife).

Code

	item ButterKnife
	{
		MaxRange	=	0.9,
		WeaponSprite	=	Knife,
		MinAngle	=	0,
		Type	=	Weapon,
		MinimumSwingTime	=	2,
		KnockBackOnNoDeath	=	FALSE,
		SwingAmountBeforeImpact	=	0.02,
		Categories	=	Blade,
		ConditionLowerChanceOneIn	=	1,
		Weight	=	0.3,
		SplatNumber	=	0,
		PushBackMod	=	0.3,
		MaxDamage	=	0.2,
		SubCategory	=	Stab,
		AimingMod	=	0.8,
		CloseKillMove = Jaw_Stab,
		ConditionMax	=	5,
		MaxHitCount	=	1,
		IsAimedHandWeapon	=	TRUE,
		DoorDamage	=	1,
		SwingAnim	=	Stab,
		WeaponWeight	=	0.3,
		DisplayName	=	Butter Knife,
		MinRange	=	0.61,
		SwingTime	=	2,
		MinDamage	=	0.1,
		KnockdownMod	=	0,
		SplatBloodOnNoDeath	=	FALSE,
		Icon	=	KnifeButter,
		RunAnim	=	Run_Weapon2,
        IdleAnim	=	Idle_Weapon2,
        BreakSound  =   PZ_MetalSnap,
        TreeDamage  =   0,
        EnduranceMod = 0.5,
	}

History

Alpha
RC 2.9 Added to the game.

See Also

Template:Navbox/Weapons