게임 데이터 수정

- Player, Tower, Monster, Creep에 Sight 컬럼 추가 (player는 visionRadius 대응 필요)
- Tower 레벨 컬럼 및 더미 데이터 추가
- 시야 전용 건물 Torch fbx 추가
This commit is contained in:
BoyongHwang
2026-02-22 15:28:00 +09:00
parent 4beb2fb0bb
commit b86e087d03
60 changed files with 3575 additions and 52 deletions

View File

@@ -17,11 +17,29 @@
"condition": null,
"description": "건물 이름"
},
{
"name": "level",
"type": "int",
"condition": null,
"description": "타워 레벨"
},
{
"name": "upgrade_to",
"type": "int",
"condition": null,
"description": "레벨업 시 변경될 타워 ID 입력"
},
{
"name": "tower_type",
"type": "string",
"condition": null,
"description": "업그레이드 분류용 타워 종류\\n • attack\\n • defense\\n • special\\n • sight"
},
{
"name": "mana",
"type": "int",
"condition": null,
"description": "건설 비용\\n(mana=20)\\n(mana=50; iron=10)"
"description": "건설 비용"
},
{
"name": "manpower",
@@ -53,6 +71,12 @@
"condition": null,
"description": "체력"
},
{
"name": "sight",
"type": "int",
"condition": null,
"description": "타워 시야"
},
{
"name": "atk_range",
"type": "int",
@@ -75,6 +99,6 @@
"name": "model_path",
"type": "string",
"condition": null,
"description": "모델 경로"
"description": "프리팹/리소스 경로"
}
]