몬스터 스키마 수정

- 단순 컬럼명 수정
This commit is contained in:
BoyongHwang
2026-01-31 20:55:01 +09:00
parent 64716d0807
commit ca56e195d8
3 changed files with 12 additions and 12 deletions

View File

@@ -3,19 +3,19 @@
"name": "id",
"type": "int",
"condition": null,
"description": "몬스터 고유 ID"
"description": "고유 ID"
},
{
"name": "memo",
"type": "string",
"condition": null,
"description": "메모"
"description": "기획 메모"
},
{
"name": "move_speed",
"type": "float",
"condition": null,
"description": "이동속도"
"description": "이동 속도"
},
{
"name": "max_hp",
@@ -27,7 +27,7 @@
"name": "atk_range",
"type": "int",
"condition": null,
"description": "사정거리"
"description": "사정 거리"
},
{
"name": "atk_damage",

View File

@@ -1,6 +1,6 @@
id,memo,move_speed,max_hp,atk_range,atk_damage,atk_interval_sec,prefab_path,cost,weight
101,Grunt(기본),2.6,30,1,3,1.2,Assets/Prefabs/EnemyTest,1,1
102,Fast(빠름/약함),3.4,18,1,2,1,Assets/Prefabs/MonsterTest,2,0.5
103,Tank(느림/단단),2,70,1,4,1.5,Assets/Prefabs/Core,5,0.2
101,Grunt(기본),2.6,30,1,3,1.2,Assets/Prefabs/EnemyTest,1,1.0
102,Fast(빠름/약함),3.4,18,1,2,1.0,Assets/Prefabs/MonsterTest,2,0.5
103,Tank(느림/단단),2.0,70,1,4,1.5,Assets/Prefabs/Core,5,0.2
104,Ranged(원거리/약함),2.4,22,5,2,1.4,Assets/Prefabs/Resource,3,0.333
105,Elite(소수 정예),2.8,120,1,7,1.3,Assets/Prefabs/ResourcePickup,10,0.1
1 id memo move_speed max_hp atk_range atk_damage atk_interval_sec prefab_path cost weight
2 101 Grunt(기본) 2.6 30 1 3 1.2 Assets/Prefabs/EnemyTest 1 1 1.0
3 102 Fast(빠름/약함) 3.4 18 1 2 1 1.0 Assets/Prefabs/MonsterTest 2 0.5
4 103 Tank(느림/단단) 2 2.0 70 1 4 1.5 Assets/Prefabs/Core 5 0.2
5 104 Ranged(원거리/약함) 2.4 22 5 2 1.4 Assets/Prefabs/Resource 3 0.333
6 105 Elite(소수 정예) 2.8 120 1 7 1.3 Assets/Prefabs/ResourcePickup 10 0.1