mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Balancing.
This commit is contained in:
parent
7ac1488181
commit
48fa4e7c1f
@ -1,7 +1,7 @@
|
||||
DashMelee(
|
||||
energy_cost: 0,
|
||||
base_damage: 300,
|
||||
scaled_damage: 1200,
|
||||
base_damage: 150,
|
||||
scaled_damage: 600,
|
||||
base_poise_damage: 25,
|
||||
scaled_poise_damage: 100,
|
||||
base_knockback: 10.0,
|
||||
|
@ -1,8 +1,8 @@
|
||||
ChargedMelee(
|
||||
energy_cost: 0,
|
||||
energy_drain: 0,
|
||||
initial_damage: 200,
|
||||
scaled_damage: 800,
|
||||
initial_damage: 0,
|
||||
scaled_damage: 500,
|
||||
initial_poise_damage: 50,
|
||||
scaled_poise_damage: 150,
|
||||
initial_knockback: 0.0,
|
||||
|
@ -3,7 +3,7 @@ BasicMelee(
|
||||
buildup_duration: 0.3,
|
||||
swing_duration: 0.1,
|
||||
recover_duration: 0.6,
|
||||
base_damage: 250.0,
|
||||
base_damage: 150.0,
|
||||
base_poise_damage: 60.0,
|
||||
knockback: 15.0,
|
||||
range: 5.0,
|
||||
|
@ -53,5 +53,6 @@
|
||||
("common.items.weapons.bow.frostwood-0", 1),
|
||||
("common.items.weapons.staff.frostwood_torch", 1),
|
||||
("common.items.weapons.sceptre.fork0", 1),
|
||||
("common.items.consumable.potion_med", 100),
|
||||
],
|
||||
})
|
||||
|
@ -444,7 +444,7 @@ impl Body {
|
||||
biped_large::Species::Mindflayer => 8000,
|
||||
biped_large::Species::Tidalwarrior => 2500,
|
||||
biped_large::Species::Yeti => 4000,
|
||||
biped_large::Species::Minotaur => 5000,
|
||||
biped_large::Species::Minotaur => 30000,
|
||||
biped_large::Species::Harvester => 3000,
|
||||
biped_large::Species::Blueoni => 2400,
|
||||
biped_large::Species::Redoni => 2400,
|
||||
@ -557,6 +557,7 @@ impl Body {
|
||||
biped_large::Species::Tidalwarrior => 90,
|
||||
biped_large::Species::Yeti => 80,
|
||||
biped_large::Species::Harvester => 80,
|
||||
biped_large::Species::Minotaur => 0,
|
||||
_ => 100,
|
||||
},
|
||||
Body::BipedSmall(_) => 10,
|
||||
|
@ -289,7 +289,7 @@ impl Buff {
|
||||
vec![
|
||||
BuffEffect::MovementSpeed(1.0 + data.strength),
|
||||
BuffEffect::HealthChangeOverTime {
|
||||
rate: data.strength * 100.0,
|
||||
rate: data.strength * 500.0,
|
||||
accumulated: 0.0,
|
||||
kind: ModifierKind::Additive,
|
||||
},
|
||||
|
@ -71,7 +71,7 @@ impl Body {
|
||||
biped_large::Species::Occultsaurok => 100.0,
|
||||
biped_large::Species::Mightysaurok => 100.0,
|
||||
biped_large::Species::Mindflayer => 90.0,
|
||||
biped_large::Species::Minotaur => 90.0,
|
||||
biped_large::Species::Minotaur => 80.0,
|
||||
_ => 80.0,
|
||||
},
|
||||
Body::BirdMedium(_) => 80.0,
|
||||
|
Loading…
Reference in New Issue
Block a user