Lacrosse Stick

From PZwiki
(Redirected from Lacrosse Stick)
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Lacrosse Stick
LaCrosseStick Model.png
General
Category
Sports
Encumbrance
Moodle Icon HeavyLoad.png
0.4
Equipped
Two-handed
Slot attached
Back
Properties
Max condition
10
Performance
Damage
0.3–0.7
Door damage
1
Range
0.61–1.6
Knockback
0.3
Knockdown
0
Technical
Item ID
Base.LaCrosseStick

A lacrosse stick is an improvised long blunt weapon.

Usage

A lacrosse stick can be used as an improvised weapon. It has average durability and damage, but can hit two zombies simultaneously and has longer than average maximum range.

Condition

The lacrosse stick 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 varying levels of the maintenance and long blunt skills.

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.

LaCrosseStick distribution Show / Hide
Effective chance calculations are based off of default loot settings, and median zombie density. The higher the density of zombies in an area, the higher the effective chance of an item spawning. Chance is also influenced by the lucky and unlucky traits.
Containers
Building/Room Container Effective chance
bedroom crate 0.53%
closet crate 0.53%
closet crate 6.29%
garagestorage crate 0.53%
garagestorage crate 6.29%
livingroom wardrobe 6.29%
schoolstorage crate 23.28%
schoolstorage crate 41.14%
sportstorage crate 23.28%
sportstorage crate 41.14%
sportstorage metal_shelves 23.28%
sportstorage metal_shelves 41.14%
sportstorage shelves 23.28%
sportstorage shelves 41.14%
sportstore shelves 23.28%
sportstore shelves 41.14%
storageunit crate 0.53%
storageunit crate 6.29%
storageunit metal_shelves 0.53%
storageunit metal_shelves 6.29%

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 LaCrosseStick
    {
        DisplayCategory = Sports,
        MaxRange	=	1.6,
        WeaponSprite	=	LaCrosseStick,
        MinAngle	=	0.85,
        Type	=	Weapon,
        MinimumSwingTime	=	2,
        KnockBackOnNoDeath	=	FALSE,
        SwingAmountBeforeImpact	=	0.02,
        Categories	=	Improvised;Blunt,
        ConditionLowerChanceOneIn	=	10,
        Weight	=	0.4,
        SplatNumber	=	1,
        PushBackMod	=	0.3,
        SubCategory	=	Swinging,
        ConditionMax	=	10,
        MaxHitCount	=	3,
        DoorDamage	=	1,
        SwingAnim	=	Bat,
        DisplayName	=	LaCrosse Stick,
        MinRange	=	0.61,
        SwingTime	=	2,
        KnockdownMod	=	0,
        SplatBloodOnNoDeath	=	FALSE,
        Icon	=	LacrosseStick,
        RunAnim	=	Run_Weapon2,
        IdleAnim	=	Idle_Weapon2,
        BreakSound  =   LacrosseStickBreak,
        DoorHitSound = LacrosseStickHit,
		HitSound = LacrosseStickHit,
		HitFloorSound = LacrosseStickHit,
		SwingSound = LacrosseStickSwing,
        TreeDamage  =   0,
        TwoHandWeapon = TRUE,
        CriticalChance	=	30,
        CritDmgMultiplier = 2,
        MinDamage	=	0.3,
        MaxDamage	=	0.7,
        BaseSpeed = 0.9,
        AttachmentType = Shovel,
    }

See also