타워 데이터 추가
- 타워 데이터 스키마 추가 - 더미 데이터 2종 추가 ㄴ id 1 : 타워 ㄴ id 2 : 벽
This commit is contained in:
68
GameData/.Tower_schema.json
Normal file
68
GameData/.Tower_schema.json
Normal file
@@ -0,0 +1,68 @@
|
||||
[
|
||||
{
|
||||
"name": "id",
|
||||
"type": "int",
|
||||
"condition": null,
|
||||
"description": "고유 ID"
|
||||
},
|
||||
{
|
||||
"name": "memo",
|
||||
"type": "string",
|
||||
"condition": null,
|
||||
"description": "기획 메모"
|
||||
},
|
||||
{
|
||||
"name": "mana",
|
||||
"type": "int",
|
||||
"condition": null,
|
||||
"description": "건설 비용\\n(mana=20)\\n(mana=50; iron=10)"
|
||||
},
|
||||
{
|
||||
"name": "manpower",
|
||||
"type": "float",
|
||||
"condition": null,
|
||||
"description": "건설 노동량"
|
||||
},
|
||||
{
|
||||
"name": "size_x",
|
||||
"type": "int",
|
||||
"condition": null,
|
||||
"description": "X 그리드 차지 공간"
|
||||
},
|
||||
{
|
||||
"name": "size_y",
|
||||
"type": "int",
|
||||
"condition": null,
|
||||
"description": "Y 그리드 차지 공간"
|
||||
},
|
||||
{
|
||||
"name": "max_hp",
|
||||
"type": "int",
|
||||
"condition": null,
|
||||
"description": "체력"
|
||||
},
|
||||
{
|
||||
"name": "atk_range",
|
||||
"type": "int",
|
||||
"condition": null,
|
||||
"description": "사정거리"
|
||||
},
|
||||
{
|
||||
"name": "atk_damage",
|
||||
"type": "int",
|
||||
"condition": null,
|
||||
"description": "데미지"
|
||||
},
|
||||
{
|
||||
"name": "atk_interval_sec",
|
||||
"type": "float",
|
||||
"condition": null,
|
||||
"description": "공격 주기"
|
||||
},
|
||||
{
|
||||
"name": "prefab_path",
|
||||
"type": "string",
|
||||
"condition": null,
|
||||
"description": "프리팹/리소스 경로"
|
||||
}
|
||||
]
|
||||
3
GameData/Tower.csv
Normal file
3
GameData/Tower.csv
Normal file
@@ -0,0 +1,3 @@
|
||||
id,memo,mana,manpower,size_x,size_y,max_hp,atk_range,atk_damage,atk_interval_sec,prefab_path
|
||||
1,타워,25,10,3,3,50,10,5,2,Assets/Prefabs/TowerArrow
|
||||
2,벽,5,5,1,1,30,0,0,0,Assets/Prefabs/Wall
|
||||
|
Reference in New Issue
Block a user