31 lines
699 B
TypeScript
31 lines
699 B
TypeScript
// 百家学宫列表
|
|
import { readJsonFile } from '../util'
|
|
import { FILENAME } from '../../consts'
|
|
|
|
export interface DicSchoolRate {
|
|
|
|
// id
|
|
readonly id: number;
|
|
// 品质
|
|
readonly quality: number;
|
|
// 星级
|
|
readonly stars: number;
|
|
// 觉醒星级
|
|
readonly colorstars: number;
|
|
// 主属性加百分比
|
|
readonly mainAttrAPerent: number;
|
|
// 次级属性加值
|
|
readonly assiAttrAddValue: number;
|
|
}
|
|
|
|
|
|
const str = readJsonFile(FILENAME.DIC_SCHOOL_RATE);
|
|
let arr = JSON.parse(str);
|
|
|
|
export const dicSchoolRate = new Map<string, DicSchoolRate>();
|
|
|
|
arr.forEach(o => {
|
|
dicSchoolRate.set(`${o.stars}_${o.colorstars}_${o.quality}`, o);
|
|
});
|
|
|
|
arr = undefined; |