字典表更新,物品分类
This commit is contained in:
@@ -63,21 +63,22 @@ const itid_array = [
|
||||
{ id: 7, name: '法器(神兵)', table: 'equip', type: EQUIP_TYPE.WEAPON, equipJewel: JEWEL_TYPE.WEAPON },
|
||||
{ id: 8, name: '杖(神兵)', table: 'equip', type: EQUIP_TYPE.WEAPON, equipJewel: JEWEL_TYPE.WEAPON },
|
||||
{ id: 9, name: '头盔(冠冕)', table: 'equip', type: EQUIP_TYPE.CAP, equipJewel: JEWEL_TYPE.CAP },
|
||||
{ id: 10, name: '头巾(冠冕)', table: 'equip', type: EQUIP_TYPE.CAP, equipJewel: JEWEL_TYPE.CAP },
|
||||
{ id: 11, name: '重铠(宝甲)', table: 'equip', type: EQUIP_TYPE.CLOTHES, equipJewel: JEWEL_TYPE.CLOTHES },
|
||||
{ id: 12, name: '皮甲(宝甲)', table: 'equip', type: EQUIP_TYPE.CLOTHES, equipJewel: JEWEL_TYPE.CLOTHES },
|
||||
{ id: 13, name: '布衣(宝甲)', table: 'equip', type: EQUIP_TYPE.CLOTHES, equipJewel: JEWEL_TYPE.CLOTHES },
|
||||
{ id: 14, name: '兵书(典籍)', table: 'equip', type: EQUIP_TYPE.BOOK, equipJewel: JEWEL_TYPE.BOOK },
|
||||
{ id: 15, name: '杂记(典籍)', table: 'equip', type: EQUIP_TYPE.BOOK, equipJewel: JEWEL_TYPE.BOOK },
|
||||
{ id: 16, name: '经典(典籍)', table: 'equip', type: EQUIP_TYPE.BOOK, equipJewel: JEWEL_TYPE.BOOK },
|
||||
{ id: 17, name: '马(行具)', table: 'equip', type: EQUIP_TYPE.SHOES, equipJewel: JEWEL_TYPE.SHOES },
|
||||
{ id: 18, name: '鞋(行具)', table: 'equip', type: EQUIP_TYPE.SHOES, equipJewel: JEWEL_TYPE.SHOES },
|
||||
{ id: 19, name: '车(行具)', table: 'equip', type: EQUIP_TYPE.SHOES, equipJewel: JEWEL_TYPE.SHOES },
|
||||
{ id: 20, name: '佩饰(礼器)', table: 'equip', type: EQUIP_TYPE.ACCESSORY, equipJewel: JEWEL_TYPE.ACCESSORY },
|
||||
{ id: 21, name: '钟鼎(礼器)', table: 'equip', type: EQUIP_TYPE.ACCESSORY, equipJewel: JEWEL_TYPE.ACCESSORY },
|
||||
{ id: 22, name: '印章(礼器)', table: 'equip', type: EQUIP_TYPE.ACCESSORY, equipJewel: JEWEL_TYPE.ACCESSORY },
|
||||
|
||||
{ id: 23, name: '消耗品', table: 'item', type: CONSUME_TYPE.CONSUME },
|
||||
{ id: 10, name: '头冠(冠冕)', table: 'equip', type: EQUIP_TYPE.CAP, equipJewel: JEWEL_TYPE.CAP },
|
||||
{ id: 11, name: '头巾(冠冕)', table: 'equip', type: EQUIP_TYPE.CAP, equipJewel: JEWEL_TYPE.CAP },
|
||||
{ id: 12, name: '重铠(宝甲)', table: 'equip', type: EQUIP_TYPE.CLOTHES, equipJewel: JEWEL_TYPE.CLOTHES },
|
||||
{ id: 13, name: '皮甲(宝甲)', table: 'equip', type: EQUIP_TYPE.CLOTHES, equipJewel: JEWEL_TYPE.CLOTHES },
|
||||
{ id: 14, name: '布衣(宝甲)', table: 'equip', type: EQUIP_TYPE.CLOTHES, equipJewel: JEWEL_TYPE.CLOTHES },
|
||||
{ id: 15, name: '兵书(典籍)', table: 'equip', type: EQUIP_TYPE.BOOK, equipJewel: JEWEL_TYPE.BOOK },
|
||||
{ id: 16, name: '杂记(典籍)', table: 'equip', type: EQUIP_TYPE.BOOK, equipJewel: JEWEL_TYPE.BOOK },
|
||||
{ id: 17, name: '经典(典籍)', table: 'equip', type: EQUIP_TYPE.BOOK, equipJewel: JEWEL_TYPE.BOOK },
|
||||
{ id: 18, name: '马(行具)', table: 'equip', type: EQUIP_TYPE.SHOES, equipJewel: JEWEL_TYPE.SHOES },
|
||||
{ id: 19, name: '鞋(行具)', table: 'equip', type: EQUIP_TYPE.SHOES, equipJewel: JEWEL_TYPE.SHOES },
|
||||
{ id: 20, name: '车(行具)', table: 'equip', type: EQUIP_TYPE.SHOES, equipJewel: JEWEL_TYPE.SHOES },
|
||||
{ id: 21, name: '佩饰(礼器)', table: 'equip', type: EQUIP_TYPE.ACCESSORY, equipJewel: JEWEL_TYPE.ACCESSORY },
|
||||
{ id: 22, name: '钟鼎(礼器)', table: 'equip', type: EQUIP_TYPE.ACCESSORY, equipJewel: JEWEL_TYPE.ACCESSORY },
|
||||
{ id: 23, name: '印章(礼器)', table: 'equip', type: EQUIP_TYPE.ACCESSORY, equipJewel: JEWEL_TYPE.ACCESSORY },
|
||||
|
||||
{ id: 24, name: '消耗品', table: 'item', type: CONSUME_TYPE.CONSUME },
|
||||
|
||||
{ id: 37, name: '消耗类物品(图纸类)', table: 'item', type: CONSUME_TYPE.CONSUME },
|
||||
{ id: 35, name: '消耗类物品(经验书)', table: 'item', type: CONSUME_TYPE.EXP },
|
||||
|
||||
@@ -9,6 +9,7 @@ import Actor from './actor';
|
||||
import fs = require('fs');
|
||||
import path = require('path');
|
||||
import { DicRandomEffectPool } from './dictionary/DicRandomEffectPool';
|
||||
const _ = require('underscore');
|
||||
|
||||
const moment = require('moment');
|
||||
|
||||
@@ -502,4 +503,17 @@ export function parseNumberList(str: string) {
|
||||
res.push(parseInt(g));
|
||||
}
|
||||
return res;
|
||||
}
|
||||
|
||||
export function mergeSameGoods(goods: Array<{id: number, count: number}>) {
|
||||
let resGoods = [];
|
||||
for (let {id, count} of goods) {
|
||||
let index = _.findIndex(resGoods, {id});
|
||||
if (index > -1) {
|
||||
resGoods[index].count += count;
|
||||
} else {
|
||||
resGoods.push({id, count});
|
||||
}
|
||||
}
|
||||
return resGoods;
|
||||
}
|
||||
866
shared/resource/jsons/dic_zyz_heroScroll.json
Normal file
866
shared/resource/jsons/dic_zyz_heroScroll.json
Normal file
@@ -0,0 +1,866 @@
|
||||
[
|
||||
{
|
||||
"id": 1,
|
||||
"index": 1,
|
||||
"name": "一阶青龙神像",
|
||||
"quality": 1,
|
||||
"grade": 1,
|
||||
"hpMax": 300,
|
||||
"atkMax": 100,
|
||||
"defMax": 60,
|
||||
"mdefMax": 60,
|
||||
"agiMax": 40,
|
||||
"lukMax": 40,
|
||||
"hpUp": 18,
|
||||
"atkUp": 6,
|
||||
"defUp": 4,
|
||||
"mdefUp": 4,
|
||||
"agiUp": 2,
|
||||
"lukUp": 2,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "12&1000|14&1000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"index": 1,
|
||||
"name": "二阶青龙神像",
|
||||
"quality": 1,
|
||||
"grade": 2,
|
||||
"hpMax": 540,
|
||||
"atkMax": 180,
|
||||
"defMax": 108,
|
||||
"mdefMax": 108,
|
||||
"agiMax": 72,
|
||||
"lukMax": 72,
|
||||
"hpUp": 18,
|
||||
"atkUp": 6,
|
||||
"defUp": 4,
|
||||
"mdefUp": 4,
|
||||
"agiUp": 2,
|
||||
"lukUp": 2,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "12&2000|14&2000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"index": 1,
|
||||
"name": "三阶青龙神像",
|
||||
"quality": 2,
|
||||
"grade": 3,
|
||||
"hpMax": 960,
|
||||
"atkMax": 320,
|
||||
"defMax": 192,
|
||||
"mdefMax": 192,
|
||||
"agiMax": 128,
|
||||
"lukMax": 128,
|
||||
"hpUp": 24,
|
||||
"atkUp": 9,
|
||||
"defUp": 6,
|
||||
"mdefUp": 6,
|
||||
"agiUp": 3,
|
||||
"lukUp": 3,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "12&3000|14&3000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"index": 1,
|
||||
"name": "四阶青龙神像",
|
||||
"quality": 2,
|
||||
"grade": 4,
|
||||
"hpMax": 1800,
|
||||
"atkMax": 600,
|
||||
"defMax": 360,
|
||||
"mdefMax": 360,
|
||||
"agiMax": 240,
|
||||
"lukMax": 240,
|
||||
"hpUp": 24,
|
||||
"atkUp": 9,
|
||||
"defUp": 6,
|
||||
"mdefUp": 6,
|
||||
"agiUp": 3,
|
||||
"lukUp": 3,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "12&4000|14&4000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"index": 1,
|
||||
"name": "五阶青龙神像",
|
||||
"quality": 3,
|
||||
"grade": 5,
|
||||
"hpMax": 3600,
|
||||
"atkMax": 1200,
|
||||
"defMax": 720,
|
||||
"mdefMax": 720,
|
||||
"agiMax": 480,
|
||||
"lukMax": 480,
|
||||
"hpUp": 32,
|
||||
"atkUp": 12,
|
||||
"defUp": 9,
|
||||
"mdefUp": 9,
|
||||
"agiUp": 5,
|
||||
"lukUp": 5,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "12&5000|14&5000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"index": 1,
|
||||
"name": "六阶青龙神像",
|
||||
"quality": 3,
|
||||
"grade": 6,
|
||||
"hpMax": 5400,
|
||||
"atkMax": 1800,
|
||||
"defMax": 1080,
|
||||
"mdefMax": 1080,
|
||||
"agiMax": 720,
|
||||
"lukMax": 720,
|
||||
"hpUp": 32,
|
||||
"atkUp": 12,
|
||||
"defUp": 9,
|
||||
"mdefUp": 9,
|
||||
"agiUp": 5,
|
||||
"lukUp": 5,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "12&6000|14&6000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"index": 1,
|
||||
"name": "七阶青龙神像",
|
||||
"quality": 4,
|
||||
"grade": 7,
|
||||
"hpMax": 9000,
|
||||
"atkMax": 3000,
|
||||
"defMax": 1800,
|
||||
"mdefMax": 1800,
|
||||
"agiMax": 1200,
|
||||
"lukMax": 1200,
|
||||
"hpUp": 40,
|
||||
"atkUp": 16,
|
||||
"defUp": 12,
|
||||
"mdefUp": 12,
|
||||
"agiUp": 7,
|
||||
"lukUp": 7,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "12&7000|14&7000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"index": 1,
|
||||
"name": "八阶青龙神像",
|
||||
"quality": 4,
|
||||
"grade": 8,
|
||||
"hpMax": 13500,
|
||||
"atkMax": 4500,
|
||||
"defMax": 2700,
|
||||
"mdefMax": 2700,
|
||||
"agiMax": 1800,
|
||||
"lukMax": 1800,
|
||||
"hpUp": 40,
|
||||
"atkUp": 16,
|
||||
"defUp": 12,
|
||||
"mdefUp": 12,
|
||||
"agiUp": 7,
|
||||
"lukUp": 7,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "12&8000|14&8000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"index": 1,
|
||||
"name": "九阶青龙神像",
|
||||
"quality": 5,
|
||||
"grade": 9,
|
||||
"hpMax": 21000,
|
||||
"atkMax": 7000,
|
||||
"defMax": 4200,
|
||||
"mdefMax": 4200,
|
||||
"agiMax": 2800,
|
||||
"lukMax": 2800,
|
||||
"hpUp": 50,
|
||||
"atkUp": 20,
|
||||
"defUp": 16,
|
||||
"mdefUp": 16,
|
||||
"agiUp": 10,
|
||||
"lukUp": 10,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "12&10000|14&10000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"index": 2,
|
||||
"name": "一阶白虎神像",
|
||||
"quality": 1,
|
||||
"grade": 1,
|
||||
"hpMax": 300,
|
||||
"atkMax": 100,
|
||||
"defMax": 60,
|
||||
"mdefMax": 60,
|
||||
"agiMax": 40,
|
||||
"lukMax": 40,
|
||||
"hpUp": 18,
|
||||
"atkUp": 6,
|
||||
"defUp": 4,
|
||||
"mdefUp": 4,
|
||||
"agiUp": 2,
|
||||
"lukUp": 2,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "9&1000|13&1000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"index": 2,
|
||||
"name": "二阶白虎神像",
|
||||
"quality": 1,
|
||||
"grade": 2,
|
||||
"hpMax": 540,
|
||||
"atkMax": 180,
|
||||
"defMax": 108,
|
||||
"mdefMax": 108,
|
||||
"agiMax": 72,
|
||||
"lukMax": 72,
|
||||
"hpUp": 18,
|
||||
"atkUp": 6,
|
||||
"defUp": 4,
|
||||
"mdefUp": 4,
|
||||
"agiUp": 2,
|
||||
"lukUp": 2,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "9&2000|13&2000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"index": 2,
|
||||
"name": "三阶白虎神像",
|
||||
"quality": 2,
|
||||
"grade": 3,
|
||||
"hpMax": 960,
|
||||
"atkMax": 320,
|
||||
"defMax": 192,
|
||||
"mdefMax": 192,
|
||||
"agiMax": 128,
|
||||
"lukMax": 128,
|
||||
"hpUp": 24,
|
||||
"atkUp": 9,
|
||||
"defUp": 6,
|
||||
"mdefUp": 6,
|
||||
"agiUp": 3,
|
||||
"lukUp": 3,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "9&3000|13&3000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"index": 2,
|
||||
"name": "四阶白虎神像",
|
||||
"quality": 2,
|
||||
"grade": 4,
|
||||
"hpMax": 1800,
|
||||
"atkMax": 600,
|
||||
"defMax": 360,
|
||||
"mdefMax": 360,
|
||||
"agiMax": 240,
|
||||
"lukMax": 240,
|
||||
"hpUp": 24,
|
||||
"atkUp": 9,
|
||||
"defUp": 6,
|
||||
"mdefUp": 6,
|
||||
"agiUp": 3,
|
||||
"lukUp": 3,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "9&4000|13&4000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"index": 2,
|
||||
"name": "五阶白虎神像",
|
||||
"quality": 3,
|
||||
"grade": 5,
|
||||
"hpMax": 3600,
|
||||
"atkMax": 1200,
|
||||
"defMax": 720,
|
||||
"mdefMax": 720,
|
||||
"agiMax": 480,
|
||||
"lukMax": 480,
|
||||
"hpUp": 32,
|
||||
"atkUp": 12,
|
||||
"defUp": 9,
|
||||
"mdefUp": 9,
|
||||
"agiUp": 5,
|
||||
"lukUp": 5,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "9&5000|13&5000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"index": 2,
|
||||
"name": "六阶白虎神像",
|
||||
"quality": 3,
|
||||
"grade": 6,
|
||||
"hpMax": 5400,
|
||||
"atkMax": 1800,
|
||||
"defMax": 1080,
|
||||
"mdefMax": 1080,
|
||||
"agiMax": 720,
|
||||
"lukMax": 720,
|
||||
"hpUp": 32,
|
||||
"atkUp": 12,
|
||||
"defUp": 9,
|
||||
"mdefUp": 9,
|
||||
"agiUp": 5,
|
||||
"lukUp": 5,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "9&6000|13&6000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"index": 2,
|
||||
"name": "七阶白虎神像",
|
||||
"quality": 4,
|
||||
"grade": 7,
|
||||
"hpMax": 9000,
|
||||
"atkMax": 3000,
|
||||
"defMax": 1800,
|
||||
"mdefMax": 1800,
|
||||
"agiMax": 1200,
|
||||
"lukMax": 1200,
|
||||
"hpUp": 40,
|
||||
"atkUp": 16,
|
||||
"defUp": 12,
|
||||
"mdefUp": 12,
|
||||
"agiUp": 7,
|
||||
"lukUp": 7,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "9&7000|13&7000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"index": 2,
|
||||
"name": "八阶白虎神像",
|
||||
"quality": 4,
|
||||
"grade": 8,
|
||||
"hpMax": 13500,
|
||||
"atkMax": 4500,
|
||||
"defMax": 2700,
|
||||
"mdefMax": 2700,
|
||||
"agiMax": 1800,
|
||||
"lukMax": 1800,
|
||||
"hpUp": 40,
|
||||
"atkUp": 16,
|
||||
"defUp": 12,
|
||||
"mdefUp": 12,
|
||||
"agiUp": 7,
|
||||
"lukUp": 7,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "9&8000|13&8000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"index": 2,
|
||||
"name": "九阶白虎神像",
|
||||
"quality": 5,
|
||||
"grade": 9,
|
||||
"hpMax": 21000,
|
||||
"atkMax": 7000,
|
||||
"defMax": 4200,
|
||||
"mdefMax": 4200,
|
||||
"agiMax": 2800,
|
||||
"lukMax": 2800,
|
||||
"hpUp": 50,
|
||||
"atkUp": 20,
|
||||
"defUp": 16,
|
||||
"mdefUp": 16,
|
||||
"agiUp": 10,
|
||||
"lukUp": 10,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "9&10000|13&10000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"index": 3,
|
||||
"name": "一阶凤雀神像",
|
||||
"quality": 1,
|
||||
"grade": 1,
|
||||
"hpMax": 300,
|
||||
"atkMax": 100,
|
||||
"defMax": 60,
|
||||
"mdefMax": 60,
|
||||
"agiMax": 40,
|
||||
"lukMax": 40,
|
||||
"hpUp": 18,
|
||||
"atkUp": 6,
|
||||
"defUp": 4,
|
||||
"mdefUp": 4,
|
||||
"agiUp": 2,
|
||||
"lukUp": 2,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "10&1000|13&1000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"index": 3,
|
||||
"name": "二阶凤雀神像",
|
||||
"quality": 1,
|
||||
"grade": 2,
|
||||
"hpMax": 540,
|
||||
"atkMax": 180,
|
||||
"defMax": 108,
|
||||
"mdefMax": 108,
|
||||
"agiMax": 72,
|
||||
"lukMax": 72,
|
||||
"hpUp": 18,
|
||||
"atkUp": 6,
|
||||
"defUp": 4,
|
||||
"mdefUp": 4,
|
||||
"agiUp": 2,
|
||||
"lukUp": 2,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "10&2000|13&2000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 21,
|
||||
"index": 3,
|
||||
"name": "三阶凤雀神像",
|
||||
"quality": 2,
|
||||
"grade": 3,
|
||||
"hpMax": 960,
|
||||
"atkMax": 320,
|
||||
"defMax": 192,
|
||||
"mdefMax": 192,
|
||||
"agiMax": 128,
|
||||
"lukMax": 128,
|
||||
"hpUp": 24,
|
||||
"atkUp": 9,
|
||||
"defUp": 6,
|
||||
"mdefUp": 6,
|
||||
"agiUp": 3,
|
||||
"lukUp": 3,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "10&3000|13&3000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"index": 3,
|
||||
"name": "四阶凤雀神像",
|
||||
"quality": 2,
|
||||
"grade": 4,
|
||||
"hpMax": 1800,
|
||||
"atkMax": 600,
|
||||
"defMax": 360,
|
||||
"mdefMax": 360,
|
||||
"agiMax": 240,
|
||||
"lukMax": 240,
|
||||
"hpUp": 24,
|
||||
"atkUp": 9,
|
||||
"defUp": 6,
|
||||
"mdefUp": 6,
|
||||
"agiUp": 3,
|
||||
"lukUp": 3,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "10&4000|13&4000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"index": 3,
|
||||
"name": "五阶凤雀神像",
|
||||
"quality": 3,
|
||||
"grade": 5,
|
||||
"hpMax": 3600,
|
||||
"atkMax": 1200,
|
||||
"defMax": 720,
|
||||
"mdefMax": 720,
|
||||
"agiMax": 480,
|
||||
"lukMax": 480,
|
||||
"hpUp": 32,
|
||||
"atkUp": 12,
|
||||
"defUp": 9,
|
||||
"mdefUp": 9,
|
||||
"agiUp": 5,
|
||||
"lukUp": 5,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "10&5000|13&5000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"index": 3,
|
||||
"name": "六阶凤雀神像",
|
||||
"quality": 3,
|
||||
"grade": 6,
|
||||
"hpMax": 5400,
|
||||
"atkMax": 1800,
|
||||
"defMax": 1080,
|
||||
"mdefMax": 1080,
|
||||
"agiMax": 720,
|
||||
"lukMax": 720,
|
||||
"hpUp": 32,
|
||||
"atkUp": 12,
|
||||
"defUp": 9,
|
||||
"mdefUp": 9,
|
||||
"agiUp": 5,
|
||||
"lukUp": 5,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "10&6000|13&6000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"index": 3,
|
||||
"name": "七阶凤雀神像",
|
||||
"quality": 4,
|
||||
"grade": 7,
|
||||
"hpMax": 9000,
|
||||
"atkMax": 3000,
|
||||
"defMax": 1800,
|
||||
"mdefMax": 1800,
|
||||
"agiMax": 1200,
|
||||
"lukMax": 1200,
|
||||
"hpUp": 40,
|
||||
"atkUp": 16,
|
||||
"defUp": 12,
|
||||
"mdefUp": 12,
|
||||
"agiUp": 7,
|
||||
"lukUp": 7,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "10&7000|13&7000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"index": 3,
|
||||
"name": "八阶凤雀神像",
|
||||
"quality": 4,
|
||||
"grade": 8,
|
||||
"hpMax": 13500,
|
||||
"atkMax": 4500,
|
||||
"defMax": 2700,
|
||||
"mdefMax": 2700,
|
||||
"agiMax": 1800,
|
||||
"lukMax": 1800,
|
||||
"hpUp": 40,
|
||||
"atkUp": 16,
|
||||
"defUp": 12,
|
||||
"mdefUp": 12,
|
||||
"agiUp": 7,
|
||||
"lukUp": 7,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "10&8000|13&8000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"index": 3,
|
||||
"name": "九阶凤雀神像",
|
||||
"quality": 5,
|
||||
"grade": 9,
|
||||
"hpMax": 21000,
|
||||
"atkMax": 7000,
|
||||
"defMax": 4200,
|
||||
"mdefMax": 4200,
|
||||
"agiMax": 2800,
|
||||
"lukMax": 2800,
|
||||
"hpUp": 50,
|
||||
"atkUp": 20,
|
||||
"defUp": 16,
|
||||
"mdefUp": 16,
|
||||
"agiUp": 10,
|
||||
"lukUp": 10,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "10&10000|13&10000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"index": 4,
|
||||
"name": "一阶玄武神像",
|
||||
"quality": 1,
|
||||
"grade": 1,
|
||||
"hpMax": 300,
|
||||
"atkMax": 100,
|
||||
"defMax": 60,
|
||||
"mdefMax": 60,
|
||||
"agiMax": 40,
|
||||
"lukMax": 40,
|
||||
"hpUp": 18,
|
||||
"atkUp": 6,
|
||||
"defUp": 4,
|
||||
"mdefUp": 4,
|
||||
"agiUp": 2,
|
||||
"lukUp": 2,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "11&1000|14&1000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"index": 4,
|
||||
"name": "二阶玄武神像",
|
||||
"quality": 1,
|
||||
"grade": 2,
|
||||
"hpMax": 540,
|
||||
"atkMax": 180,
|
||||
"defMax": 108,
|
||||
"mdefMax": 108,
|
||||
"agiMax": 72,
|
||||
"lukMax": 72,
|
||||
"hpUp": 18,
|
||||
"atkUp": 6,
|
||||
"defUp": 4,
|
||||
"mdefUp": 4,
|
||||
"agiUp": 2,
|
||||
"lukUp": 2,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "11&2000|14&2000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"index": 4,
|
||||
"name": "三阶玄武神像",
|
||||
"quality": 2,
|
||||
"grade": 3,
|
||||
"hpMax": 960,
|
||||
"atkMax": 320,
|
||||
"defMax": 192,
|
||||
"mdefMax": 192,
|
||||
"agiMax": 128,
|
||||
"lukMax": 128,
|
||||
"hpUp": 24,
|
||||
"atkUp": 9,
|
||||
"defUp": 6,
|
||||
"mdefUp": 6,
|
||||
"agiUp": 3,
|
||||
"lukUp": 3,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "11&3000|14&3000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 31,
|
||||
"index": 4,
|
||||
"name": "四阶玄武神像",
|
||||
"quality": 2,
|
||||
"grade": 4,
|
||||
"hpMax": 1800,
|
||||
"atkMax": 600,
|
||||
"defMax": 360,
|
||||
"mdefMax": 360,
|
||||
"agiMax": 240,
|
||||
"lukMax": 240,
|
||||
"hpUp": 24,
|
||||
"atkUp": 9,
|
||||
"defUp": 6,
|
||||
"mdefUp": 6,
|
||||
"agiUp": 3,
|
||||
"lukUp": 3,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "11&4000|14&4000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 32,
|
||||
"index": 4,
|
||||
"name": "五阶玄武神像",
|
||||
"quality": 3,
|
||||
"grade": 5,
|
||||
"hpMax": 3600,
|
||||
"atkMax": 1200,
|
||||
"defMax": 720,
|
||||
"mdefMax": 720,
|
||||
"agiMax": 480,
|
||||
"lukMax": 480,
|
||||
"hpUp": 32,
|
||||
"atkUp": 12,
|
||||
"defUp": 9,
|
||||
"mdefUp": 9,
|
||||
"agiUp": 5,
|
||||
"lukUp": 5,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "11&5000|14&5000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 33,
|
||||
"index": 4,
|
||||
"name": "六阶玄武神像",
|
||||
"quality": 3,
|
||||
"grade": 6,
|
||||
"hpMax": 5400,
|
||||
"atkMax": 1800,
|
||||
"defMax": 1080,
|
||||
"mdefMax": 1080,
|
||||
"agiMax": 720,
|
||||
"lukMax": 720,
|
||||
"hpUp": 32,
|
||||
"atkUp": 12,
|
||||
"defUp": 9,
|
||||
"mdefUp": 9,
|
||||
"agiUp": 5,
|
||||
"lukUp": 5,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "11&6000|14&6000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 34,
|
||||
"index": 4,
|
||||
"name": "七阶玄武神像",
|
||||
"quality": 4,
|
||||
"grade": 7,
|
||||
"hpMax": 9000,
|
||||
"atkMax": 3000,
|
||||
"defMax": 1800,
|
||||
"mdefMax": 1800,
|
||||
"agiMax": 1200,
|
||||
"lukMax": 1200,
|
||||
"hpUp": 40,
|
||||
"atkUp": 16,
|
||||
"defUp": 12,
|
||||
"mdefUp": 12,
|
||||
"agiUp": 7,
|
||||
"lukUp": 7,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "11&7000|14&7000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 35,
|
||||
"index": 4,
|
||||
"name": "八阶玄武神像",
|
||||
"quality": 4,
|
||||
"grade": 8,
|
||||
"hpMax": 13500,
|
||||
"atkMax": 4500,
|
||||
"defMax": 2700,
|
||||
"mdefMax": 2700,
|
||||
"agiMax": 1800,
|
||||
"lukMax": 1800,
|
||||
"hpUp": 40,
|
||||
"atkUp": 16,
|
||||
"defUp": 12,
|
||||
"mdefUp": 12,
|
||||
"agiUp": 7,
|
||||
"lukUp": 7,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "11&8000|14&8000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 36,
|
||||
"index": 4,
|
||||
"name": "九阶玄武神像",
|
||||
"quality": 5,
|
||||
"grade": 9,
|
||||
"hpMax": 21000,
|
||||
"atkMax": 7000,
|
||||
"defMax": 4200,
|
||||
"mdefMax": 4200,
|
||||
"agiMax": 2800,
|
||||
"lukMax": 2800,
|
||||
"hpUp": 50,
|
||||
"atkUp": 20,
|
||||
"defUp": 16,
|
||||
"mdefUp": 16,
|
||||
"agiUp": 10,
|
||||
"lukUp": 10,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "11&10000|14&10000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
}
|
||||
]
|
||||
98
shared/resource/jsons/dic_zyz_school.json
Normal file
98
shared/resource/jsons/dic_zyz_school.json
Normal file
@@ -0,0 +1,98 @@
|
||||
[
|
||||
{
|
||||
"id": 1,
|
||||
"name": "墨家书院",
|
||||
"upAttribute": "1&2&3&4&5&6&7&11",
|
||||
"__EMPTY": 0,
|
||||
"__EMPTY_1": 0,
|
||||
"__EMPTY_2": 0,
|
||||
"__EMPTY_3": 0,
|
||||
"__EMPTY_4": 0,
|
||||
"__EMPTY_5": 0,
|
||||
"__EMPTY_6": 0
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"name": "儒家书院",
|
||||
"upAttribute": "1&2&3&4&5&6&7&9",
|
||||
"__EMPTY": 0,
|
||||
"__EMPTY_1": 0,
|
||||
"__EMPTY_2": 0,
|
||||
"__EMPTY_3": 0,
|
||||
"__EMPTY_4": 0,
|
||||
"__EMPTY_5": 0,
|
||||
"__EMPTY_6": 0
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"name": "医家书院",
|
||||
"upAttribute": "1&2&3&4&5&6&7&14",
|
||||
"__EMPTY": 0,
|
||||
"__EMPTY_1": 0,
|
||||
"__EMPTY_2": 0,
|
||||
"__EMPTY_3": 0,
|
||||
"__EMPTY_4": 0,
|
||||
"__EMPTY_5": 0,
|
||||
"__EMPTY_6": 0
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"name": "纵横家书院",
|
||||
"upAttribute": "1&2&3&4&5&6&7&15",
|
||||
"__EMPTY": 0,
|
||||
"__EMPTY_1": 0,
|
||||
"__EMPTY_2": 0,
|
||||
"__EMPTY_3": 0,
|
||||
"__EMPTY_4": 0,
|
||||
"__EMPTY_5": 0,
|
||||
"__EMPTY_6": 0
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"name": "法家书院",
|
||||
"upAttribute": "1&2&3&4&5&6&7&13",
|
||||
"__EMPTY": 0,
|
||||
"__EMPTY_1": 0,
|
||||
"__EMPTY_2": 0,
|
||||
"__EMPTY_3": 0,
|
||||
"__EMPTY_4": 0,
|
||||
"__EMPTY_5": 0,
|
||||
"__EMPTY_6": 0
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"name": "阴阳家书院",
|
||||
"upAttribute": "1&2&3&4&5&6&7&16",
|
||||
"__EMPTY": 0,
|
||||
"__EMPTY_1": 0,
|
||||
"__EMPTY_2": 0,
|
||||
"__EMPTY_3": 0,
|
||||
"__EMPTY_4": 0,
|
||||
"__EMPTY_5": 0,
|
||||
"__EMPTY_6": 0
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"name": "道家书院",
|
||||
"upAttribute": "1&2&3&4&5&6&7&12",
|
||||
"__EMPTY": 0,
|
||||
"__EMPTY_1": 0,
|
||||
"__EMPTY_2": 0,
|
||||
"__EMPTY_3": 0,
|
||||
"__EMPTY_4": 0,
|
||||
"__EMPTY_5": 0,
|
||||
"__EMPTY_6": 0
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"name": "兵家书院",
|
||||
"upAttribute": "1&2&3&4&5&6&7&10",
|
||||
"__EMPTY": 0,
|
||||
"__EMPTY_1": 0,
|
||||
"__EMPTY_2": 0,
|
||||
"__EMPTY_3": 0,
|
||||
"__EMPTY_4": 0,
|
||||
"__EMPTY_5": 0,
|
||||
"__EMPTY_6": 0
|
||||
}
|
||||
]
|
||||
290
shared/resource/jsons/dic_zyz_schoolRate.json
Normal file
290
shared/resource/jsons/dic_zyz_schoolRate.json
Normal file
@@ -0,0 +1,290 @@
|
||||
[
|
||||
{
|
||||
"id": 1,
|
||||
"quality": 1,
|
||||
"stars": 1,
|
||||
"colorstars": 0,
|
||||
"mainAttrAPerent": 0.4,
|
||||
"assiAttrAddValue": 200
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"quality": 1,
|
||||
"stars": 2,
|
||||
"colorstars": 0,
|
||||
"mainAttrAPerent": 0.6,
|
||||
"assiAttrAddValue": 300
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"quality": 1,
|
||||
"stars": 3,
|
||||
"colorstars": 0,
|
||||
"mainAttrAPerent": 0.8,
|
||||
"assiAttrAddValue": 400
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"quality": 1,
|
||||
"stars": 4,
|
||||
"colorstars": 0,
|
||||
"mainAttrAPerent": 1,
|
||||
"assiAttrAddValue": 500
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"quality": 1,
|
||||
"stars": 5,
|
||||
"colorstars": 0,
|
||||
"mainAttrAPerent": 1.2,
|
||||
"assiAttrAddValue": 600
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"quality": 1,
|
||||
"stars": 6,
|
||||
"colorstars": 0,
|
||||
"mainAttrAPerent": 1.4,
|
||||
"assiAttrAddValue": 700
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"quality": 1,
|
||||
"stars": 6,
|
||||
"colorstars": 1,
|
||||
"mainAttrAPerent": 3,
|
||||
"assiAttrAddValue": 1500
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"quality": 1,
|
||||
"stars": 6,
|
||||
"colorstars": 2,
|
||||
"mainAttrAPerent": 3.3,
|
||||
"assiAttrAddValue": 1650
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"quality": 1,
|
||||
"stars": 6,
|
||||
"colorstars": 3,
|
||||
"mainAttrAPerent": 3.6,
|
||||
"assiAttrAddValue": 1800
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"quality": 1,
|
||||
"stars": 6,
|
||||
"colorstars": 4,
|
||||
"mainAttrAPerent": 3.9,
|
||||
"assiAttrAddValue": 1950
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"quality": 1,
|
||||
"stars": 6,
|
||||
"colorstars": 5,
|
||||
"mainAttrAPerent": 4.2,
|
||||
"assiAttrAddValue": 2100
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"quality": 1,
|
||||
"stars": 6,
|
||||
"colorstars": 6,
|
||||
"mainAttrAPerent": 4.5,
|
||||
"assiAttrAddValue": 2250
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"quality": 2,
|
||||
"stars": 1,
|
||||
"colorstars": 0,
|
||||
"mainAttrAPerent": 0.8,
|
||||
"assiAttrAddValue": 400
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"quality": 2,
|
||||
"stars": 2,
|
||||
"colorstars": 0,
|
||||
"mainAttrAPerent": 1,
|
||||
"assiAttrAddValue": 500
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"quality": 2,
|
||||
"stars": 3,
|
||||
"colorstars": 0,
|
||||
"mainAttrAPerent": 1.2,
|
||||
"assiAttrAddValue": 600
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"quality": 2,
|
||||
"stars": 4,
|
||||
"colorstars": 0,
|
||||
"mainAttrAPerent": 1.4,
|
||||
"assiAttrAddValue": 700
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"quality": 2,
|
||||
"stars": 5,
|
||||
"colorstars": 0,
|
||||
"mainAttrAPerent": 1.6,
|
||||
"assiAttrAddValue": 800
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"quality": 2,
|
||||
"stars": 6,
|
||||
"colorstars": 0,
|
||||
"mainAttrAPerent": 1.8,
|
||||
"assiAttrAddValue": 900
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"quality": 2,
|
||||
"stars": 6,
|
||||
"colorstars": 1,
|
||||
"mainAttrAPerent": 3,
|
||||
"assiAttrAddValue": 1500
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"quality": 2,
|
||||
"stars": 6,
|
||||
"colorstars": 2,
|
||||
"mainAttrAPerent": 3.3,
|
||||
"assiAttrAddValue": 1650
|
||||
},
|
||||
{
|
||||
"id": 21,
|
||||
"quality": 2,
|
||||
"stars": 6,
|
||||
"colorstars": 3,
|
||||
"mainAttrAPerent": 3.6,
|
||||
"assiAttrAddValue": 1800
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"quality": 2,
|
||||
"stars": 6,
|
||||
"colorstars": 4,
|
||||
"mainAttrAPerent": 3.9,
|
||||
"assiAttrAddValue": 1950
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"quality": 2,
|
||||
"stars": 6,
|
||||
"colorstars": 5,
|
||||
"mainAttrAPerent": 4.2,
|
||||
"assiAttrAddValue": 2100
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"quality": 2,
|
||||
"stars": 6,
|
||||
"colorstars": 6,
|
||||
"mainAttrAPerent": 4.5,
|
||||
"assiAttrAddValue": 2250
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"quality": 3,
|
||||
"stars": 1,
|
||||
"colorstars": 0,
|
||||
"mainAttrAPerent": 1.2,
|
||||
"assiAttrAddValue": 600
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"quality": 3,
|
||||
"stars": 2,
|
||||
"colorstars": 0,
|
||||
"mainAttrAPerent": 1.5,
|
||||
"assiAttrAddValue": 750
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"quality": 3,
|
||||
"stars": 3,
|
||||
"colorstars": 0,
|
||||
"mainAttrAPerent": 1.8,
|
||||
"assiAttrAddValue": 900
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"quality": 3,
|
||||
"stars": 4,
|
||||
"colorstars": 0,
|
||||
"mainAttrAPerent": 2.1,
|
||||
"assiAttrAddValue": 1050
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"quality": 3,
|
||||
"stars": 5,
|
||||
"colorstars": 0,
|
||||
"mainAttrAPerent": 2.4,
|
||||
"assiAttrAddValue": 1200
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"quality": 3,
|
||||
"stars": 6,
|
||||
"colorstars": 0,
|
||||
"mainAttrAPerent": 2.7,
|
||||
"assiAttrAddValue": 1350
|
||||
},
|
||||
{
|
||||
"id": 31,
|
||||
"quality": 3,
|
||||
"stars": 6,
|
||||
"colorstars": 1,
|
||||
"mainAttrAPerent": 3,
|
||||
"assiAttrAddValue": 1500
|
||||
},
|
||||
{
|
||||
"id": 32,
|
||||
"quality": 3,
|
||||
"stars": 6,
|
||||
"colorstars": 2,
|
||||
"mainAttrAPerent": 3.3,
|
||||
"assiAttrAddValue": 1650
|
||||
},
|
||||
{
|
||||
"id": 33,
|
||||
"quality": 3,
|
||||
"stars": 6,
|
||||
"colorstars": 3,
|
||||
"mainAttrAPerent": 3.6,
|
||||
"assiAttrAddValue": 1800
|
||||
},
|
||||
{
|
||||
"id": 34,
|
||||
"quality": 3,
|
||||
"stars": 6,
|
||||
"colorstars": 4,
|
||||
"mainAttrAPerent": 3.9,
|
||||
"assiAttrAddValue": 1950
|
||||
},
|
||||
{
|
||||
"id": 35,
|
||||
"quality": 3,
|
||||
"stars": 6,
|
||||
"colorstars": 5,
|
||||
"mainAttrAPerent": 4.2,
|
||||
"assiAttrAddValue": 2100
|
||||
},
|
||||
{
|
||||
"id": 36,
|
||||
"quality": 3,
|
||||
"stars": 6,
|
||||
"colorstars": 6,
|
||||
"mainAttrAPerent": 4.5,
|
||||
"assiAttrAddValue": 2250
|
||||
}
|
||||
]
|
||||
866
shared/resource/jsons/dic_zyz_teraph.json
Normal file
866
shared/resource/jsons/dic_zyz_teraph.json
Normal file
@@ -0,0 +1,866 @@
|
||||
[
|
||||
{
|
||||
"id": 1,
|
||||
"index": 1,
|
||||
"name": "一阶青龙神像",
|
||||
"quality": 1,
|
||||
"grade": 1,
|
||||
"hpMax": 300,
|
||||
"atkMax": 100,
|
||||
"defMax": 60,
|
||||
"mdefMax": 60,
|
||||
"agiMax": 40,
|
||||
"lukMax": 40,
|
||||
"hpUp": 18,
|
||||
"atkUp": 6,
|
||||
"defUp": 4,
|
||||
"mdefUp": 4,
|
||||
"agiUp": 2,
|
||||
"lukUp": 2,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "12&1000|14&1000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"index": 1,
|
||||
"name": "二阶青龙神像",
|
||||
"quality": 1,
|
||||
"grade": 2,
|
||||
"hpMax": 540,
|
||||
"atkMax": 180,
|
||||
"defMax": 108,
|
||||
"mdefMax": 108,
|
||||
"agiMax": 72,
|
||||
"lukMax": 72,
|
||||
"hpUp": 18,
|
||||
"atkUp": 6,
|
||||
"defUp": 4,
|
||||
"mdefUp": 4,
|
||||
"agiUp": 2,
|
||||
"lukUp": 2,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "12&2000|14&2000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"index": 1,
|
||||
"name": "三阶青龙神像",
|
||||
"quality": 2,
|
||||
"grade": 3,
|
||||
"hpMax": 960,
|
||||
"atkMax": 320,
|
||||
"defMax": 192,
|
||||
"mdefMax": 192,
|
||||
"agiMax": 128,
|
||||
"lukMax": 128,
|
||||
"hpUp": 24,
|
||||
"atkUp": 9,
|
||||
"defUp": 6,
|
||||
"mdefUp": 6,
|
||||
"agiUp": 3,
|
||||
"lukUp": 3,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "12&3000|14&3000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"index": 1,
|
||||
"name": "四阶青龙神像",
|
||||
"quality": 2,
|
||||
"grade": 4,
|
||||
"hpMax": 1800,
|
||||
"atkMax": 600,
|
||||
"defMax": 360,
|
||||
"mdefMax": 360,
|
||||
"agiMax": 240,
|
||||
"lukMax": 240,
|
||||
"hpUp": 24,
|
||||
"atkUp": 9,
|
||||
"defUp": 6,
|
||||
"mdefUp": 6,
|
||||
"agiUp": 3,
|
||||
"lukUp": 3,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "12&4000|14&4000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"index": 1,
|
||||
"name": "五阶青龙神像",
|
||||
"quality": 3,
|
||||
"grade": 5,
|
||||
"hpMax": 3600,
|
||||
"atkMax": 1200,
|
||||
"defMax": 720,
|
||||
"mdefMax": 720,
|
||||
"agiMax": 480,
|
||||
"lukMax": 480,
|
||||
"hpUp": 32,
|
||||
"atkUp": 12,
|
||||
"defUp": 9,
|
||||
"mdefUp": 9,
|
||||
"agiUp": 5,
|
||||
"lukUp": 5,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "12&5000|14&5000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"index": 1,
|
||||
"name": "六阶青龙神像",
|
||||
"quality": 3,
|
||||
"grade": 6,
|
||||
"hpMax": 5400,
|
||||
"atkMax": 1800,
|
||||
"defMax": 1080,
|
||||
"mdefMax": 1080,
|
||||
"agiMax": 720,
|
||||
"lukMax": 720,
|
||||
"hpUp": 32,
|
||||
"atkUp": 12,
|
||||
"defUp": 9,
|
||||
"mdefUp": 9,
|
||||
"agiUp": 5,
|
||||
"lukUp": 5,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "12&6000|14&6000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"index": 1,
|
||||
"name": "七阶青龙神像",
|
||||
"quality": 4,
|
||||
"grade": 7,
|
||||
"hpMax": 9000,
|
||||
"atkMax": 3000,
|
||||
"defMax": 1800,
|
||||
"mdefMax": 1800,
|
||||
"agiMax": 1200,
|
||||
"lukMax": 1200,
|
||||
"hpUp": 40,
|
||||
"atkUp": 16,
|
||||
"defUp": 12,
|
||||
"mdefUp": 12,
|
||||
"agiUp": 7,
|
||||
"lukUp": 7,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "12&7000|14&7000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"index": 1,
|
||||
"name": "八阶青龙神像",
|
||||
"quality": 4,
|
||||
"grade": 8,
|
||||
"hpMax": 13500,
|
||||
"atkMax": 4500,
|
||||
"defMax": 2700,
|
||||
"mdefMax": 2700,
|
||||
"agiMax": 1800,
|
||||
"lukMax": 1800,
|
||||
"hpUp": 40,
|
||||
"atkUp": 16,
|
||||
"defUp": 12,
|
||||
"mdefUp": 12,
|
||||
"agiUp": 7,
|
||||
"lukUp": 7,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "12&8000|14&8000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"index": 1,
|
||||
"name": "九阶青龙神像",
|
||||
"quality": 5,
|
||||
"grade": 9,
|
||||
"hpMax": 21000,
|
||||
"atkMax": 7000,
|
||||
"defMax": 4200,
|
||||
"mdefMax": 4200,
|
||||
"agiMax": 2800,
|
||||
"lukMax": 2800,
|
||||
"hpUp": 50,
|
||||
"atkUp": 20,
|
||||
"defUp": 16,
|
||||
"mdefUp": 16,
|
||||
"agiUp": 10,
|
||||
"lukUp": 10,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "12&10000|14&10000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"index": 2,
|
||||
"name": "一阶白虎神像",
|
||||
"quality": 1,
|
||||
"grade": 1,
|
||||
"hpMax": 300,
|
||||
"atkMax": 100,
|
||||
"defMax": 60,
|
||||
"mdefMax": 60,
|
||||
"agiMax": 40,
|
||||
"lukMax": 40,
|
||||
"hpUp": 18,
|
||||
"atkUp": 6,
|
||||
"defUp": 4,
|
||||
"mdefUp": 4,
|
||||
"agiUp": 2,
|
||||
"lukUp": 2,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "9&1000|13&1000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"index": 2,
|
||||
"name": "二阶白虎神像",
|
||||
"quality": 1,
|
||||
"grade": 2,
|
||||
"hpMax": 540,
|
||||
"atkMax": 180,
|
||||
"defMax": 108,
|
||||
"mdefMax": 108,
|
||||
"agiMax": 72,
|
||||
"lukMax": 72,
|
||||
"hpUp": 18,
|
||||
"atkUp": 6,
|
||||
"defUp": 4,
|
||||
"mdefUp": 4,
|
||||
"agiUp": 2,
|
||||
"lukUp": 2,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "9&2000|13&2000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"index": 2,
|
||||
"name": "三阶白虎神像",
|
||||
"quality": 2,
|
||||
"grade": 3,
|
||||
"hpMax": 960,
|
||||
"atkMax": 320,
|
||||
"defMax": 192,
|
||||
"mdefMax": 192,
|
||||
"agiMax": 128,
|
||||
"lukMax": 128,
|
||||
"hpUp": 24,
|
||||
"atkUp": 9,
|
||||
"defUp": 6,
|
||||
"mdefUp": 6,
|
||||
"agiUp": 3,
|
||||
"lukUp": 3,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "9&3000|13&3000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"index": 2,
|
||||
"name": "四阶白虎神像",
|
||||
"quality": 2,
|
||||
"grade": 4,
|
||||
"hpMax": 1800,
|
||||
"atkMax": 600,
|
||||
"defMax": 360,
|
||||
"mdefMax": 360,
|
||||
"agiMax": 240,
|
||||
"lukMax": 240,
|
||||
"hpUp": 24,
|
||||
"atkUp": 9,
|
||||
"defUp": 6,
|
||||
"mdefUp": 6,
|
||||
"agiUp": 3,
|
||||
"lukUp": 3,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "9&4000|13&4000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"index": 2,
|
||||
"name": "五阶白虎神像",
|
||||
"quality": 3,
|
||||
"grade": 5,
|
||||
"hpMax": 3600,
|
||||
"atkMax": 1200,
|
||||
"defMax": 720,
|
||||
"mdefMax": 720,
|
||||
"agiMax": 480,
|
||||
"lukMax": 480,
|
||||
"hpUp": 32,
|
||||
"atkUp": 12,
|
||||
"defUp": 9,
|
||||
"mdefUp": 9,
|
||||
"agiUp": 5,
|
||||
"lukUp": 5,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "9&5000|13&5000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"index": 2,
|
||||
"name": "六阶白虎神像",
|
||||
"quality": 3,
|
||||
"grade": 6,
|
||||
"hpMax": 5400,
|
||||
"atkMax": 1800,
|
||||
"defMax": 1080,
|
||||
"mdefMax": 1080,
|
||||
"agiMax": 720,
|
||||
"lukMax": 720,
|
||||
"hpUp": 32,
|
||||
"atkUp": 12,
|
||||
"defUp": 9,
|
||||
"mdefUp": 9,
|
||||
"agiUp": 5,
|
||||
"lukUp": 5,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "9&6000|13&6000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"index": 2,
|
||||
"name": "七阶白虎神像",
|
||||
"quality": 4,
|
||||
"grade": 7,
|
||||
"hpMax": 9000,
|
||||
"atkMax": 3000,
|
||||
"defMax": 1800,
|
||||
"mdefMax": 1800,
|
||||
"agiMax": 1200,
|
||||
"lukMax": 1200,
|
||||
"hpUp": 40,
|
||||
"atkUp": 16,
|
||||
"defUp": 12,
|
||||
"mdefUp": 12,
|
||||
"agiUp": 7,
|
||||
"lukUp": 7,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "9&7000|13&7000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"index": 2,
|
||||
"name": "八阶白虎神像",
|
||||
"quality": 4,
|
||||
"grade": 8,
|
||||
"hpMax": 13500,
|
||||
"atkMax": 4500,
|
||||
"defMax": 2700,
|
||||
"mdefMax": 2700,
|
||||
"agiMax": 1800,
|
||||
"lukMax": 1800,
|
||||
"hpUp": 40,
|
||||
"atkUp": 16,
|
||||
"defUp": 12,
|
||||
"mdefUp": 12,
|
||||
"agiUp": 7,
|
||||
"lukUp": 7,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "9&8000|13&8000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"index": 2,
|
||||
"name": "九阶白虎神像",
|
||||
"quality": 5,
|
||||
"grade": 9,
|
||||
"hpMax": 21000,
|
||||
"atkMax": 7000,
|
||||
"defMax": 4200,
|
||||
"mdefMax": 4200,
|
||||
"agiMax": 2800,
|
||||
"lukMax": 2800,
|
||||
"hpUp": 50,
|
||||
"atkUp": 20,
|
||||
"defUp": 16,
|
||||
"mdefUp": 16,
|
||||
"agiUp": 10,
|
||||
"lukUp": 10,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "9&10000|13&10000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"index": 3,
|
||||
"name": "一阶凤雀神像",
|
||||
"quality": 1,
|
||||
"grade": 1,
|
||||
"hpMax": 300,
|
||||
"atkMax": 100,
|
||||
"defMax": 60,
|
||||
"mdefMax": 60,
|
||||
"agiMax": 40,
|
||||
"lukMax": 40,
|
||||
"hpUp": 18,
|
||||
"atkUp": 6,
|
||||
"defUp": 4,
|
||||
"mdefUp": 4,
|
||||
"agiUp": 2,
|
||||
"lukUp": 2,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "10&1000|13&1000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"index": 3,
|
||||
"name": "二阶凤雀神像",
|
||||
"quality": 1,
|
||||
"grade": 2,
|
||||
"hpMax": 540,
|
||||
"atkMax": 180,
|
||||
"defMax": 108,
|
||||
"mdefMax": 108,
|
||||
"agiMax": 72,
|
||||
"lukMax": 72,
|
||||
"hpUp": 18,
|
||||
"atkUp": 6,
|
||||
"defUp": 4,
|
||||
"mdefUp": 4,
|
||||
"agiUp": 2,
|
||||
"lukUp": 2,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "10&2000|13&2000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 21,
|
||||
"index": 3,
|
||||
"name": "三阶凤雀神像",
|
||||
"quality": 2,
|
||||
"grade": 3,
|
||||
"hpMax": 960,
|
||||
"atkMax": 320,
|
||||
"defMax": 192,
|
||||
"mdefMax": 192,
|
||||
"agiMax": 128,
|
||||
"lukMax": 128,
|
||||
"hpUp": 24,
|
||||
"atkUp": 9,
|
||||
"defUp": 6,
|
||||
"mdefUp": 6,
|
||||
"agiUp": 3,
|
||||
"lukUp": 3,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "10&3000|13&3000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"index": 3,
|
||||
"name": "四阶凤雀神像",
|
||||
"quality": 2,
|
||||
"grade": 4,
|
||||
"hpMax": 1800,
|
||||
"atkMax": 600,
|
||||
"defMax": 360,
|
||||
"mdefMax": 360,
|
||||
"agiMax": 240,
|
||||
"lukMax": 240,
|
||||
"hpUp": 24,
|
||||
"atkUp": 9,
|
||||
"defUp": 6,
|
||||
"mdefUp": 6,
|
||||
"agiUp": 3,
|
||||
"lukUp": 3,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "10&4000|13&4000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"index": 3,
|
||||
"name": "五阶凤雀神像",
|
||||
"quality": 3,
|
||||
"grade": 5,
|
||||
"hpMax": 3600,
|
||||
"atkMax": 1200,
|
||||
"defMax": 720,
|
||||
"mdefMax": 720,
|
||||
"agiMax": 480,
|
||||
"lukMax": 480,
|
||||
"hpUp": 32,
|
||||
"atkUp": 12,
|
||||
"defUp": 9,
|
||||
"mdefUp": 9,
|
||||
"agiUp": 5,
|
||||
"lukUp": 5,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "10&5000|13&5000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"index": 3,
|
||||
"name": "六阶凤雀神像",
|
||||
"quality": 3,
|
||||
"grade": 6,
|
||||
"hpMax": 5400,
|
||||
"atkMax": 1800,
|
||||
"defMax": 1080,
|
||||
"mdefMax": 1080,
|
||||
"agiMax": 720,
|
||||
"lukMax": 720,
|
||||
"hpUp": 32,
|
||||
"atkUp": 12,
|
||||
"defUp": 9,
|
||||
"mdefUp": 9,
|
||||
"agiUp": 5,
|
||||
"lukUp": 5,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "10&6000|13&6000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"index": 3,
|
||||
"name": "七阶凤雀神像",
|
||||
"quality": 4,
|
||||
"grade": 7,
|
||||
"hpMax": 9000,
|
||||
"atkMax": 3000,
|
||||
"defMax": 1800,
|
||||
"mdefMax": 1800,
|
||||
"agiMax": 1200,
|
||||
"lukMax": 1200,
|
||||
"hpUp": 40,
|
||||
"atkUp": 16,
|
||||
"defUp": 12,
|
||||
"mdefUp": 12,
|
||||
"agiUp": 7,
|
||||
"lukUp": 7,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "10&7000|13&7000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"index": 3,
|
||||
"name": "八阶凤雀神像",
|
||||
"quality": 4,
|
||||
"grade": 8,
|
||||
"hpMax": 13500,
|
||||
"atkMax": 4500,
|
||||
"defMax": 2700,
|
||||
"mdefMax": 2700,
|
||||
"agiMax": 1800,
|
||||
"lukMax": 1800,
|
||||
"hpUp": 40,
|
||||
"atkUp": 16,
|
||||
"defUp": 12,
|
||||
"mdefUp": 12,
|
||||
"agiUp": 7,
|
||||
"lukUp": 7,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "10&8000|13&8000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"index": 3,
|
||||
"name": "九阶凤雀神像",
|
||||
"quality": 5,
|
||||
"grade": 9,
|
||||
"hpMax": 21000,
|
||||
"atkMax": 7000,
|
||||
"defMax": 4200,
|
||||
"mdefMax": 4200,
|
||||
"agiMax": 2800,
|
||||
"lukMax": 2800,
|
||||
"hpUp": 50,
|
||||
"atkUp": 20,
|
||||
"defUp": 16,
|
||||
"mdefUp": 16,
|
||||
"agiUp": 10,
|
||||
"lukUp": 10,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "10&10000|13&10000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"index": 4,
|
||||
"name": "一阶玄武神像",
|
||||
"quality": 1,
|
||||
"grade": 1,
|
||||
"hpMax": 300,
|
||||
"atkMax": 100,
|
||||
"defMax": 60,
|
||||
"mdefMax": 60,
|
||||
"agiMax": 40,
|
||||
"lukMax": 40,
|
||||
"hpUp": 18,
|
||||
"atkUp": 6,
|
||||
"defUp": 4,
|
||||
"mdefUp": 4,
|
||||
"agiUp": 2,
|
||||
"lukUp": 2,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "11&1000|14&1000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"index": 4,
|
||||
"name": "二阶玄武神像",
|
||||
"quality": 1,
|
||||
"grade": 2,
|
||||
"hpMax": 540,
|
||||
"atkMax": 180,
|
||||
"defMax": 108,
|
||||
"mdefMax": 108,
|
||||
"agiMax": 72,
|
||||
"lukMax": 72,
|
||||
"hpUp": 18,
|
||||
"atkUp": 6,
|
||||
"defUp": 4,
|
||||
"mdefUp": 4,
|
||||
"agiUp": 2,
|
||||
"lukUp": 2,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "11&2000|14&2000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"index": 4,
|
||||
"name": "三阶玄武神像",
|
||||
"quality": 2,
|
||||
"grade": 3,
|
||||
"hpMax": 960,
|
||||
"atkMax": 320,
|
||||
"defMax": 192,
|
||||
"mdefMax": 192,
|
||||
"agiMax": 128,
|
||||
"lukMax": 128,
|
||||
"hpUp": 24,
|
||||
"atkUp": 9,
|
||||
"defUp": 6,
|
||||
"mdefUp": 6,
|
||||
"agiUp": 3,
|
||||
"lukUp": 3,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "11&3000|14&3000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 31,
|
||||
"index": 4,
|
||||
"name": "四阶玄武神像",
|
||||
"quality": 2,
|
||||
"grade": 4,
|
||||
"hpMax": 1800,
|
||||
"atkMax": 600,
|
||||
"defMax": 360,
|
||||
"mdefMax": 360,
|
||||
"agiMax": 240,
|
||||
"lukMax": 240,
|
||||
"hpUp": 24,
|
||||
"atkUp": 9,
|
||||
"defUp": 6,
|
||||
"mdefUp": 6,
|
||||
"agiUp": 3,
|
||||
"lukUp": 3,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "11&4000|14&4000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 32,
|
||||
"index": 4,
|
||||
"name": "五阶玄武神像",
|
||||
"quality": 3,
|
||||
"grade": 5,
|
||||
"hpMax": 3600,
|
||||
"atkMax": 1200,
|
||||
"defMax": 720,
|
||||
"mdefMax": 720,
|
||||
"agiMax": 480,
|
||||
"lukMax": 480,
|
||||
"hpUp": 32,
|
||||
"atkUp": 12,
|
||||
"defUp": 9,
|
||||
"mdefUp": 9,
|
||||
"agiUp": 5,
|
||||
"lukUp": 5,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "11&5000|14&5000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 33,
|
||||
"index": 4,
|
||||
"name": "六阶玄武神像",
|
||||
"quality": 3,
|
||||
"grade": 6,
|
||||
"hpMax": 5400,
|
||||
"atkMax": 1800,
|
||||
"defMax": 1080,
|
||||
"mdefMax": 1080,
|
||||
"agiMax": 720,
|
||||
"lukMax": 720,
|
||||
"hpUp": 32,
|
||||
"atkUp": 12,
|
||||
"defUp": 9,
|
||||
"mdefUp": 9,
|
||||
"agiUp": 5,
|
||||
"lukUp": 5,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "11&6000|14&6000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 34,
|
||||
"index": 4,
|
||||
"name": "七阶玄武神像",
|
||||
"quality": 4,
|
||||
"grade": 7,
|
||||
"hpMax": 9000,
|
||||
"atkMax": 3000,
|
||||
"defMax": 1800,
|
||||
"mdefMax": 1800,
|
||||
"agiMax": 1200,
|
||||
"lukMax": 1200,
|
||||
"hpUp": 40,
|
||||
"atkUp": 16,
|
||||
"defUp": 12,
|
||||
"mdefUp": 12,
|
||||
"agiUp": 7,
|
||||
"lukUp": 7,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "11&7000|14&7000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 35,
|
||||
"index": 4,
|
||||
"name": "八阶玄武神像",
|
||||
"quality": 4,
|
||||
"grade": 8,
|
||||
"hpMax": 13500,
|
||||
"atkMax": 4500,
|
||||
"defMax": 2700,
|
||||
"mdefMax": 2700,
|
||||
"agiMax": 1800,
|
||||
"lukMax": 1800,
|
||||
"hpUp": 40,
|
||||
"atkUp": 16,
|
||||
"defUp": 12,
|
||||
"mdefUp": 12,
|
||||
"agiUp": 7,
|
||||
"lukUp": 7,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "11&8000|14&8000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
},
|
||||
{
|
||||
"id": 36,
|
||||
"index": 4,
|
||||
"name": "九阶玄武神像",
|
||||
"quality": 5,
|
||||
"grade": 9,
|
||||
"hpMax": 21000,
|
||||
"atkMax": 7000,
|
||||
"defMax": 4200,
|
||||
"mdefMax": 4200,
|
||||
"agiMax": 2800,
|
||||
"lukMax": 2800,
|
||||
"hpUp": 50,
|
||||
"atkUp": 20,
|
||||
"defUp": 16,
|
||||
"mdefUp": 16,
|
||||
"agiUp": 10,
|
||||
"lukUp": 10,
|
||||
"criRate": 20,
|
||||
"criEffect": 2,
|
||||
"assiAttrValue": "11&10000|14&10000",
|
||||
"upMaterial": "17034&10",
|
||||
"upGradeMaterial": "17035&40"
|
||||
}
|
||||
]
|
||||
282
shared/resource/jsons/dic_zyz_title.json
Normal file
282
shared/resource/jsons/dic_zyz_title.json
Normal file
@@ -0,0 +1,282 @@
|
||||
[
|
||||
{
|
||||
"id": 1,
|
||||
"name": "公士",
|
||||
"quality": 1,
|
||||
"hp": 300,
|
||||
"atk": 100,
|
||||
"def": 60,
|
||||
"mdef": 60,
|
||||
"agi": 40,
|
||||
"luk": 40,
|
||||
"assiAttrValue": "19&1000|20&1000",
|
||||
"lvLimited": 5,
|
||||
"material": "17042&1"
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"name": "上造",
|
||||
"quality": 1,
|
||||
"hp": 600,
|
||||
"atk": 200,
|
||||
"def": 120,
|
||||
"mdef": 120,
|
||||
"agi": 80,
|
||||
"luk": 80,
|
||||
"assiAttrValue": "19&1500|20&1500",
|
||||
"lvLimited": 10,
|
||||
"material": "17042&2"
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"name": "簪袅",
|
||||
"quality": 1,
|
||||
"hp": 900,
|
||||
"atk": 300,
|
||||
"def": 180,
|
||||
"mdef": 180,
|
||||
"agi": 120,
|
||||
"luk": 120,
|
||||
"assiAttrValue": "19&2000|20&2000",
|
||||
"lvLimited": 15,
|
||||
"material": "17042&4"
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"name": "不更",
|
||||
"quality": 1,
|
||||
"hp": 1200,
|
||||
"atk": 400,
|
||||
"def": 240,
|
||||
"mdef": 240,
|
||||
"agi": 160,
|
||||
"luk": 160,
|
||||
"assiAttrValue": "19&2500|20&2500",
|
||||
"lvLimited": 20,
|
||||
"material": "17042&6"
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"name": "大夫",
|
||||
"quality": 2,
|
||||
"hp": 1500,
|
||||
"atk": 500,
|
||||
"def": 300,
|
||||
"mdef": 300,
|
||||
"agi": 200,
|
||||
"luk": 200,
|
||||
"assiAttrValue": "19&3000|20&3000",
|
||||
"lvLimited": 25,
|
||||
"material": "17043&2"
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"name": "官大夫",
|
||||
"quality": 2,
|
||||
"hp": 1800,
|
||||
"atk": 600,
|
||||
"def": 360,
|
||||
"mdef": 360,
|
||||
"agi": 240,
|
||||
"luk": 240,
|
||||
"assiAttrValue": "19&3500|20&3500",
|
||||
"lvLimited": 30,
|
||||
"material": "17043&4"
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"name": "公大夫",
|
||||
"quality": 2,
|
||||
"hp": 2100,
|
||||
"atk": 700,
|
||||
"def": 420,
|
||||
"mdef": 420,
|
||||
"agi": 280,
|
||||
"luk": 280,
|
||||
"assiAttrValue": "19&4000|20&4000",
|
||||
"lvLimited": 35,
|
||||
"material": "17043&6"
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"name": "公乘",
|
||||
"quality": 2,
|
||||
"hp": 2400,
|
||||
"atk": 800,
|
||||
"def": 480,
|
||||
"mdef": 480,
|
||||
"agi": 320,
|
||||
"luk": 320,
|
||||
"assiAttrValue": "19&4500|20&4500",
|
||||
"lvLimited": 40,
|
||||
"material": "17043&8"
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"name": "五大夫",
|
||||
"quality": 3,
|
||||
"hp": 2700,
|
||||
"atk": 900,
|
||||
"def": 540,
|
||||
"mdef": 540,
|
||||
"agi": 360,
|
||||
"luk": 360,
|
||||
"assiAttrValue": "19&5000|20&5000",
|
||||
"lvLimited": 45,
|
||||
"material": "17044&4"
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"name": "左庶长",
|
||||
"quality": 3,
|
||||
"hp": 3000,
|
||||
"atk": 1000,
|
||||
"def": 600,
|
||||
"mdef": 600,
|
||||
"agi": 400,
|
||||
"luk": 400,
|
||||
"assiAttrValue": "19&5500|20&5500",
|
||||
"lvLimited": 50,
|
||||
"material": "17044&6"
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"name": "右庶长",
|
||||
"quality": 3,
|
||||
"hp": 3300,
|
||||
"atk": 1100,
|
||||
"def": 660,
|
||||
"mdef": 660,
|
||||
"agi": 440,
|
||||
"luk": 440,
|
||||
"assiAttrValue": "19&6000|20&6000",
|
||||
"lvLimited": 55,
|
||||
"material": "17044&8"
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"name": "左更",
|
||||
"quality": 3,
|
||||
"hp": 3600,
|
||||
"atk": 1200,
|
||||
"def": 720,
|
||||
"mdef": 720,
|
||||
"agi": 480,
|
||||
"luk": 480,
|
||||
"assiAttrValue": "19&6500|20&6500",
|
||||
"lvLimited": 60,
|
||||
"material": "17044&10"
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"name": "中更",
|
||||
"quality": 4,
|
||||
"hp": 3900,
|
||||
"atk": 1300,
|
||||
"def": 780,
|
||||
"mdef": 780,
|
||||
"agi": 520,
|
||||
"luk": 520,
|
||||
"assiAttrValue": "19&7000|20&7000",
|
||||
"lvLimited": 65,
|
||||
"material": "17045&6"
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"name": "右更",
|
||||
"quality": 4,
|
||||
"hp": 4200,
|
||||
"atk": 1400,
|
||||
"def": 840,
|
||||
"mdef": 840,
|
||||
"agi": 560,
|
||||
"luk": 560,
|
||||
"assiAttrValue": "19&7500|20&7500",
|
||||
"lvLimited": 70,
|
||||
"material": "17045&8"
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"name": "少上造",
|
||||
"quality": 4,
|
||||
"hp": 4500,
|
||||
"atk": 1500,
|
||||
"def": 900,
|
||||
"mdef": 900,
|
||||
"agi": 600,
|
||||
"luk": 600,
|
||||
"assiAttrValue": "19&8000|20&8000",
|
||||
"lvLimited": 75,
|
||||
"material": "17045&10"
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"name": "大上造",
|
||||
"quality": 4,
|
||||
"hp": 4800,
|
||||
"atk": 1600,
|
||||
"def": 960,
|
||||
"mdef": 960,
|
||||
"agi": 640,
|
||||
"luk": 640,
|
||||
"assiAttrValue": "19&8500|20&8500",
|
||||
"lvLimited": 80,
|
||||
"material": "17045&12"
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"name": "驷车庶长",
|
||||
"quality": 5,
|
||||
"hp": 5100,
|
||||
"atk": 1700,
|
||||
"def": 1020,
|
||||
"mdef": 1020,
|
||||
"agi": 680,
|
||||
"luk": 680,
|
||||
"assiAttrValue": "19&9000|20&9000",
|
||||
"lvLimited": 85,
|
||||
"material": "17046&8"
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"name": "大庶长",
|
||||
"quality": 5,
|
||||
"hp": 5400,
|
||||
"atk": 1800,
|
||||
"def": 1080,
|
||||
"mdef": 1080,
|
||||
"agi": 720,
|
||||
"luk": 720,
|
||||
"assiAttrValue": "19&9500|20&9500",
|
||||
"lvLimited": 90,
|
||||
"material": "17046&10"
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"name": "关内侯",
|
||||
"quality": 5,
|
||||
"hp": 5700,
|
||||
"atk": 1900,
|
||||
"def": 1140,
|
||||
"mdef": 1140,
|
||||
"agi": 760,
|
||||
"luk": 760,
|
||||
"assiAttrValue": "19&10000|20&10000",
|
||||
"lvLimited": 95,
|
||||
"material": "17046&15"
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"name": "通侯",
|
||||
"quality": 5,
|
||||
"hp": 6000,
|
||||
"atk": 2000,
|
||||
"def": 1200,
|
||||
"mdef": 1200,
|
||||
"agi": 800,
|
||||
"luk": 800,
|
||||
"assiAttrValue": "19&12000|20&12000",
|
||||
"lvLimited": 100,
|
||||
"material": "17046&20"
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user