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,
base_damage: 90,
max_damage: 110,
base_poise_damage: 40,
base_poise_damage: 20,
damage_increase: 10,
poise_damage_increase: 5,
knockback: 8.0,
range: 3.5,
angle: 50.0,
@ -20,6 +21,7 @@ ComboMelee(
max_damage: 160,
base_poise_damage: 40,
damage_increase: 15,
poise_damage_increase: 15,
knockback: 12.0,
range: 3.5,
angle: 30.0,

View File

@ -4,6 +4,7 @@ BasicRanged(
recover_duration: 300,
projectile: Arrow(
damage: 70.0,
poise_damage: 2,
knockback: 5.0,
energy_regen: 40,
),
@ -12,4 +13,4 @@ BasicRanged(
projectile_gravity: Some(Gravity(0.2)),
projectile_speed: 100.0,
can_continue: true,
)
)

View File

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

View File

@ -7,7 +7,8 @@ RepeaterRanged(
leap: Some(5.0),
projectile: Arrow(
damage: 40.0,
knockback: 10.0,
poise_damage: 4,
knockback: 5.0,
energy_regen: 0,
),
projectile_body: Object(Arrow),
@ -15,4 +16,4 @@ RepeaterRanged(
projectile_gravity: Some(Gravity(0.2)),
projectile_speed: 100.0,
reps_remaining: 3,
)
)

View File

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

View File

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

View File

@ -5,6 +5,7 @@ BasicRanged(
projectile: Heal(
heal: 80.0,
damage: 60.0,
poise_damage: 0,
radius: 6.0,
),
projectile_body: Object(BoltNature),
@ -15,4 +16,4 @@ BasicRanged(
projectile_gravity: Some(Gravity(0.5)),
projectile_speed: 40.0,
can_continue: false,
)
)

View File

@ -4,6 +4,7 @@ BasicRanged(
recover_duration: 350,
projectile: Fireball(
damage: 100.0,
poise_damage: 10,
radius: 5.0,
energy_regen: 50,
),
@ -15,4 +16,4 @@ BasicRanged(
projectile_gravity: Some(Gravity(0.3)),
projectile_speed: 60.0,
can_continue: true,
)
)

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -5,9 +5,10 @@ ItemDef(
(
kind: Chest("Leather2"),
stats: (
protection: Normal(10.0)
),
protection: Normal(10.0),
poise_protection: Normal(10.0),
),
)
),
quality: Moderate,
)
)

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

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