Canoe Paddle: Difference between revisions

From PZwiki
(Added basic weapon information and weapon code information from item_weapons.txt)
 
(Add header, navbox, format code)
Line 1: Line 1:
===Weapon===
{{languages}}
The Canoe Paddle is a slightly mediocre Long Blunt weapon. It is in most ways simply inferior to the Baseball Bat but especially it's lower swing speed makes it stand out specifically since it doesn't have increased damage to compensate for it.
{{header|The Game World|Items|Weapons|Melee Weapons|type=Weapon|version=Version 41|incver=61}}
{{Infobox weapon
|display_name=Canoe Paddle
|name_colour=Weapon
|name_text_colour=Weapon
|image=Image.png
|image_width=120px
|alternate_image=Paddle.png
<!--GENERAL-->
|category=Weapon
|weight=2
|equipped=Two-handed
|condition_max=10
|attachment_type=Shovel
<!--CHARACTERISTICS-->
<!--DAMAGE-->
|type=Blunt
|swing_time=2
|min_range=0.61
|max_range=1.6
|min_damage=0.5
|max_damage=1.3
|tree_damage=0
|door_damage=1
|push_back=0.3
|knockdown=0
<!--TECHNICAL DETAILS-->
|class_name=CanoePadel
}}
A '''canoe paddle''' is a long blunt weapon.  


===Item===
== Usage ==
'''''From items.txt (Project Zomboid directory/media/scripts/)'''''
A canoe paddle is an improvised long blunt weapon. It is outclassed by other long blunt weapons, such as a [[Baseball Bat]].
{{Retrieved|version=41|incver=55}}
 
<nowiki>
== Code ==
    item CanoePadel
'''''From items_weapons.txt (Project Zomboid directory/media/scripts/)'''''
        MaxRange = 1.6,
{{Retrieved|version=41|incver=61}}
        WeaponSprite = CanoePadel,
<pre> item CanoePadel
        MinAngle = 0.85,
DisplayCategory = Sports,
        Type = Weapon,
MaxRange = 1.6,
        MinimumSwingTime = 2,
WeaponSprite = CanoePadel,
        KnockBackOnNoDeath = FALSE,
MinAngle = 0.85,
        SwingAmountBeforeImpact = 0.02,
Type = Weapon,
        Categories = Improvised;Blunt,
MinimumSwingTime = 2,
        ConditionLowerChanceOneIn = 10,
KnockBackOnNoDeath = FALSE,
        Weight = 2,
SwingAmountBeforeImpact = 0.02,
        SplatNumber = 1,
Categories = Improvised;Blunt,
        PushBackMod = 0.3,
ConditionLowerChanceOneIn = 10,
        SubCategory = Swinging,
Weight = 2,
        ConditionMax = 10,
SplatNumber = 1,
        MaxHitCount = 3,
PushBackMod = 0.3,
        DoorDamage = 1,
SubCategory = Swinging,
        SwingAnim = Bat,
ConditionMax = 10,
        DisplayName = Canoe Paddle,
MaxHitCount = 3,
        MinRange = 0.61,
DoorDamage = 1,
        SwingTime = 2,
SwingAnim = Bat,
        KnockdownMod = 0,
DisplayName = Canoe Paddle,
        SplatBloodOnNoDeath = FALSE,
MinRange = 0.61,
        Icon = Paddle,
SwingTime = 2,
        RunAnim = Run_Weapon2,
KnockdownMod = 0,
        IdleAnim = Idle_Weapon2,
SplatBloodOnNoDeath = FALSE,
        BreakSound =   CanoePaddleBreak,
Icon = Paddle,
        DoorHitSound = CanoePaddleHit,
RunAnim = Run_Weapon2,
HitSound = CanoePaddleHit,
IdleAnim = Idle_Weapon2,
HitFloorSound = CanoePaddleHit,
BreakSound = CanoePaddleBreak,
SwingSound = CanoePaddleSwing,
DoorHitSound = CanoePaddleHit,
        TreeDamage =   0,
HitSound = CanoePaddleHit,
        TwoHandWeapon = TRUE,
HitFloorSound = CanoePaddleHit,
        CriticalChance = 40,
SwingSound = CanoePaddleSwing,
        CritDmgMultiplier = 2,
TreeDamage = 0,
        MinDamage = 0.5,
TwoHandWeapon = TRUE,
        MaxDamage = 1.3,
CriticalChance = 40,
        BaseSpeed = 0.85,
CritDmgMultiplier = 2,
        AttachmentType = Shovel,
MinDamage = 0.5,
        {</nowiki>
MaxDamage = 1.3,
BaseSpeed = 0.85,
AttachmentType = Shovel,
</pre>
 
{{Navbox_weapons}}

Revision as of 20:56, 15 December 2021

Canoe Paddle
Canoe Paddle
Paddle.png
General
Category Weapon
Encumbrance
Heavy Load
2
Equipped Two-handed
Condition max. 10
Skill Long Blunt
Attachment Back
Damage
Type Blunt
Attack speed 2
Range 0.61–1.6 tiles
Damage 0.5–1.3
Tree damage 0
Door damage 1
Knockback 0.3
Knockdown 0
Technical details
Base ID CanoePadel

A canoe paddle is a long blunt weapon.

Usage

A canoe paddle is an improvised long blunt weapon. It is outclassed by other long blunt weapons, such as a Baseball Bat.

Code

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

	item CanoePadel
		DisplayCategory			= Sports,
		MaxRange			= 1.6,
		WeaponSprite			= CanoePadel,
		MinAngle			= 0.85,
		Type				= Weapon,
		MinimumSwingTime		= 2,
		KnockBackOnNoDeath		= FALSE,
		SwingAmountBeforeImpact		= 0.02,
		Categories			= Improvised;Blunt,
		ConditionLowerChanceOneIn	= 10,
		Weight				= 2,
		SplatNumber			= 1,
		PushBackMod			= 0.3,
		SubCategory			= Swinging,
		ConditionMax			= 10,
		MaxHitCount			= 3,
		DoorDamage			= 1,
		SwingAnim			= Bat,
		DisplayName			= Canoe Paddle,
		MinRange			= 0.61,
		SwingTime			= 2,
		KnockdownMod			= 0,
		SplatBloodOnNoDeath		= FALSE,
		Icon				= Paddle,
		RunAnim				= Run_Weapon2,
		IdleAnim			= Idle_Weapon2,
		BreakSound			= CanoePaddleBreak,
		DoorHitSound			= CanoePaddleHit,
		HitSound			= CanoePaddleHit,
		HitFloorSound			= CanoePaddleHit,
		SwingSound			= CanoePaddleSwing,
		TreeDamage			= 0,
		TwoHandWeapon			= TRUE,
		CriticalChance			= 40,
		CritDmgMultiplier		= 2,
		MinDamage			= 0.5,
		MaxDamage			= 1.3,
		BaseSpeed			= 0.85,
		AttachmentType			= Shovel,