2026-05-22 보스스킬 : 지진
This commit is contained in:
43
Assets/02_Scripts/Enemy/Skills/EarthquakeSkill.cs
Normal file
43
Assets/02_Scripts/Enemy/Skills/EarthquakeSkill.cs
Normal file
@@ -0,0 +1,43 @@
|
||||
using System.Threading;
|
||||
using UnityEngine;
|
||||
|
||||
public class EarthquakeSkill : BossSkill
|
||||
{
|
||||
[Header("EarthquakeSkill")]
|
||||
[SerializeField] private float _windup = 0.5f; // 애니 시작 ~ 피해 판정 ON
|
||||
[SerializeField] private float _activeDuration = 1.5f; // 피해 판정 유지 시간
|
||||
[SerializeField] private float _recovery = 0.6f; // 판정 OFF 후 후딜
|
||||
[SerializeField] private int _damage = 15;
|
||||
[SerializeField] private float _liftForce = 0.5f; // 지면 피격 시 띄우는 세기
|
||||
|
||||
protected override async Awaitable RunSkill(CancellationToken token)
|
||||
{
|
||||
try
|
||||
{
|
||||
// 선딜
|
||||
await Awaitable.WaitForSecondsAsync(_windup, token);
|
||||
|
||||
Earthquake();
|
||||
|
||||
// 후딜
|
||||
await Awaitable.WaitForSecondsAsync(_recovery, token);
|
||||
}
|
||||
finally
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
private void Earthquake()
|
||||
{
|
||||
PlayerController player = GameManager.Instance.LocalPlayer;
|
||||
if (player == null) return;
|
||||
|
||||
// 플레이어가 지면에 닿아 있을 때만 발동. 공중이면 아무 효과 없음.
|
||||
if (!player.IsGrounded) return;
|
||||
|
||||
// 지면 접촉 중: 살짝 띄우면서 데미지.
|
||||
player.Launch(new Vector2(0f, _liftForce));
|
||||
player.TakeDamage(_damage);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user