Drumstick: Difference between revisions

From PZwiki
m (→‎Code: fix code source)
m (Automated Formatting)
(17 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Languages}}
{{Header|Project Zomboid|Items|Weapons|Melee weapons|Short blunt weapons}}
{{Header|The Game World|Items|Weapons|Melee weapons|version=Version 41|incver=78.16}}
{{Page version|41.78.16}}
{{Infobox weapon
{{Infobox item
|display_name=Drumstick
|name=Drumstick
|image=Drumstick_Model.png
|model=Drumstick_Model.png
|image_width=200px
|icon=Drumsticks.png
|alternate_image=Drumsticks.png
|icon_name=Drumstick
|alternate_name=Drumstick
|alternate_link=
<!--GENERAL-->
<!--GENERAL-->
|category=Instrument
|category=Instrument
Line 27: Line 25:
|knockdown=2
|knockdown=2
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|class_name=Base.Drumstick
|item_id=Base.Drumstick
}}
}}
A '''drumstick''' is a short blunt melee [[Weapons|weapon]].
A '''drumstick''' is a short blunt melee [[Weapons|weapon]].
Line 33: Line 31:
==Usage==
==Usage==
===Weapon===
===Weapon===
The drumstick can attack up to 2 enemies at a time dealing a maximum of 0.2 damage to enemies (unless a critical hit) from up to 0.9 [[tiles]] away at an attack speed of 1.3.  
The drumstick can attack up to 2 enemies at a time dealing a maximum of 0.2 damage to enemies (unless a critical hit) from up to 0.9 [[tiles]] away at an attack speed of 1.3.


==Condition==
==Condition==
Line 41: Line 39:


==Distribution==
==Distribution==
{{Stub}}
The loot distributions can be found in the table(s) below.
 
{| class="mw-collapsible mw-collapsed wikitable theme-red" data-expandtext="{{int:show}}" data-collapsetext="{{int:hide}}" style="text-align:center; min-width:24em;"
! colspan="4" | Containers
|-
! Building/Room
! Container
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" | Chance
|-
|rowspan="2"|bedroom
|[[crate]]
|4
|1
|-
|[[crate]]
|4
|2
|-
|rowspan="2"|closet
|[[metal_shelves]]
|4
|1
|-
|[[metal_shelves]]
|4
|2
|-
|rowspan="2"|musicstore
|[[shelves]]
|4
|1
|-
|[[shelves]]
|4
|2
|}


==Gallery==
==Gallery==
Line 57: Line 91:
   | source = items_weapons.txt
   | source = items_weapons.txt
   | retrieved = true
   | retrieved = true
   | version = 41
   | version = 41.78.16
  | incver = 78.16
   | code =
   | code =
    item Drumstick
item Drumstick
{
{
    DisplayCategory = Instrument,
    DisplayCategory = Instrument,
Line 104: Line 137:
*[[Violin]]
*[[Violin]]


{{Navbox weapons}}
{{Navbox items|blunt}}
 
 
[[Category:Instruments]]

Revision as of 08:11, 14 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]
Drumstick
Drumstick Model.png
General
Category
Instrument
Encumbrance
Moodle Icon HeavyLoad.png
3
Equipped
One-handed
Skill
Properties
Max condition
1
Performance
Damage
0.1–0.2
Door damage
0
Tree damage
0
Range
0.61–0.9
Attack speed
1.3
Knockback
0.3
Knockdown
2
Crit chance
0%
Technical
Item ID
Base.Drumstick

A drumstick is a short blunt melee weapon.

Usage

Weapon

The drumstick can attack up to 2 enemies at a time dealing a maximum of 0.2 damage to enemies (unless a critical hit) from up to 0.9 tiles away at an attack speed of 1.3.

Condition

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

For how this is calculated, see: Condition
Maintenance skill Weapon skill Condition lower chance
0 0 1/1 (100%)
0 4 1/3 (33%)
0 8 1/5 (20%)
4 0 1/5 (20%)
8 0 1/9 (11%)
4 4 1/7 (14%)
4 8 1/9 (11%)
8 8 1/13 (8%)
10 10 1/15 (7%)

Distribution

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

Containers
Building/Room Container Rolls Chance
bedroom crate 4 1
crate 4 2
closet metal_shelves 4 1
metal_shelves 4 2
musicstore shelves 4 1
shelves 4 2

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 Drumstick
	{
	    DisplayCategory = Instrument,
		MaxRange	=	0.9,
		WeaponSprite	=	Drumstick,
		MinAngle	=	0.65,
		Type	=	Weapon,
		MinimumSwingTime	=	4,
		KnockBackOnNoDeath	=	FALSE,
		SwingAmountBeforeImpact	=	0.02,
		Categories	=	Improvised;SmallBlunt,
		ConditionLowerChanceOneIn	=	1,
		Weight	=	3,
		SplatNumber	=	1,
		PushBackMod	=	0.3,
		SubCategory	=	Swinging,
		ConditionMax	=	1,
		MaxHitCount	=	2,
		DoorDamage	=	0,
		SwingAnim	=	Bat,
		DisplayName	=	Drumstick,
		MinRange	=	0.61,
		SwingTime	=	4,
		KnockdownMod	=	2,
		SplatBloodOnNoDeath	=	FALSE,
		Icon	=	Drumsticks,
        BreakSound  =   DrumstickBreak,
        DoorHitSound = DrumstickHit,
		HitSound = DrumstickHit,
		HitFloorSound = DrumstickHit,
		SwingSound = DrumstickSwing,
        TreeDamage  =   0,
        CriticalChance	=	0,
        MinDamage	=	0.1,
        MaxDamage	=	0.2,
        BaseSpeed = 1.3,
	}

See also