56 lines
1.4 KiB
YAML
56 lines
1.4 KiB
YAML
name: square
|
|
ai_type: square # Validat contra el directori; mapeja a EnemyType::SQUARE.
|
|
|
|
shape:
|
|
path: enemy_square.shp
|
|
scale: 1.0 # multiplicador visual + hitbox sobre la mida nativa del .shp
|
|
collision_factor: 1.0 # ajust opcional del hitbox (default 1.0)
|
|
|
|
physics:
|
|
mass: 8.0 # Més pesat — "tanc"
|
|
speed: 40.0 # px/s (velocitat mitjana)
|
|
rotation_delta_min: 0.3 # rad/s — rotació lenta
|
|
rotation_delta_max: 1.5
|
|
restitution: 1.0
|
|
linear_damping: 0.0
|
|
angular_damping: 0.0
|
|
|
|
behavior:
|
|
# Square: tracking discret cap a la nau cada N segons.
|
|
tracking_strength: 0.5 # Interpolació LERP cap a la direcció desitjada (0..1)
|
|
tracking_interval: 1.0 # segons entre updates d'angle
|
|
|
|
animation:
|
|
pulse:
|
|
trigger_prob_per_second: 0.01
|
|
duration_min: 1.0
|
|
duration_max: 3.0
|
|
amplitude_min: 0.08
|
|
amplitude_max: 0.20
|
|
frequency_min: 1.5
|
|
frequency_max: 3.0
|
|
rotation_accel:
|
|
trigger_prob_per_second: 0.02
|
|
duration_min: 3.0
|
|
duration_max: 8.0
|
|
multiplier_min: 0.3
|
|
multiplier_max: 4.0
|
|
|
|
wounded:
|
|
duration: 1.0
|
|
blink_hz: 10.0
|
|
|
|
spawn:
|
|
invulnerability_duration: 3.0
|
|
invulnerability_brightness_start: 0.3
|
|
invulnerability_brightness_end: 0.7
|
|
invulnerability_scale_start: 0.0
|
|
invulnerability_scale_end: 1.0
|
|
safety_distance: 36.0
|
|
|
|
colors:
|
|
normal: [255, 0, 0] # Roig pur "tanc"
|
|
wounded: [255, 220, 60]
|
|
|
|
score: 150
|