Badminton Racket: Difference between revisions

From PZwiki
(creation)
 
m (Removed Testing tag due to Build 41 being stable.)
Line 1: Line 1:
{{Testing|build=[[Build 41]]}}
{{languages|Badminton Racket}}
{{languages|Badminton Racket}}
{{header|The Game World|Items|Weapons|Melee Weapons|type=Weapon|version=Version 41|incver=54}}
{{header|The Game World|Items|Weapons|Melee Weapons|type=Weapon|version=Version 41|incver=54}}

Revision as of 20:29, 26 December 2021

The Game WorldItemsWeaponsMelee WeaponsBadminton Racket
Badminton Racket
Badminton Racket
General
Category Weapon
Encumbrance
Heavy Load
1
Equipped One-handed
Condition max. 4
Skill Long Blunt
Attachment Back
Damage
Type Blunt
Attack speed 4
Range 0.61–1.25 tiles
Damage 0.1–0.2
Door damage 2
Knockback 0.3
Knockdown 2
Technical details
Base ID BadmintonRacket

The badminton racket is a one handed long blunt weapon.

Usage

Weapon

It has poor damage, poor durability and a long swing time.

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

It is a long blunt weapon. It has a maximum condition of 4 and will be damaged depending on the player's maintenance skill. The chance of losing durability is: 1 in (3 + maintenance x 2)

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

Buildings

It can be found inside crates in garages and storage units

Code

Item

From items.txt (Project Zomboid directory/media/scripts/) Retrieved: Build 41.54

	
	item BadmintonRacket
		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

From fixing.txt (Project Zomboid directory/media/scripts/) Retrieved: Build 41.54

   fixing Fix Badminton Racket
   {
      Require : BadmintonRacket,
      Fixer : DuctTape=2,
      Fixer : Scotchtape=3,
   }