Fork: Difference between revisions

From PZwiki
mNo edit summary
(New infobox + new layout)
Line 1: Line 1:
__NOTOC__
{{languages|Fork}}
{{languages|Fork}}
{{header|The Game World|Items|Weapons|Melee Weapons|version=Version 37|incver=8}}{{Weapons|image = Fork.png |weapontype = Melee |ammo = None|hands = One handed|weight = 0.3|mindamage = 0.1|maxdamage = 0.1|condition = 3|degrade = 1|id = Fork}}The '''Fork''' is a emergency starting weapon which can be found in most houses. Out of all the basic cutlery (butter knife, fork, spoon), the fork, similar to the spoon is a extremely low damage weapon which cannot perform the insta-kill jaw stab which comes with the [[Butter Knife]] or other advanced knives. Every hit on a zombie reduces the item condition falling by 1, and having a max of 3, it means you only get 3 hits with the fork before it breaks.
{{header|Project Zomboid|Items|Weapons|Melee Weapons|type=Weapon|version=Version 40|incver=8}}{{Infobox weapon
<br><br>
|display_name=Fork
The fork is a single attack weapon, meaning it can only concentrate on one zombie at a time, attacking two at a time is risky as only one zombie will be stopped per hit and the other could get in close enough to damage the character.
|name_colour=Weapon
<br><br>
|name_text_colour=Weapon
One if the benefits of the fork is that it is plentiful in the game world and is quite light. The fork cannot be repaired. It is recommended you use the Butter Knife compared to the fork if truely out of weapons at the start.
|image=Fork_120px.png
<br><br><br><br><br><br><br><br><br>
|category=Weapon
|weight=0.3
|equipped=One-handed
|type=Blade
|min_range=0.61
|max_range=0.9
|swing_time=2
|condition_max=3
|min_damage=0.1
|max_damage=0.1
|push_back=0.3
|knockdown=0
|class_name=Base.Fork
}}A '''fork''' is a blade melee [[weapon]].
 
==Usage==
===Weapon===
The fork is an emergency weapon with extremely low damage and cannot perform the instant kill jaw stab, which most one-handed blade weapons can do. It is also highly ineffective in a defensive situation, as it will never knockdown an opponent and only knock them back a very short distance.  
 
The fork has a very short range, making it very dangerous when fighting [[zombies]], however it does have a quick attack. It is a single-attack weapon, hitting just 1 opponent with each swing. Forks are pretty much useless in combat and should only be equipped in an emergency, or if smashing a [[window]].
 
===Breaking doors===
It is most ineffective at bashing down [[door]]s, dealing just 1 damage per hit. For comparison, an [[axe]] deals 35 damage.
 
===Chopping trees===
It cannot be used to chop trees, dealing 0 damage per hit. For comparison, an [[axe]] deals 35 damage.
 
==Condition==
The fork is a [[Skills#Blade|blade]] weapon, therefore being influenced by the blade skills: accuracy, guard and maintenance. It has a maximum condition of just 3 and will be damaged depending on the player's maintenance skill. The chance of losing durability is: <code>1 in (1 + maintenance x 2)</code>
 
===Repairing===
A fork cannot be repaired.
 
==Distribution==
Forks are an incredibly common household item found in kitchen [[Containers#Counters|counters]].
 
== Code ==
== Code ==
<nowiki>
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
item Fork
{{Retrieved|version=40|incver=8}}
<pre> item Fork
MaxRange = 0.9,
MaxRange = 0.9,
WeaponSprite = Knife,
WeaponSprite = Knife,
Line 38: Line 73:
TreeDamage  = 0,
TreeDamage  = 0,
EnduranceMod = 0.5,
EnduranceMod = 0.5,
MetalValue = 5,
MetalValue = 5,</pre>
</nowiki>
 
==See also==
*[[Butter Knife]]
*[[Spoon]]


{{Navbox/Weapons}}
{{Navbox/Weapons}}

Revision as of 15:40, 23 August 2018

Fork
Fork
General
Category Weapon
Encumbrance
Heavy Load
0.3
Equipped One-handed
Condition max. 3
Skill Blade
Damage
Type Blade
Attack speed 2
Range 0.61–0.9 tiles
Damage 0.1–0.1
Knockback 0.3
Knockdown 0
Technical details
Base ID Base.Fork

A fork is a blade melee weapon.

Usage

Weapon

The fork is an emergency weapon with extremely low damage and cannot perform the instant kill jaw stab, which most one-handed blade weapons can do. It is also highly ineffective in a defensive situation, as it will never knockdown an opponent and only knock them back a very short distance.

The fork has a very short range, making it very dangerous when fighting zombies, however it does have a quick attack. It is a single-attack weapon, hitting just 1 opponent with each swing. Forks are pretty much useless in combat and should only be equipped in an emergency, or if smashing a window.

Breaking doors

It is most ineffective at bashing down doors, dealing just 1 damage per hit. For comparison, an axe deals 35 damage.

Chopping trees

It cannot be used to chop trees, dealing 0 damage per hit. For comparison, an axe deals 35 damage.

Condition

The fork is a blade weapon, therefore being influenced by the blade skills: accuracy, guard and maintenance. It has a maximum condition of just 3 and will be damaged depending on the player's maintenance skill. The chance of losing durability is: 1 in (1 + maintenance x 2)

Repairing

A fork cannot be repaired.

Distribution

Forks are an incredibly common household item found in kitchen counters.

Code

From newitems.txt (Project Zomboid directory/media/scripts/) Retrieved: Build 40.8

	item Fork
		MaxRange			= 0.9,
		WeaponSprite			= Knife,
		MinAngle			= 0,
		Type				= Weapon,
		MinimumSwingTime		= 2,
		SwingAmountBeforeImpact		= 0.02,
		Categories			= Blade,
		Weight				= 0.3,
		ConditionLowerChanceOneIn	= 1,
		PushBackMod			= 0.3,
		MaxDamage			= 0.1,
		SubCategory			= Stab,
		AimingMod			= 0.8,
		ConditionMax			= 3,
		MaxHitCount			= 1,
		IsAimedHandWeapon		= TRUE,
		DoorDamage			= 1,
		SwingAnim			= Stab,
		CriticalChance			= 5,
		WeaponWeight			= 0.3,
		DisplayName			= Fork,
		MinRange			= 0.2,
		SwingTime			= 2,
		MinDamage			= 0.1,
		KnockdownMod			= 0,
		Icon				= Fork,
		TreeDamage  			= 0,
		EnduranceMod 			= 0.5,
		MetalValue 			= 5,

See also

Template:Navbox/Weapons