Butter Knife: Difference between revisions

From PZwiki
m (Fixed Coding)
Line 4: Line 4:
|weapontype = Melee  
|weapontype = Melee  
|ammo = none
|ammo = none
|weight = 1
|weight = 0.8
}}
}}


The butter knife is a stabbing weapon found in Project zomboid. It takes about 3-5 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 also has extremely low door damage, so something else should be used to destroy doors.
The butter knife is a stabbing weapon found in Project zomboid. It takes about 3-5 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.


== Code ==
== Code ==
Line 14: Line 14:
Type = Weapon,
Type = Weapon,
DisplayName = Butter Knife,
DisplayName = Butter Knife,
    SubCategory    =    Stab,
Icon = KnifeButter,
Icon = KnifeButter,
MinAngle = 0,
MinAngle = 0,
Line 19: Line 20:
MinDamage = 0.4,
MinDamage = 0.4,
MaxRange = 0.9,
MaxRange = 0.9,
MinRange = 0.1,
MinRange = 0.61,
SwingAnim = Stab,
SwingAnim = Stab,
WeaponSprite = Knife,
WeaponSprite = Knife,
Weight = 2,
Weight = 0.8,
WeaponWeight = 0.7,
WeaponWeight = 0.7,
MinimumSwingTime = 4.1,
MinimumSwingTime = 4.1,

Revision as of 15:01, 4 May 2013

Template:Weapons

The butter knife is a stabbing weapon found in Project zomboid. It takes about 3-5 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.

Code

item ButterKnife
{
	Type				=			Weapon,
		DisplayName			=			Butter Knife,
    SubCategory    =     Stab,
		Icon				=			KnifeButter,
		MinAngle			=			0,
		MaxDamage			=			0.8,
		MinDamage			=			0.4,
		MaxRange 			= 			0.9,
		MinRange 			= 			0.61,
		SwingAnim			=			Stab,
		WeaponSprite		=			Knife,
		Weight				=			0.8,
		WeaponWeight		=			0.7,
		MinimumSwingTime 	= 			4.1,
		SwingTime			=			4.1,
		DoorDamage			=			1,
		SwingAmountBeforeImpact = 		0.02,
		MaxHitCount 		=			1,
		PushBackMod			=			0,
		KnockdownMod		=			0,
		ConditionLowerChanceOneIn = 	100,
		ConditionMax 	  	= 			1,
		Categories 			=			Blade,
		IsAimedHandWeapon	=			true,
		AimingMod			=			0.8,
}

Template:Navbox/Weapons