From 3fbf63cf48ba63bbf5a3068169a4cf08d6640926 Mon Sep 17 00:00:00 2001 From: BoyongHwang Date: Sat, 31 Jan 2026 20:55:55 +0900 Subject: [PATCH] =?UTF-8?q?=ED=94=8C=EB=A0=88=EC=9D=B4=EC=96=B4=20?= =?UTF-8?q?=EC=8A=A4=ED=82=A4=EB=A7=88=20json=20=EB=88=84=EB=9D=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 누락된 데이터 추가 --- GameData/.Player_schema.json | 68 ++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 GameData/.Player_schema.json diff --git a/GameData/.Player_schema.json b/GameData/.Player_schema.json new file mode 100644 index 0000000..929369a --- /dev/null +++ b/GameData/.Player_schema.json @@ -0,0 +1,68 @@ +[ + { + "name": "id", + "type": "int", + "condition": null, + "description": "고유 ID" + }, + { + "name": "memo", + "type": "string", + "condition": null, + "description": "기획 메모" + }, + { + "name": "move_speed", + "type": "float", + "condition": null, + "description": "이동 속도" + }, + { + "name": "vision_radius", + "type": "float", + "condition": null, + "description": "시야 반경" + }, + { + "name": "capacity", + "type": "int", + "condition": null, + "description": "운반 용량" + }, + { + "name": "manpower", + "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": "프리팹/리소스 경로" + } +] \ No newline at end of file