Poise stats

This commit is contained in:
jiminycrick 2020-12-16 15:30:33 -08:00
parent af076aa87f
commit dd69b5f2bc
442 changed files with 1235 additions and 513 deletions

View File

@ -4,8 +4,9 @@ ComboMelee(
stage: 1, stage: 1,
base_damage: 90, base_damage: 90,
max_damage: 110, max_damage: 110,
base_poise_damage: 40, base_poise_damage: 20,
damage_increase: 10, damage_increase: 10,
poise_damage_increase: 5,
knockback: 8.0, knockback: 8.0,
range: 3.5, range: 3.5,
angle: 50.0, angle: 50.0,
@ -20,6 +21,7 @@ ComboMelee(
max_damage: 160, max_damage: 160,
base_poise_damage: 40, base_poise_damage: 40,
damage_increase: 15, damage_increase: 15,
poise_damage_increase: 15,
knockback: 12.0, knockback: 12.0,
range: 3.5, range: 3.5,
angle: 30.0, angle: 30.0,

View File

@ -4,6 +4,7 @@ BasicRanged(
recover_duration: 300, recover_duration: 300,
projectile: Arrow( projectile: Arrow(
damage: 70.0, damage: 70.0,
poise_damage: 2,
knockback: 5.0, knockback: 5.0,
energy_regen: 40, energy_regen: 40,
), ),

View File

@ -4,6 +4,7 @@ ChargedRanged(
initial_damage: 10, initial_damage: 10,
scaled_damage: 190, scaled_damage: 190,
initial_poise_damage: 10, initial_poise_damage: 10,
scaled_poise_damage: 60,
initial_knockback: 10.0, initial_knockback: 10.0,
scaled_knockback: 10.0, scaled_knockback: 10.0,
speed: 1.0, speed: 1.0,

View File

@ -7,7 +7,8 @@ RepeaterRanged(
leap: Some(5.0), leap: Some(5.0),
projectile: Arrow( projectile: Arrow(
damage: 40.0, damage: 40.0,
knockback: 10.0, poise_damage: 4,
knockback: 5.0,
energy_regen: 0, energy_regen: 0,
), ),
projectile_body: Object(Arrow), projectile_body: Object(Arrow),

View File

@ -4,6 +4,7 @@ ChargedMelee(
initial_damage: 10, initial_damage: 10,
scaled_damage: 160, scaled_damage: 160,
initial_poise_damage: 10, initial_poise_damage: 10,
scaled_poise_damage: 70,
initial_knockback: 10.0, initial_knockback: 10.0,
scaled_knockback: 50.0, scaled_knockback: 50.0,
range: 3.5, range: 3.5,

View File

@ -4,6 +4,7 @@ ComboMelee(
base_damage: 130, base_damage: 130,
damage_increase: 10, damage_increase: 10,
base_poise_damage: 30, base_poise_damage: 30,
poise_damage_increase: 5,
knockback: 0.0, knockback: 0.0,
range: 4.5, range: 4.5,
angle: 50.0, angle: 50.0,

View File

@ -5,6 +5,7 @@ BasicRanged(
projectile: Heal( projectile: Heal(
heal: 80.0, heal: 80.0,
damage: 60.0, damage: 60.0,
poise_damage: 0,
radius: 6.0, radius: 6.0,
), ),
projectile_body: Object(BoltNature), projectile_body: Object(BoltNature),

View File

@ -4,6 +4,7 @@ BasicRanged(
recover_duration: 350, recover_duration: 350,
projectile: Fireball( projectile: Fireball(
damage: 100.0, damage: 100.0,
poise_damage: 10,
radius: 5.0, radius: 5.0,
energy_regen: 50, energy_regen: 50,
), ),

View File

@ -3,6 +3,7 @@ DashMelee(
base_damage: 80, base_damage: 80,
scaled_damage: 160, scaled_damage: 160,
base_poise_damage: 20, base_poise_damage: 20,
scaled_poise_damage: 20,
base_knockback: 8.0, base_knockback: 8.0,
scaled_knockback: 7.0, scaled_knockback: 7.0,
range: 5.0, range: 5.0,

View File

@ -5,6 +5,7 @@ ComboMelee(
base_damage: 100, base_damage: 100,
damage_increase: 10, damage_increase: 10,
base_poise_damage: 10, base_poise_damage: 10,
poise_damage_increase: 2,
knockback: 10.0, knockback: 10.0,
range: 4.0, range: 4.0,
angle: 30.0, angle: 30.0,
@ -18,6 +19,7 @@ ComboMelee(
base_damage: 80, base_damage: 80,
damage_increase: 15, damage_increase: 15,
base_poise_damage: 10, base_poise_damage: 10,
poise_damage_increase: 2,
knockback: 12.0, knockback: 12.0,
range: 3.5, range: 3.5,
angle: 180.0, angle: 180.0,
@ -31,6 +33,7 @@ ComboMelee(
base_damage: 130, base_damage: 130,
damage_increase: 20, damage_increase: 20,
base_poise_damage: 10, base_poise_damage: 10,
poise_damage_increase: 2,
knockback: 14.0, knockback: 14.0,
range: 6.0, range: 6.0,
angle: 10.0, angle: 10.0,

View File

@ -5,6 +5,7 @@ ComboMelee(
base_damage: 100, base_damage: 100,
damage_increase: 0, damage_increase: 0,
base_poise_damage: 30, base_poise_damage: 30,
poise_damage_increase: 3,
knockback: 5.0, knockback: 5.0,
range: 3.5, range: 3.5,
angle: 60.0, angle: 60.0,

View File

@ -5,6 +5,7 @@ ComboMelee(
base_damage: 120, base_damage: 120,
damage_increase: 0, damage_increase: 0,
base_poise_damage: 10, base_poise_damage: 10,
poise_damage_increase: 3,
knockback: 10.0, knockback: 10.0,
range: 3.5, range: 3.5,
angle: 30.0, angle: 30.0,
@ -18,6 +19,7 @@ ComboMelee(
base_damage: 80, base_damage: 80,
damage_increase: 0, damage_increase: 0,
base_poise_damage: 10, base_poise_damage: 10,
poise_damage_increase: 3,
knockback: 10.0, knockback: 10.0,
range: 3.5, range: 3.5,
angle: 30.0, angle: 30.0,
@ -31,6 +33,7 @@ ComboMelee(
base_damage: 130, base_damage: 130,
damage_increase: 0, damage_increase: 0,
base_poise_damage: 10, base_poise_damage: 10,
poise_damage_increase: 3,
knockback: 10.0, knockback: 10.0,
range: 3.5, range: 3.5,
angle: 30.0, angle: 30.0,

View File

@ -3,6 +3,7 @@ DashMelee(
base_damage: 150, base_damage: 150,
scaled_damage: 110, scaled_damage: 110,
base_poise_damage: 60, base_poise_damage: 60,
scaled_poise_damage: 20,
base_knockback: 8.0, base_knockback: 8.0,
scaled_knockback: 17.0, scaled_knockback: 17.0,
range: 5.0, range: 5.0,

View File

@ -5,6 +5,7 @@ ComboMelee(
base_damage: 100, base_damage: 100,
damage_increase: 0, damage_increase: 0,
base_poise_damage: 10, base_poise_damage: 10,
poise_damage_increase: 3,
knockback: 10.0, knockback: 10.0,
range: 4.5, range: 4.5,
angle: 30.0, angle: 30.0,
@ -18,6 +19,7 @@ ComboMelee(
base_damage: 80, base_damage: 80,
damage_increase: 0, damage_increase: 0,
base_poise_damage: 10, base_poise_damage: 10,
poise_damage_increase: 3,
knockback: 10.0, knockback: 10.0,
range: 3.5, range: 3.5,
angle: 30.0, angle: 30.0,
@ -31,6 +33,7 @@ ComboMelee(
base_damage: 130, base_damage: 130,
damage_increase: 0, damage_increase: 0,
base_poise_damage: 10, base_poise_damage: 10,
poise_damage_increase: 3,
knockback: 10.0, knockback: 10.0,
range: 3.5, range: 3.5,
angle: 30.0, angle: 30.0,

View File

@ -3,6 +3,7 @@ DashMelee(
base_damage: 30, base_damage: 30,
scaled_damage: 10, scaled_damage: 10,
base_poise_damage: 30, base_poise_damage: 30,
scaled_poise_damage: 20,
base_knockback: 8.0, base_knockback: 8.0,
scaled_knockback: 7.0, scaled_knockback: 7.0,
range: 2.0, range: 2.0,

View File

@ -5,6 +5,7 @@ ComboMelee(
base_damage: 100, base_damage: 100,
damage_increase: 0, damage_increase: 0,
base_poise_damage: 10, base_poise_damage: 10,
poise_damage_increase: 3,
knockback: 2.0, knockback: 2.0,
range: 3.5, range: 3.5,
angle: 30.0, angle: 30.0,
@ -18,6 +19,7 @@ ComboMelee(
base_damage: 130, base_damage: 130,
damage_increase: 0, damage_increase: 0,
base_poise_damage: 10, base_poise_damage: 10,
poise_damage_increase: 3,
knockback: 2.0, knockback: 2.0,
range: 3.5, range: 3.5,
angle: 30.0, angle: 30.0,
@ -31,6 +33,7 @@ ComboMelee(
base_damage: 130, base_damage: 130,
damage_increase: 0, damage_increase: 0,
base_poise_damage: 10, base_poise_damage: 10,
poise_damage_increase: 3,
knockback: 2.0, knockback: 2.0,
range: 3.5, range: 3.5,
angle: 30.0, angle: 30.0,
@ -44,6 +47,7 @@ ComboMelee(
base_damage: 130, base_damage: 130,
damage_increase: 0, damage_increase: 0,
base_poise_damage: 10, base_poise_damage: 10,
poise_damage_increase: 3,
knockback: 8.0, knockback: 8.0,
range: 3.5, range: 3.5,
angle: 30.0, angle: 30.0,

View File

@ -4,6 +4,7 @@ BasicRanged(
recover_duration: 350, recover_duration: 350,
projectile: Fireball( projectile: Fireball(
damage: 100.0, damage: 100.0,
poise_damage: 10,
radius: 5.0, radius: 5.0,
energy_regen: 0, energy_regen: 0,
), ),

View File

@ -5,6 +5,7 @@ ComboMelee(
base_damage: 60, base_damage: 60,
damage_increase: 0, damage_increase: 0,
base_poise_damage: 30, base_poise_damage: 30,
poise_damage_increase: 3,
knockback: 5.0, knockback: 5.0,
range: 3.5, range: 3.5,
angle: 60.0, angle: 60.0,

View File

@ -4,6 +4,7 @@ ChargedMelee(
initial_damage: 160, initial_damage: 160,
scaled_damage: 40, scaled_damage: 40,
initial_poise_damage: 50, initial_poise_damage: 50,
scaled_poise_damage: 20,
initial_knockback: 10.0, initial_knockback: 10.0,
scaled_knockback: 20.0, scaled_knockback: 20.0,
range: 6.0, range: 6.0,

View File

@ -5,6 +5,7 @@ ComboMelee(
base_damage: 100, base_damage: 100,
damage_increase: 0, damage_increase: 0,
base_poise_damage: 10, base_poise_damage: 10,
poise_damage_increase: 3,
knockback: 10.0, knockback: 10.0,
range: 3.5, range: 3.5,
angle: 30.0, angle: 30.0,
@ -18,6 +19,7 @@ ComboMelee(
base_damage: 120, base_damage: 120,
damage_increase: 0, damage_increase: 0,
base_poise_damage: 10, base_poise_damage: 10,
poise_damage_increase: 3,
knockback: 10.0, knockback: 10.0,
range: 3.5, range: 3.5,
angle: 30.0, angle: 30.0,
@ -31,6 +33,7 @@ ComboMelee(
base_damage: 130, base_damage: 130,
damage_increase: 0, damage_increase: 0,
base_poise_damage: 10, base_poise_damage: 10,
poise_damage_increase: 3,
knockback: 10.0, knockback: 10.0,
range: 3.5, range: 3.5,
angle: 30.0, angle: 30.0,

View File

@ -5,6 +5,7 @@ ComboMelee(
base_damage: 120, base_damage: 120,
damage_increase: 0, damage_increase: 0,
base_poise_damage: 10, base_poise_damage: 10,
poise_damage_increase: 3,
knockback: 5.0, knockback: 5.0,
range: 3.5, range: 3.5,
angle: 60.0, angle: 60.0,

View File

@ -5,6 +5,7 @@ ComboMelee(
base_damage: 120, base_damage: 120,
damage_increase: 0, damage_increase: 0,
base_poise_damage: 10, base_poise_damage: 10,
poise_damage_increase: 3,
knockback: 10.0, knockback: 10.0,
range: 3.5, range: 3.5,
angle: 30.0, angle: 30.0,
@ -18,6 +19,7 @@ ComboMelee(
base_damage: 120, base_damage: 120,
damage_increase: 0, damage_increase: 0,
base_poise_damage: 10, base_poise_damage: 10,
poise_damage_increase: 3,
knockback: 10.0, knockback: 10.0,
range: 3.5, range: 3.5,
angle: 30.0, angle: 30.0,
@ -31,6 +33,7 @@ ComboMelee(
base_damage: 120, base_damage: 120,
damage_increase: 0, damage_increase: 0,
base_poise_damage: 10, base_poise_damage: 10,
poise_damage_increase: 3,
knockback: 10.0, knockback: 10.0,
range: 3.5, range: 3.5,
angle: 30.0, angle: 30.0,

View File

@ -3,6 +3,7 @@ DashMelee(
base_damage: 150, base_damage: 150,
scaled_damage: 40, scaled_damage: 40,
base_poise_damage: 40, base_poise_damage: 40,
scaled_poise_damage: 15,
base_knockback: 8.0, base_knockback: 8.0,
scaled_knockback: 17.0, scaled_knockback: 17.0,
range: 4.0, range: 4.0,

View File

@ -5,6 +5,7 @@ ComboMelee(
base_damage: 100, base_damage: 100,
damage_increase: 0, damage_increase: 0,
base_poise_damage: 10, base_poise_damage: 10,
poise_damage_increase: 3,
knockback: 10.0, knockback: 10.0,
range: 3.5, range: 3.5,
angle: 30.0, angle: 30.0,
@ -18,6 +19,7 @@ ComboMelee(
base_damage: 80, base_damage: 80,
damage_increase: 0, damage_increase: 0,
base_poise_damage: 10, base_poise_damage: 10,
poise_damage_increase: 3,
knockback: 10.0, knockback: 10.0,
range: 3.5, range: 3.5,
angle: 30.0, angle: 30.0,

View File

@ -5,6 +5,7 @@ ComboMelee(
base_damage: 100, base_damage: 100,
damage_increase: 0, damage_increase: 0,
base_poise_damage: 10, base_poise_damage: 10,
poise_damage_increase: 3,
knockback: 8.0, knockback: 8.0,
range: 3.5, range: 3.5,
angle: 30.0, angle: 30.0,
@ -18,6 +19,7 @@ ComboMelee(
base_damage: 80, base_damage: 80,
damage_increase: 0, damage_increase: 0,
base_poise_damage: 10, base_poise_damage: 10,
poise_damage_increase: 3,
knockback: 8.0, knockback: 8.0,
range: 3.5, range: 3.5,
angle: 30.0, angle: 30.0,

View File

@ -3,6 +3,7 @@ DashMelee(
base_damage: 130, base_damage: 130,
scaled_damage: 20, scaled_damage: 20,
base_poise_damage: 30, base_poise_damage: 30,
scaled_poise_damage: 5,
base_knockback: 8.0, base_knockback: 8.0,
scaled_knockback: 7.0, scaled_knockback: 7.0,
range: 2.0, range: 2.0,

View File

@ -5,6 +5,7 @@ ComboMelee(
base_damage: 150, base_damage: 150,
damage_increase: 0, damage_increase: 0,
base_poise_damage: 10, base_poise_damage: 10,
poise_damage_increase: 3,
knockback: 5.0, knockback: 5.0,
range: 3.5, range: 3.5,
angle: 60.0, angle: 60.0,
@ -18,6 +19,7 @@ ComboMelee(
base_damage: 150, base_damage: 150,
damage_increase: 0, damage_increase: 0,
base_poise_damage: 10, base_poise_damage: 10,
poise_damage_increase: 3,
knockback: 5.0, knockback: 5.0,
range: 3.5, range: 3.5,
angle: 60.0, angle: 60.0,
@ -31,6 +33,7 @@ ComboMelee(
base_damage: 150, base_damage: 150,
damage_increase: 0, damage_increase: 0,
base_poise_damage: 10, base_poise_damage: 10,
poise_damage_increase: 3,
knockback: 5.0, knockback: 5.0,
range: 3.5, range: 3.5,
angle: 60.0, angle: 60.0,

View File

@ -5,6 +5,7 @@ ComboMelee(
base_damage: 30, base_damage: 30,
damage_increase: 0, damage_increase: 0,
base_poise_damage: 10, base_poise_damage: 10,
poise_damage_increase: 2,
knockback: 5.0, knockback: 5.0,
range: 3.5, range: 3.5,
angle: 60.0, angle: 60.0,

View File

@ -5,7 +5,7 @@ BasicMelee(
recover_duration: 250, recover_duration: 250,
knockback: 25.0, knockback: 25.0,
base_damage: 200, base_damage: 200,
base_poise_damage: 80, base_poise_damage: 90,
range: 5.0, range: 5.0,
max_angle: 120.0, max_angle: 120.0,
) )

View File

@ -5,6 +5,7 @@ ComboMelee(
base_damage: 150, base_damage: 150,
damage_increase: 0, damage_increase: 0,
base_poise_damage: 15, base_poise_damage: 15,
poise_damage_increase: 2,
knockback: 5.0, knockback: 5.0,
range: 7.5, range: 7.5,
angle: 60.0, angle: 60.0,

View File

@ -5,6 +5,7 @@ ComboMelee(
base_damage: 170, base_damage: 170,
damage_increase: 0, damage_increase: 0,
base_poise_damage: 10, base_poise_damage: 10,
poise_damage_increase: 2,
knockback: 10.0, knockback: 10.0,
range: 7.5, range: 7.5,
angle: 30.0, angle: 30.0,
@ -18,6 +19,7 @@ ComboMelee(
base_damage: 190, base_damage: 190,
damage_increase: 0, damage_increase: 0,
base_poise_damage: 10, base_poise_damage: 10,
poise_damage_increase: 2,
knockback: 10.0, knockback: 10.0,
range: 5.5, range: 5.5,
angle: 30.0, angle: 30.0,
@ -31,6 +33,7 @@ ComboMelee(
base_damage: 230, base_damage: 230,
damage_increase: 0, damage_increase: 0,
base_poise_damage: 10, base_poise_damage: 10,
poise_damage_increase: 2,
knockback: 10.0, knockback: 10.0,
range: 5.5, range: 5.5,
angle: 30.0, angle: 30.0,

View File

@ -5,6 +5,7 @@ ComboMelee(
base_damage: 150, base_damage: 150,
damage_increase: 0, damage_increase: 0,
base_poise_damage: 10, base_poise_damage: 10,
poise_damage_increase: 2,
knockback: 5.0, knockback: 5.0,
range: 5.5, range: 5.5,
angle: 5.0, angle: 5.0,

View File

@ -5,6 +5,7 @@ ComboMelee(
base_damage: 170, base_damage: 170,
damage_increase: 0, damage_increase: 0,
base_poise_damage: 10, base_poise_damage: 10,
poise_damage_increase: 2,
knockback: 10.0, knockback: 10.0,
range: 4.5, range: 4.5,
angle: 5.0, angle: 5.0,
@ -18,6 +19,7 @@ ComboMelee(
base_damage: 190, base_damage: 190,
damage_increase: 0, damage_increase: 0,
base_poise_damage: 10, base_poise_damage: 10,
poise_damage_increase: 2,
knockback: 10.0, knockback: 10.0,
range: 4.0, range: 4.0,
angle: 10.0, angle: 10.0,
@ -31,6 +33,7 @@ ComboMelee(
base_damage: 230, base_damage: 230,
damage_increase: 0, damage_increase: 0,
base_poise_damage: 10, base_poise_damage: 10,
poise_damage_increase: 2,
knockback: 10.0, knockback: 10.0,
range: 4.0, range: 4.0,
angle: 10.0, angle: 10.0,

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Back("Admin"), kind: Back("Admin"),
stats: ( stats: (
protection: Normal(0.0)), protection: Invincible,
poise_protection: Invincible,
),
) )
), ),
quality: Debug, quality: Debug,

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Back("Backpack0"), kind: Back("Backpack0"),
stats: ( stats: (
protection: Normal(0.0)), protection: Normal(0.0),
poise_protection: Normal(0.0),
),
) )
), ),
quality: High, quality: High,

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Back("DungPurp0"), kind: Back("DungPurp0"),
stats: ( stats: (
protection: Normal(3.0)), protection: Normal(3.0),
poise_protection: Normal(3.0)
),
) )
), ),
quality: Epic, quality: Epic,

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Back("Short2"), kind: Back("Short2"),
stats: ( stats: (
protection: Normal(0.2)), protection: Normal(0.2),
poise_protection: Normal(0.2),
),
) )
), ),
quality: Common, quality: Common,

View File

@ -5,7 +5,8 @@ ItemDef(
( (
kind: Back("Short0"), kind: Back("Short0"),
stats: ( stats: (
protection: Normal(0.3) protection: Normal(0.3),
poise_protection: Normal(0.3),
), ),
) )
), ),

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Back("Short1"), kind: Back("Short1"),
stats: ( stats: (
protection: Normal(0.1)), protection: Normal(0.1),
poise_protection: Normal(0.1),
),
) )
), ),
quality: Common, quality: Common,

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Back("VeloriteMage0"), kind: Back("VeloriteMage0"),
stats: ( stats: (
protection: Normal(2.8)), protection: Normal(2.8),
poise_protection: Normal(2.8),
),
) )
), ),
quality: High, quality: High,

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Back("Warlock"), kind: Back("Warlock"),
stats: ( stats: (
protection: Normal(4.0)), protection: Normal(4.0),
poise_protection: Normal(4.0),
),
) )
), ),
quality: Moderate, quality: Moderate,

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Back("Warlord"), kind: Back("Warlord"),
stats: ( stats: (
protection: Normal(4.0)), protection: Normal(4.0),
poise_protection: Normal(4.0),
),
) )
), ),
quality: Moderate, quality: Moderate,

View File

@ -5,7 +5,8 @@ ItemDef(
( (
kind: Belt("Assassin"), kind: Belt("Assassin"),
stats: ( stats: (
protection: Normal(2.0) protection: Normal(2.0),
poise_protection: Normal(2.0),
), ),
) )
), ),

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Belt("Bonerattler"), kind: Belt("Bonerattler"),
stats: ( stats: (
protection: Normal(3.0)), protection: Normal(3.0),
poise_protection: Normal(3.0),
),
) )
), ),
quality: High, quality: High,

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Belt("ClothBlue0"), kind: Belt("ClothBlue0"),
stats: ( stats: (
protection: Normal(1.0)), protection: Normal(1.0),
poise_protection: Normal(1.0),
),
) )
), ),
quality: Common, quality: Common,

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Belt("ClothGreen0"), kind: Belt("ClothGreen0"),
stats: ( stats: (
protection: Normal(1.0)), protection: Normal(1.0),
poise_protection: Normal(1.0),
),
) )
), ),
quality: Common, quality: Common,

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Belt("ClothPurple0"), kind: Belt("ClothPurple0"),
stats: ( stats: (
protection: Normal(1.0)), protection: Normal(1.0),
poise_protection: Normal(1.0),
),
) )
), ),
quality: Common, quality: Common,

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Belt("Cultist"), kind: Belt("Cultist"),
stats: ( stats: (
protection: Normal(6.0)), protection: Normal(6.0),
poise_protection: Normal(6.0),
),
) )
), ),
quality: Epic, quality: Epic,

View File

@ -5,7 +5,8 @@ ItemDef(
( (
kind: Belt("Druid"), kind: Belt("Druid"),
stats: ( stats: (
protection: Normal(2.0) protection: Normal(2.0),
poise_protection: Normal(2.0),
), ),
) )
), ),

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Belt("Leather0"), kind: Belt("Leather0"),
stats: ( stats: (
protection: Normal(1.0)), protection: Normal(1.0),
poise_protection: Normal(1.0),
),
) )
), ),
quality: Common, quality: Common,

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Belt("Leather2"), kind: Belt("Leather2"),
stats: ( stats: (
protection: Normal(1.0)), protection: Normal(1.0),
poise_protection: Normal(1.0),
),
) )
), ),
quality: Common, quality: Common,

View File

@ -5,7 +5,8 @@ ItemDef(
( (
kind: Belt("Leather2"), kind: Belt("Leather2"),
stats: ( stats: (
protection: Normal(1.0) protection: Normal(1.0),
poise_protection: Normal(1.0),
), ),
) )
), ),

View File

@ -5,7 +5,8 @@ ItemDef(
( (
kind: Belt("Plate0"), kind: Belt("Plate0"),
stats: ( stats: (
protection: Normal(3.0) protection: Normal(3.0),
poise_protection: Normal(3.0),
), ),
) )
), ),

View File

@ -5,7 +5,8 @@ ItemDef(
( (
kind: Belt("Steel0"), kind: Belt("Steel0"),
stats: ( stats: (
protection: Normal(4.0) protection: Normal(4.0),
poise_protection: Normal(4.0),
), ),
) )
), ),

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Belt("Tarasque"), kind: Belt("Tarasque"),
stats: ( stats: (
protection: Normal(3.0)), protection: Normal(3.0),
poise_protection: Normal(3.0),
),
) )
), ),
quality: High, quality: High,

View File

@ -5,7 +5,8 @@ ItemDef(
( (
kind: Belt("Twig"), kind: Belt("Twig"),
stats: ( stats: (
protection: Normal(2.0) protection: Normal(2.0),
poise_protection: Normal(2.0),
), ),
) )
), ),

View File

@ -5,7 +5,8 @@ ItemDef(
( (
kind: Belt("Twigsflowers"), kind: Belt("Twigsflowers"),
stats: ( stats: (
protection: Normal(2.0) protection: Normal(2.0),
poise_protection: Normal(2.0),
), ),
) )
), ),

View File

@ -5,7 +5,8 @@ ItemDef(
( (
kind: Belt("Twigsleaves"), kind: Belt("Twigsleaves"),
stats: ( stats: (
protection: Normal(2.0) protection: Normal(2.0),
poise_protection: Normal(2.0),
), ),
) )
), ),

View File

@ -5,7 +5,8 @@ ItemDef(
( (
kind: Belt("VeloriteMage0"), kind: Belt("VeloriteMage0"),
stats: ( stats: (
protection: Normal(5.8) protection: Normal(5.8),
poise_protection: Normal(5.8),
), ),
) )
), ),

View File

@ -5,7 +5,8 @@ ItemDef(
( (
kind: Belt("Warlock"), kind: Belt("Warlock"),
stats: ( stats: (
protection: Normal(8.0) protection: Normal(8.0),
poise_protection: Normal(8.0),
), ),
) )
), ),

View File

@ -5,7 +5,8 @@ ItemDef(
( (
kind: Belt("Warlord"), kind: Belt("Warlord"),
stats: ( stats: (
protection: Normal(8.0) protection: Normal(8.0),
poise_protection: Normal(8.0),
), ),
) )
), ),

View File

@ -5,7 +5,8 @@ ItemDef(
( (
kind: Chest("Assassin"), kind: Chest("Assassin"),
stats: ( stats: (
protection: Normal(15.0) protection: Normal(15.0),
poise_protection: Normal(15.0),
), ),
) )
), ),

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Chest("Bonerattler"), kind: Chest("Bonerattler"),
stats: ( stats: (
protection: Normal(25.0)), protection: Normal(25.0),
poise_protection: Normal(25.0),
),
) )
), ),
quality: High, quality: High,

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Chest("ClothBlue0"), kind: Chest("ClothBlue0"),
stats: ( stats: (
protection: Normal(1.0)), protection: Normal(1.0),
poise_protection: Normal(1.0),
),
) )
), ),
quality: Common, quality: Common,

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Chest("ClothGreen0"), kind: Chest("ClothGreen0"),
stats: ( stats: (
protection: Normal(1.0)), protection: Normal(1.0),
poise_protection: Normal(1.0),
),
) )
), ),
quality: Common, quality: Common,

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Chest("ClothPurple0"), kind: Chest("ClothPurple0"),
stats: ( stats: (
protection: Normal(1.0)), protection: Normal(1.0),
poise_protection: Normal(1.0),
),
) )
), ),
quality: Common, quality: Common,

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Chest("VeloriteMage0"), kind: Chest("VeloriteMage0"),
stats: ( stats: (
protection: Normal(30.0)), protection: Normal(30.0),
poise_protection: Normal(30.0),
),
) )
), ),
quality: Epic, quality: Epic,

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Chest("CultistPurple"), kind: Chest("CultistPurple"),
stats: ( stats: (
protection: Normal(30.0)), protection: Normal(30.0),
poise_protection: Normal(30.0),
),
) )
), ),
quality: Epic, quality: Epic,

View File

@ -5,7 +5,8 @@ ItemDef(
( (
kind: Chest("Druid"), kind: Chest("Druid"),
stats: ( stats: (
protection: Normal(6.0) protection: Normal(6.0),
poise_protection: Normal(6.0),
), ),
) )
), ),

View File

@ -5,7 +5,8 @@ ItemDef(
( (
kind: Chest("Leather0"), kind: Chest("Leather0"),
stats: ( stats: (
protection: Normal(10.0) protection: Normal(10.0),
poise_protection: Normal(10.0),
), ),
) )
), ),

View File

@ -5,7 +5,8 @@ ItemDef(
( (
kind: Chest("Leather2"), kind: Chest("Leather2"),
stats: ( stats: (
protection: Normal(10.0) protection: Normal(10.0),
poise_protection: Normal(10.0),
), ),
) )
), ),

View File

@ -5,7 +5,8 @@ ItemDef(
( (
kind: Chest("Leather2"), kind: Chest("Leather2"),
stats: ( stats: (
protection: Normal(8.0) protection: Normal(8.0),
poise_protection: Normal(8.0),
), ),
) )
), ),

View File

@ -5,7 +5,8 @@ ItemDef(
( (
kind: Chest("PlateGreen0"), kind: Chest("PlateGreen0"),
stats: ( stats: (
protection: Normal(20.0) protection: Normal(20.0),
poise_protection: Normal(20.0),
), ),
) )
), ),

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Chest("Steel0"), kind: Chest("Steel0"),
stats: ( stats: (
protection: Normal(25.0)), protection: Normal(25.0),
poise_protection: Normal(25.0),
),
) )
), ),
quality: High, quality: High,

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Chest("Tarasque"), kind: Chest("Tarasque"),
stats: ( stats: (
protection: Normal(25.0)), protection: Normal(25.0),
poise_protection: Normal(25.0),
),
) )
), ),
quality: High, quality: High,

View File

@ -5,7 +5,8 @@ ItemDef(
( (
kind: Chest("Twig"), kind: Chest("Twig"),
stats: ( stats: (
protection: Normal(15.0) protection: Normal(15.0),
poise_protection: Normal(15.0),
), ),
) )
), ),

View File

@ -5,7 +5,8 @@ ItemDef(
( (
kind: Chest("Twigsflowers"), kind: Chest("Twigsflowers"),
stats: ( stats: (
protection: Normal(15.0) protection: Normal(15.0),
poise_protection: Normal(15.0),
), ),
) )
), ),

View File

@ -5,7 +5,8 @@ ItemDef(
( (
kind: Chest("Twigsleaves"), kind: Chest("Twigsleaves"),
stats: ( stats: (
protection: Normal(15.0) protection: Normal(15.0),
poise_protection: Normal(15.0),
), ),
) )
), ),

View File

@ -5,7 +5,8 @@ ItemDef(
( (
kind: Chest("VeloriteMage0"), kind: Chest("VeloriteMage0"),
stats: ( stats: (
protection: Normal(28.0) protection: Normal(28.0),
poise_protection: Normal(28.0),
), ),
) )
), ),

View File

@ -5,7 +5,8 @@ ItemDef(
( (
kind: Chest("Warlock"), kind: Chest("Warlock"),
stats: ( stats: (
protection: Normal(40.0) protection: Normal(40.0),
poise_protection: Normal(40.0),
), ),
) )
), ),

View File

@ -5,7 +5,8 @@ ItemDef(
( (
kind: Chest("Warlord"), kind: Chest("Warlord"),
stats: ( stats: (
protection: Normal(40.0) protection: Normal(40.0),
poise_protection: Normal(40.0),
), ),
) )
), ),

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Chest("WorkerGreen0"), kind: Chest("WorkerGreen0"),
stats: ( stats: (
protection: Normal(1.0)), protection: Normal(1.0),
poise_protection: Normal(1.0),
),
) )
), ),
quality: Low, quality: Low,

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Chest("WorkerGreen1"), kind: Chest("WorkerGreen1"),
stats: ( stats: (
protection: Normal(1.0)), protection: Normal(1.0),
poise_protection: Normal(1.0),
),
) )
), ),
quality: Low, quality: Low,

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Chest("WorkerOrange0"), kind: Chest("WorkerOrange0"),
stats: ( stats: (
protection: Normal(1.0)), protection: Normal(1.0),
poise_protection: Normal(1.0),
),
) )
), ),
quality: Low, quality: Low,

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Chest("WorkerOrange1"), kind: Chest("WorkerOrange1"),
stats: ( stats: (
protection: Normal(1.0)), protection: Normal(1.0),
poise_protection: Normal(1.0),
),
) )
), ),
quality: Low, quality: Low,

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Chest("WorkerPurple0"), kind: Chest("WorkerPurple0"),
stats: ( stats: (
protection: Normal(1.0)), protection: Normal(1.0),
poise_protection: Normal(1.0),
),
) )
), ),
quality: Low, quality: Low,

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Chest("WorkerPurple1"), kind: Chest("WorkerPurple1"),
stats: ( stats: (
protection: Normal(1.0)), protection: Normal(1.0),
poise_protection: Normal(1.0),
),
) )
), ),
quality: Low, quality: Low,

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Chest("WorkerRed0"), kind: Chest("WorkerRed0"),
stats: ( stats: (
protection: Normal(1.0)), protection: Normal(1.0),
poise_protection: Normal(1.0),
),
) )
), ),
quality: Low, quality: Low,

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Chest("WorkerRed1"), kind: Chest("WorkerRed1"),
stats: ( stats: (
protection: Normal(1.0)), protection: Normal(1.0),
poise_protection: Normal(1.0),
),
) )
), ),
quality: Low, quality: Low,

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Chest("WorkerYellow0"), kind: Chest("WorkerYellow0"),
stats: ( stats: (
protection: Normal(1.0)), protection: Normal(1.0),
poise_protection: Normal(1.0),
),
) )
), ),
quality: Low, quality: Low,

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Chest("WorkerYellow1"), kind: Chest("WorkerYellow1"),
stats: ( stats: (
protection: Normal(1.0)), protection: Normal(1.0),
poise_protection: Normal(1.0),
),
) )
), ),
quality: Low, quality: Low,

View File

@ -5,7 +5,8 @@ ItemDef(
( (
kind: Foot("Assassin"), kind: Foot("Assassin"),
stats: ( stats: (
protection: Normal(4.0) protection: Normal(4.0),
poise_protection: Normal(4.0),
), ),
) )
), ),

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Foot("Bonerattler"), kind: Foot("Bonerattler"),
stats: ( stats: (
protection: Normal(5.0)), protection: Normal(5.0),
poise_protection: Normal(5.0),
),
) )
), ),
quality: High, quality: High,

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Foot("ClothBlue0"), kind: Foot("ClothBlue0"),
stats: ( stats: (
protection: Normal(0.0)), protection: Normal(0.0),
poise_protection: Normal(0.0),
),
) )
), ),
quality: Common, quality: Common,

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Foot("ClothGreen0"), kind: Foot("ClothGreen0"),
stats: ( stats: (
protection: Normal(0.0)), protection: Normal(0.0),
poise_protection: Normal(0.0),
),
) )
), ),
quality: Common, quality: Common,

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Foot("ClothPurple0"), kind: Foot("ClothPurple0"),
stats: ( stats: (
protection: Normal(0.0)), protection: Normal(0.0),
poise_protection: Normal(0.0),
),
) )
), ),
quality: Common, quality: Common,

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Foot("Cultist"), kind: Foot("Cultist"),
stats: ( stats: (
protection: Normal(6.0)), protection: Normal(6.0),
poise_protection: Normal(6.0),
),
) )
), ),
quality: Epic, quality: Epic,

View File

@ -5,7 +5,8 @@ ItemDef(
( (
kind: Foot("Druid"), kind: Foot("Druid"),
stats: ( stats: (
protection: Normal(1.0) protection: Normal(1.0),
poise_protection: Normal(1.0),
), ),
) )
), ),

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Foot("JackalopeSlips"), kind: Foot("JackalopeSlips"),
stats: ( stats: (
protection: Normal(0.0)), protection: Normal(0.0),
poise_protection: Normal(0.0),
),
) )
), ),
quality: High, quality: High,

View File

@ -5,7 +5,9 @@ ItemDef(
( (
kind: Foot("Leather0"), kind: Foot("Leather0"),
stats: ( stats: (
protection: Normal(2.0)), protection: Normal(2.0),
poise_protection: Normal(2.0),
),
) )
), ),
quality: Common, quality: Common,

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