Canoe Paddle: Difference between revisions

From PZwiki
(Add header, navbox, format code)
m (Distribution table update)
(25 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{languages}}
{{Header|Project Zomboid|Items|Weapons|Melee weapons|Long blunt weapons}}
{{header|The Game World|Items|Weapons|Melee Weapons|type=Weapon|version=Version 41|incver=61}}
{{Page version|41.78.16}}
{{Infobox weapon
{{Infobox item
|display_name=Canoe Paddle
|name=Canoe Paddle
|name_colour=Weapon
|model=CanoePadel_Model.png
|name_text_colour=Weapon
|icon=Paddle.png
|image=Image.png
|icon_name=Canoe Paddle
|image_width=120px
|alternate_image=Paddle.png
<!--GENERAL-->
<!--GENERAL-->
|category=Weapon
|category=Sports
|weight=2
|weight=2
|equipped=Two-handed
|equipped=One-handed
|attachment_type=Shovel
|skill_type=Long Blunt
<!--PROPERTIES-->
|material=<!-- E.g. Metal -->
|material_value=<!-- E.g. MetalValue attribute -->
|condition_max=10
|condition_max=10
|attachment_type=Shovel
<!--CHARACTERISTICS-->
<!--DAMAGE-->
<!--DAMAGE-->
|type=Blunt
|damage_type=Blunt
|swing_time=2
|min_range=0.61
|max_range=1.6
|min_damage=0.5
|min_damage=0.5
|max_damage=1.3
|max_damage=1.3
|door_damage=1
|tree_damage=0
|tree_damage=0
|door_damage=1
|min_range=0.61
|max_range=1.6
|base_speed=0.85
|push_back=0.3
|push_back=0.3
|knockdown=0
|knockdown=0
<!--TECHNICAL DETAILS-->
|crit_chance=40
|class_name=CanoePadel
|crit_multiplier=2
<!-- TECHNICAL -->
|item_id=Base.CanoePadel
}}
}}
A '''canoe paddle''' is a long blunt weapon.  
A '''canoe paddle''' is a long blunt melee [[Weapons|weapon]].
 
==Usage==
===Weapon===
The canoe paddle can attack up to 3 enemies at a time dealing a maximum of 1.3 damage to enemies (unless a critical hit) from up to 1.6 [[tiles]] away at an attack speed of 0.85.
 
===Breaking doors===
It can be used to bash down [[Door|doors]], dealing 1 damage per hit.
 
==Condition==
The canoe paddle has a maximum condition of 10. Its rate of degradation is influenced by the [[Skills|long blunt]] and [[Skills|maintenance]] skills. The chance of losing [[durability]] can be simplified to the following formula: <code>1 in (10 + maintenanceMod &times; 2)</code>. Where "maintenanceMod" is calculated using the long blunt and maintenance skills.<br>
Below is an example of the chance of losing durability at different levels of [[Skills|maintenance]] and [[Skills|long blunt]] levels.
{{Durability weapon|10}}
 
==Distribution==
The loot distributions can be found in the table(s) below.
 
<!--BOT FLAG|CanoePadel|41.78.16-->
{{clear}}
<div class="togglebox theme-red">
    <div>CanoePadel distribution
        <span class="mw-customtoggle-togglebox-CanoePadel" title="{{int:show}} / {{int:hide}}" style="float:right; padding-right:30px; padding-top:4px; font-size:0.7em; font-weight:normal;">{{int:show}} / {{int:hide}}</span></div>
    <div class="mw-collapsible mw-collapsed" id="mw-customcollapsible-togglebox-CanoePadel">
    <div class="toggle-content"><div style="display: flex;"><div style="float:left;">
    {| class="wikitable theme-red" style="margin-right:15px; width:95%;"
    |+ {{ll|Containers}}
    ! Building / Room
    ! Container
    ! Rolls
    ! Chance
    |-
    | bedroom
    | {{ll|crate}}
    | 1
    | 0.1
    |-
    | closet
    | {{ll|crate}}
    | 4
    | 1.0
    |-
    | schoolstorage
    | {{ll|crate}}
    | 4
    | 20.0
    |-
    | schoolstorage
    | {{ll|crate}}
    | 4
    | 10.0
    |}
</div>
    </div><div style="clear:both;"></div>
    </div></div><div class="toggle large mw-customtoggle-togglebox-CanoePadel" title="{{int:show}}/{{int:hide}}"></div></div>
<!--END BOT FLAG|CanoePadel|41.78.16-->
{{Stub}}
 
==Gallery==
<gallery>
File:Paddle.png|Item icon
File:CanoePadel_Model.png|Item model
</gallery>


== Usage ==
==Code==
A canoe paddle is an improvised long blunt weapon. It is outclassed by other long blunt weapons, such as a [[Baseball Bat]].
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 2224
  | source = items_weapons.txt
  | retrieved = true
  | version = 41.78.16
  | code =
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,
    }
}}
}}


== Code ==
==See also==
'''''From items_weapons.txt (Project Zomboid directory/media/scripts/)'''''
*[[Canoe Paddle - Double-bladed]]
{{Retrieved|version=41|incver=61}}
<pre> 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,
</pre>


{{Navbox_weapons}}
{{Navbox items|blunt}}

Revision as of 15:08, 24 April 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Canoe Paddle
CanoePadel Model.png
General
Category
Sports
Encumbrance
Moodle Icon HeavyLoad.png
2
Equipped
One-handed
Slot attached
Back
Skill
Properties
Max condition
10
Performance
Damage type
Blunt
Damage
0.5–1.3
Door damage
1
Tree damage
0
Range
0.61–1.6
Attack speed
0.85
Knockback
0.3
Knockdown
0
Crit chance
40%
Technical
Item ID
Base.CanoePadel

A canoe paddle is a long blunt melee weapon.

Usage

Weapon

The canoe paddle can attack up to 3 enemies at a time dealing a maximum of 1.3 damage to enemies (unless a critical hit) from up to 1.6 tiles away at an attack speed of 0.85.

Breaking doors

It can be used to bash down doors, dealing 1 damage per hit.

Condition

The canoe paddle has a maximum condition of 10. Its rate of degradation is influenced by the long blunt and maintenance skills. The chance of losing durability can be simplified to the following formula: 1 in (10 + maintenanceMod × 2). Where "maintenanceMod" is calculated using the long blunt and maintenance skills.
Below is an example of the chance of losing durability at different levels of maintenance and long blunt levels.

For how this is calculated, see: Condition
Maintenance skill Weapon skill Condition lower chance
0 0 1/10 (10%)
0 4 1/12 (8%)
0 8 1/14 (7%)
4 0 1/14 (7%)
8 0 1/18 (6%)
4 4 1/16 (6%)
4 8 1/18 (6%)
8 8 1/22 (5%)
10 10 1/24 (4%)

Distribution

The loot distributions can be found in the table(s) below.

CanoePadel distribution Show / Hide
Containers
Building / Room Container Rolls Chance
bedroom crate 1 0.1
closet crate 4 1.0
schoolstorage crate 4 20.0
schoolstorage crate 4 10.0
Notebook.png
This article may need more content.
Editors are encouraged to add new material to the page while expanding upon current topics.

Gallery

Code

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

Source: ProjectZomboid\media\scripts\items_weapons.txt

Retrieved: Build 41.78.16
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,
    }

See also