Add critical chance and critical multiplier stats to weapons.

This commit is contained in:
Avi Weinstock 2021-03-08 22:53:58 -05:00
parent 19d55b1da3
commit d8f0a1c426
296 changed files with 1359 additions and 702 deletions

View File

@ -45,6 +45,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Cliffs on steep slopes - Cliffs on steep slopes
- Giant tree sites - Giant tree sites
- Reset button for graphics settings - Reset button for graphics settings
- Gave weapons critical strike {chance, multiplier} stats
### Changed ### Changed

View File

@ -9,6 +9,8 @@ ItemDef(
power: 1.0, power: 1.0,
poise_strength: 0.75, poise_strength: 0.75,
speed: 0.0, speed: 0.0,
crit_chance: 0.1,
crit_mult: 1.0
), ),
)), )),
quality: Common, quality: Common,

View File

@ -9,7 +9,9 @@ ItemDef(
equip_time_secs: 0.0, equip_time_secs: 0.0,
power: 1.00, power: 1.00,
poise_strength: 1.00, poise_strength: 1.00,
speed: 1.0 speed: 1.0,
crit_chance: 0.0,
crit_mult: 0.0,
)), )),
) )
), ),

View File

@ -9,7 +9,9 @@ ItemDef(
equip_time_secs: 0.0, equip_time_secs: 0.0,
power: 1000.0, power: 1000.0,
poise_strength: 1000.0, poise_strength: 1000.0,
speed: 1.0 speed: 1.0,
crit_chance: 0.5,
crit_mult: 2.0,
)), )),
) )
), ),

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Minotaur Axe", name: "Minotaur Axe",
description: "Placeholder", description: "Placeholder",
kind: Tool( kind: Tool((
(
kind: AxeSimple, kind: AxeSimple,
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.5, equip_time_secs: 0.5,
power: 1.8, power: 1.8,
poise_strength: 1.00, poise_strength: 1.0,
speed: 1.0 speed: 1.0,
crit_chance: 0.18,
crit_mult: 2.8,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Adlet Bow", name: "Adlet Bow",
description: "Strips of leather are wrapped around the handle.", description: "Strips of leather are wrapped around the handle.",
kind: Tool( kind: Tool((
(
kind: Bow, kind: Bow,
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.0, equip_time_secs: 0.0,
power: 0.7, power: 0.7,
poise_strength: 0.8, poise_strength: 0.8,
speed: 0.3 speed: 0.3,
crit_chance: 0.07,
crit_mult: 1.7,
)),
)), )),
)
),
quality: Moderate, quality: Moderate,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Gnoll Staff", name: "Gnoll Staff",
description: "eekum bokum", description: "eekum bokum",
kind: Tool( kind: Tool((
(
kind: StaffSimple, kind: StaffSimple,
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.0, equip_time_secs: 0.0,
power: 0.7, power: 0.7,
poise_strength: 0.8, poise_strength: 0.8,
speed: 0.5 speed: 0.5,
crit_chance: 0.07,
crit_mult: 1.7,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Wooden Spear", name: "Wooden Spear",
description: "Testing", description: "Testing",
kind: Tool( kind: Tool((
(
kind: Spear, kind: Spear,
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.0, equip_time_secs: 0.0,
power: 0.7, power: 0.7,
poise_strength: 0.8, poise_strength: 0.8,
speed: 1.0 speed: 1.0,
crit_chance: 0.07,
crit_mult: 1.7,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Adlet Bow", name: "Adlet Bow",
description: "Strips of leather are wrapped around the handle.", description: "Strips of leather are wrapped around the handle.",
kind: Tool( kind: Tool((
(
kind: Bow, kind: Bow,
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.0, equip_time_secs: 0.0,
power: 0.3, power: 0.3,
poise_strength: 0.8, poise_strength: 0.8,
speed: 0.7 speed: 0.7,
crit_chance: 0.03,
crit_mult: 1.3,
)),
)), )),
)
),
quality: Moderate, quality: Moderate,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Gnoll Staff", name: "Gnoll Staff",
description: "eekum bokum", description: "eekum bokum",
kind: Tool( kind: Tool((
(
kind: StaffSimple, kind: StaffSimple,
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.0, equip_time_secs: 0.0,
power: 0.3, power: 0.3,
poise_strength: 0.8, poise_strength: 0.8,
speed: 0.8 speed: 0.8,
crit_chance: 0.03,
crit_mult: 1.3,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Wooden Spear", name: "Wooden Spear",
description: "Testing", description: "Testing",
kind: Tool( kind: Tool((
(
kind: Spear, kind: Spear,
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.0, equip_time_secs: 0.0,
power: 0.3, power: 0.3,
poise_strength: 0.8, poise_strength: 0.8,
speed: 1.0 speed: 1.0,
crit_chance: 0.03,
crit_mult: 1.3,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -8,7 +8,9 @@ ItemDef(
equip_time_secs: 0.0, equip_time_secs: 0.0,
power: 1.6, power: 1.6,
poise_strength: 0.8, poise_strength: 0.8,
speed: 0.3 speed: 0.3,
crit_chance: 0.16,
crit_mult: 2.6,
)), )),
)), )),
quality: Moderate, quality: Moderate,

View File

@ -8,7 +8,9 @@ ItemDef(
equip_time_secs: 0.0, equip_time_secs: 0.0,
power: 1.8, power: 1.8,
poise_strength: 0.8, poise_strength: 0.8,
speed: 0.6 speed: 0.6,
crit_chance: 0.18,
crit_mult: 2.8,
)), )),
)), )),
quality: Low, quality: Low,

View File

@ -8,7 +8,9 @@ ItemDef(
equip_time_secs: 0.0, equip_time_secs: 0.0,
power: 1.4, power: 1.4,
poise_strength: 0.8, poise_strength: 0.8,
speed: 1.0 speed: 1.0,
crit_chance: 0.14,
crit_mult: 2.4,
)), )),
)), )),
quality: Low, quality: Low,

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Adlet Bow", name: "Adlet Bow",
description: "Strips of leather are wrapped around the handle.", description: "Strips of leather are wrapped around the handle.",
kind: Tool( kind: Tool((
(
kind: Bow, kind: Bow,
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.0, equip_time_secs: 0.0,
power: 1.1, power: 1.1,
poise_strength: 0.8, poise_strength: 0.8,
speed: 0.5 speed: 0.5,
crit_chance: 0.11,
crit_mult: 2.1,
)),
)), )),
)
),
quality: Moderate, quality: Moderate,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Gnoll Staff", name: "Gnoll Staff",
description: "eekum bokum", description: "eekum bokum",
kind: Tool( kind: Tool((
(
kind: StaffSimple, kind: StaffSimple,
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.0, equip_time_secs: 0.0,
power: 1.7, power: 1.7,
poise_strength: 0.8, poise_strength: 0.8,
speed: 0.7 speed: 0.7,
crit_chance: 0.17,
crit_mult: 2.7,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Wooden Spear", name: "Wooden Spear",
description: "Testing", description: "Testing",
kind: Tool( kind: Tool((
(
kind: Spear, kind: Spear,
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.0, equip_time_secs: 0.0,
power: 1.7, power: 1.7,
poise_strength: 0.8, poise_strength: 0.8,
speed: 1.0 speed: 1.0,
crit_chance: 0.17,
crit_mult: 2.7,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Adlet Bow", name: "Adlet Bow",
description: "Strips of leather are wrapped around the handle.", description: "Strips of leather are wrapped around the handle.",
kind: Tool( kind: Tool((
(
kind: Bow, kind: Bow,
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.0, equip_time_secs: 0.0,
power: 1.1, power: 1.1,
poise_strength: 0.8, poise_strength: 0.8,
speed: 0.3 speed: 0.3,
crit_chance: 0.11,
crit_mult: 2.1,
)),
)), )),
)
),
quality: Moderate, quality: Moderate,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Gnoll Staff", name: "Gnoll Staff",
description: "eekum bokum", description: "eekum bokum",
kind: Tool( kind: Tool((
(
kind: StaffSimple, kind: StaffSimple,
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.0, equip_time_secs: 0.0,
power: 1.1, power: 1.1,
poise_strength: 0.8, poise_strength: 0.8,
speed: 0.8 speed: 0.8,
crit_chance: 0.11,
crit_mult: 2.1,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Wooden Spear", name: "Wooden Spear",
description: "Testing", description: "Testing",
kind: Tool( kind: Tool((
(
kind: Spear, kind: Spear,
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.0, equip_time_secs: 0.0,
power: 1.1, power: 1.1,
poise_strength: 0.8, poise_strength: 0.8,
speed: 1.0 speed: 1.0,
crit_chance: 0.11,
crit_mult: 2.1,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Saurok bow", name: "Saurok bow",
description: "Placeholder", description: "Placeholder",
kind: Tool( kind: Tool((
(
kind: BowSimple, kind: BowSimple,
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.5, equip_time_secs: 0.5,
power: 1.00, power: 1.0,
poise_strength: 1.00, poise_strength: 1.0,
speed: 1.0 speed: 1.0,
crit_chance: 0.1,
crit_mult: 2.0,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Cyclops Hammer", name: "Cyclops Hammer",
description: "Placeholder", description: "Placeholder",
kind: Tool( kind: Tool((
(
kind: HammerSimple, kind: HammerSimple,
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.5, equip_time_secs: 0.5,
power: 1.00, power: 1.0,
poise_strength: 1.00, poise_strength: 1.0,
speed: 1.0 speed: 1.0,
crit_chance: 0.1,
crit_mult: 2.0,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Harvester Sythe", name: "Harvester Sythe",
description: "Placeholder", description: "Placeholder",
kind: Tool( kind: Tool((
(
kind: HammerSimple, kind: HammerSimple,
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.001, equip_time_secs: 0.001,
power: 1.6, power: 1.6,
poise_strength: 1.00, poise_strength: 1.0,
speed: 1.0 speed: 1.0,
crit_chance: 0.16,
crit_mult: 2.6,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Ogre Hammer", name: "Ogre Hammer",
description: "Placeholder", description: "Placeholder",
kind: Tool( kind: Tool((
(
kind: HammerSimple, kind: HammerSimple,
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.5, equip_time_secs: 0.5,
power: 1.00, power: 1.0,
poise_strength: 1.00, poise_strength: 1.0,
speed: 1.0 speed: 1.0,
crit_chance: 0.1,
crit_mult: 2.0,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Troll Hammer", name: "Troll Hammer",
description: "Placeholder", description: "Placeholder",
kind: Tool( kind: Tool((
(
kind: HammerSimple, kind: HammerSimple,
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.5, equip_time_secs: 0.5,
power: 1.00, power: 1.0,
poise_strength: 1.00, poise_strength: 1.0,
speed: 1.0 speed: 1.0,
crit_chance: 0.1,
crit_mult: 2.0,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Wendigo Hammer", name: "Wendigo Hammer",
description: "Placeholder", description: "Placeholder",
kind: Tool( kind: Tool((
(
kind: Hammer, kind: Hammer,
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.5, equip_time_secs: 0.5,
power: 1.00, power: 1.0,
poise_strength: 1.00, poise_strength: 1.0,
speed: 1.0 speed: 1.0,
crit_chance: 0.1,
crit_mult: 2.0,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Yeti Hammer", name: "Yeti Hammer",
description: "Placeholder", description: "Placeholder",
kind: Tool( kind: Tool((
(
kind: HammerSimple, kind: HammerSimple,
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.0, equip_time_secs: 0.0,
power: 2.0, power: 2.0,
poise_strength: 1.00, poise_strength: 1.0,
speed: 1.0 speed: 1.0,
crit_chance: 0.2,
crit_mult: 3.0,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Mindflayer Staff", name: "Mindflayer Staff",
description: "Placeholder", description: "Placeholder",
kind: Tool( kind: Tool((
(
kind: StaffSimple, kind: StaffSimple,
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.001, equip_time_secs: 0.001,
power: 3.0, power: 3.0,
poise_strength: 1.00, poise_strength: 1.0,
speed: 1.5, speed: 1.5,
crit_chance: 0.3,
crit_mult: 4.0,
)),
)), )),
)
),
quality: Legendary, quality: Legendary,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Ogre Staff", name: "Ogre Staff",
description: "Placeholder", description: "Placeholder",
kind: Tool( kind: Tool((
(
kind: StaffSimple, kind: StaffSimple,
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.5, equip_time_secs: 0.5,
power: 1.00, power: 1.0,
poise_strength: 1.00, poise_strength: 1.0,
speed: 1.0 speed: 1.0,
crit_chance: 0.1,
crit_mult: 2.0,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Saurok Staff", name: "Saurok Staff",
description: "Placeholder", description: "Placeholder",
kind: Tool( kind: Tool((
(
kind: StaffSimple, kind: StaffSimple,
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.5, equip_time_secs: 0.5,
power: 1.00, power: 1.0,
poise_strength: 1.00, poise_strength: 1.0,
speed: 1.0 speed: 1.0,
crit_chance: 0.1,
crit_mult: 2.0,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Dullahan Sword", name: "Dullahan Sword",
description: "Placehoder", description: "Placehoder",
kind: Tool( kind: Tool((
(
kind: SwordSimple, kind: SwordSimple,
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.5, equip_time_secs: 0.5,
power: 1.00, power: 1.0,
poise_strength: 1.00, poise_strength: 1.0,
speed: 1.0 speed: 1.0,
crit_chance: 0.1,
crit_mult: 2.0,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Saurok Sword", name: "Saurok Sword",
description: "Placehoder", description: "Placehoder",
kind: Tool( kind: Tool((
(
kind: SwordSimple, kind: SwordSimple,
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.5, equip_time_secs: 0.5,
power: 1.00, power: 1.0,
poise_strength: 1.00, poise_strength: 1.0,
speed: 1.0 speed: 1.0,
crit_chance: 0.1,
crit_mult: 2.0,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Beast Claws", name: "Beast Claws",
description: "Was attached to a beast.", description: "Was attached to a beast.",
kind: Tool( kind: Tool((
(
kind: Unique(BeastClaws), kind: Unique(BeastClaws),
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.5, equip_time_secs: 0.5,
power: 1.00, power: 1.0,
poise_strength: 1.00, poise_strength: 1.0,
speed: 1.0, speed: 1.0,
crit_chance: 0.1,
crit_mult: 2.0,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Quad Low Basic", name: "Quad Low Basic",
description: "testing123", description: "testing123",
kind: Tool( kind: Tool((
(
kind: Unique(QuadLowBasic), kind: Unique(QuadLowBasic),
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.01, equip_time_secs: 0.01,
power: 1.00, power: 1.0,
poise_strength: 1.00, poise_strength: 1.0,
speed: 1.00, speed: 1.0,
crit_chance: 0.1,
crit_mult: 2.0,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Quad Small Beam", name: "Quad Small Beam",
description: "testing123", description: "testing123",
kind: Tool( kind: Tool((
(
kind: Unique(QuadLowBeam), kind: Unique(QuadLowBeam),
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.01, equip_time_secs: 0.01,
power: 1.00, power: 1.0,
poise_strength: 1.00, poise_strength: 1.0,
speed: 1.00, speed: 1.0,
crit_chance: 0.1,
crit_mult: 2.0,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Quad Low Breathe", name: "Quad Low Breathe",
description: "testing123", description: "testing123",
kind: Tool( kind: Tool((
(
kind: Unique(QuadLowBreathe), kind: Unique(QuadLowBreathe),
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.01, equip_time_secs: 0.01,
power: 1.00, power: 1.0,
poise_strength: 1.00, poise_strength: 1.0,
speed: 1.00, speed: 1.0,
crit_chance: 0.1,
crit_mult: 2.0,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Quad Low Quick", name: "Quad Low Quick",
description: "testing123", description: "testing123",
kind: Tool( kind: Tool((
(
kind: Unique(QuadLowQuick), kind: Unique(QuadLowQuick),
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.01, equip_time_secs: 0.01,
power: 1.00, power: 1.0,
poise_strength: 1.00, poise_strength: 1.0,
speed: 1.00, speed: 1.0,
crit_chance: 0.1,
crit_mult: 2.0,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Quad Low Ranged", name: "Quad Low Ranged",
description: "testing123", description: "testing123",
kind: Tool( kind: Tool((
(
kind: Unique(QuadLowRanged), kind: Unique(QuadLowRanged),
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.01, equip_time_secs: 0.01,
power: 1.00, power: 1.0,
poise_strength: 1.00, poise_strength: 1.0,
speed: 1.00, speed: 1.0,
crit_chance: 0.1,
crit_mult: 2.0,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Quad Low Tail", name: "Quad Low Tail",
description: "testing123", description: "testing123",
kind: Tool( kind: Tool((
(
kind: Unique(QuadLowTail), kind: Unique(QuadLowTail),
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.01, equip_time_secs: 0.01,
power: 1.00, power: 1.0,
poise_strength: 1.00, poise_strength: 1.0,
speed: 1.00, speed: 1.0,
crit_chance: 0.1,
crit_mult: 2.0,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Quad Med Basic", name: "Quad Med Basic",
description: "testing123", description: "testing123",
kind: Tool( kind: Tool((
(
kind: Unique(QuadMedBasic), kind: Unique(QuadMedBasic),
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.01, equip_time_secs: 0.01,
power: 1.00, power: 1.0,
poise_strength: 1.00, poise_strength: 1.0,
speed: 1.00, speed: 1.0,
crit_chance: 0.1,
crit_mult: 2.0,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Quad Med Charge", name: "Quad Med Charge",
description: "testing123", description: "testing123",
kind: Tool( kind: Tool((
(
kind: Unique(QuadMedCharge), kind: Unique(QuadMedCharge),
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.01, equip_time_secs: 0.01,
power: 1.00, power: 1.0,
poise_strength: 1.00, poise_strength: 1.0,
speed: 1.00, speed: 1.0,
crit_chance: 0.1,
crit_mult: 2.0,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Quad Med Hoof", name: "Quad Med Hoof",
description: "testing123", description: "testing123",
kind: Tool( kind: Tool((
(
kind: Unique(QuadMedHoof), kind: Unique(QuadMedHoof),
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.01, equip_time_secs: 0.01,
power: 1.00, power: 1.0,
poise_strength: 1.00, poise_strength: 1.0,
speed: 1.00, speed: 1.0,
crit_chance: 0.1,
crit_mult: 2.0,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Quad Med Jump", name: "Quad Med Jump",
description: "testing123", description: "testing123",
kind: Tool( kind: Tool((
(
kind: Unique(QuadMedJump), kind: Unique(QuadMedJump),
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.01, equip_time_secs: 0.01,
power: 1.00, power: 1.0,
poise_strength: 1.00, poise_strength: 1.0,
speed: 1.0, speed: 1.0,
crit_chance: 0.1,
crit_mult: 2.0,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Quad Med Quick", name: "Quad Med Quick",
description: "testing123", description: "testing123",
kind: Tool( kind: Tool((
(
kind: Unique(QuadMedQuick), kind: Unique(QuadMedQuick),
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.01, equip_time_secs: 0.01,
power: 1.00, power: 1.0,
poise_strength: 1.00, poise_strength: 1.0,
speed: 1.0, speed: 1.0,
crit_chance: 0.1,
crit_mult: 2.0,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Quad Small Basic", name: "Quad Small Basic",
description: "testing123", description: "testing123",
kind: Tool( kind: Tool((
(
kind: Unique(QuadSmallBasic), kind: Unique(QuadSmallBasic),
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.01, equip_time_secs: 0.01,
power: 1.00, power: 1.0,
poise_strength: 1.00, poise_strength: 1.0,
speed: 1.00, speed: 1.0,
crit_chance: 0.1,
crit_mult: 2.0,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Stone Golem's Fist", name: "Stone Golem's Fist",
description: "Was attached to a mighty stone golem.", description: "Was attached to a mighty stone golem.",
kind: Tool( kind: Tool((
(
kind: Unique(StoneGolemFist), kind: Unique(StoneGolemFist),
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.001, equip_time_secs: 0.001,
power: 1.00, power: 1.0,
poise_strength: 1.00, poise_strength: 1.0,
speed: 1.0 speed: 1.0,
crit_chance: 0.1,
crit_mult: 2.0,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Theropod Basic", name: "Theropod Basic",
description: "testing123", description: "testing123",
kind: Tool( kind: Tool((
(
kind: Unique(TheropodBasic), kind: Unique(TheropodBasic),
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.01, equip_time_secs: 0.01,
power: 1.00, power: 1.0,
poise_strength: 1.00, poise_strength: 1.0,
speed: 1.00, speed: 1.0,
crit_chance: 0.1,
crit_mult: 2.0,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Theropod Bird", name: "Theropod Bird",
description: "testing123", description: "testing123",
kind: Tool( kind: Tool((
(
kind: Unique(TheropodBird), kind: Unique(TheropodBird),
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.01, equip_time_secs: 0.01,
power: 1.00, power: 1.0,
poise_strength: 1.00, poise_strength: 1.0,
speed: 1.00, speed: 1.0,
crit_chance: 0.1,
crit_mult: 2.0,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Tidal Claws", name: "Tidal Claws",
description: "Snip snap", description: "Snip snap",
kind: Tool( kind: Tool((
(
kind: Unique(TidalClaws), kind: Unique(TidalClaws),
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.5, equip_time_secs: 0.5,
power: 1.00, power: 1.0,
poise_strength: 1.00, poise_strength: 1.0,
speed: 1.0, speed: 1.0,
crit_chance: 0.1,
crit_mult: 2.0,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Turret", name: "Turret",
description: "Turret weapon", description: "Turret weapon",
kind: Tool( kind: Tool((
(
kind: Unique(ObjectTurret), kind: Unique(ObjectTurret),
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.01, equip_time_secs: 0.01,
power: 1.00, power: 1.0,
poise_strength: 1.00, poise_strength: 1.0,
speed: 1.00, speed: 1.0,
crit_chance: 0.1,
crit_mult: 2.0,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -1,18 +1,18 @@
ItemDef( ItemDef(
name: "Wendigo Magic", name: "Wendigo Magic",
description: "spook.", description: "spook.",
kind: Tool( kind: Tool((
(
kind: Unique(WendigoMagic), kind: Unique(WendigoMagic),
hands: Two, hands: Two,
stats: Direct(( stats: Direct((
equip_time_secs: 0.5, equip_time_secs: 0.5,
power: 1.00, power: 1.0,
poise_strength: 1.00, poise_strength: 1.0,
speed: 1.0, speed: 1.0,
crit_chance: 0.1,
crit_mult: 2.0,
)),
)), )),
)
),
quality: Low, quality: Low,
tags: [], tags: [],
) )

View File

@ -9,6 +9,8 @@ ItemDef(
power: 1.6, power: 1.6,
poise_strength: 1.4, poise_strength: 1.4,
speed: 1.0, speed: 1.0,
crit_chance: 0.16,
crit_mult: 2.6,
)), )),
)), )),
quality: High, quality: High,

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Executioner\'s Axe", name: "Executioner's Axe",
description: "Dark rituals call for metal alloys to be formed in the blood of an animal carcass to ensure the resultant axe thirsts for future kills.", description: "Dark rituals call for metal alloys to be formed in the blood of an animal carcass to ensure the resultant axe thirsts for future kills.",
kind: Tool(( kind: Tool((
kind: Axe, kind: Axe,
@ -9,6 +9,8 @@ ItemDef(
power: 1.6, power: 1.6,
poise_strength: 1.8, poise_strength: 1.8,
speed: 1.0, speed: 1.0,
crit_chance: 0.16,
crit_mult: 2.6,
)), )),
)), )),
quality: High, quality: High,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 1.6, power: 1.6,
poise_strength: 1.8, poise_strength: 1.8,
speed: 1.0, speed: 1.0,
crit_chance: 0.16,
crit_mult: 2.6,
)), )),
)), )),
quality: High, quality: High,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 1.0, power: 1.0,
poise_strength: 0.9, poise_strength: 0.9,
speed: 1.0, speed: 1.0,
crit_chance: 0.1,
crit_mult: 2.0,
)), )),
)), )),
quality: Moderate, quality: Moderate,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 1.0, power: 1.0,
poise_strength: 1.5, poise_strength: 1.5,
speed: 1.0, speed: 1.0,
crit_chance: 0.1,
crit_mult: 2.0,
)), )),
)), )),
quality: Moderate, quality: Moderate,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 1.0, power: 1.0,
poise_strength: 1.4, poise_strength: 1.4,
speed: 1.0, speed: 1.0,
crit_chance: 0.1,
crit_mult: 2.0,
)), )),
)), )),
quality: Moderate, quality: Moderate,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 1.8, power: 1.8,
poise_strength: 1.0, poise_strength: 1.0,
speed: 1.0, speed: 1.0,
crit_chance: 0.18,
crit_mult: 2.8,
)), )),
)), )),
quality: High, quality: High,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 1.8, power: 1.8,
poise_strength: 1.0, poise_strength: 1.0,
speed: 1.0, speed: 1.0,
crit_chance: 0.18,
crit_mult: 2.8,
)), )),
)), )),
quality: High, quality: High,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 1.2, power: 1.2,
poise_strength: 1.7, poise_strength: 1.7,
speed: 1.0, speed: 1.0,
crit_chance: 0.12,
crit_mult: 2.2,
)), )),
)), )),
quality: Moderate, quality: Moderate,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 1.2, power: 1.2,
poise_strength: 1.4, poise_strength: 1.4,
speed: 1.0, speed: 1.0,
crit_chance: 0.12,
crit_mult: 2.2,
)), )),
)), )),
quality: Moderate, quality: Moderate,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 1.2, power: 1.2,
poise_strength: 1.1, poise_strength: 1.1,
speed: 1.0, speed: 1.0,
crit_chance: 0.12,
crit_mult: 2.2,
)), )),
)), )),
quality: Moderate, quality: Moderate,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 1.2, power: 1.2,
poise_strength: 1.6, poise_strength: 1.6,
speed: 1.0, speed: 1.0,
crit_chance: 0.12,
crit_mult: 2.2,
)), )),
)), )),
quality: Moderate, quality: Moderate,

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Butcher\'s Axe", name: "Butcher's Axe",
description: "This axe has a heavy iron head used to cleave nearly anything.", description: "This axe has a heavy iron head used to cleave nearly anything.",
kind: Tool(( kind: Tool((
kind: Axe, kind: Axe,
@ -9,6 +9,8 @@ ItemDef(
power: 1.2, power: 1.2,
poise_strength: 1.4, poise_strength: 1.4,
speed: 1.0, speed: 1.0,
crit_chance: 0.12,
crit_mult: 2.2,
)), )),
)), )),
quality: Moderate, quality: Moderate,

View File

@ -1,5 +1,5 @@
ItemDef( ItemDef(
name: "Barbarian\'s Axe", name: "Barbarian's Axe",
description: "While heavy, this iron forged axe is quite easy to swing, at least for those with the muscle backing it.", description: "While heavy, this iron forged axe is quite easy to swing, at least for those with the muscle backing it.",
kind: Tool(( kind: Tool((
kind: Axe, kind: Axe,
@ -9,6 +9,8 @@ ItemDef(
power: 1.2, power: 1.2,
poise_strength: 1.8, poise_strength: 1.8,
speed: 1.0, speed: 1.0,
crit_chance: 0.12,
crit_mult: 2.2,
)), )),
)), )),
quality: Moderate, quality: Moderate,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 1.2, power: 1.2,
poise_strength: 1.3, poise_strength: 1.3,
speed: 1.0, speed: 1.0,
crit_chance: 0.12,
crit_mult: 2.2,
)), )),
)), )),
quality: Moderate, quality: Moderate,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 1.2, power: 1.2,
poise_strength: 1.6, poise_strength: 1.6,
speed: 1.0, speed: 1.0,
crit_chance: 0.12,
crit_mult: 2.2,
)), )),
)), )),
quality: Moderate, quality: Moderate,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 1.2, power: 1.2,
poise_strength: 0.6, poise_strength: 0.6,
speed: 1.0, speed: 1.0,
crit_chance: 0.12,
crit_mult: 2.2,
)), )),
)), )),
quality: Moderate, quality: Moderate,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 1.2, power: 1.2,
poise_strength: 0.3, poise_strength: 0.3,
speed: 1.0, speed: 1.0,
crit_chance: 0.12,
crit_mult: 2.2,
)), )),
)), )),
quality: Moderate, quality: Moderate,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 2.0, power: 2.0,
poise_strength: 1.1, poise_strength: 1.1,
speed: 1.0, speed: 1.0,
crit_chance: 0.2,
crit_mult: 3.0,
)), )),
)), )),
quality: Epic, quality: Epic,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 0.6, power: 0.6,
poise_strength: 1.5, poise_strength: 1.5,
speed: 1.0, speed: 1.0,
crit_chance: 0.06,
crit_mult: 1.6,
)), )),
)), )),
quality: Low, quality: Low,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 2.5, power: 2.5,
poise_strength: 1.8, poise_strength: 1.8,
speed: 0.8, speed: 0.8,
crit_chance: 0.25,
crit_mult: 3.5,
)), )),
)), )),
quality: Legendary, quality: Legendary,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 0.5, power: 0.5,
poise_strength: 2.0, poise_strength: 2.0,
speed: 1.0, speed: 1.0,
crit_chance: 0.05,
crit_mult: 1.5,
)), )),
)), )),
quality: Low, quality: Low,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 1.4, power: 1.4,
poise_strength: 1.2, poise_strength: 1.2,
speed: 1.0, speed: 1.0,
crit_chance: 0.14,
crit_mult: 2.4,
)), )),
)), )),
quality: Moderate, quality: Moderate,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 1.4, power: 1.4,
poise_strength: 1.2, poise_strength: 1.2,
speed: 1.0, speed: 1.0,
crit_chance: 0.14,
crit_mult: 2.4,
)), )),
)), )),
quality: Moderate, quality: Moderate,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 1.4, power: 1.4,
poise_strength: 1.2, poise_strength: 1.2,
speed: 1.0, speed: 1.0,
crit_chance: 0.14,
crit_mult: 2.4,
)), )),
)), )),
quality: Moderate, quality: Moderate,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 1.4, power: 1.4,
poise_strength: 1.1, poise_strength: 1.1,
speed: 1.0, speed: 1.0,
crit_chance: 0.14,
crit_mult: 2.4,
)), )),
)), )),
quality: Moderate, quality: Moderate,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 1.4, power: 1.4,
poise_strength: 1.2, poise_strength: 1.2,
speed: 1.0, speed: 1.0,
crit_chance: 0.14,
crit_mult: 2.4,
)), )),
)), )),
quality: Moderate, quality: Moderate,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 1.4, power: 1.4,
poise_strength: 1.5, poise_strength: 1.5,
speed: 1.0, speed: 1.0,
crit_chance: 0.14,
crit_mult: 2.4,
)), )),
)), )),
quality: Moderate, quality: Moderate,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 1.4, power: 1.4,
poise_strength: 1.0, poise_strength: 1.0,
speed: 1.0, speed: 1.0,
crit_chance: 0.14,
crit_mult: 2.4,
)), )),
)), )),
quality: Moderate, quality: Moderate,

View File

@ -1,6 +1,6 @@
ItemDef( ItemDef(
name: "Worn Dwarven Axe", name: "Worn Dwarven Axe",
description: "Rough cut axe of dwarven origin, it\'s very old, but still usable.", description: "Rough cut axe of dwarven origin, it's very old, but still usable.",
kind: Tool(( kind: Tool((
kind: Axe, kind: Axe,
hands: Two, hands: Two,
@ -9,6 +9,8 @@ ItemDef(
power: 0.8, power: 0.8,
poise_strength: 0.4, poise_strength: 0.4,
speed: 1.0, speed: 1.0,
crit_chance: 0.08,
crit_mult: 1.8,
)), )),
)), )),
quality: Low, quality: Low,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 0.8, power: 0.8,
poise_strength: 0.4, poise_strength: 0.4,
speed: 1.0, speed: 1.0,
crit_chance: 0.08,
crit_mult: 1.8,
)), )),
)), )),
quality: Low, quality: Low,

View File

@ -1,6 +1,6 @@
ItemDef( ItemDef(
name: "Worn Human Axe", name: "Worn Human Axe",
description: "There\'s nothing too remarkable about this old axe.", description: "There's nothing too remarkable about this old axe.",
kind: Tool(( kind: Tool((
kind: Axe, kind: Axe,
hands: Two, hands: Two,
@ -9,6 +9,8 @@ ItemDef(
power: 0.8, power: 0.8,
poise_strength: 0.7, poise_strength: 0.7,
speed: 1.0, speed: 1.0,
crit_chance: 0.08,
crit_mult: 1.8,
)), )),
)), )),
quality: Low, quality: Low,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 0.8, power: 0.8,
poise_strength: 1.1, poise_strength: 1.1,
speed: 1.0, speed: 1.0,
crit_chance: 0.08,
crit_mult: 1.8,
)), )),
)), )),
quality: Low, quality: Low,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 0.8, power: 0.8,
poise_strength: 0.5, poise_strength: 0.5,
speed: 1.0, speed: 1.0,
crit_chance: 0.08,
crit_mult: 1.8,
)), )),
)), )),
quality: Low, quality: Low,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 1.5, power: 1.5,
poise_strength: 1.0, poise_strength: 1.0,
speed: 1.3, speed: 1.3,
crit_chance: 0.15,
crit_mult: 2.5,
)), )),
)), )),
quality: High, quality: High,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 2.0, power: 2.0,
poise_strength: 1.0, poise_strength: 1.0,
speed: 0.8, speed: 0.8,
crit_chance: 0.2,
crit_mult: 3.0,
)), )),
)), )),
quality: High, quality: High,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 1.0, power: 1.0,
poise_strength: 1.0, poise_strength: 1.0,
speed: 1.1, speed: 1.1,
crit_chance: 0.1,
crit_mult: 2.0,
)), )),
)), )),
quality: Moderate, quality: Moderate,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 1.1, power: 1.1,
poise_strength: 1.0, poise_strength: 1.0,
speed: 1.0, speed: 1.0,
crit_chance: 0.11,
crit_mult: 2.1,
)), )),
)), )),
quality: Moderate, quality: Moderate,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 1.6, power: 1.6,
poise_strength: 1.0, poise_strength: 1.0,
speed: 1.0, speed: 1.0,
crit_chance: 0.16,
crit_mult: 2.6,
)), )),
)), )),
quality: High, quality: High,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 1.75, power: 1.75,
poise_strength: 1.0, poise_strength: 1.0,
speed: 0.85, speed: 0.85,
crit_chance: 0.17,
crit_mult: 2.75,
)), )),
)), )),
quality: High, quality: High,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 1.1, power: 1.1,
poise_strength: 1.0, poise_strength: 1.0,
speed: 1.1, speed: 1.1,
crit_chance: 0.11,
crit_mult: 2.1,
)), )),
)), )),
quality: Moderate, quality: Moderate,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 1.3, power: 1.3,
poise_strength: 1.0, poise_strength: 1.0,
speed: 0.9, speed: 0.9,
crit_chance: 0.13,
crit_mult: 2.3,
)), )),
)), )),
quality: Moderate, quality: Moderate,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 1.0, power: 1.0,
poise_strength: 1.0, poise_strength: 1.0,
speed: 1.2, speed: 1.2,
crit_chance: 0.1,
crit_mult: 2.0,
)), )),
)), )),
quality: Moderate, quality: Moderate,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 1.2, power: 1.2,
poise_strength: 1.0, poise_strength: 1.0,
speed: 1.0, speed: 1.0,
crit_chance: 0.12,
crit_mult: 2.2,
)), )),
)), )),
quality: Moderate, quality: Moderate,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 2.0, power: 2.0,
poise_strength: 1.0, poise_strength: 1.0,
speed: 1.0, speed: 1.0,
crit_chance: 0.2,
crit_mult: 3.0,
)), )),
)), )),
quality: Epic, quality: Epic,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 1.5, power: 1.5,
poise_strength: 1.0, poise_strength: 1.0,
speed: 0.9, speed: 0.9,
crit_chance: 0.15,
crit_mult: 2.5,
)), )),
)), )),
quality: Moderate, quality: Moderate,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 1.4, power: 1.4,
poise_strength: 1.0, poise_strength: 1.0,
speed: 1.0, speed: 1.0,
crit_chance: 0.14,
crit_mult: 2.4,
)), )),
)), )),
quality: Moderate, quality: Moderate,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 1.3, power: 1.3,
poise_strength: 1.0, poise_strength: 1.0,
speed: 1.1, speed: 1.1,
crit_chance: 0.13,
crit_mult: 2.3,
)), )),
)), )),
quality: Moderate, quality: Moderate,

View File

@ -9,6 +9,8 @@ ItemDef(
power: 0.8, power: 0.8,
poise_strength: 1.0, poise_strength: 1.0,
speed: 1.0, speed: 1.0,
crit_chance: 0.08,
crit_mult: 1.8,
)), )),
)), )),
quality: Common, quality: Common,

Some files were not shown because too many files have changed in this diff Show More