Spoon: Difference between revisions

From PZwiki
m (dot)
(Updated page, +navbar, +new description + code, +categories. - history (redundant))
Line 1: Line 1:
{{languages}}
__NOTOC__
 
{{languages|Spoon}}
{{Items
<div class="header" style="margin: 5px; align: right; background: #C3E4ED; padding: 13px; text-align: left; font-size: 100%; color:#000000; border: 1px solid #9AC0CD"> <!-- Code for Background Colour -->
|image = Spoon.png
<div style="float: right;background: #C3E4ED;border: 1px solid #9AC0CD; margin: -30pt -10.5pt">    '''Page Updated @ Version: 34.28'''    </div><!-- Code for Version Tag at top -->
<div style="float: left;background: #C3E4ED;border: 1px solid #9AC0CD; margin: -30pt -10.5pt">   '''Navigation''' - [[:Category:Main|Main Index]] -> [[:Category:The_Game_World|The Game World]] -> [[:Category:Items|Items]] -> [[:Category:Weapons|Weapons]] -> [[{{PAGENAME}}]]   </div><!-- Code for Navigation Bar at top, special blank char's before '''Navigation''' to give space -->
{{Weapons
|image = Spoon.png  
|weapontype = Melee  
|weapontype = Melee  
|ammo = none
|ammo = none
|weight = 0.3
|weight = 0.3
}}
}}
 
'''The''' [[Spoon]] is a emergency starting weapon which can be found in most houses. Out of all the basic cutlery (butter knife, fork, spoon), the spoon, similar to the fork 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 spoon before it breaks.
The spoon is a stabbing weapon that was added in 0.2.0r RC2.9 along with the [[Fork]] and the [[Scissors]]. The spoon is capable of killing a zombie in 4-6 decently aimed shots. Because of its low range, low knockback, and low damage, the spoon is not fit for fighting large groups - or even multiple zombies at once. Rather, the spoon should be used if zombies could be SAFELY fought 1 by 1 or there is only one enemy. Currently spoon behaves exactly the same as fork in combat and have the same weight and durability. Spoons are abundant in kitchens just like most other stabbing weapons (Fork, [[Butter Knife]], [[Kitchen Knife]]).
<br><br>
 
The spoon 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.
 
<br><br>
One if the benefits of the spoon is that it is plentiful in the game world and is quite light. The spoon cannot be repaired. It is recommended you use the Butter Knife compared to the spoon if truely out of weapons at the start.
<br><br><br><br><br>
== Code ==
== Code ==
  <nowiki>
  <nowiki>
item Spoon
item Spoon
{
MaxRange = 0.9,
MaxRange = 0.9,
WeaponSprite = Knife,
WeaponSprite = Knife,
MinAngle = 0,
MinAngle = 0,
Type = Weapon,
Type = Weapon,
MinimumSwingTime = 2,
MinimumSwingTime = 2,
SwingAmountBeforeImpact = 0.02,
SwingAmountBeforeImpact = 0.02,
Categories = Blade,
Categories = Blade,
Weight = 0.3,
Weight = 0.3,
ConditionLowerChanceOneIn = 1,
ConditionLowerChanceOneIn = 1,
PushBackMod = 0.3,
PushBackMod = 0.3,
MaxDamage = 0.1,
MaxDamage = 0.1,
SubCategory = Stab,
SubCategory = Stab,
AimingMod = 0.8,
AimingMod = 0.8,
ConditionMax = 3,
ConditionMax = 3,
MaxHitCount = 1,
MaxHitCount = 1,
IsAimedHandWeapon = TRUE,
IsAimedHandWeapon = TRUE,
DoorDamage = 1,
DoorDamage = 1,
SwingAnim = Stab,
SwingAnim = Stab,
CriticalChance = 5,
CriticalChance = 5,
WeaponWeight = 0.3,
WeaponWeight = 0.3,
DisplayName = Spoon,
DisplayName = Spoon,
MinRange = 0.2,
MinRange = 0.2,
SwingTime = 2,
SwingTime = 2,
MinDamage = 0.1,
MinDamage = 0.1,
KnockdownMod = 0,
KnockdownMod = 0,
Icon = Spoon,
Icon = Spoon,
TreeDamage = 0,
TreeDamage =   0,
EnduranceMod = 0.5,
EnduranceMod = 0.5,
}
</nowiki>
</nowiki>
== History ==
{| class="wikitable" width="550" style="text-align:center;"
|-
! Alpha || 
|-
| RC 2.9 || Added to the game.
|}
==See Also==
* [[Fork]]


{{Navbox/Weapons}}
{{Navbox/Weapons}}
[[Category:weapons]]
[[Category:Items]]
[[Category:Items]]
[[Category:Version 0.2.0r]]
[[Category:Weapons]]
[[Category:Version 34.28]]

Revision as of 19:43, 8 September 2016


Page Updated @ Version: 34.28
   Navigation - Main Index -> The Game World -> Items -> Weapons -> Spoon   

Template:Weapons The Spoon is a emergency starting weapon which can be found in most houses. Out of all the basic cutlery (butter knife, fork, spoon), the spoon, similar to the fork 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 spoon before it breaks.

The spoon 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.

One if the benefits of the spoon is that it is plentiful in the game world and is quite light. The spoon cannot be repaired. It is recommended you use the Butter Knife compared to the spoon if truely out of weapons at the start.




Code

	
	item Spoon
		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			= Spoon,
		MinRange			= 0.2,
		SwingTime			= 2,
		MinDamage			= 0.1,
		KnockdownMod			= 0,
		Icon				= Spoon,
		TreeDamage  			= 0,
		EnduranceMod 			= 0.5,

Template:Navbox/Weapons