@@ -0,0 +1 @@
+{"role_level_up":{"zh":"升级","en":"Upgrade"},"role_attack":{"zh":"攻击","en":"Attack"}}
@@ -0,0 +1,11 @@
+{
+ "ver": "2.0.0",
+ "importer": "json",
+ "imported": true,
+ "uuid": "15a3c94c-cadf-4c3d-b85e-d935b928e4fc",
+ "files": [
+ ".json"
+ ],
+ "subMetas": {},
+ "userData": {}
+}
@@ -0,0 +1,27 @@
+
+import { JsonUtil } from "../../../../../extensions/oops-plugin-framework/assets/core/utils/JsonUtil";
+export class TableLanguage {
+ static TableName: string = "Language";
+ private data: any;
+ init(id: number) {
+ var table = JsonUtil.get(TableLanguage.TableName);
+ this.data = table[id];
+ this.id = id;
+ }
+ /** 编号【KEY】 */
+ id: number = 0;
+ /** 简体中文 */
+ get zh(): string {
+ return this.data.zh;
+ /** 英文 */
+ get en(): string {
+ return this.data.en;
@@ -0,0 +1,9 @@
+ "ver": "4.0.23",
+ "importer": "typescript",
+ "uuid": "74f4f805-7d9c-479e-a09f-5117da722315",
+ "files": [],
@@ -18,5 +18,6 @@
"config_remarks": "",
"services": []
}
- ]
+ "__version__": "3.0.7"
@@ -0,0 +1,6 @@
+ "__version__": "1.0.0",
+ "PathExcel": "project://excel",
+ "PathJsonClient": "project://assets/bundle/config/game",
+ "PathTsClient": "project://assets/script/game/common/table"