몬스터 공격 수정 테스트

This commit is contained in:
Mingu Kim
2025-02-08 23:20:38 +09:00
parent 85fae09b37
commit 5f69ad8e30
7 changed files with 179 additions and 50 deletions

View File

@@ -0,0 +1,17 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace TON
{
[System.Serializable]
public class MonsterSkillData
{
public int id; // 몬스터 id
public string skillType; // 스킬 타입(공격, 근거리, 원거리)
public int damage; // 스킬 피해량
public float coolTime; // 스킬 쿨타임
public float skillRange; // 스킬 범위(콜라이더 조정)
}
}