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,9 @@
SelfBuff(
buildup_duration: 0.4,
cast_duration: 0.8,
recover_duration: 0.3,
buff_kind: ProtectingWard,
buff_strength: 0.3,
buff_duration: Some(10.0),
energy_cost: 0,
)

View File

@@ -0,0 +1,25 @@
ComboMelee2(
strikes: [
(
melee_constructor: (
kind: Bash(
damage: 3.0,
poise: 12,
knockback: 3,
energy_regen: 0,
),
range: 3.0,
angle: 60.0,
),
buildup_duration: 0.55,
swing_duration: 0.35,
hit_timing: 0.5,
recover_duration: 1.1,
movement: (
swing: Some(Forward(0.1)),
),
ori_modifier: 0.6,
),
],
energy_cost_per_strike: 0,
)

View File

@@ -0,0 +1,15 @@
BasicRanged(
energy_cost: 0,
buildup_duration: 0.6,
recover_duration: 0.9,
projectile: Pebble(
damage: 6,
knockback: 2,
),
projectile_body: Object(Pebble),
projectile_light: None,
projectile_speed: 70.0,
num_projectiles: 1,
projectile_spread: 0.0,
move_efficiency: 0.3,
)