This commit is contained in:
DESKTOP-5RP3AKU\Jisol
2023-10-26 03:06:44 +08:00
parent cb70ba12c7
commit 09225a33c7
158 changed files with 26537 additions and 639 deletions

View File

@@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "372dfc13-f415-4871-98be-49856636b095",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@@ -0,0 +1 @@
{"10001":{"id":10001,"roleName":"小石头","spine":"spine/召唤与合成819个Spine/guaiA1a/spine/guaiA1a"},"10002":{"id":10002,"roleName":"坚强小石","spine":"spine/召唤与合成819个Spine/guaiA1a_1/spine/guaiA1a"}}

View File

@@ -0,0 +1,11 @@
{
"ver": "2.0.1",
"importer": "json",
"imported": true,
"uuid": "90a5e164-9bf8-4bcb-b155-444e7ff5e0bc",
"files": [
".json"
],
"subMetas": {},
"userData": {}
}

View File

@@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "7dcc424e-cdd8-4b28-ae0a-1a7994590b3a",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@@ -0,0 +1,35 @@
import { JsonUtil } from "../../../../extensions/ngame/assets/ngame/util/JsonUtil";
export class TableGRole {
static TableName: string = "GRole";
static getAllConfig(): { [id: string]: TableGRole } {
return JsonUtil.get(TableGRole.TableName);
}
static getConfig(id: number | string) {
return TableGRole.getAllConfig()[id] as TableGRole;
}
private data: any;
init(id: number) {
var table = JsonUtil.get(TableGRole.TableName);
this.data = table[id];
this._id = id;
}
/** id */
private _id: number = 0;
/** id */
get id(): number {
return this.data.id;
}
/** 角色名称 */
get roleName(): string {
return this.data.roleName;
}
/** Spine地址 */
get spine(): string {
return this.data.spine;
}

View File

@@ -0,0 +1,9 @@
{
"ver": "4.0.23",
"importer": "typescript",
"imported": true,
"uuid": "9038eb60-394b-4c67-a5cc-ebd05040f85c",
"files": [],
"subMetas": {},
"userData": {}
}