update 添加松鼠角色

This commit is contained in:
DESKTOP-5RP3AKU\Jisol
2023-10-30 02:34:11 +08:00
parent ca84f38096
commit bb4334c0ff
178 changed files with 6352 additions and 195 deletions

View File

@@ -32,9 +32,9 @@ export class TableGRole {
/** Spine地址 */
get spine(): string {
return this.data.spine;
}
/** 角色技能Id */
get roleSkillId(): number {
}
/** 角色技能Id列表 */
get roleSkillIds(): number[] {
return this.data.roleSkillIds;
}
/** 角色攻击范围 */

View File

@@ -0,0 +1,39 @@
import { JsonUtil } from "../../../../extensions/ngame/assets/ngame/util/JsonUtil";
export class TableGRoleAttackEffect {
static TableName: string = "GRoleAttackEffect";
static getAllConfig(): { [id: string]: TableGRoleAttackEffect } {
return JsonUtil.get(TableGRoleAttackEffect.TableName);
}
static getConfig(id: number | string) {
return TableGRoleAttackEffect.getAllConfig()[id] as TableGRoleAttackEffect;
}
private data: any;
init(id: number) {
var table = JsonUtil.get(TableGRoleAttackEffect.TableName);
this.data = table[id];
this._id = id;
}
/** Id */
private _id: number = 0;
/** Id */
get id(): number {
return this.data.id;
}
/** 效果名称 */
get effectName(): string {
return this.data.effectName;
}
/** spine路径 */
get spine(): string {
return this.data.spine;
}
/** 动画名称 */
get animation(): string {
return this.data.animation;
}

View File

@@ -0,0 +1,9 @@
{
"ver": "4.0.23",
"importer": "typescript",
"imported": true,
"uuid": "b03efae0-b212-4eb7-8462-2292e6884b51",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@@ -0,0 +1,43 @@
import { JsonUtil } from "../../../../extensions/ngame/assets/ngame/util/JsonUtil";
export class TableGRoleSkill {
static TableName: string = "GRoleSkill";
static getAllConfig(): { [id: string]: TableGRoleSkill } {
return JsonUtil.get(TableGRoleSkill.TableName);
}
static getConfig(id: number | string) {
return TableGRoleSkill.getAllConfig()[id] as TableGRoleSkill;
}
private data: any;
init(id: number) {
var table = JsonUtil.get(TableGRoleSkill.TableName);
this.data = table[id];
this._id = id;
}
/** 技能Id */
private _id: number = 0;
/** 技能Id */
get id(): number {
return this.data.id;
}
/** 技能名称 */
get skillName(): string {
return this.data.skillName;
}
/** 技能控制器 */
get skillController(): string {
return this.data.skillController;
}
/** 技能参数 */
get skillArgs(): string[] {
return this.data.skillArgs;
}
/** 技能介绍 */
get skillText(): string {
return this.data.skillText;
}

View File

@@ -0,0 +1,9 @@
{
"ver": "4.0.23",
"importer": "typescript",
"imported": true,
"uuid": "44fbcae1-8514-43b3-8a90-3e68b3f84497",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@@ -0,0 +1,35 @@
import { JsonUtil } from "../../../../extensions/ngame/assets/ngame/util/JsonUtil";
export class TableGRoleSkillEffect {
static TableName: string = "GRoleSkillEffect";
static getAllConfig(): { [id: string]: TableGRoleSkillEffect } {
return JsonUtil.get(TableGRoleSkillEffect.TableName);
}
static getConfig(id: number | string) {
return TableGRoleSkillEffect.getAllConfig()[id] as TableGRoleSkillEffect;
}
private data: any;
init(id: number) {
var table = JsonUtil.get(TableGRoleSkillEffect.TableName);
this.data = table[id];
this._id = id;
}
/** 技能SpineId */
private _id: number = 0;
/** 技能SpineId */
get id(): number {
return this.data.id;
}
/** 说明 */
get text(): string {
return this.data.text;
}
/** spine路径 */
get spine(): string {
return this.data.spine;
}

View File

@@ -0,0 +1,9 @@
{
"ver": "4.0.23",
"importer": "typescript",
"imported": true,
"uuid": "2b4ecb72-b2fb-43c5-8712-3eb6b4c4abe9",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@@ -0,0 +1,35 @@
import { JsonUtil } from "../../../../extensions/ngame/assets/ngame/util/JsonUtil";
export class TableGRoleSkillSpine {
static TableName: string = "GRoleSkillSpine";
static getAllConfig(): { [id: string]: TableGRoleSkillSpine } {
return JsonUtil.get(TableGRoleSkillSpine.TableName);
}
static getConfig(id: number | string) {
return TableGRoleSkillSpine.getAllConfig()[id] as TableGRoleSkillSpine;
}
private data: any;
init(id: number) {
var table = JsonUtil.get(TableGRoleSkillSpine.TableName);
this.data = table[id];
this._id = id;
}
/** 技能SpineId */
private _id: number = 0;
/** 技能SpineId */
get id(): number {
return this.data.id;
}
/** 说明 */
get text(): string {
return this.data.text;
}
/** spine路径 */
get spine(): string {
return this.data.spine;
}

View File

@@ -0,0 +1,9 @@
{
"ver": "4.0.23",
"importer": "typescript",
"imported": true,
"uuid": "19c80511-21b9-4037-b717-48720ff61578",
"files": [],
"subMetas": {},
"userData": {}
}