Table Leg: Difference between revisions

From PZwiki
(Added the weapon code information from the project zomboid "item_weapons.txt")
 
m (Automated Formatting)
 
(17 intermediate revisions by 5 users not shown)
Line 1: Line 1:
===Item===
{{Header|Project Zomboid|Items|Weapons|Melee weapons|Short blunt weapons}}
'''''From items.txt (Project Zomboid directory/media/scripts/)'''''
{{Page version|41.78.16}}
{{Retrieved|version=41|incver=55}}
{{Infobox item
<nowiki>
|name=Table Leg
item TableLeg
|model=TableLeg_Model.png
|icon=TableLeg.png
|icon_name=Table Leg
<!--GENERAL-->
|category=Weapon
|weight=1.5
|equipped=One-handed
|condition_max=4
<!--CHARACTERISTICS-->
<!--DAMAGE-->
|type=SmallBlunt
|base_speed=1
|min_range=0.61
|max_range=1
|min_damage=0.5
|max_damage=0.9
|door_damage=5
|push_back=0.3
|knockdown=2
<!--TECHNICAL DETAILS-->
|item_id=Base.TableLeg
}}
A '''table leg''' is a short blunt [[Weapons|weapon]].
 
== Usage ==
A table leg functions as an improvised weapon with low durability and damage. It deals moderate damage to doors, however.
 
==Condition==
The table leg has a maximum condition of 4. Its rate of degradation is influenced by the [[Skills|short blunt]] and [[Skills|maintenance]] skills. The chance of losing [[durability]] can be simplified to the following formula: <code>1 in (3 + maintenanceMod &times; 2)</code>. Where "maintenanceMod" is calculated using the short blunt and maintenance skills.<br>
Below is an example of the chance of losing durability at varying levels of the [[Skills|maintenance]] and [[Skills|short blunt]] skills.
{{Durability weapon|3}}
 
== Code ==
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 804
  | source = items_weapons.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item TableLeg
    {
        DisplayCategory = WeaponCrafted,
         MaxRange = 1,
         MaxRange = 1,
         WeaponSprite = TableLeg,
         WeaponSprite = TableLeg,
Line 38: Line 82:
         MaxDamage = 0.9,
         MaxDamage = 0.9,
         BaseSpeed = 1,
         BaseSpeed = 1,
        {</nowiki>
    }
}}
}}
 
==See also==
*[[Chair Leg]]
*[[Large Table]]
*[[Pickaxe Handle]]
*[[Small Table]]
 
{{Navbox items|blunt}}

Latest revision as of 12:39, 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]
Table Leg
TableLeg Model.png
General
Category
Weapon
Encumbrance
Moodle Icon HeavyLoad.png
1.5
Equipped
One-handed
Properties
Max condition
4
Performance
Damage
0.5–0.9
Door damage
5
Range
0.61–1
Attack speed
1
Knockback
0.3
Knockdown
2
Technical
Item ID
Base.TableLeg

A table leg is a short blunt weapon.

Usage

A table leg functions as an improvised weapon with low durability and damage. It deals moderate damage to doors, however.

Condition

The table leg has a maximum condition of 4. 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 (3 + 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/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%)

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 TableLeg
    {
        DisplayCategory = WeaponCrafted,
        MaxRange	=	1,
        WeaponSprite	=	TableLeg,
        MinAngle	=	0.65,
        Type	=	Weapon,
        MinimumSwingTime	=	4,
        KnockBackOnNoDeath	=	FALSE,
        SwingAmountBeforeImpact	=	0.02,
        Categories	=	Improvised;SmallBlunt,
        ConditionLowerChanceOneIn	=	3,
        Weight	=	1.5,
        SplatNumber	=	1,
        PushBackMod	=	0.3,
        SubCategory	=	Swinging,
        ConditionMax	=	4,
        MaxHitCount	=	2,
        DoorDamage	=	5,
        SwingAnim	=	Bat,
        DisplayName	=	Table Leg,
        MinRange	=	0.61,
        SwingTime	=	4,
        KnockdownMod	=	2,
        SplatBloodOnNoDeath	=	FALSE,
        Icon	=	TableLeg,
        BreakSound  =   TableLegBreak,
        DoorHitSound = TableLegHit,
		HitSound = TableLegHit,
		HitFloorSound = TableLegHit,
		SwingSound = TableLegSwing,
        TreeDamage  =   0,
        CriticalChance	=	10,
        CritDmgMultiplier = 2,
        MinDamage	=	0.5,
        MaxDamage	=	0.9,
        BaseSpeed = 1,
    }

See also