好友:查看他人主线
This commit is contained in:
@@ -19,6 +19,8 @@ export interface DicWar {
|
||||
readonly gk_name: string;
|
||||
// 章节id
|
||||
readonly chapter: number;
|
||||
// 关卡id
|
||||
readonly section: number;
|
||||
// 胜利后获得的君主经验
|
||||
readonly kingExp: number;
|
||||
// 进入战场所需的最低等级
|
||||
@@ -29,8 +31,6 @@ export interface DicWar {
|
||||
readonly previousGk: number;
|
||||
// 每日任务下的小类型
|
||||
readonly dailyType: number;
|
||||
// 显示章节名
|
||||
readonly detailUIBg: string[];
|
||||
// 寻宝匹配json
|
||||
readonly dispatchJsonId: number;
|
||||
// 寻宝奖励
|
||||
@@ -73,7 +73,6 @@ export function loadWar() {
|
||||
o.fixReward = parseFixReward(o.fixReward);
|
||||
o.conditionReward = parseConditionReward(o.conditionReward);
|
||||
o.randomReward = parseRandomReward(o.RandomReward||o.randomReward);
|
||||
o.detailUIBg = parseDetailUIBg(o.detailUIBg);
|
||||
o.jackpotReward = parseJackpotReward(o.jackpotReward);
|
||||
o.teammateReward = parseFixReward(o.teammateReward);
|
||||
o.fobiddenCharactor = parseForbiddenChara(o.fobiddenCharactor);
|
||||
@@ -146,13 +145,6 @@ function parseRandomReward(str: string = '') {
|
||||
return result
|
||||
}
|
||||
|
||||
function parseDetailUIBg(str: string = '') {
|
||||
let result = new Array<string>();
|
||||
if(!str) return result;
|
||||
let decodeArr = decodeArrayStr(str, '_');
|
||||
return decodeArr;
|
||||
}
|
||||
|
||||
function parseJackpotReward(str: string = '') {
|
||||
let result = new Array<{id: number, weight: number}>();
|
||||
if(!str) return result;
|
||||
|
||||
Reference in New Issue
Block a user