Badminton Racket

From PZwiki
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Badminton Racket
BadmintonRacket Model.png
General
Category
Sports
Encumbrance
Moodle Icon HeavyLoad.png
1
Equipped
One-handed
Slot attached
Back
Skill
Properties
Max condition
4
Performance
Damage type
Blunt
Damage
0.1–0.2
Door damage
2
Tree damage
0
Range
0.61–1.25
Attack speed
1.2
Knockback
0.3
Knockdown
2
Technical
Item ID
Base.BadmintonRacket

A badminton racket is a one-handed improvised long blunt weapon.

Usage

Weapon

It has poor damage, poor durability, and high attack speed.

Breaking doors

It is very poor at breaking down doors, dealing only 2 damage per hit.

Tree chopping

It cannot be used to chop down trees.

Condition

The badminton racket has a maximum condition of 4. 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 (3 + maintenanceMod × 2). Where "maintenanceMod" is calculated using the long blunt and maintenance skills.
Below is an example of the chance of losing durability at varying levels of the maintenance and long blunt skills.

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

Repairing

Materials that can be used to repair the badminton racket, based on first time repairing.

Repair BadmintonRacket
DuctTape.png
Potentially repairs: 50%
Chance of success: 95%
Scotchtape.png
Potentially repairs: 20%
Chance of success: 95%

Distribution

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

BadmintonRacket distribution Show / Hide
Containers
Building / Room Container Rolls Chance
bedroom crate 1 0
closet crate 1 0
closet crate 4 4
garagestorage crate 4 4
garagestorage crate 1 0
schoolstorage crate 4 20
schoolstorage crate 4 10
sportstorage crate 4 10
sportstorage crate 4 20
sportstorage metal_shelves 4 10
sportstorage metal_shelves 4 20
sportstorage shelves 4 20
sportstorage shelves 4 10
sportstore shelves 4 10
sportstore shelves 4 20
storageunit crate 4 4
storageunit crate 1 0
storageunit metal_shelves 1 0
storageunit metal_shelves 4 4

Code

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

Item

Source: ProjectZomboid\media\scripts\items_weapons.txt

Retrieved: Build 41.78.16
item BadmintonRacket
    {
        DisplayCategory = Sports,
        MaxRange	=	1.25,
        WeaponSprite	=	BadmintonRacket,
        MinAngle	=	0.75,
        Type	=	Weapon,
        MinimumSwingTime	=	4,
        KnockBackOnNoDeath	=	FALSE,
        SwingAmountBeforeImpact	=	0.02,
        Categories	=	Improvised;Blunt,
        ConditionLowerChanceOneIn	=	3,
        Weight	=	1,
        SplatNumber	=	1,
        PushBackMod	=	0.3,
        SubCategory	=	Swinging,
        ConditionMax	=	4,
        MaxHitCount	=	2,
        DoorDamage	=	2,
        SwingAnim	=	Bat,
        DisplayName	=	Badminton Racket,
        MinRange	=	0.61,
        SwingTime	=	4,
        KnockdownMod	=	2,
        SplatBloodOnNoDeath	=	FALSE,
        Icon	=	BadmintonRacket,
        BreakSound  =   BadmintonRacketBreak,
        DoorHitSound = BadmintonRacketHit,
		HitSound = BadmintonRacketHit,
		HitFloorSound = BadmintonRacketHit,
		SwingSound = BadmintonRacketSwing,
        TreeDamage  =   0,
        CriticalChance	=	0,
        MinDamage	=	0.1,
        MaxDamage	=	0.2,
        BaseSpeed = 1.2,
        AttachmentType = Racket,
    }

Repair

Source: ProjectZomboid\media\scripts\fixing.txt

Retrieved: Build 41.78.16
fixing Fix Badminton Racket
    {
       Require : BadmintonRacket,

       Fixer : DuctTape=2,
       Fixer : Scotchtape=3,
    }

See also