Files
ZYZ/shared/domain/roleField/resonanceField.ts
2023-10-09 15:11:54 +08:00

35 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// import { ResonanceConnection, ResonanceEplace, ResonancePara, ResonanceTalent } from "../../db/Resonance";
// import { gameData } from "../../pubUtils/data";
// export class ReturnResonanceParam {
// positon: number; // 上阵位置,从1开始(6为鸣主配系统参数表)已解锁未上阵仅有positon
// hid: number; // 武将id
// seqId: number; // 武将表自增 id
// lv: number; //武将等级
// jobStage: number; // 职阶
// skinId: number
// talent: ResonanceTalent[]; // 天赋
// usedTalentPoint: number;
// totalTalentPoint: number;
// connections: ResonanceConnection[]; // 羁绊
// ePlace: ResonanceEplace[];
// ce: number; //战力
// constructor(hero: ResonancePara, job: number) {
// this.positon = hero.positon;
// this.hid = hero.hid;
// this.seqId = hero.seqId;
// this.lv = hero.lv;
// this.ePlace = hero.ePlace;
// this.jobStage = hero.jobStage;
// this.totalTalentPoint = gameData.talentPointOfJob.get(job) || 0;
// this.connections = hero.connections;
// this.talent = hero.talent || [];
// this.usedTalentPoint = hero.usedTalentPoint || 0;
// this.ce = hero.ce;
// }
// }