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,18 @@
BasicMelee(
energy_cost: 0,
buildup_duration: 0.3,
swing_duration: 0.05,
hit_timing: 0.8,
recover_duration: 0.45,
melee_constructor: (
kind: Slash(
damage: 9,
poise: 5,
knockback: 0,
energy_regen: 0,
),
range: 3,
angle: 30,
),
ori_modifier: 1.0,
)

View File

@@ -0,0 +1,16 @@
BasicRanged(
energy_cost: 0,
buildup_duration: 0.75,
recover_duration: 0.45,
projectile: Arrow(
damage: 4,
knockback: 0,
energy_regen: 0,
),
projectile_body: Object(Dart),
projectile_light: None,
projectile_speed: 80.0,
num_projectiles: 1,
projectile_spread: 0.0,
move_efficiency: 0.3,
)

View File

@@ -0,0 +1,16 @@
BasicRanged(
energy_cost: 0,
buildup_duration: 0.825,
recover_duration: 0.6,
projectile: Fireball(
damage: 13.5,
radius: 2.0,
energy_regen: 10.0,
min_falloff: 0.5,
),
projectile_body: Object(BoltFire),
projectile_speed: 25,
num_projectiles: 8,
projectile_spread: 0.125,
move_efficiency: 0.3,
)

View File

@@ -0,0 +1,18 @@
Shockwave(
energy_cost: 0,
buildup_duration: 0.975,
swing_duration: 0.1,
recover_duration: 0.6,
damage: 30,
poise_damage: 0,
knockback: ( strength: 25, direction: Away),
shockwave_angle: 360,
shockwave_vertical_angle: 90,
shockwave_speed: 10,
shockwave_duration: 1,
dodgeable: Roll,
move_efficiency: 0,
damage_kind: Energy,
specifier: Fire,
ori_rate: 1.0,
)

View File

@@ -0,0 +1,24 @@
BasicMelee(
energy_cost: 0,
buildup_duration: 0.6,
swing_duration: 0.1,
hit_timing: 0.5,
recover_duration: 0.45,
melee_constructor: (
kind: Bash(
damage: 12,
poise: 10,
knockback: 0,
energy_regen: 0,
),
range: 7.5,
angle: 60.0,
damage_effect: Some(Buff((
kind: Burning,
dur_secs: 10.0,
strength: DamageFraction(0.5),
chance: 0.5,
))),
),
ori_modifier: 0.7,
)

View File

@@ -0,0 +1,15 @@
BasicSummon(
buildup_duration: 0.375,
cast_duration: 0.5,
recover_duration: 0.375,
summon_amount: 1,
summon_distance: (1, 4),
summon_info: (
body: Object(GnarlingTotemGreen),
scale: None,
has_health: true,
loadout_config: None,
skillset_config: None,
),
duration: None,
)

View File

@@ -0,0 +1,15 @@
BasicSummon(
buildup_duration: 0.375,
cast_duration: 0.5,
recover_duration: 0.375,
summon_amount: 1,
summon_distance: (1, 4),
summon_info: (
body: Object(GnarlingTotemRed),
scale: None,
has_health: true,
loadout_config: None,
skillset_config: None,
),
duration: None,
)

View File

@@ -0,0 +1,15 @@
BasicSummon(
buildup_duration: 0.375,
cast_duration: 0.5,
recover_duration: 0.375,
summon_amount: 1,
summon_distance: (1, 4),
summon_info: (
body: Object(GnarlingTotemWhite),
scale: None,
has_health: true,
loadout_config: None,
skillset_config: None,
),
duration: None,
)

View File

@@ -0,0 +1,18 @@
BasicMelee(
energy_cost: 0,
buildup_duration: 0.15,
swing_duration: 0.05,
hit_timing: 0.4,
recover_duration: 0.375,
melee_constructor: (
kind: Stab(
damage: 6,
poise: 0,
knockback: 0,
energy_regen: 0,
),
range: 2,
angle: 15,
),
ori_modifier: 1.0,
)

View File

@@ -0,0 +1,24 @@
BasicAura(
buildup_duration: 0.375,
cast_duration: 0.5,
recover_duration: 0.375,
targets: InGroup,
auras: [
(
kind: Regeneration,
strength: 7.5,
duration: Some(5),
category: Magical,
),
(
kind: ProtectingWard,
strength: 0.75,
duration: Some(5),
category: Magical,
),
],
aura_duration: Some(2),
range: 50,
energy_cost: 0,
scales_with_combo: false,
)

View File

@@ -0,0 +1,18 @@
BasicAura(
buildup_duration: 0.375,
cast_duration: 0.5,
recover_duration: 0.375,
targets: OutOfGroup,
auras: [
(
kind: Burning,
strength: 0.75,
duration: Some(5),
category: Magical,
),
],
aura_duration: Some(2),
range: 50,
energy_cost: 0,
scales_with_combo: false,
)

View File

@@ -0,0 +1,18 @@
BasicAura(
buildup_duration: 0.375,
cast_duration: 0.5,
recover_duration: 0.375,
targets: InGroup,
auras: [
(
kind: Hastened,
strength: 0.75,
duration: Some(5),
category: Magical,
),
],
aura_duration: Some(2),
range: 50,
energy_cost: 0,
scales_with_combo: false,
)