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,25 @@
BasicMelee(
energy_cost: 0,
buildup_duration: 0.8,
swing_duration: 0.1,
hit_timing: 0.5,
recover_duration: 0.7,
melee_constructor: (
kind: Bash(
damage: 100.0,
poise: 0.0,
knockback: 10.0,
energy_regen: 10.0,
),
range: 5.0,
angle: 60.0,
damage_effect: Some(Buff((
kind: Bleeding,
dur_secs: 1.0,
strength: DamageFraction(0.1),
chance: 0.3,
))),
multi_target: Some(Normal),
),
ori_modifier: 0.2,
)

View File

@@ -0,0 +1,19 @@
BasicBeam(
buildup_duration: 0.1,
recover_duration: 1.5,
beam_duration: 1.0,
damage: 10.0,
tick_rate: 3.0,
range: 80.0,
max_angle: 20.0,
damage_effect: Some(Buff((
kind: Burning,
dur_secs: 60.0,
strength: DamageFraction(0.5),
chance: 1.0,
))),
energy_regen: 0,
energy_drain: 0,
ori_rate: 5.0,
specifier: Flamethrower,
)

View File

@@ -0,0 +1,16 @@
BasicRanged(
energy_cost: 0,
buildup_duration: 1.5,
recover_duration: 2.5,
projectile: ClayRocket(
damage: 25.0,
radius: 12.0,
knockback: 10.0,
min_falloff: 0.1,
),
projectile_body: Object(Mine),
projectile_speed: 50.0,
num_projectiles: 6,
projectile_spread: 1.5,
move_efficiency: 0.3,
)

View File

@@ -0,0 +1,18 @@
Shockwave(
energy_cost: 0,
buildup_duration: 1.2,
swing_duration: 0.4,
recover_duration: 1.2,
damage: 20.0,
poise_damage: 10,
knockback: (strength: 30.0, direction: Away),
shockwave_angle: 360.0,
shockwave_vertical_angle: 90.0,
shockwave_speed: 15.0,
shockwave_duration: 3.0,
dodgeable: Jump,
move_efficiency: 0.0,
damage_kind: Crushing,
specifier: Fire,
ori_rate: 1.0,
)

View File

@@ -0,0 +1,16 @@
BasicRanged(
energy_cost: 0,
buildup_duration: 1.75,
recover_duration: 1.75,
projectile: Mine(
damage: 25.0,
radius: 2.0,
min_falloff: 0.3,
),
projectile_body: Object(Mine),
projectile_light: None,
projectile_speed: 30.0,
num_projectiles: 12,
projectile_spread: 0.6,
move_efficiency: 0.8,
)

View File

@@ -0,0 +1,19 @@
BasicSummon(
buildup_duration: 0.5,
cast_duration: 1.3,
recover_duration: 2.5,
summon_amount: 3,
summon_distance: (4, 4),
summon_info: (
body: BipedSmall((
species: Clockwork,
body_type: Male,
)),
scale: None,
use_npc_name: true,
has_health: true,
loadout_config: Some(ClockworkSummon),
skillset_config: None,
),
duration: None,
)

View File

@@ -0,0 +1,19 @@
BasicSummon(
buildup_duration: 0.5,
cast_duration: 1.3,
recover_duration: 2.5,
summon_amount: 2,
summon_distance: (8, 8),
summon_info: (
body: Object(Flamethrower),
scale: None,
has_health: true,
use_npc_name: true,
loadout_config: None,
skillset_config: None,
),
duration: Some((
secs: 30,
nanos: 0,
)),
)