属性:皮肤战力修复
This commit is contained in:
@@ -10,8 +10,6 @@ export interface DicFashions {
|
||||
readonly name: string;
|
||||
// 全局加成
|
||||
readonly globalAttr: Array<{id: number, number: number}>;
|
||||
// 单体加成
|
||||
readonly actorAttr: Array<{id: number, number: number}>;
|
||||
// 即武将表里的heroId
|
||||
readonly heroId: number;
|
||||
// 原武将id,300以内的武将id
|
||||
@@ -19,7 +17,7 @@ export interface DicFashions {
|
||||
}
|
||||
|
||||
type KeysEnum<T> = { [P in keyof Required<T>]: true };
|
||||
const DicFashionsKeys: KeysEnum<DicFashions> = { id: true, name: true, globalAttr: true, actorAttr: true, heroId: true, actorId: true};
|
||||
const DicFashionsKeys: KeysEnum<DicFashions> = { id: true, name: true, globalAttr: true, heroId: true, actorId: true};
|
||||
|
||||
export const dicFashions = new Map<number, DicFashions>();
|
||||
export const dicFashionsByHeroId = new Map<number, DicFashions>();
|
||||
|
||||
Reference in New Issue
Block a user