몬스터 스킬 Json 파일 및 로드 코드 복구
This commit is contained in:
@@ -0,0 +1,16 @@
|
|||||||
|
[
|
||||||
|
{
|
||||||
|
"skillId": 0,
|
||||||
|
"skillName": null,
|
||||||
|
"damage": 0,
|
||||||
|
"cooldown": 0,
|
||||||
|
"range": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"skillId": 1,
|
||||||
|
"skillName": "DragonBreath",
|
||||||
|
"damage": 1.5,
|
||||||
|
"cooldown": 10,
|
||||||
|
"range": 0
|
||||||
|
}
|
||||||
|
]
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 99f4468f115ce1b43a9d63629152f944
|
||||||
|
TextScriptImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
using System.Collections;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using UnityEngine;
|
||||||
|
|
||||||
|
namespace TON
|
||||||
|
{
|
||||||
|
[System.Serializable]
|
||||||
|
public class MonsterSkillData
|
||||||
|
{
|
||||||
|
public int skillId; // 스킬 ID
|
||||||
|
public string skillName; // 스킬 이름
|
||||||
|
public float damage; // 스킬 데미지
|
||||||
|
public float cooldown; // 스킬 쿨다운
|
||||||
|
public float range; // 스킬 범위
|
||||||
|
public string prefabName; // 스킬 프리팹 이름
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: dc9beeec2c2b78942b30c8de996bddbb
|
||||||
|
MonoImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 2
|
||||||
|
defaultReferences: []
|
||||||
|
executionOrder: 0
|
||||||
|
icon: {instanceID: 0}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
Reference in New Issue
Block a user