primeiro commit
All checks were successful
Build and Push Image / Build and push image (push) Successful in 3m5s

This commit is contained in:
2024-04-29 21:38:53 -03:00
commit e11bf493a1
2532 changed files with 55878 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
DashMelee(
energy_cost: 0,
melee_constructor: (
kind: Bash(
damage: 16.0,
poise: 50.0,
knockback: 6.0,
energy_regen: 0.0,
),
scaled: Some((
kind: Bash(
damage: 30.0,
poise: 100.0,
knockback: 12.0,
energy_regen: 0.0,
))),
range: 2.0,
angle: 20.0,
),
energy_drain: 0,
forward_speed: 1.9,
buildup_duration: 1.0,
charge_duration: 6.0,
swing_duration: 0.1,
recover_duration: 1.4,
ori_modifier: 0.3,
charge_through: false,
)

View File

@@ -0,0 +1,18 @@
BasicSummon(
buildup_duration: 0.75,
cast_duration: 0.2,
recover_duration: 0.3,
summon_amount: 12,
summon_distance: (4, 9),
summon_info: (
body: Object(Tornado),
scale: None,
has_health: false,
loadout_config: None,
skillset_config: None,
),
duration: Some((
secs: 10,
nanos: 0,
)),
)

View File

@@ -0,0 +1,66 @@
ComboMelee2(
strikes: [
(
melee_constructor: (
kind: Slash(
damage: 22,
poise: 0,
knockback: 5,
energy_regen: 0,
),
range: 4.5,
angle: 30.0,
),
buildup_duration: 0.8,
swing_duration: 0.1,
hit_timing: 0.5,
recover_duration: 0.6,
movement: (
swing: Some(Forward(3.0)),
),
ori_modifier: 0.7,
),
(
melee_constructor: (
kind: Slash(
damage: 18,
poise: 0,
knockback: 5,
energy_regen: 0,
),
range: 3.5,
angle: 30.0,
),
buildup_duration: 1.05,
swing_duration: 0.45,
hit_timing: 0.5,
recover_duration: 0.6,
movement: (
swing: Some(Forward(3.0)),
),
ori_modifier: 0.7,
),
(
melee_constructor: (
kind: Slash(
damage: 28,
poise: 0,
knockback: 10,
energy_regen: 0,
),
range: 3.5,
angle: 30.0,
),
buildup_duration: 1.4,
swing_duration: 0.6,
hit_timing: 0.5,
recover_duration: 0.6,
movement: (
swing: Some(Forward(3.5)),
),
ori_modifier: 0.7,
),
],
energy_cost_per_strike: 0,
auto_progress: true,
)