웨이브, 몬스터 데이터 스키마 변경
- waveMaster, monsterMaster 테이블 관련 파일 제거 - monster 테이블 추가 - 데이터 작업 가이드 txt 파일 추가
This commit is contained in:
62
GameData/.Monster_schema.json
Normal file
62
GameData/.Monster_schema.json
Normal file
@@ -0,0 +1,62 @@
|
||||
[
|
||||
{
|
||||
"name": "id",
|
||||
"type": "int",
|
||||
"condition": null,
|
||||
"description": "몬스터 고유 ID"
|
||||
},
|
||||
{
|
||||
"name": "memo",
|
||||
"type": "string",
|
||||
"condition": null,
|
||||
"description": "메모"
|
||||
},
|
||||
{
|
||||
"name": "move_speed",
|
||||
"type": "float",
|
||||
"condition": null,
|
||||
"description": "이동속도"
|
||||
},
|
||||
{
|
||||
"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": "프리팹/리소스 경로"
|
||||
},
|
||||
{
|
||||
"name": "cost",
|
||||
"type": "int",
|
||||
"condition": null,
|
||||
"description": "몬스터 난이도 점수"
|
||||
},
|
||||
{
|
||||
"name": "weight",
|
||||
"type": "float",
|
||||
"condition": null,
|
||||
"description": "등장 가중치"
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user