2024-02-15 13:45:17 +01:00
|
|
|
extends AreaSkillInstance
|
2024-02-13 23:12:32 +01:00
|
|
|
|
2024-02-16 15:30:29 +01:00
|
|
|
@export var voice_audio: AudioStream
|
|
|
|
|
2024-02-13 23:12:32 +01:00
|
|
|
func _ready():
|
2024-02-15 13:45:17 +01:00
|
|
|
animation.play("human/slash", 1.7)
|
2024-02-16 15:30:29 +01:00
|
|
|
voice.play(voice_audio)
|
2024-02-15 13:45:17 +01:00
|
|
|
await area_damage(0.5, 0.1, 0.2)
|
|
|
|
end()
|