diff --git a/CHANGELOG.md b/CHANGELOG.md index d27bc64..5736d09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 1.2.9 +* 增加星穹铁道武器图鉴 + * 指令`#于夜色中图鉴` + * 需要在设置中开启 指令:`#图鉴设置星铁图鉴开启` # 1.2.8 * 增加`#原神充值` 原神离线充值 * 增加`#商品列表` diff --git a/apps/admin.js b/apps/admin.js index 42b2644..f46ccca 100644 --- a/apps/admin.js +++ b/apps/admin.js @@ -20,6 +20,8 @@ let cfgMap = { "获取sk":"ck.sk", "目录":"Atlas.all", "扫码绑定":'mhy.qrcode', + "星铁图鉴":'sr.Search', + "星铁匹配":'sr.Atlas' }; let sysCfgReg = `^#图鉴设置\s*(${lodash.keys(cfgMap).join("|")})?\s*(.*)$`; export const rule = { @@ -80,6 +82,7 @@ export async function sysCfg(e, { } else { val = !/关闭/.test(val); } + if (cfgKey) { Cfg.set(cfgKey, val); } @@ -96,6 +99,8 @@ export async function sysCfg(e, { notePlus: fs.existsSync(notePlus), bg: await rodom(), //获取底图 Atlasall:getStatus("Atlas.all",false), + srAtlas:getStatus("sr.Atlas",false), + srSearch:getStatus("sr.Search",false), } //渲染图像 return await Common.render("admin/index", { diff --git a/apps/index.js b/apps/index.js index d541d45..a857518 100644 --- a/apps/index.js +++ b/apps/index.js @@ -3,6 +3,7 @@ import schedule from "node-schedule"; import { AtlasAlias,getBasicVoide } from "./xiaoyao_image.js"; +import { srAtlasAlias} from './srGallery.js' import { versionInfo, help @@ -72,7 +73,7 @@ export { updCookie, DailyNoteTask, noteTask, - AtlasAlias, + AtlasAlias,srAtlasAlias, Note, }; import gsCfg from '../model/gsCfg.js'; @@ -91,6 +92,10 @@ let rule = { reg: "^(#(.*)|.*图鉴)$", describe: "角色、食物、怪物、武器信息图鉴", }, + srAtlasAlias: { + reg: "^((#|\\*)(.*)|.*图鉴)$", + describe: "sr 星穹铁道武器信息图鉴", + }, Note: { reg: "^#*(多|全|全部)*(体力|树脂|查询体力|便笺|便签)$", describe: "体力", diff --git a/apps/srGallery.js b/apps/srGallery.js new file mode 100644 index 0000000..db75ed6 --- /dev/null +++ b/apps/srGallery.js @@ -0,0 +1,20 @@ +import { + Cfg +} from "../components/index.js"; + +import {AtlasAlias} from '../model/srGallery.js' + + +export async function srAtlasAlias(e,{render}) { + if (!Cfg.get("sr.Search")) { + return false; + } + let reg = /(#|\*)(.*)/; + if (Cfg.get("sr.Atlas")) { + reg = /(#\*)?(.*)图鉴/; + } + if (!reg.test(e.msg)) { + return false; + } + return await AtlasAlias(e,{render}) +} \ No newline at end of file diff --git a/components/Common.js b/components/Common.js index 32fd699..ba3d797 100644 --- a/components/Common.js +++ b/components/Common.js @@ -5,6 +5,10 @@ export const render = async function (path, params, cfg) { let { render, e } = cfg; let _layout_path = process.cwd() + "/plugins/xiaoyao-cvs-plugin/resources/"; let layout_path= process.cwd() + "/plugins/xiaoyao-cvs-plugin/resources/common/layout/"; + if(paths.length>2){ + paths[0] = `${paths[0]}/${paths[1]}` + paths[1] = `${paths[2]}` + } let base64 = await render(paths[0], paths[1], { ...params, _layout_path, diff --git a/index.js b/index.js index 1f79fbc..ed93661 100644 --- a/index.js +++ b/index.js @@ -17,7 +17,9 @@ if (isV3) { Bot.logger=logger index = await Data.importModule('/plugins/xiaoyao-cvs-plugin/adapter', 'index.js') } + export const atlas = index.atlas || {} + Bot.logger.info(`---------^_^---------`) Bot.logger.info(`图鉴插件${currentVersion}初始化~`) diff --git a/model/srGallery.js b/model/srGallery.js new file mode 100644 index 0000000..882b928 --- /dev/null +++ b/model/srGallery.js @@ -0,0 +1,89 @@ +import fs from "fs"; +import { + Cfg,Data +} from "../components/index.js"; +import lodash from 'lodash'; +import Common from "../components/Common.js"; +const _path = process.cwd(); +let pathPlus = `${_path}/plugins/xiaoyao-cvs-plugin/resources/sr/` + +export async function AtlasAlias(e,{render}) { + let data =await GetData(e) + if(!data) return false + await Common.render(`sr/weapon/index`, { + ...data + },{ + e, + render, + scale: 1.4 + }) + return true +} + + +export async function GetData(e) { + let name=e.msg.replace(/\*|#|星铁|星穹铁道|图鉴|专武/g,'') + let list = Data.readJSON(pathPlus, 'weapon/data.json') + let items = Data.readJSON(pathPlus, 'items/data.json') + let role=GetRole(name) + if(!role) return false; + name=role.name + let roleData; + let isUp=e.msg.includes('专武'); + lodash.forEach(list,(v,k)=>{ + if(isUp&&v.belongRole.includes(name)){ + roleData= v + return + }else if([v.name,...v.names,...v?.suitRole].includes(name)&&!isUp){ + roleData= v + return + } + }) + + if(roleData){ + let newMaterial=[] + for (const materialElement of roleData.material) { + for (const newMaterialElement of materialElement) { + if(!lodash.map(newMaterial,'id').includes(newMaterialElement.id)&&![2].includes(newMaterialElement.id*1)){ + newMaterial.push(newMaterialElement) + }else{ + + for (let v =0;v{ + let list = Data.readJSON(pathPlus, 'character/data.json') + let role; + lodash.forEach(list,(v,k)=>{ + if([v.name,...v.names].includes(name)){ + role=v + } + }) + return role +} + + diff --git a/resources/admin/index.html b/resources/admin/index.html index 09af130..feaf21a 100644 --- a/resources/admin/index.html +++ b/resources/admin/index.html @@ -30,6 +30,22 @@
图鉴匹配规则需要 开启:图鉴结尾 关闭:原魔、圣遗物、食物无需图鉴结尾
+
  • +
    + 星铁图鉴查询 + #图鉴设置星铁图鉴 + 开启/关闭 + {{@srSearch}} +
    +
    sr图鉴,当前仅支持武器图鉴数据
    +
  • +
  • +
    + 星铁图鉴匹配查询 + #图鉴设置星铁匹配 + 开启/关闭 + {{@srAtlas}} +
    +
    图鉴匹配规则需要 开启:图鉴结尾 关闭:#开头
    +
  • 图鉴目录开关 diff --git a/resources/sr/character/data.json b/resources/sr/character/data.json new file mode 100644 index 0000000..51a4f2c --- /dev/null +++ b/resources/sr/character/data.json @@ -0,0 +1,258 @@ +{ + "1001": { + "id": 1001, + "key": "mar7th", + "name": "三月七", + "abbr": "三月七", + "names":["三月七","mar7th","3月7","相遇之缘","37","三月"], + "star": 4, + "elem": "冰", + "weapon": "存护" + }, + "1002": { + "id": 1002, + "key": "danheng", + "name": "丹恒", + "abbr": "丹恒", + "names":["单恒","单桓","冷面","小青龙","冷面小青龙"], + "star": 4, + "elem": "风", + "weapon": "巡猎" + }, + "1003": { + "id": 1003, + "key": "himeko", + "name": "姬子", + "abbr": "姬子", + "names":["姬子","姬姬子"], + "star": 5, + "elem": "火", + "weapon": "智识" + }, + "1004": { + "id": 1004, + "key": "welt", + "name": "瓦尔特", + "abbr": "瓦尔特", + "names":["瓦尔特","老杨","杨叔","瓦尔特杨"], + "star": 5, + "elem": "虚数", + "weapon": "虚无" + }, + "1005": { + "id": 1005, + "key": "kafka", + "name": "卡芙卡", + "abbr": "卡芙卡", + "names": ["亲妈","卡芙卡"], + "star": 5, + "elem": "雷", + "weapon": "虚无" + }, + "1006": { + "id": 1006, + "key": "silverwolf", + "name": "银狼", + "abbr": "银狼", + "names": ["小鸭鸭","小板鸭","黑客","骇客","骇兔"], + "star": 5, + "elem": "量子", + "weapon": "虚无" + }, + "1008": { + "id": 1008, + "key": "arlan", + "name": "阿兰", + "abbr": "阿兰", + "names": ["阿兰"], + "star": 4, + "elem": "雷", + "weapon": "毁灭" + }, + "1009": { + "id": 1009, + "key": "asta", + "name": "艾丝妲", + "abbr": "艾丝妲", + "names": ["艾丝妲","宇宙级富婆"], + "star": 4, + "elem": "火", + "weapon": "同谐" + }, + "1013": { + "id": 1013, + "key": "herta", + "name": "黑塔", + "abbr": "黑塔", + "names": ["黑塔","转圈圈"], + "star": 4, + "elem": "冰", + "weapon": "智识" + }, + "1101": { + "id": 1101, + "key": "bronya", + "name": "布洛妮娅", + "abbr": "布洛妮娅", + "names": ["大鸭鸭","鸭鸭","板鸭","布洛尼亚","布洛妮亚","布洛尼娅"], + "star": 5, + "elem": "风", + "weapon": "同谐" + }, + "1102": { + "id": 1102, + "key": "seele", + "name": "希儿", + "abbr": "希儿", + "names": ["希尔","蝴蝶","云天明","随蝴蝶一起消散吧"], + "star": 5, + "elem": "量子", + "weapon": "巡猎" + }, + "1103": { + "id": 1103, + "key": "serval", + "name": "希露瓦", + "abbr": "希露瓦", + "names": ["希璐瓦"], + "star": 4, + "elem": "雷", + "weapon": "智识" + }, + "1104": { + "id": 1104, + "key": "gepard", + "name": "杰帕德", + "abbr": "杰帕德", + "names": ["杰哥","杰帕德"], + "star": 5, + "elem": "冰", + "weapon": "存护" + }, + "1105": { + "id": 1105, + "key": "natasha", + "name": "娜塔莎", + "abbr": "娜塔莎", + "names": ["纳塔莎","纳塔沙","纳塔沙","娜塔莎"], + "star": 4, + "elem": "物理", + "weapon": "丰饶" + }, + "1106": { + "id": 1106, + "key": "pela", + "name": "佩拉", + "abbr": "佩拉", + "names": ["佩拉","佩菈"], + "star": 4, + "elem": "冰", + "weapon": "虚无" + }, + "1107": { + "id": 1107, + "key": "clara", + "name": "克拉拉", + "abbr": "克拉拉", + "names": ["克拉拉"], + "star": 5, + "elem": "物理", + "weapon": "毁灭" + }, + "1108": { + "id": 1108, + "key": "sampo", + "name": "桑博", + "abbr": "桑博", + "names": ["桑柏","桑伯","桑博"], + "star": 4, + "elem": "风", + "weapon": "虚无" + }, + "1109": { + "id": 1109, + "key": "hook", + "name": "虎克", + "abbr": "虎克", + "names": ["虎克","胡可","虎克大人","漆黑的虎克","漆黑的虎克大人","鼹鼠党","鼹鼠党老大"], + "star": 4, + "elem": "火", + "weapon": "毁灭" + }, + "1201": { + "id": 1201, + "key": "qingque", + "name": "青雀", + "abbr": "青雀", + "names": ["青雀","赌神","赌圣","青鹊"], + "star": 4, + "elem": "量子", + "weapon": "智识" + }, + "1202": { + "id": 1202, + "key": "tingyun", + "name": "停云", + "abbr": "停云", + "names": ["停云","狐狸精"], + "star": 4, + "elem": "雷", + "weapon": "同谐" + }, + "1203": { + "id": 1203, + "key": "luocha", + "name": "罗刹", + "abbr": "罗刹", + "names": ["罗刹","罗沙","罗杀"], + "star": 5, + "elem": "虚数", + "weapon": "丰饶" + }, + "1204": { + "id": 1204, + "key": "jingyuan", + "name": "景元", + "abbr": "景元", + "names": ["景元","景原","景源","神君发射器"], + "star": 5, + "elem": "雷", + "weapon": "智识" + }, + "1206": { + "id": 1206, + "key": "sushang", + "name": "素裳", + "abbr": "素裳", + "names": ["素裳"], + "star": 4, + "elem": "物理", + "weapon": "巡猎" + }, + "1209": { + "id": 1209, + "key": "yanqing", + "name": "彦卿", + "abbr": "彦卿", + "names": ["彦卿","延卿","闫卿","彦清","彦青"], + "star": 5, + "elem": "冰", + "weapon": "巡猎" + }, + "1211": { + "id": 1211, + "key": "bailu", + "name": "白露", + "abbr": "白露", + "names": ["白露","小龙人","白鹿"], + "star": 5, + "elem": "雷", + "weapon": "丰饶" + }, + "8002": { + "id": 8002, + "name": "开拓者", + "names": ["开拓者","星"], + "star": 5 + } +} \ No newline at end of file diff --git a/resources/sr/icon/avatar/1001.png b/resources/sr/icon/avatar/1001.png new file mode 100644 index 0000000..9c28a93 Binary files /dev/null and b/resources/sr/icon/avatar/1001.png differ diff --git a/resources/sr/icon/avatar/1002.png b/resources/sr/icon/avatar/1002.png new file mode 100644 index 0000000..a46befa Binary files /dev/null and b/resources/sr/icon/avatar/1002.png differ diff --git a/resources/sr/icon/avatar/1003.png b/resources/sr/icon/avatar/1003.png new file mode 100644 index 0000000..82378db Binary files /dev/null and b/resources/sr/icon/avatar/1003.png differ diff --git a/resources/sr/icon/avatar/1004.png b/resources/sr/icon/avatar/1004.png new file mode 100644 index 0000000..4ecc5f1 Binary files /dev/null and b/resources/sr/icon/avatar/1004.png differ diff --git a/resources/sr/icon/avatar/1005.png b/resources/sr/icon/avatar/1005.png new file mode 100644 index 0000000..93681ea Binary files /dev/null and b/resources/sr/icon/avatar/1005.png differ diff --git a/resources/sr/icon/avatar/1006.png b/resources/sr/icon/avatar/1006.png new file mode 100644 index 0000000..1ae092d Binary files /dev/null and b/resources/sr/icon/avatar/1006.png differ diff --git a/resources/sr/icon/avatar/1008.png b/resources/sr/icon/avatar/1008.png new file mode 100644 index 0000000..54d5dbf Binary files /dev/null and b/resources/sr/icon/avatar/1008.png differ diff --git a/resources/sr/icon/avatar/1009.png b/resources/sr/icon/avatar/1009.png new file mode 100644 index 0000000..3f5767f Binary files /dev/null and b/resources/sr/icon/avatar/1009.png differ diff --git a/resources/sr/icon/avatar/1013.png b/resources/sr/icon/avatar/1013.png new file mode 100644 index 0000000..8927412 Binary files /dev/null and b/resources/sr/icon/avatar/1013.png differ diff --git a/resources/sr/icon/avatar/1101.png b/resources/sr/icon/avatar/1101.png new file mode 100644 index 0000000..0144510 Binary files /dev/null and b/resources/sr/icon/avatar/1101.png differ diff --git a/resources/sr/icon/avatar/1102.png b/resources/sr/icon/avatar/1102.png new file mode 100644 index 0000000..2ff71b2 Binary files /dev/null and b/resources/sr/icon/avatar/1102.png differ diff --git a/resources/sr/icon/avatar/1103.png b/resources/sr/icon/avatar/1103.png new file mode 100644 index 0000000..80cdd71 Binary files /dev/null and b/resources/sr/icon/avatar/1103.png differ diff --git a/resources/sr/icon/avatar/1104.png b/resources/sr/icon/avatar/1104.png new file mode 100644 index 0000000..6bd0784 Binary files /dev/null and b/resources/sr/icon/avatar/1104.png differ diff --git a/resources/sr/icon/avatar/1105.png b/resources/sr/icon/avatar/1105.png new file mode 100644 index 0000000..f318667 Binary files /dev/null and b/resources/sr/icon/avatar/1105.png differ diff --git a/resources/sr/icon/avatar/1106.png b/resources/sr/icon/avatar/1106.png new file mode 100644 index 0000000..972e552 Binary files /dev/null and b/resources/sr/icon/avatar/1106.png differ diff --git a/resources/sr/icon/avatar/1107.png b/resources/sr/icon/avatar/1107.png new file mode 100644 index 0000000..7c38557 Binary files /dev/null and b/resources/sr/icon/avatar/1107.png differ diff --git a/resources/sr/icon/avatar/1108.png b/resources/sr/icon/avatar/1108.png new file mode 100644 index 0000000..667a346 Binary files /dev/null and b/resources/sr/icon/avatar/1108.png differ diff --git a/resources/sr/icon/avatar/1109.png b/resources/sr/icon/avatar/1109.png new file mode 100644 index 0000000..1238fa3 Binary files /dev/null and b/resources/sr/icon/avatar/1109.png differ diff --git a/resources/sr/icon/avatar/1201.png b/resources/sr/icon/avatar/1201.png new file mode 100644 index 0000000..ee92a7b Binary files /dev/null and b/resources/sr/icon/avatar/1201.png differ diff --git a/resources/sr/icon/avatar/1202.png b/resources/sr/icon/avatar/1202.png new file mode 100644 index 0000000..76aa828 Binary files /dev/null and b/resources/sr/icon/avatar/1202.png differ diff --git a/resources/sr/icon/avatar/1203.png b/resources/sr/icon/avatar/1203.png new file mode 100644 index 0000000..03415ef Binary files /dev/null and b/resources/sr/icon/avatar/1203.png differ diff --git a/resources/sr/icon/avatar/1204.png b/resources/sr/icon/avatar/1204.png new file mode 100644 index 0000000..d182146 Binary files /dev/null and b/resources/sr/icon/avatar/1204.png differ diff --git a/resources/sr/icon/avatar/1205.png b/resources/sr/icon/avatar/1205.png new file mode 100644 index 0000000..cfe68b6 Binary files /dev/null and b/resources/sr/icon/avatar/1205.png differ diff --git a/resources/sr/icon/avatar/1206.png b/resources/sr/icon/avatar/1206.png new file mode 100644 index 0000000..9525d33 Binary files /dev/null and b/resources/sr/icon/avatar/1206.png differ diff --git a/resources/sr/icon/avatar/1207.png b/resources/sr/icon/avatar/1207.png new file mode 100644 index 0000000..3f0be73 Binary files /dev/null and b/resources/sr/icon/avatar/1207.png differ diff --git a/resources/sr/icon/avatar/1208.png b/resources/sr/icon/avatar/1208.png new file mode 100644 index 0000000..5fee97a Binary files /dev/null and b/resources/sr/icon/avatar/1208.png differ diff --git a/resources/sr/icon/avatar/1209.png b/resources/sr/icon/avatar/1209.png new file mode 100644 index 0000000..ac57ee7 Binary files /dev/null and b/resources/sr/icon/avatar/1209.png differ diff --git a/resources/sr/icon/avatar/1211.png b/resources/sr/icon/avatar/1211.png new file mode 100644 index 0000000..157cfde Binary files /dev/null and b/resources/sr/icon/avatar/1211.png differ diff --git a/resources/sr/icon/avatar/1214.png b/resources/sr/icon/avatar/1214.png new file mode 100644 index 0000000..86de191 Binary files /dev/null and b/resources/sr/icon/avatar/1214.png differ diff --git a/resources/sr/icon/avatar/200101.png b/resources/sr/icon/avatar/200101.png new file mode 100644 index 0000000..2af01d3 Binary files /dev/null and b/resources/sr/icon/avatar/200101.png differ diff --git a/resources/sr/icon/avatar/200102.png b/resources/sr/icon/avatar/200102.png new file mode 100644 index 0000000..0b9bb73 Binary files /dev/null and b/resources/sr/icon/avatar/200102.png differ diff --git a/resources/sr/icon/avatar/200103.png b/resources/sr/icon/avatar/200103.png new file mode 100644 index 0000000..d71bea7 Binary files /dev/null and b/resources/sr/icon/avatar/200103.png differ diff --git a/resources/sr/icon/avatar/200104.png b/resources/sr/icon/avatar/200104.png new file mode 100644 index 0000000..fa3a710 Binary files /dev/null and b/resources/sr/icon/avatar/200104.png differ diff --git a/resources/sr/icon/avatar/200105.png b/resources/sr/icon/avatar/200105.png new file mode 100644 index 0000000..79f061c Binary files /dev/null and b/resources/sr/icon/avatar/200105.png differ diff --git a/resources/sr/icon/avatar/200106.png b/resources/sr/icon/avatar/200106.png new file mode 100644 index 0000000..624fb25 Binary files /dev/null and b/resources/sr/icon/avatar/200106.png differ diff --git a/resources/sr/icon/avatar/202001.png b/resources/sr/icon/avatar/202001.png new file mode 100644 index 0000000..4726382 Binary files /dev/null and b/resources/sr/icon/avatar/202001.png differ diff --git a/resources/sr/icon/avatar/202002.png b/resources/sr/icon/avatar/202002.png new file mode 100644 index 0000000..61f7f19 Binary files /dev/null and b/resources/sr/icon/avatar/202002.png differ diff --git a/resources/sr/icon/avatar/202003.png b/resources/sr/icon/avatar/202003.png new file mode 100644 index 0000000..59a28ba Binary files /dev/null and b/resources/sr/icon/avatar/202003.png differ diff --git a/resources/sr/icon/avatar/202004.png b/resources/sr/icon/avatar/202004.png new file mode 100644 index 0000000..1e37d75 Binary files /dev/null and b/resources/sr/icon/avatar/202004.png differ diff --git a/resources/sr/icon/avatar/202005.png b/resources/sr/icon/avatar/202005.png new file mode 100644 index 0000000..aacc859 Binary files /dev/null and b/resources/sr/icon/avatar/202005.png differ diff --git a/resources/sr/icon/avatar/202006.png b/resources/sr/icon/avatar/202006.png new file mode 100644 index 0000000..4d8cba5 Binary files /dev/null and b/resources/sr/icon/avatar/202006.png differ diff --git a/resources/sr/icon/avatar/8001.png b/resources/sr/icon/avatar/8001.png new file mode 100644 index 0000000..825f628 Binary files /dev/null and b/resources/sr/icon/avatar/8001.png differ diff --git a/resources/sr/icon/avatar/8002.png b/resources/sr/icon/avatar/8002.png new file mode 100644 index 0000000..dbc310a Binary files /dev/null and b/resources/sr/icon/avatar/8002.png differ diff --git a/resources/sr/icon/avatar/8003.png b/resources/sr/icon/avatar/8003.png new file mode 100644 index 0000000..415bf7c Binary files /dev/null and b/resources/sr/icon/avatar/8003.png differ diff --git a/resources/sr/icon/avatar/8004.png b/resources/sr/icon/avatar/8004.png new file mode 100644 index 0000000..39adf02 Binary files /dev/null and b/resources/sr/icon/avatar/8004.png differ diff --git a/resources/sr/icon/avatar/Abraham.png b/resources/sr/icon/avatar/Abraham.png new file mode 100644 index 0000000..275413e Binary files /dev/null and b/resources/sr/icon/avatar/Abraham.png differ diff --git a/resources/sr/icon/avatar/Anonymous.png b/resources/sr/icon/avatar/Anonymous.png new file mode 100644 index 0000000..3941ab2 Binary files /dev/null and b/resources/sr/icon/avatar/Anonymous.png differ diff --git a/resources/sr/icon/avatar/Bukaixin.png b/resources/sr/icon/avatar/Bukaixin.png new file mode 100644 index 0000000..a571295 Binary files /dev/null and b/resources/sr/icon/avatar/Bukaixin.png differ diff --git a/resources/sr/icon/avatar/Chengjie.png b/resources/sr/icon/avatar/Chengjie.png new file mode 100644 index 0000000..779ae33 Binary files /dev/null and b/resources/sr/icon/avatar/Chengjie.png differ diff --git a/resources/sr/icon/avatar/Dahao.png b/resources/sr/icon/avatar/Dahao.png new file mode 100644 index 0000000..40b8698 Binary files /dev/null and b/resources/sr/icon/avatar/Dahao.png differ diff --git a/resources/sr/icon/avatar/Daiqing.png b/resources/sr/icon/avatar/Daiqing.png new file mode 100644 index 0000000..b1cfe74 Binary files /dev/null and b/resources/sr/icon/avatar/Daiqing.png differ diff --git a/resources/sr/icon/avatar/Danshu.png b/resources/sr/icon/avatar/Danshu.png new file mode 100644 index 0000000..7009f7b Binary files /dev/null and b/resources/sr/icon/avatar/Danshu.png differ diff --git a/resources/sr/icon/avatar/DoctorDig.png b/resources/sr/icon/avatar/DoctorDig.png new file mode 100644 index 0000000..fa0e33e Binary files /dev/null and b/resources/sr/icon/avatar/DoctorDig.png differ diff --git a/resources/sr/icon/avatar/Donne.png b/resources/sr/icon/avatar/Donne.png new file mode 100644 index 0000000..61f303d Binary files /dev/null and b/resources/sr/icon/avatar/Donne.png differ diff --git a/resources/sr/icon/avatar/Emilie.png b/resources/sr/icon/avatar/Emilie.png new file mode 100644 index 0000000..f34c63c Binary files /dev/null and b/resources/sr/icon/avatar/Emilie.png differ diff --git a/resources/sr/icon/avatar/Engineer.png b/resources/sr/icon/avatar/Engineer.png new file mode 100644 index 0000000..d4cebe2 Binary files /dev/null and b/resources/sr/icon/avatar/Engineer.png differ diff --git a/resources/sr/icon/avatar/GroupDefault.png b/resources/sr/icon/avatar/GroupDefault.png new file mode 100644 index 0000000..7fc650c Binary files /dev/null and b/resources/sr/icon/avatar/GroupDefault.png differ diff --git a/resources/sr/icon/avatar/GroupTrain.png b/resources/sr/icon/avatar/GroupTrain.png new file mode 100644 index 0000000..e6639ae Binary files /dev/null and b/resources/sr/icon/avatar/GroupTrain.png differ diff --git a/resources/sr/icon/avatar/Julian.png b/resources/sr/icon/avatar/Julian.png new file mode 100644 index 0000000..9e17ca3 Binary files /dev/null and b/resources/sr/icon/avatar/Julian.png differ diff --git a/resources/sr/icon/avatar/Luhui.png b/resources/sr/icon/avatar/Luhui.png new file mode 100644 index 0000000..7f00bca Binary files /dev/null and b/resources/sr/icon/avatar/Luhui.png differ diff --git a/resources/sr/icon/avatar/Lvfulong.png b/resources/sr/icon/avatar/Lvfulong.png new file mode 100644 index 0000000..6c7f5f4 Binary files /dev/null and b/resources/sr/icon/avatar/Lvfulong.png differ diff --git a/resources/sr/icon/avatar/Oleg.png b/resources/sr/icon/avatar/Oleg.png new file mode 100644 index 0000000..6683fad Binary files /dev/null and b/resources/sr/icon/avatar/Oleg.png differ diff --git a/resources/sr/icon/avatar/Pam.png b/resources/sr/icon/avatar/Pam.png new file mode 100644 index 0000000..361f6be Binary files /dev/null and b/resources/sr/icon/avatar/Pam.png differ diff --git a/resources/sr/icon/avatar/Pamela.png b/resources/sr/icon/avatar/Pamela.png new file mode 100644 index 0000000..c592ff6 Binary files /dev/null and b/resources/sr/icon/avatar/Pamela.png differ diff --git a/resources/sr/icon/avatar/Qingzu.png b/resources/sr/icon/avatar/Qingzu.png new file mode 100644 index 0000000..17388f1 Binary files /dev/null and b/resources/sr/icon/avatar/Qingzu.png differ diff --git a/resources/sr/icon/avatar/Rocky.png b/resources/sr/icon/avatar/Rocky.png new file mode 100644 index 0000000..b5d7cb0 Binary files /dev/null and b/resources/sr/icon/avatar/Rocky.png differ diff --git a/resources/sr/icon/avatar/Tantan.png b/resources/sr/icon/avatar/Tantan.png new file mode 100644 index 0000000..2af68a6 Binary files /dev/null and b/resources/sr/icon/avatar/Tantan.png differ diff --git a/resources/sr/icon/avatar/Wenfurui.png b/resources/sr/icon/avatar/Wenfurui.png new file mode 100644 index 0000000..4b326f9 Binary files /dev/null and b/resources/sr/icon/avatar/Wenfurui.png differ diff --git a/resources/sr/icon/avatar/Wenmingde.png b/resources/sr/icon/avatar/Wenmingde.png new file mode 100644 index 0000000..301e3a0 Binary files /dev/null and b/resources/sr/icon/avatar/Wenmingde.png differ diff --git a/resources/sr/icon/avatar/Xikui.png b/resources/sr/icon/avatar/Xikui.png new file mode 100644 index 0000000..a569e3e Binary files /dev/null and b/resources/sr/icon/avatar/Xikui.png differ diff --git a/resources/sr/icon/avatar/Yujin.png b/resources/sr/icon/avatar/Yujin.png new file mode 100644 index 0000000..96d004d Binary files /dev/null and b/resources/sr/icon/avatar/Yujin.png differ diff --git a/resources/sr/icon/avatar/Ziqiao.png b/resources/sr/icon/avatar/Ziqiao.png new file mode 100644 index 0000000..8ab907c Binary files /dev/null and b/resources/sr/icon/avatar/Ziqiao.png differ diff --git a/resources/sr/icon/item/100000.png b/resources/sr/icon/item/100000.png new file mode 100644 index 0000000..7b9f4be Binary files /dev/null and b/resources/sr/icon/item/100000.png differ diff --git a/resources/sr/icon/item/100001.png b/resources/sr/icon/item/100001.png new file mode 100644 index 0000000..763a459 Binary files /dev/null and b/resources/sr/icon/item/100001.png differ diff --git a/resources/sr/icon/item/101.png b/resources/sr/icon/item/101.png new file mode 100644 index 0000000..ae1e86d Binary files /dev/null and b/resources/sr/icon/item/101.png differ diff --git a/resources/sr/icon/item/102.png b/resources/sr/icon/item/102.png new file mode 100644 index 0000000..66294ac Binary files /dev/null and b/resources/sr/icon/item/102.png differ diff --git a/resources/sr/icon/item/11.png b/resources/sr/icon/item/11.png new file mode 100644 index 0000000..7b8bbbc Binary files /dev/null and b/resources/sr/icon/item/11.png differ diff --git a/resources/sr/icon/item/11001.png b/resources/sr/icon/item/11001.png new file mode 100644 index 0000000..b52415f Binary files /dev/null and b/resources/sr/icon/item/11001.png differ diff --git a/resources/sr/icon/item/11003.png b/resources/sr/icon/item/11003.png new file mode 100644 index 0000000..a7ed06d Binary files /dev/null and b/resources/sr/icon/item/11003.png differ diff --git a/resources/sr/icon/item/110111.png b/resources/sr/icon/item/110111.png new file mode 100644 index 0000000..39efb16 Binary files /dev/null and b/resources/sr/icon/item/110111.png differ diff --git a/resources/sr/icon/item/110112.png b/resources/sr/icon/item/110112.png new file mode 100644 index 0000000..8e2fb70 Binary files /dev/null and b/resources/sr/icon/item/110112.png differ diff --git a/resources/sr/icon/item/110113.png b/resources/sr/icon/item/110113.png new file mode 100644 index 0000000..f98e0f7 Binary files /dev/null and b/resources/sr/icon/item/110113.png differ diff --git a/resources/sr/icon/item/110121.png b/resources/sr/icon/item/110121.png new file mode 100644 index 0000000..6f1191f Binary files /dev/null and b/resources/sr/icon/item/110121.png differ diff --git a/resources/sr/icon/item/110122.png b/resources/sr/icon/item/110122.png new file mode 100644 index 0000000..fe75ffb Binary files /dev/null and b/resources/sr/icon/item/110122.png differ diff --git a/resources/sr/icon/item/110123.png b/resources/sr/icon/item/110123.png new file mode 100644 index 0000000..3a2ffbb Binary files /dev/null and b/resources/sr/icon/item/110123.png differ diff --git a/resources/sr/icon/item/110131.png b/resources/sr/icon/item/110131.png new file mode 100644 index 0000000..0d2acba Binary files /dev/null and b/resources/sr/icon/item/110131.png differ diff --git a/resources/sr/icon/item/110132.png b/resources/sr/icon/item/110132.png new file mode 100644 index 0000000..12dc951 Binary files /dev/null and b/resources/sr/icon/item/110132.png differ diff --git a/resources/sr/icon/item/110133.png b/resources/sr/icon/item/110133.png new file mode 100644 index 0000000..b291646 Binary files /dev/null and b/resources/sr/icon/item/110133.png differ diff --git a/resources/sr/icon/item/110141.png b/resources/sr/icon/item/110141.png new file mode 100644 index 0000000..d3afe5e Binary files /dev/null and b/resources/sr/icon/item/110141.png differ diff --git a/resources/sr/icon/item/110142.png b/resources/sr/icon/item/110142.png new file mode 100644 index 0000000..3818400 Binary files /dev/null and b/resources/sr/icon/item/110142.png differ diff --git a/resources/sr/icon/item/110143.png b/resources/sr/icon/item/110143.png new file mode 100644 index 0000000..60866aa Binary files /dev/null and b/resources/sr/icon/item/110143.png differ diff --git a/resources/sr/icon/item/110151.png b/resources/sr/icon/item/110151.png new file mode 100644 index 0000000..f8f3aa3 Binary files /dev/null and b/resources/sr/icon/item/110151.png differ diff --git a/resources/sr/icon/item/110152.png b/resources/sr/icon/item/110152.png new file mode 100644 index 0000000..ddeb91b Binary files /dev/null and b/resources/sr/icon/item/110152.png differ diff --git a/resources/sr/icon/item/110153.png b/resources/sr/icon/item/110153.png new file mode 100644 index 0000000..981d8c5 Binary files /dev/null and b/resources/sr/icon/item/110153.png differ diff --git a/resources/sr/icon/item/110161.png b/resources/sr/icon/item/110161.png new file mode 100644 index 0000000..6eaea30 Binary files /dev/null and b/resources/sr/icon/item/110161.png differ diff --git a/resources/sr/icon/item/110162.png b/resources/sr/icon/item/110162.png new file mode 100644 index 0000000..062983e Binary files /dev/null and b/resources/sr/icon/item/110162.png differ diff --git a/resources/sr/icon/item/110163.png b/resources/sr/icon/item/110163.png new file mode 100644 index 0000000..4cffd73 Binary files /dev/null and b/resources/sr/icon/item/110163.png differ diff --git a/resources/sr/icon/item/110171.png b/resources/sr/icon/item/110171.png new file mode 100644 index 0000000..3f31160 Binary files /dev/null and b/resources/sr/icon/item/110171.png differ diff --git a/resources/sr/icon/item/110172.png b/resources/sr/icon/item/110172.png new file mode 100644 index 0000000..7dd278b Binary files /dev/null and b/resources/sr/icon/item/110172.png differ diff --git a/resources/sr/icon/item/110173.png b/resources/sr/icon/item/110173.png new file mode 100644 index 0000000..0b51406 Binary files /dev/null and b/resources/sr/icon/item/110173.png differ diff --git a/resources/sr/icon/item/110400.png b/resources/sr/icon/item/110400.png new file mode 100644 index 0000000..7889c5c Binary files /dev/null and b/resources/sr/icon/item/110400.png differ diff --git a/resources/sr/icon/item/110401.png b/resources/sr/icon/item/110401.png new file mode 100644 index 0000000..d9ef182 Binary files /dev/null and b/resources/sr/icon/item/110401.png differ diff --git a/resources/sr/icon/item/110402.png b/resources/sr/icon/item/110402.png new file mode 100644 index 0000000..83cb4d2 Binary files /dev/null and b/resources/sr/icon/item/110402.png differ diff --git a/resources/sr/icon/item/110403.png b/resources/sr/icon/item/110403.png new file mode 100644 index 0000000..8840f58 Binary files /dev/null and b/resources/sr/icon/item/110403.png differ diff --git a/resources/sr/icon/item/110404.png b/resources/sr/icon/item/110404.png new file mode 100644 index 0000000..1c03845 Binary files /dev/null and b/resources/sr/icon/item/110404.png differ diff --git a/resources/sr/icon/item/110405.png b/resources/sr/icon/item/110405.png new file mode 100644 index 0000000..0a7d428 Binary files /dev/null and b/resources/sr/icon/item/110405.png differ diff --git a/resources/sr/icon/item/110406.png b/resources/sr/icon/item/110406.png new file mode 100644 index 0000000..445f722 Binary files /dev/null and b/resources/sr/icon/item/110406.png differ diff --git a/resources/sr/icon/item/110407.png b/resources/sr/icon/item/110407.png new file mode 100644 index 0000000..f407467 Binary files /dev/null and b/resources/sr/icon/item/110407.png differ diff --git a/resources/sr/icon/item/110413.png b/resources/sr/icon/item/110413.png new file mode 100644 index 0000000..c0cabc8 Binary files /dev/null and b/resources/sr/icon/item/110413.png differ diff --git a/resources/sr/icon/item/110414.png b/resources/sr/icon/item/110414.png new file mode 100644 index 0000000..0c9368e Binary files /dev/null and b/resources/sr/icon/item/110414.png differ diff --git a/resources/sr/icon/item/110501.png b/resources/sr/icon/item/110501.png new file mode 100644 index 0000000..e7a30f5 Binary files /dev/null and b/resources/sr/icon/item/110501.png differ diff --git a/resources/sr/icon/item/110502.png b/resources/sr/icon/item/110502.png new file mode 100644 index 0000000..d39affb Binary files /dev/null and b/resources/sr/icon/item/110502.png differ diff --git a/resources/sr/icon/item/111001.png b/resources/sr/icon/item/111001.png new file mode 100644 index 0000000..b28f6be Binary files /dev/null and b/resources/sr/icon/item/111001.png differ diff --git a/resources/sr/icon/item/111002.png b/resources/sr/icon/item/111002.png new file mode 100644 index 0000000..5a66a15 Binary files /dev/null and b/resources/sr/icon/item/111002.png differ diff --git a/resources/sr/icon/item/111003.png b/resources/sr/icon/item/111003.png new file mode 100644 index 0000000..62bbe37 Binary files /dev/null and b/resources/sr/icon/item/111003.png differ diff --git a/resources/sr/icon/item/111011.png b/resources/sr/icon/item/111011.png new file mode 100644 index 0000000..5fc52e7 Binary files /dev/null and b/resources/sr/icon/item/111011.png differ diff --git a/resources/sr/icon/item/111012.png b/resources/sr/icon/item/111012.png new file mode 100644 index 0000000..6d87a07 Binary files /dev/null and b/resources/sr/icon/item/111012.png differ diff --git a/resources/sr/icon/item/111013.png b/resources/sr/icon/item/111013.png new file mode 100644 index 0000000..863013d Binary files /dev/null and b/resources/sr/icon/item/111013.png differ diff --git a/resources/sr/icon/item/112001.png b/resources/sr/icon/item/112001.png new file mode 100644 index 0000000..5f85a4d Binary files /dev/null and b/resources/sr/icon/item/112001.png differ diff --git a/resources/sr/icon/item/112002.png b/resources/sr/icon/item/112002.png new file mode 100644 index 0000000..02f9bd1 Binary files /dev/null and b/resources/sr/icon/item/112002.png differ diff --git a/resources/sr/icon/item/112003.png b/resources/sr/icon/item/112003.png new file mode 100644 index 0000000..d01fffd Binary files /dev/null and b/resources/sr/icon/item/112003.png differ diff --git a/resources/sr/icon/item/112011.png b/resources/sr/icon/item/112011.png new file mode 100644 index 0000000..c094d43 Binary files /dev/null and b/resources/sr/icon/item/112011.png differ diff --git a/resources/sr/icon/item/112012.png b/resources/sr/icon/item/112012.png new file mode 100644 index 0000000..954cb34 Binary files /dev/null and b/resources/sr/icon/item/112012.png differ diff --git a/resources/sr/icon/item/112013.png b/resources/sr/icon/item/112013.png new file mode 100644 index 0000000..15d2b70 Binary files /dev/null and b/resources/sr/icon/item/112013.png differ diff --git a/resources/sr/icon/item/113001.png b/resources/sr/icon/item/113001.png new file mode 100644 index 0000000..faab730 Binary files /dev/null and b/resources/sr/icon/item/113001.png differ diff --git a/resources/sr/icon/item/113002.png b/resources/sr/icon/item/113002.png new file mode 100644 index 0000000..463aa10 Binary files /dev/null and b/resources/sr/icon/item/113002.png differ diff --git a/resources/sr/icon/item/113003.png b/resources/sr/icon/item/113003.png new file mode 100644 index 0000000..6441aed Binary files /dev/null and b/resources/sr/icon/item/113003.png differ diff --git a/resources/sr/icon/item/113004.png b/resources/sr/icon/item/113004.png new file mode 100644 index 0000000..85b8144 Binary files /dev/null and b/resources/sr/icon/item/113004.png differ diff --git a/resources/sr/icon/item/113005.png b/resources/sr/icon/item/113005.png new file mode 100644 index 0000000..3cf9a76 Binary files /dev/null and b/resources/sr/icon/item/113005.png differ diff --git a/resources/sr/icon/item/113006.png b/resources/sr/icon/item/113006.png new file mode 100644 index 0000000..51ee995 Binary files /dev/null and b/resources/sr/icon/item/113006.png differ diff --git a/resources/sr/icon/item/113007.png b/resources/sr/icon/item/113007.png new file mode 100644 index 0000000..63367e9 Binary files /dev/null and b/resources/sr/icon/item/113007.png differ diff --git a/resources/sr/icon/item/113011.png b/resources/sr/icon/item/113011.png new file mode 100644 index 0000000..594f3ef Binary files /dev/null and b/resources/sr/icon/item/113011.png differ diff --git a/resources/sr/icon/item/113012.png b/resources/sr/icon/item/113012.png new file mode 100644 index 0000000..4c69f46 Binary files /dev/null and b/resources/sr/icon/item/113012.png differ diff --git a/resources/sr/icon/item/113013.png b/resources/sr/icon/item/113013.png new file mode 100644 index 0000000..af1076e Binary files /dev/null and b/resources/sr/icon/item/113013.png differ diff --git a/resources/sr/icon/item/120000.png b/resources/sr/icon/item/120000.png new file mode 100644 index 0000000..a8a4528 Binary files /dev/null and b/resources/sr/icon/item/120000.png differ diff --git a/resources/sr/icon/item/120001.png b/resources/sr/icon/item/120001.png new file mode 100644 index 0000000..d441e86 Binary files /dev/null and b/resources/sr/icon/item/120001.png differ diff --git a/resources/sr/icon/item/120002.png b/resources/sr/icon/item/120002.png new file mode 100644 index 0000000..b76fe83 Binary files /dev/null and b/resources/sr/icon/item/120002.png differ diff --git a/resources/sr/icon/item/140002.png b/resources/sr/icon/item/140002.png new file mode 100644 index 0000000..2098ae7 Binary files /dev/null and b/resources/sr/icon/item/140002.png differ diff --git a/resources/sr/icon/item/140004.png b/resources/sr/icon/item/140004.png new file mode 100644 index 0000000..5ab4578 Binary files /dev/null and b/resources/sr/icon/item/140004.png differ diff --git a/resources/sr/icon/item/140005.png b/resources/sr/icon/item/140005.png new file mode 100644 index 0000000..121da89 Binary files /dev/null and b/resources/sr/icon/item/140005.png differ diff --git a/resources/sr/icon/item/140009.png b/resources/sr/icon/item/140009.png new file mode 100644 index 0000000..7b3bd6e Binary files /dev/null and b/resources/sr/icon/item/140009.png differ diff --git a/resources/sr/icon/item/140011.png b/resources/sr/icon/item/140011.png new file mode 100644 index 0000000..f2ce180 Binary files /dev/null and b/resources/sr/icon/item/140011.png differ diff --git a/resources/sr/icon/item/140013.png b/resources/sr/icon/item/140013.png new file mode 100644 index 0000000..7566c7b Binary files /dev/null and b/resources/sr/icon/item/140013.png differ diff --git a/resources/sr/icon/item/140017.png b/resources/sr/icon/item/140017.png new file mode 100644 index 0000000..92bc187 Binary files /dev/null and b/resources/sr/icon/item/140017.png differ diff --git a/resources/sr/icon/item/140019.png b/resources/sr/icon/item/140019.png new file mode 100644 index 0000000..23f02e6 Binary files /dev/null and b/resources/sr/icon/item/140019.png differ diff --git a/resources/sr/icon/item/140021.png b/resources/sr/icon/item/140021.png new file mode 100644 index 0000000..4c5611f Binary files /dev/null and b/resources/sr/icon/item/140021.png differ diff --git a/resources/sr/icon/item/140022.png b/resources/sr/icon/item/140022.png new file mode 100644 index 0000000..1fbf1a5 Binary files /dev/null and b/resources/sr/icon/item/140022.png differ diff --git a/resources/sr/icon/item/140023.png b/resources/sr/icon/item/140023.png new file mode 100644 index 0000000..f8da37e Binary files /dev/null and b/resources/sr/icon/item/140023.png differ diff --git a/resources/sr/icon/item/140024.png b/resources/sr/icon/item/140024.png new file mode 100644 index 0000000..686d0d7 Binary files /dev/null and b/resources/sr/icon/item/140024.png differ diff --git a/resources/sr/icon/item/140025.png b/resources/sr/icon/item/140025.png new file mode 100644 index 0000000..1b53442 Binary files /dev/null and b/resources/sr/icon/item/140025.png differ diff --git a/resources/sr/icon/item/140026.png b/resources/sr/icon/item/140026.png new file mode 100644 index 0000000..02b9b62 Binary files /dev/null and b/resources/sr/icon/item/140026.png differ diff --git a/resources/sr/icon/item/140028.png b/resources/sr/icon/item/140028.png new file mode 100644 index 0000000..8d635f5 Binary files /dev/null and b/resources/sr/icon/item/140028.png differ diff --git a/resources/sr/icon/item/140029.png b/resources/sr/icon/item/140029.png new file mode 100644 index 0000000..a7d2067 Binary files /dev/null and b/resources/sr/icon/item/140029.png differ diff --git a/resources/sr/icon/item/140032.png b/resources/sr/icon/item/140032.png new file mode 100644 index 0000000..6558cde Binary files /dev/null and b/resources/sr/icon/item/140032.png differ diff --git a/resources/sr/icon/item/140033.png b/resources/sr/icon/item/140033.png new file mode 100644 index 0000000..8f0b7b5 Binary files /dev/null and b/resources/sr/icon/item/140033.png differ diff --git a/resources/sr/icon/item/140034.png b/resources/sr/icon/item/140034.png new file mode 100644 index 0000000..c7963c2 Binary files /dev/null and b/resources/sr/icon/item/140034.png differ diff --git a/resources/sr/icon/item/140035.png b/resources/sr/icon/item/140035.png new file mode 100644 index 0000000..43c1eb6 Binary files /dev/null and b/resources/sr/icon/item/140035.png differ diff --git a/resources/sr/icon/item/140036.png b/resources/sr/icon/item/140036.png new file mode 100644 index 0000000..87da1f6 Binary files /dev/null and b/resources/sr/icon/item/140036.png differ diff --git a/resources/sr/icon/item/140037.png b/resources/sr/icon/item/140037.png new file mode 100644 index 0000000..8b0b47b Binary files /dev/null and b/resources/sr/icon/item/140037.png differ diff --git a/resources/sr/icon/item/140039.png b/resources/sr/icon/item/140039.png new file mode 100644 index 0000000..04b9694 Binary files /dev/null and b/resources/sr/icon/item/140039.png differ diff --git a/resources/sr/icon/item/140040.png b/resources/sr/icon/item/140040.png new file mode 100644 index 0000000..5ea2ec9 Binary files /dev/null and b/resources/sr/icon/item/140040.png differ diff --git a/resources/sr/icon/item/140041.png b/resources/sr/icon/item/140041.png new file mode 100644 index 0000000..7eb3f59 Binary files /dev/null and b/resources/sr/icon/item/140041.png differ diff --git a/resources/sr/icon/item/140065.png b/resources/sr/icon/item/140065.png new file mode 100644 index 0000000..dd07b4b Binary files /dev/null and b/resources/sr/icon/item/140065.png differ diff --git a/resources/sr/icon/item/140066.png b/resources/sr/icon/item/140066.png new file mode 100644 index 0000000..839fda0 Binary files /dev/null and b/resources/sr/icon/item/140066.png differ diff --git a/resources/sr/icon/item/140068.png b/resources/sr/icon/item/140068.png new file mode 100644 index 0000000..eef609d Binary files /dev/null and b/resources/sr/icon/item/140068.png differ diff --git a/resources/sr/icon/item/140069.png b/resources/sr/icon/item/140069.png new file mode 100644 index 0000000..c9c716f Binary files /dev/null and b/resources/sr/icon/item/140069.png differ diff --git a/resources/sr/icon/item/140071.png b/resources/sr/icon/item/140071.png new file mode 100644 index 0000000..0e34676 Binary files /dev/null and b/resources/sr/icon/item/140071.png differ diff --git a/resources/sr/icon/item/140072.png b/resources/sr/icon/item/140072.png new file mode 100644 index 0000000..ba0878c Binary files /dev/null and b/resources/sr/icon/item/140072.png differ diff --git a/resources/sr/icon/item/140073.png b/resources/sr/icon/item/140073.png new file mode 100644 index 0000000..758f8bb Binary files /dev/null and b/resources/sr/icon/item/140073.png differ diff --git a/resources/sr/icon/item/140082.png b/resources/sr/icon/item/140082.png new file mode 100644 index 0000000..01e4906 Binary files /dev/null and b/resources/sr/icon/item/140082.png differ diff --git a/resources/sr/icon/item/140084.png b/resources/sr/icon/item/140084.png new file mode 100644 index 0000000..498683b Binary files /dev/null and b/resources/sr/icon/item/140084.png differ diff --git a/resources/sr/icon/item/140085.png b/resources/sr/icon/item/140085.png new file mode 100644 index 0000000..ab1ae24 Binary files /dev/null and b/resources/sr/icon/item/140085.png differ diff --git a/resources/sr/icon/item/140086.png b/resources/sr/icon/item/140086.png new file mode 100644 index 0000000..43711d6 Binary files /dev/null and b/resources/sr/icon/item/140086.png differ diff --git a/resources/sr/icon/item/140104.png b/resources/sr/icon/item/140104.png new file mode 100644 index 0000000..fb4a046 Binary files /dev/null and b/resources/sr/icon/item/140104.png differ diff --git a/resources/sr/icon/item/140105.png b/resources/sr/icon/item/140105.png new file mode 100644 index 0000000..a1e0f6c Binary files /dev/null and b/resources/sr/icon/item/140105.png differ diff --git a/resources/sr/icon/item/140108.png b/resources/sr/icon/item/140108.png new file mode 100644 index 0000000..d5c3ddb Binary files /dev/null and b/resources/sr/icon/item/140108.png differ diff --git a/resources/sr/icon/item/140110.png b/resources/sr/icon/item/140110.png new file mode 100644 index 0000000..b4e33fa Binary files /dev/null and b/resources/sr/icon/item/140110.png differ diff --git a/resources/sr/icon/item/140114.png b/resources/sr/icon/item/140114.png new file mode 100644 index 0000000..109a682 Binary files /dev/null and b/resources/sr/icon/item/140114.png differ diff --git a/resources/sr/icon/item/140115.png b/resources/sr/icon/item/140115.png new file mode 100644 index 0000000..2d98b97 Binary files /dev/null and b/resources/sr/icon/item/140115.png differ diff --git a/resources/sr/icon/item/140116.png b/resources/sr/icon/item/140116.png new file mode 100644 index 0000000..0b8571f Binary files /dev/null and b/resources/sr/icon/item/140116.png differ diff --git a/resources/sr/icon/item/140117.png b/resources/sr/icon/item/140117.png new file mode 100644 index 0000000..a1cc1af Binary files /dev/null and b/resources/sr/icon/item/140117.png differ diff --git a/resources/sr/icon/item/140118.png b/resources/sr/icon/item/140118.png new file mode 100644 index 0000000..f485cca Binary files /dev/null and b/resources/sr/icon/item/140118.png differ diff --git a/resources/sr/icon/item/140119.png b/resources/sr/icon/item/140119.png new file mode 100644 index 0000000..84e9378 Binary files /dev/null and b/resources/sr/icon/item/140119.png differ diff --git a/resources/sr/icon/item/140120.png b/resources/sr/icon/item/140120.png new file mode 100644 index 0000000..7decb68 Binary files /dev/null and b/resources/sr/icon/item/140120.png differ diff --git a/resources/sr/icon/item/140121.png b/resources/sr/icon/item/140121.png new file mode 100644 index 0000000..9e9723b Binary files /dev/null and b/resources/sr/icon/item/140121.png differ diff --git a/resources/sr/icon/item/140124.png b/resources/sr/icon/item/140124.png new file mode 100644 index 0000000..336dc0e Binary files /dev/null and b/resources/sr/icon/item/140124.png differ diff --git a/resources/sr/icon/item/140125.png b/resources/sr/icon/item/140125.png new file mode 100644 index 0000000..75c31d9 Binary files /dev/null and b/resources/sr/icon/item/140125.png differ diff --git a/resources/sr/icon/item/140132.png b/resources/sr/icon/item/140132.png new file mode 100644 index 0000000..e333147 Binary files /dev/null and b/resources/sr/icon/item/140132.png differ diff --git a/resources/sr/icon/item/140135.png b/resources/sr/icon/item/140135.png new file mode 100644 index 0000000..f33c3e8 Binary files /dev/null and b/resources/sr/icon/item/140135.png differ diff --git a/resources/sr/icon/item/140136.png b/resources/sr/icon/item/140136.png new file mode 100644 index 0000000..3475bec Binary files /dev/null and b/resources/sr/icon/item/140136.png differ diff --git a/resources/sr/icon/item/140137.png b/resources/sr/icon/item/140137.png new file mode 100644 index 0000000..6963e2d Binary files /dev/null and b/resources/sr/icon/item/140137.png differ diff --git a/resources/sr/icon/item/140139.png b/resources/sr/icon/item/140139.png new file mode 100644 index 0000000..470c1f8 Binary files /dev/null and b/resources/sr/icon/item/140139.png differ diff --git a/resources/sr/icon/item/140140.png b/resources/sr/icon/item/140140.png new file mode 100644 index 0000000..814e33a Binary files /dev/null and b/resources/sr/icon/item/140140.png differ diff --git a/resources/sr/icon/item/140141.png b/resources/sr/icon/item/140141.png new file mode 100644 index 0000000..b489b29 Binary files /dev/null and b/resources/sr/icon/item/140141.png differ diff --git a/resources/sr/icon/item/140149.png b/resources/sr/icon/item/140149.png new file mode 100644 index 0000000..6ec6c86 Binary files /dev/null and b/resources/sr/icon/item/140149.png differ diff --git a/resources/sr/icon/item/140150.png b/resources/sr/icon/item/140150.png new file mode 100644 index 0000000..e799a42 Binary files /dev/null and b/resources/sr/icon/item/140150.png differ diff --git a/resources/sr/icon/item/140162.png b/resources/sr/icon/item/140162.png new file mode 100644 index 0000000..b0500b2 Binary files /dev/null and b/resources/sr/icon/item/140162.png differ diff --git a/resources/sr/icon/item/140163.png b/resources/sr/icon/item/140163.png new file mode 100644 index 0000000..33f99e3 Binary files /dev/null and b/resources/sr/icon/item/140163.png differ diff --git a/resources/sr/icon/item/140164.png b/resources/sr/icon/item/140164.png new file mode 100644 index 0000000..f1c886f Binary files /dev/null and b/resources/sr/icon/item/140164.png differ diff --git a/resources/sr/icon/item/140175.png b/resources/sr/icon/item/140175.png new file mode 100644 index 0000000..468582f Binary files /dev/null and b/resources/sr/icon/item/140175.png differ diff --git a/resources/sr/icon/item/140176.png b/resources/sr/icon/item/140176.png new file mode 100644 index 0000000..edc4e6d Binary files /dev/null and b/resources/sr/icon/item/140176.png differ diff --git a/resources/sr/icon/item/140177.png b/resources/sr/icon/item/140177.png new file mode 100644 index 0000000..abd1863 Binary files /dev/null and b/resources/sr/icon/item/140177.png differ diff --git a/resources/sr/icon/item/140198.png b/resources/sr/icon/item/140198.png new file mode 100644 index 0000000..10cec98 Binary files /dev/null and b/resources/sr/icon/item/140198.png differ diff --git a/resources/sr/icon/item/149975.png b/resources/sr/icon/item/149975.png new file mode 100644 index 0000000..2e9509e Binary files /dev/null and b/resources/sr/icon/item/149975.png differ diff --git a/resources/sr/icon/item/149978.png b/resources/sr/icon/item/149978.png new file mode 100644 index 0000000..71cf7f7 Binary files /dev/null and b/resources/sr/icon/item/149978.png differ diff --git a/resources/sr/icon/item/180001.png b/resources/sr/icon/item/180001.png new file mode 100644 index 0000000..0eb679a Binary files /dev/null and b/resources/sr/icon/item/180001.png differ diff --git a/resources/sr/icon/item/180002.png b/resources/sr/icon/item/180002.png new file mode 100644 index 0000000..8323440 Binary files /dev/null and b/resources/sr/icon/item/180002.png differ diff --git a/resources/sr/icon/item/180004.png b/resources/sr/icon/item/180004.png new file mode 100644 index 0000000..034436b Binary files /dev/null and b/resources/sr/icon/item/180004.png differ diff --git a/resources/sr/icon/item/180005.png b/resources/sr/icon/item/180005.png new file mode 100644 index 0000000..bf1eff0 Binary files /dev/null and b/resources/sr/icon/item/180005.png differ diff --git a/resources/sr/icon/item/180006.png b/resources/sr/icon/item/180006.png new file mode 100644 index 0000000..9733268 Binary files /dev/null and b/resources/sr/icon/item/180006.png differ diff --git a/resources/sr/icon/item/180007.png b/resources/sr/icon/item/180007.png new file mode 100644 index 0000000..2a1aafb Binary files /dev/null and b/resources/sr/icon/item/180007.png differ diff --git a/resources/sr/icon/item/18001.png b/resources/sr/icon/item/18001.png new file mode 100644 index 0000000..2c214b3 Binary files /dev/null and b/resources/sr/icon/item/18001.png differ diff --git a/resources/sr/icon/item/18003.png b/resources/sr/icon/item/18003.png new file mode 100644 index 0000000..3baa93f Binary files /dev/null and b/resources/sr/icon/item/18003.png differ diff --git a/resources/sr/icon/item/181001.png b/resources/sr/icon/item/181001.png new file mode 100644 index 0000000..5265b9e Binary files /dev/null and b/resources/sr/icon/item/181001.png differ diff --git a/resources/sr/icon/item/181002.png b/resources/sr/icon/item/181002.png new file mode 100644 index 0000000..fab6fee Binary files /dev/null and b/resources/sr/icon/item/181002.png differ diff --git a/resources/sr/icon/item/181003.png b/resources/sr/icon/item/181003.png new file mode 100644 index 0000000..6a8c76b Binary files /dev/null and b/resources/sr/icon/item/181003.png differ diff --git a/resources/sr/icon/item/181004.png b/resources/sr/icon/item/181004.png new file mode 100644 index 0000000..9cae081 Binary files /dev/null and b/resources/sr/icon/item/181004.png differ diff --git a/resources/sr/icon/item/181005.png b/resources/sr/icon/item/181005.png new file mode 100644 index 0000000..cc8097b Binary files /dev/null and b/resources/sr/icon/item/181005.png differ diff --git a/resources/sr/icon/item/181006.png b/resources/sr/icon/item/181006.png new file mode 100644 index 0000000..82db9de Binary files /dev/null and b/resources/sr/icon/item/181006.png differ diff --git a/resources/sr/icon/item/181007.png b/resources/sr/icon/item/181007.png new file mode 100644 index 0000000..681e060 Binary files /dev/null and b/resources/sr/icon/item/181007.png differ diff --git a/resources/sr/icon/item/181008.png b/resources/sr/icon/item/181008.png new file mode 100644 index 0000000..f2ebcaa Binary files /dev/null and b/resources/sr/icon/item/181008.png differ diff --git a/resources/sr/icon/item/181009.png b/resources/sr/icon/item/181009.png new file mode 100644 index 0000000..7cc51f2 Binary files /dev/null and b/resources/sr/icon/item/181009.png differ diff --git a/resources/sr/icon/item/181010.png b/resources/sr/icon/item/181010.png new file mode 100644 index 0000000..83ec8eb Binary files /dev/null and b/resources/sr/icon/item/181010.png differ diff --git a/resources/sr/icon/item/182001.png b/resources/sr/icon/item/182001.png new file mode 100644 index 0000000..c573345 Binary files /dev/null and b/resources/sr/icon/item/182001.png differ diff --git a/resources/sr/icon/item/182002.png b/resources/sr/icon/item/182002.png new file mode 100644 index 0000000..a67bd1b Binary files /dev/null and b/resources/sr/icon/item/182002.png differ diff --git a/resources/sr/icon/item/182003.png b/resources/sr/icon/item/182003.png new file mode 100644 index 0000000..441e37e Binary files /dev/null and b/resources/sr/icon/item/182003.png differ diff --git a/resources/sr/icon/item/182004.png b/resources/sr/icon/item/182004.png new file mode 100644 index 0000000..2671686 Binary files /dev/null and b/resources/sr/icon/item/182004.png differ diff --git a/resources/sr/icon/item/182005.png b/resources/sr/icon/item/182005.png new file mode 100644 index 0000000..e735b76 Binary files /dev/null and b/resources/sr/icon/item/182005.png differ diff --git a/resources/sr/icon/item/182006.png b/resources/sr/icon/item/182006.png new file mode 100644 index 0000000..992a3e4 Binary files /dev/null and b/resources/sr/icon/item/182006.png differ diff --git a/resources/sr/icon/item/182007.png b/resources/sr/icon/item/182007.png new file mode 100644 index 0000000..fa10cb5 Binary files /dev/null and b/resources/sr/icon/item/182007.png differ diff --git a/resources/sr/icon/item/183001.png b/resources/sr/icon/item/183001.png new file mode 100644 index 0000000..f941398 Binary files /dev/null and b/resources/sr/icon/item/183001.png differ diff --git a/resources/sr/icon/item/183002.png b/resources/sr/icon/item/183002.png new file mode 100644 index 0000000..d7efa14 Binary files /dev/null and b/resources/sr/icon/item/183002.png differ diff --git a/resources/sr/icon/item/183003.png b/resources/sr/icon/item/183003.png new file mode 100644 index 0000000..0d92682 Binary files /dev/null and b/resources/sr/icon/item/183003.png differ diff --git a/resources/sr/icon/item/183004.png b/resources/sr/icon/item/183004.png new file mode 100644 index 0000000..2a79aa4 Binary files /dev/null and b/resources/sr/icon/item/183004.png differ diff --git a/resources/sr/icon/item/190001.png b/resources/sr/icon/item/190001.png new file mode 100644 index 0000000..b617111 Binary files /dev/null and b/resources/sr/icon/item/190001.png differ diff --git a/resources/sr/icon/item/190002.png b/resources/sr/icon/item/190002.png new file mode 100644 index 0000000..d2c6de3 Binary files /dev/null and b/resources/sr/icon/item/190002.png differ diff --git a/resources/sr/icon/item/190003.png b/resources/sr/icon/item/190003.png new file mode 100644 index 0000000..813d998 Binary files /dev/null and b/resources/sr/icon/item/190003.png differ diff --git a/resources/sr/icon/item/190004.png b/resources/sr/icon/item/190004.png new file mode 100644 index 0000000..c20aabc Binary files /dev/null and b/resources/sr/icon/item/190004.png differ diff --git a/resources/sr/icon/item/190005.png b/resources/sr/icon/item/190005.png new file mode 100644 index 0000000..65d3bd5 Binary files /dev/null and b/resources/sr/icon/item/190005.png differ diff --git a/resources/sr/icon/item/190006.png b/resources/sr/icon/item/190006.png new file mode 100644 index 0000000..3799da6 Binary files /dev/null and b/resources/sr/icon/item/190006.png differ diff --git a/resources/sr/icon/item/190007.png b/resources/sr/icon/item/190007.png new file mode 100644 index 0000000..dd6333d Binary files /dev/null and b/resources/sr/icon/item/190007.png differ diff --git a/resources/sr/icon/item/190008.png b/resources/sr/icon/item/190008.png new file mode 100644 index 0000000..292e280 Binary files /dev/null and b/resources/sr/icon/item/190008.png differ diff --git a/resources/sr/icon/item/190009.png b/resources/sr/icon/item/190009.png new file mode 100644 index 0000000..ab2d3a7 Binary files /dev/null and b/resources/sr/icon/item/190009.png differ diff --git a/resources/sr/icon/item/2.png b/resources/sr/icon/item/2.png new file mode 100644 index 0000000..64e7646 Binary files /dev/null and b/resources/sr/icon/item/2.png differ diff --git a/resources/sr/icon/item/201.png b/resources/sr/icon/item/201.png new file mode 100644 index 0000000..aa4e17b Binary files /dev/null and b/resources/sr/icon/item/201.png differ diff --git a/resources/sr/icon/item/21.png b/resources/sr/icon/item/21.png new file mode 100644 index 0000000..4130012 Binary files /dev/null and b/resources/sr/icon/item/21.png differ diff --git a/resources/sr/icon/item/210001.png b/resources/sr/icon/item/210001.png new file mode 100644 index 0000000..be629ab Binary files /dev/null and b/resources/sr/icon/item/210001.png differ diff --git a/resources/sr/icon/item/211.png b/resources/sr/icon/item/211.png new file mode 100644 index 0000000..17a4b83 Binary files /dev/null and b/resources/sr/icon/item/211.png differ diff --git a/resources/sr/icon/item/212.png b/resources/sr/icon/item/212.png new file mode 100644 index 0000000..144c6fd Binary files /dev/null and b/resources/sr/icon/item/212.png differ diff --git a/resources/sr/icon/item/213.png b/resources/sr/icon/item/213.png new file mode 100644 index 0000000..0e76429 Binary files /dev/null and b/resources/sr/icon/item/213.png differ diff --git a/resources/sr/icon/item/22.png b/resources/sr/icon/item/22.png new file mode 100644 index 0000000..8f1543f Binary files /dev/null and b/resources/sr/icon/item/22.png differ diff --git a/resources/sr/icon/item/221.png b/resources/sr/icon/item/221.png new file mode 100644 index 0000000..4d13d47 Binary files /dev/null and b/resources/sr/icon/item/221.png differ diff --git a/resources/sr/icon/item/222.png b/resources/sr/icon/item/222.png new file mode 100644 index 0000000..5001ddf Binary files /dev/null and b/resources/sr/icon/item/222.png differ diff --git a/resources/sr/icon/item/223.png b/resources/sr/icon/item/223.png new file mode 100644 index 0000000..546c65f Binary files /dev/null and b/resources/sr/icon/item/223.png differ diff --git a/resources/sr/icon/item/23.png b/resources/sr/icon/item/23.png new file mode 100644 index 0000000..2255bc9 Binary files /dev/null and b/resources/sr/icon/item/23.png differ diff --git a/resources/sr/icon/item/231.png b/resources/sr/icon/item/231.png new file mode 100644 index 0000000..8e6f48c Binary files /dev/null and b/resources/sr/icon/item/231.png differ diff --git a/resources/sr/icon/item/232.png b/resources/sr/icon/item/232.png new file mode 100644 index 0000000..b87519b Binary files /dev/null and b/resources/sr/icon/item/232.png differ diff --git a/resources/sr/icon/item/233.png b/resources/sr/icon/item/233.png new file mode 100644 index 0000000..6620345 Binary files /dev/null and b/resources/sr/icon/item/233.png differ diff --git a/resources/sr/icon/item/234.png b/resources/sr/icon/item/234.png new file mode 100644 index 0000000..0e09b00 Binary files /dev/null and b/resources/sr/icon/item/234.png differ diff --git a/resources/sr/icon/item/235.png b/resources/sr/icon/item/235.png new file mode 100644 index 0000000..baa42a2 Binary files /dev/null and b/resources/sr/icon/item/235.png differ diff --git a/resources/sr/icon/item/236.png b/resources/sr/icon/item/236.png new file mode 100644 index 0000000..38dbaf2 Binary files /dev/null and b/resources/sr/icon/item/236.png differ diff --git a/resources/sr/icon/item/24.png b/resources/sr/icon/item/24.png new file mode 100644 index 0000000..16aa651 Binary files /dev/null and b/resources/sr/icon/item/24.png differ diff --git a/resources/sr/icon/item/241.png b/resources/sr/icon/item/241.png new file mode 100644 index 0000000..c2508ec Binary files /dev/null and b/resources/sr/icon/item/241.png differ diff --git a/resources/sr/icon/item/251.png b/resources/sr/icon/item/251.png new file mode 100644 index 0000000..d1face1 Binary files /dev/null and b/resources/sr/icon/item/251.png differ diff --git a/resources/sr/icon/item/252.png b/resources/sr/icon/item/252.png new file mode 100644 index 0000000..43b68ed Binary files /dev/null and b/resources/sr/icon/item/252.png differ diff --git a/resources/sr/icon/item/261.png b/resources/sr/icon/item/261.png new file mode 100644 index 0000000..696e756 Binary files /dev/null and b/resources/sr/icon/item/261.png differ diff --git a/resources/sr/icon/item/271.png b/resources/sr/icon/item/271.png new file mode 100644 index 0000000..5d368b3 Binary files /dev/null and b/resources/sr/icon/item/271.png differ diff --git a/resources/sr/icon/item/3.png b/resources/sr/icon/item/3.png new file mode 100644 index 0000000..ff07c93 Binary files /dev/null and b/resources/sr/icon/item/3.png differ diff --git a/resources/sr/icon/item/300002.png b/resources/sr/icon/item/300002.png new file mode 100644 index 0000000..3e6ca6b Binary files /dev/null and b/resources/sr/icon/item/300002.png differ diff --git a/resources/sr/icon/item/300003.png b/resources/sr/icon/item/300003.png new file mode 100644 index 0000000..7e6a7c5 Binary files /dev/null and b/resources/sr/icon/item/300003.png differ diff --git a/resources/sr/icon/item/300011.png b/resources/sr/icon/item/300011.png new file mode 100644 index 0000000..894d352 Binary files /dev/null and b/resources/sr/icon/item/300011.png differ diff --git a/resources/sr/icon/item/300031.png b/resources/sr/icon/item/300031.png new file mode 100644 index 0000000..624af0a Binary files /dev/null and b/resources/sr/icon/item/300031.png differ diff --git a/resources/sr/icon/item/300101.png b/resources/sr/icon/item/300101.png new file mode 100644 index 0000000..fa4e2e7 Binary files /dev/null and b/resources/sr/icon/item/300101.png differ diff --git a/resources/sr/icon/item/300102.png b/resources/sr/icon/item/300102.png new file mode 100644 index 0000000..be112b7 Binary files /dev/null and b/resources/sr/icon/item/300102.png differ diff --git a/resources/sr/icon/item/300103.png b/resources/sr/icon/item/300103.png new file mode 100644 index 0000000..2fcdbe7 Binary files /dev/null and b/resources/sr/icon/item/300103.png differ diff --git a/resources/sr/icon/item/300201.png b/resources/sr/icon/item/300201.png new file mode 100644 index 0000000..f2e3c12 Binary files /dev/null and b/resources/sr/icon/item/300201.png differ diff --git a/resources/sr/icon/item/31.png b/resources/sr/icon/item/31.png new file mode 100644 index 0000000..af545ed Binary files /dev/null and b/resources/sr/icon/item/31.png differ diff --git a/resources/sr/icon/item/310001.png b/resources/sr/icon/item/310001.png new file mode 100644 index 0000000..0f5fe8a Binary files /dev/null and b/resources/sr/icon/item/310001.png differ diff --git a/resources/sr/icon/item/310002.png b/resources/sr/icon/item/310002.png new file mode 100644 index 0000000..1b639df Binary files /dev/null and b/resources/sr/icon/item/310002.png differ diff --git a/resources/sr/icon/item/310003.png b/resources/sr/icon/item/310003.png new file mode 100644 index 0000000..209dfc6 Binary files /dev/null and b/resources/sr/icon/item/310003.png differ diff --git a/resources/sr/icon/item/32.png b/resources/sr/icon/item/32.png new file mode 100644 index 0000000..c984e90 Binary files /dev/null and b/resources/sr/icon/item/32.png differ diff --git a/resources/sr/icon/item/33.png b/resources/sr/icon/item/33.png new file mode 100644 index 0000000..b88d3ce Binary files /dev/null and b/resources/sr/icon/item/33.png differ diff --git a/resources/sr/icon/item/400004.png b/resources/sr/icon/item/400004.png new file mode 100644 index 0000000..79b069a Binary files /dev/null and b/resources/sr/icon/item/400004.png differ diff --git a/resources/sr/icon/item/400005.png b/resources/sr/icon/item/400005.png new file mode 100644 index 0000000..fb0bce6 Binary files /dev/null and b/resources/sr/icon/item/400005.png differ diff --git a/resources/sr/icon/item/400006.png b/resources/sr/icon/item/400006.png new file mode 100644 index 0000000..5967cd4 Binary files /dev/null and b/resources/sr/icon/item/400006.png differ diff --git a/resources/sr/icon/item/400007.png b/resources/sr/icon/item/400007.png new file mode 100644 index 0000000..6aa04d0 Binary files /dev/null and b/resources/sr/icon/item/400007.png differ diff --git a/resources/sr/icon/item/401003.png b/resources/sr/icon/item/401003.png new file mode 100644 index 0000000..090237c Binary files /dev/null and b/resources/sr/icon/item/401003.png differ diff --git a/resources/sr/icon/item/401004.png b/resources/sr/icon/item/401004.png new file mode 100644 index 0000000..a47fa22 Binary files /dev/null and b/resources/sr/icon/item/401004.png differ diff --git a/resources/sr/icon/item/401005.png b/resources/sr/icon/item/401005.png new file mode 100644 index 0000000..88fe057 Binary files /dev/null and b/resources/sr/icon/item/401005.png differ diff --git a/resources/sr/icon/item/401006.png b/resources/sr/icon/item/401006.png new file mode 100644 index 0000000..098c6c7 Binary files /dev/null and b/resources/sr/icon/item/401006.png differ diff --git a/resources/sr/icon/item/401007.png b/resources/sr/icon/item/401007.png new file mode 100644 index 0000000..de83872 Binary files /dev/null and b/resources/sr/icon/item/401007.png differ diff --git a/resources/sr/icon/item/401008.png b/resources/sr/icon/item/401008.png new file mode 100644 index 0000000..cd834c3 Binary files /dev/null and b/resources/sr/icon/item/401008.png differ diff --git a/resources/sr/icon/item/401009.png b/resources/sr/icon/item/401009.png new file mode 100644 index 0000000..5b6f49d Binary files /dev/null and b/resources/sr/icon/item/401009.png differ diff --git a/resources/sr/icon/item/401010.png b/resources/sr/icon/item/401010.png new file mode 100644 index 0000000..f00d31c Binary files /dev/null and b/resources/sr/icon/item/401010.png differ diff --git a/resources/sr/icon/item/401011.png b/resources/sr/icon/item/401011.png new file mode 100644 index 0000000..4fd39a0 Binary files /dev/null and b/resources/sr/icon/item/401011.png differ diff --git a/resources/sr/icon/item/401012.png b/resources/sr/icon/item/401012.png new file mode 100644 index 0000000..921314c Binary files /dev/null and b/resources/sr/icon/item/401012.png differ diff --git a/resources/sr/icon/item/401013.png b/resources/sr/icon/item/401013.png new file mode 100644 index 0000000..4a72d81 Binary files /dev/null and b/resources/sr/icon/item/401013.png differ diff --git a/resources/sr/icon/item/402001.png b/resources/sr/icon/item/402001.png new file mode 100644 index 0000000..4a85de6 Binary files /dev/null and b/resources/sr/icon/item/402001.png differ diff --git a/resources/sr/icon/item/402002.png b/resources/sr/icon/item/402002.png new file mode 100644 index 0000000..247f78b Binary files /dev/null and b/resources/sr/icon/item/402002.png differ diff --git a/resources/sr/icon/item/402003.png b/resources/sr/icon/item/402003.png new file mode 100644 index 0000000..503d150 Binary files /dev/null and b/resources/sr/icon/item/402003.png differ diff --git a/resources/sr/icon/item/402004.png b/resources/sr/icon/item/402004.png new file mode 100644 index 0000000..149eb85 Binary files /dev/null and b/resources/sr/icon/item/402004.png differ diff --git a/resources/sr/icon/item/402005.png b/resources/sr/icon/item/402005.png new file mode 100644 index 0000000..ed282a6 Binary files /dev/null and b/resources/sr/icon/item/402005.png differ diff --git a/resources/sr/icon/item/402006.png b/resources/sr/icon/item/402006.png new file mode 100644 index 0000000..36c5f61 Binary files /dev/null and b/resources/sr/icon/item/402006.png differ diff --git a/resources/sr/icon/item/402007.png b/resources/sr/icon/item/402007.png new file mode 100644 index 0000000..bc23fbc Binary files /dev/null and b/resources/sr/icon/item/402007.png differ diff --git a/resources/sr/icon/item/402008.png b/resources/sr/icon/item/402008.png new file mode 100644 index 0000000..7067ea7 Binary files /dev/null and b/resources/sr/icon/item/402008.png differ diff --git a/resources/sr/icon/item/402009.png b/resources/sr/icon/item/402009.png new file mode 100644 index 0000000..7f3100d Binary files /dev/null and b/resources/sr/icon/item/402009.png differ diff --git a/resources/sr/icon/item/402010.png b/resources/sr/icon/item/402010.png new file mode 100644 index 0000000..f66944b Binary files /dev/null and b/resources/sr/icon/item/402010.png differ diff --git a/resources/sr/icon/item/402011.png b/resources/sr/icon/item/402011.png new file mode 100644 index 0000000..163a2d4 Binary files /dev/null and b/resources/sr/icon/item/402011.png differ diff --git a/resources/sr/icon/item/402012.png b/resources/sr/icon/item/402012.png new file mode 100644 index 0000000..eaeb329 Binary files /dev/null and b/resources/sr/icon/item/402012.png differ diff --git a/resources/sr/icon/item/402013.png b/resources/sr/icon/item/402013.png new file mode 100644 index 0000000..539521a Binary files /dev/null and b/resources/sr/icon/item/402013.png differ diff --git a/resources/sr/icon/item/402014.png b/resources/sr/icon/item/402014.png new file mode 100644 index 0000000..5d048fb Binary files /dev/null and b/resources/sr/icon/item/402014.png differ diff --git a/resources/sr/icon/item/402015.png b/resources/sr/icon/item/402015.png new file mode 100644 index 0000000..ba0fb9e Binary files /dev/null and b/resources/sr/icon/item/402015.png differ diff --git a/resources/sr/icon/item/402016.png b/resources/sr/icon/item/402016.png new file mode 100644 index 0000000..fe8d50f Binary files /dev/null and b/resources/sr/icon/item/402016.png differ diff --git a/resources/sr/icon/item/403001.png b/resources/sr/icon/item/403001.png new file mode 100644 index 0000000..86fa29b Binary files /dev/null and b/resources/sr/icon/item/403001.png differ diff --git a/resources/sr/icon/item/403002.png b/resources/sr/icon/item/403002.png new file mode 100644 index 0000000..f306727 Binary files /dev/null and b/resources/sr/icon/item/403002.png differ diff --git a/resources/sr/icon/item/403003.png b/resources/sr/icon/item/403003.png new file mode 100644 index 0000000..18b4ba3 Binary files /dev/null and b/resources/sr/icon/item/403003.png differ diff --git a/resources/sr/icon/item/403004.png b/resources/sr/icon/item/403004.png new file mode 100644 index 0000000..0415876 Binary files /dev/null and b/resources/sr/icon/item/403004.png differ diff --git a/resources/sr/icon/item/403005.png b/resources/sr/icon/item/403005.png new file mode 100644 index 0000000..4779b1c Binary files /dev/null and b/resources/sr/icon/item/403005.png differ diff --git a/resources/sr/icon/item/403006.png b/resources/sr/icon/item/403006.png new file mode 100644 index 0000000..6d9ee3a Binary files /dev/null and b/resources/sr/icon/item/403006.png differ diff --git a/resources/sr/icon/item/404001.png b/resources/sr/icon/item/404001.png new file mode 100644 index 0000000..7ebc1b1 Binary files /dev/null and b/resources/sr/icon/item/404001.png differ diff --git a/resources/sr/icon/item/408001.png b/resources/sr/icon/item/408001.png new file mode 100644 index 0000000..380fb75 Binary files /dev/null and b/resources/sr/icon/item/408001.png differ diff --git a/resources/sr/icon/item/408002.png b/resources/sr/icon/item/408002.png new file mode 100644 index 0000000..22a315f Binary files /dev/null and b/resources/sr/icon/item/408002.png differ diff --git a/resources/sr/icon/item/408003.png b/resources/sr/icon/item/408003.png new file mode 100644 index 0000000..20be982 Binary files /dev/null and b/resources/sr/icon/item/408003.png differ diff --git a/resources/sr/icon/item/408004.png b/resources/sr/icon/item/408004.png new file mode 100644 index 0000000..cd9a83d Binary files /dev/null and b/resources/sr/icon/item/408004.png differ diff --git a/resources/sr/icon/item/408201.png b/resources/sr/icon/item/408201.png new file mode 100644 index 0000000..d822e61 Binary files /dev/null and b/resources/sr/icon/item/408201.png differ diff --git a/resources/sr/icon/item/408202.png b/resources/sr/icon/item/408202.png new file mode 100644 index 0000000..4db2ff8 Binary files /dev/null and b/resources/sr/icon/item/408202.png differ diff --git a/resources/sr/icon/item/408203.png b/resources/sr/icon/item/408203.png new file mode 100644 index 0000000..aa45d50 Binary files /dev/null and b/resources/sr/icon/item/408203.png differ diff --git a/resources/sr/icon/item/408401.png b/resources/sr/icon/item/408401.png new file mode 100644 index 0000000..c1e9dea Binary files /dev/null and b/resources/sr/icon/item/408401.png differ diff --git a/resources/sr/icon/item/408402.png b/resources/sr/icon/item/408402.png new file mode 100644 index 0000000..9bb159f Binary files /dev/null and b/resources/sr/icon/item/408402.png differ diff --git a/resources/sr/icon/item/408403.png b/resources/sr/icon/item/408403.png new file mode 100644 index 0000000..35d17cb Binary files /dev/null and b/resources/sr/icon/item/408403.png differ diff --git a/resources/sr/icon/item/408404.png b/resources/sr/icon/item/408404.png new file mode 100644 index 0000000..7de6b40 Binary files /dev/null and b/resources/sr/icon/item/408404.png differ diff --git a/resources/sr/icon/item/408405.png b/resources/sr/icon/item/408405.png new file mode 100644 index 0000000..86be319 Binary files /dev/null and b/resources/sr/icon/item/408405.png differ diff --git a/resources/sr/icon/item/408406.png b/resources/sr/icon/item/408406.png new file mode 100644 index 0000000..0f4ade9 Binary files /dev/null and b/resources/sr/icon/item/408406.png differ diff --git a/resources/sr/icon/item/408407.png b/resources/sr/icon/item/408407.png new file mode 100644 index 0000000..e903c06 Binary files /dev/null and b/resources/sr/icon/item/408407.png differ diff --git a/resources/sr/icon/item/408408.png b/resources/sr/icon/item/408408.png new file mode 100644 index 0000000..d51713e Binary files /dev/null and b/resources/sr/icon/item/408408.png differ diff --git a/resources/sr/icon/item/408601.png b/resources/sr/icon/item/408601.png new file mode 100644 index 0000000..42eabbc Binary files /dev/null and b/resources/sr/icon/item/408601.png differ diff --git a/resources/sr/icon/item/408602.png b/resources/sr/icon/item/408602.png new file mode 100644 index 0000000..761a103 Binary files /dev/null and b/resources/sr/icon/item/408602.png differ diff --git a/resources/sr/icon/item/408603.png b/resources/sr/icon/item/408603.png new file mode 100644 index 0000000..9f75814 Binary files /dev/null and b/resources/sr/icon/item/408603.png differ diff --git a/resources/sr/icon/item/408604.png b/resources/sr/icon/item/408604.png new file mode 100644 index 0000000..def6128 Binary files /dev/null and b/resources/sr/icon/item/408604.png differ diff --git a/resources/sr/icon/item/41.png b/resources/sr/icon/item/41.png new file mode 100644 index 0000000..4ce47c5 Binary files /dev/null and b/resources/sr/icon/item/41.png differ diff --git a/resources/sr/icon/item/503.png b/resources/sr/icon/item/503.png new file mode 100644 index 0000000..c148013 Binary files /dev/null and b/resources/sr/icon/item/503.png differ diff --git a/resources/sr/icon/item/51.png b/resources/sr/icon/item/51.png new file mode 100644 index 0000000..588112f Binary files /dev/null and b/resources/sr/icon/item/51.png differ diff --git a/resources/sr/icon/item/71000.png b/resources/sr/icon/item/71000.png new file mode 100644 index 0000000..2d2bcc0 Binary files /dev/null and b/resources/sr/icon/item/71000.png differ diff --git a/resources/sr/icon/item/71001.png b/resources/sr/icon/item/71001.png new file mode 100644 index 0000000..fea2e9f Binary files /dev/null and b/resources/sr/icon/item/71001.png differ diff --git a/resources/sr/icon/item/71002.png b/resources/sr/icon/item/71002.png new file mode 100644 index 0000000..5f571f7 Binary files /dev/null and b/resources/sr/icon/item/71002.png differ diff --git a/resources/sr/icon/item/71003.png b/resources/sr/icon/item/71003.png new file mode 100644 index 0000000..e11d9ca Binary files /dev/null and b/resources/sr/icon/item/71003.png differ diff --git a/resources/sr/icon/item/71004.png b/resources/sr/icon/item/71004.png new file mode 100644 index 0000000..83bc636 Binary files /dev/null and b/resources/sr/icon/item/71004.png differ diff --git a/resources/sr/icon/item/71005.png b/resources/sr/icon/item/71005.png new file mode 100644 index 0000000..6ea6345 Binary files /dev/null and b/resources/sr/icon/item/71005.png differ diff --git a/resources/sr/icon/item/71006.png b/resources/sr/icon/item/71006.png new file mode 100644 index 0000000..d8fc289 Binary files /dev/null and b/resources/sr/icon/item/71006.png differ diff --git a/resources/sr/icon/item/71007.png b/resources/sr/icon/item/71007.png new file mode 100644 index 0000000..268e746 Binary files /dev/null and b/resources/sr/icon/item/71007.png differ diff --git a/resources/sr/icon/item/71008.png b/resources/sr/icon/item/71008.png new file mode 100644 index 0000000..cb400b5 Binary files /dev/null and b/resources/sr/icon/item/71008.png differ diff --git a/resources/sr/icon/item/71009.png b/resources/sr/icon/item/71009.png new file mode 100644 index 0000000..8702702 Binary files /dev/null and b/resources/sr/icon/item/71009.png differ diff --git a/resources/sr/icon/item/71010.png b/resources/sr/icon/item/71010.png new file mode 100644 index 0000000..8d740b3 Binary files /dev/null and b/resources/sr/icon/item/71010.png differ diff --git a/resources/sr/icon/item/71011.png b/resources/sr/icon/item/71011.png new file mode 100644 index 0000000..d2658be Binary files /dev/null and b/resources/sr/icon/item/71011.png differ diff --git a/resources/sr/icon/item/71012.png b/resources/sr/icon/item/71012.png new file mode 100644 index 0000000..34045e4 Binary files /dev/null and b/resources/sr/icon/item/71012.png differ diff --git a/resources/sr/icon/item/71013.png b/resources/sr/icon/item/71013.png new file mode 100644 index 0000000..492c287 Binary files /dev/null and b/resources/sr/icon/item/71013.png differ diff --git a/resources/sr/icon/item/71014.png b/resources/sr/icon/item/71014.png new file mode 100644 index 0000000..6b4e732 Binary files /dev/null and b/resources/sr/icon/item/71014.png differ diff --git a/resources/sr/icon/item/71015.png b/resources/sr/icon/item/71015.png new file mode 100644 index 0000000..9000e1b Binary files /dev/null and b/resources/sr/icon/item/71015.png differ diff --git a/resources/sr/icon/item/71016.png b/resources/sr/icon/item/71016.png new file mode 100644 index 0000000..69ab46d Binary files /dev/null and b/resources/sr/icon/item/71016.png differ diff --git a/resources/sr/icon/item/71017.png b/resources/sr/icon/item/71017.png new file mode 100644 index 0000000..3c1964c Binary files /dev/null and b/resources/sr/icon/item/71017.png differ diff --git a/resources/sr/icon/item/71018.png b/resources/sr/icon/item/71018.png new file mode 100644 index 0000000..0972578 Binary files /dev/null and b/resources/sr/icon/item/71018.png differ diff --git a/resources/sr/icon/item/71019.png b/resources/sr/icon/item/71019.png new file mode 100644 index 0000000..88095c9 Binary files /dev/null and b/resources/sr/icon/item/71019.png differ diff --git a/resources/sr/icon/item/800.png b/resources/sr/icon/item/800.png new file mode 100644 index 0000000..787de23 Binary files /dev/null and b/resources/sr/icon/item/800.png differ diff --git a/resources/sr/icon/item/900001.png b/resources/sr/icon/item/900001.png new file mode 100644 index 0000000..9ef5fdc Binary files /dev/null and b/resources/sr/icon/item/900001.png differ diff --git a/resources/sr/icon/item/Icon_Testmaterial01.png b/resources/sr/icon/item/Icon_Testmaterial01.png new file mode 100644 index 0000000..1ae82de Binary files /dev/null and b/resources/sr/icon/item/Icon_Testmaterial01.png differ diff --git a/resources/sr/icon/path/1.png b/resources/sr/icon/path/1.png new file mode 100644 index 0000000..eb8db75 Binary files /dev/null and b/resources/sr/icon/path/1.png differ diff --git a/resources/sr/icon/path/Joy.png b/resources/sr/icon/path/Joy.png new file mode 100644 index 0000000..d18fc83 Binary files /dev/null and b/resources/sr/icon/path/Joy.png differ diff --git a/resources/sr/icon/path/Memory.png b/resources/sr/icon/path/Memory.png new file mode 100644 index 0000000..a318484 Binary files /dev/null and b/resources/sr/icon/path/Memory.png differ diff --git a/resources/sr/icon/path/None.png b/resources/sr/icon/path/None.png new file mode 100644 index 0000000..5a80b07 Binary files /dev/null and b/resources/sr/icon/path/None.png differ diff --git a/resources/sr/icon/path/丰饶.png b/resources/sr/icon/path/丰饶.png new file mode 100644 index 0000000..bc64e37 Binary files /dev/null and b/resources/sr/icon/path/丰饶.png differ diff --git a/resources/sr/icon/path/同谐.png b/resources/sr/icon/path/同谐.png new file mode 100644 index 0000000..175fe31 Binary files /dev/null and b/resources/sr/icon/path/同谐.png differ diff --git a/resources/sr/icon/path/存护.png b/resources/sr/icon/path/存护.png new file mode 100644 index 0000000..6c97dd2 Binary files /dev/null and b/resources/sr/icon/path/存护.png differ diff --git a/resources/sr/icon/path/巡猎.png b/resources/sr/icon/path/巡猎.png new file mode 100644 index 0000000..4f81ad8 Binary files /dev/null and b/resources/sr/icon/path/巡猎.png differ diff --git a/resources/sr/icon/path/智识.png b/resources/sr/icon/path/智识.png new file mode 100644 index 0000000..85eb407 Binary files /dev/null and b/resources/sr/icon/path/智识.png differ diff --git a/resources/sr/icon/path/毁灭.png b/resources/sr/icon/path/毁灭.png new file mode 100644 index 0000000..af7565f Binary files /dev/null and b/resources/sr/icon/path/毁灭.png differ diff --git a/resources/sr/icon/path/虚无.png b/resources/sr/icon/path/虚无.png new file mode 100644 index 0000000..57619af Binary files /dev/null and b/resources/sr/icon/path/虚无.png differ diff --git a/resources/sr/image/light_cone_portrait/20000.png b/resources/sr/image/light_cone_portrait/20000.png new file mode 100644 index 0000000..0c6dc8d Binary files /dev/null and b/resources/sr/image/light_cone_portrait/20000.png differ diff --git a/resources/sr/image/light_cone_portrait/20001.png b/resources/sr/image/light_cone_portrait/20001.png new file mode 100644 index 0000000..4662684 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/20001.png differ diff --git a/resources/sr/image/light_cone_portrait/20002.png b/resources/sr/image/light_cone_portrait/20002.png new file mode 100644 index 0000000..0e17ae0 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/20002.png differ diff --git a/resources/sr/image/light_cone_portrait/20003.png b/resources/sr/image/light_cone_portrait/20003.png new file mode 100644 index 0000000..9a393f7 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/20003.png differ diff --git a/resources/sr/image/light_cone_portrait/20004.png b/resources/sr/image/light_cone_portrait/20004.png new file mode 100644 index 0000000..9457b41 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/20004.png differ diff --git a/resources/sr/image/light_cone_portrait/20005.png b/resources/sr/image/light_cone_portrait/20005.png new file mode 100644 index 0000000..f38c7a7 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/20005.png differ diff --git a/resources/sr/image/light_cone_portrait/20006.png b/resources/sr/image/light_cone_portrait/20006.png new file mode 100644 index 0000000..a41c654 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/20006.png differ diff --git a/resources/sr/image/light_cone_portrait/20007.png b/resources/sr/image/light_cone_portrait/20007.png new file mode 100644 index 0000000..f7beade Binary files /dev/null and b/resources/sr/image/light_cone_portrait/20007.png differ diff --git a/resources/sr/image/light_cone_portrait/20008.png b/resources/sr/image/light_cone_portrait/20008.png new file mode 100644 index 0000000..cd0d63a Binary files /dev/null and b/resources/sr/image/light_cone_portrait/20008.png differ diff --git a/resources/sr/image/light_cone_portrait/20009.png b/resources/sr/image/light_cone_portrait/20009.png new file mode 100644 index 0000000..c528056 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/20009.png differ diff --git a/resources/sr/image/light_cone_portrait/20010.png b/resources/sr/image/light_cone_portrait/20010.png new file mode 100644 index 0000000..059788e Binary files /dev/null and b/resources/sr/image/light_cone_portrait/20010.png differ diff --git a/resources/sr/image/light_cone_portrait/20011.png b/resources/sr/image/light_cone_portrait/20011.png new file mode 100644 index 0000000..30d765c Binary files /dev/null and b/resources/sr/image/light_cone_portrait/20011.png differ diff --git a/resources/sr/image/light_cone_portrait/20012.png b/resources/sr/image/light_cone_portrait/20012.png new file mode 100644 index 0000000..7769cbc Binary files /dev/null and b/resources/sr/image/light_cone_portrait/20012.png differ diff --git a/resources/sr/image/light_cone_portrait/20013.png b/resources/sr/image/light_cone_portrait/20013.png new file mode 100644 index 0000000..fd68122 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/20013.png differ diff --git a/resources/sr/image/light_cone_portrait/20014.png b/resources/sr/image/light_cone_portrait/20014.png new file mode 100644 index 0000000..73106f7 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/20014.png differ diff --git a/resources/sr/image/light_cone_portrait/20015.png b/resources/sr/image/light_cone_portrait/20015.png new file mode 100644 index 0000000..ca23a30 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/20015.png differ diff --git a/resources/sr/image/light_cone_portrait/20016.png b/resources/sr/image/light_cone_portrait/20016.png new file mode 100644 index 0000000..33271c1 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/20016.png differ diff --git a/resources/sr/image/light_cone_portrait/20017.png b/resources/sr/image/light_cone_portrait/20017.png new file mode 100644 index 0000000..08a1fc8 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/20017.png differ diff --git a/resources/sr/image/light_cone_portrait/20018.png b/resources/sr/image/light_cone_portrait/20018.png new file mode 100644 index 0000000..1cadadb Binary files /dev/null and b/resources/sr/image/light_cone_portrait/20018.png differ diff --git a/resources/sr/image/light_cone_portrait/20019.png b/resources/sr/image/light_cone_portrait/20019.png new file mode 100644 index 0000000..ad73aff Binary files /dev/null and b/resources/sr/image/light_cone_portrait/20019.png differ diff --git a/resources/sr/image/light_cone_portrait/20020.png b/resources/sr/image/light_cone_portrait/20020.png new file mode 100644 index 0000000..58daa2b Binary files /dev/null and b/resources/sr/image/light_cone_portrait/20020.png differ diff --git a/resources/sr/image/light_cone_portrait/21000.png b/resources/sr/image/light_cone_portrait/21000.png new file mode 100644 index 0000000..5437666 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/21000.png differ diff --git a/resources/sr/image/light_cone_portrait/21001.png b/resources/sr/image/light_cone_portrait/21001.png new file mode 100644 index 0000000..3425a88 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/21001.png differ diff --git a/resources/sr/image/light_cone_portrait/21002.png b/resources/sr/image/light_cone_portrait/21002.png new file mode 100644 index 0000000..2081362 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/21002.png differ diff --git a/resources/sr/image/light_cone_portrait/21003.png b/resources/sr/image/light_cone_portrait/21003.png new file mode 100644 index 0000000..2f95825 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/21003.png differ diff --git a/resources/sr/image/light_cone_portrait/21004.png b/resources/sr/image/light_cone_portrait/21004.png new file mode 100644 index 0000000..0699d4e Binary files /dev/null and b/resources/sr/image/light_cone_portrait/21004.png differ diff --git a/resources/sr/image/light_cone_portrait/21005.png b/resources/sr/image/light_cone_portrait/21005.png new file mode 100644 index 0000000..17122f1 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/21005.png differ diff --git a/resources/sr/image/light_cone_portrait/21006.png b/resources/sr/image/light_cone_portrait/21006.png new file mode 100644 index 0000000..ce0577b Binary files /dev/null and b/resources/sr/image/light_cone_portrait/21006.png differ diff --git a/resources/sr/image/light_cone_portrait/21007.png b/resources/sr/image/light_cone_portrait/21007.png new file mode 100644 index 0000000..8675509 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/21007.png differ diff --git a/resources/sr/image/light_cone_portrait/21008.png b/resources/sr/image/light_cone_portrait/21008.png new file mode 100644 index 0000000..cb15932 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/21008.png differ diff --git a/resources/sr/image/light_cone_portrait/21009.png b/resources/sr/image/light_cone_portrait/21009.png new file mode 100644 index 0000000..f51957f Binary files /dev/null and b/resources/sr/image/light_cone_portrait/21009.png differ diff --git a/resources/sr/image/light_cone_portrait/21010.png b/resources/sr/image/light_cone_portrait/21010.png new file mode 100644 index 0000000..b890e3f Binary files /dev/null and b/resources/sr/image/light_cone_portrait/21010.png differ diff --git a/resources/sr/image/light_cone_portrait/21011.png b/resources/sr/image/light_cone_portrait/21011.png new file mode 100644 index 0000000..54e8bb0 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/21011.png differ diff --git a/resources/sr/image/light_cone_portrait/21012.png b/resources/sr/image/light_cone_portrait/21012.png new file mode 100644 index 0000000..1501bd2 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/21012.png differ diff --git a/resources/sr/image/light_cone_portrait/21013.png b/resources/sr/image/light_cone_portrait/21013.png new file mode 100644 index 0000000..b7f1705 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/21013.png differ diff --git a/resources/sr/image/light_cone_portrait/21014.png b/resources/sr/image/light_cone_portrait/21014.png new file mode 100644 index 0000000..ca19d81 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/21014.png differ diff --git a/resources/sr/image/light_cone_portrait/21015.png b/resources/sr/image/light_cone_portrait/21015.png new file mode 100644 index 0000000..7df9170 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/21015.png differ diff --git a/resources/sr/image/light_cone_portrait/21016.png b/resources/sr/image/light_cone_portrait/21016.png new file mode 100644 index 0000000..12a5325 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/21016.png differ diff --git a/resources/sr/image/light_cone_portrait/21017.png b/resources/sr/image/light_cone_portrait/21017.png new file mode 100644 index 0000000..8c0d3f9 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/21017.png differ diff --git a/resources/sr/image/light_cone_portrait/21018.png b/resources/sr/image/light_cone_portrait/21018.png new file mode 100644 index 0000000..f2f5aed Binary files /dev/null and b/resources/sr/image/light_cone_portrait/21018.png differ diff --git a/resources/sr/image/light_cone_portrait/21019.png b/resources/sr/image/light_cone_portrait/21019.png new file mode 100644 index 0000000..0b38c18 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/21019.png differ diff --git a/resources/sr/image/light_cone_portrait/21020.png b/resources/sr/image/light_cone_portrait/21020.png new file mode 100644 index 0000000..361b9d4 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/21020.png differ diff --git a/resources/sr/image/light_cone_portrait/21021.png b/resources/sr/image/light_cone_portrait/21021.png new file mode 100644 index 0000000..08a1f91 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/21021.png differ diff --git a/resources/sr/image/light_cone_portrait/21022.png b/resources/sr/image/light_cone_portrait/21022.png new file mode 100644 index 0000000..d303b81 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/21022.png differ diff --git a/resources/sr/image/light_cone_portrait/21023.png b/resources/sr/image/light_cone_portrait/21023.png new file mode 100644 index 0000000..bc9b9b2 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/21023.png differ diff --git a/resources/sr/image/light_cone_portrait/21024.png b/resources/sr/image/light_cone_portrait/21024.png new file mode 100644 index 0000000..aa8cfb7 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/21024.png differ diff --git a/resources/sr/image/light_cone_portrait/21025.png b/resources/sr/image/light_cone_portrait/21025.png new file mode 100644 index 0000000..3d7d539 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/21025.png differ diff --git a/resources/sr/image/light_cone_portrait/21026.png b/resources/sr/image/light_cone_portrait/21026.png new file mode 100644 index 0000000..7c9bb5e Binary files /dev/null and b/resources/sr/image/light_cone_portrait/21026.png differ diff --git a/resources/sr/image/light_cone_portrait/21027.png b/resources/sr/image/light_cone_portrait/21027.png new file mode 100644 index 0000000..64bdd7d Binary files /dev/null and b/resources/sr/image/light_cone_portrait/21027.png differ diff --git a/resources/sr/image/light_cone_portrait/21028.png b/resources/sr/image/light_cone_portrait/21028.png new file mode 100644 index 0000000..ce7fdbf Binary files /dev/null and b/resources/sr/image/light_cone_portrait/21028.png differ diff --git a/resources/sr/image/light_cone_portrait/21029.png b/resources/sr/image/light_cone_portrait/21029.png new file mode 100644 index 0000000..72b2966 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/21029.png differ diff --git a/resources/sr/image/light_cone_portrait/21030.png b/resources/sr/image/light_cone_portrait/21030.png new file mode 100644 index 0000000..b3d8921 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/21030.png differ diff --git a/resources/sr/image/light_cone_portrait/21031.png b/resources/sr/image/light_cone_portrait/21031.png new file mode 100644 index 0000000..9fc00b8 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/21031.png differ diff --git a/resources/sr/image/light_cone_portrait/21032.png b/resources/sr/image/light_cone_portrait/21032.png new file mode 100644 index 0000000..5f3c7bd Binary files /dev/null and b/resources/sr/image/light_cone_portrait/21032.png differ diff --git a/resources/sr/image/light_cone_portrait/21033.png b/resources/sr/image/light_cone_portrait/21033.png new file mode 100644 index 0000000..0681532 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/21033.png differ diff --git a/resources/sr/image/light_cone_portrait/21034.png b/resources/sr/image/light_cone_portrait/21034.png new file mode 100644 index 0000000..7fbe123 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/21034.png differ diff --git a/resources/sr/image/light_cone_portrait/23000.png b/resources/sr/image/light_cone_portrait/23000.png new file mode 100644 index 0000000..6d14ede Binary files /dev/null and b/resources/sr/image/light_cone_portrait/23000.png differ diff --git a/resources/sr/image/light_cone_portrait/23001.png b/resources/sr/image/light_cone_portrait/23001.png new file mode 100644 index 0000000..9461776 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/23001.png differ diff --git a/resources/sr/image/light_cone_portrait/23002.png b/resources/sr/image/light_cone_portrait/23002.png new file mode 100644 index 0000000..8342261 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/23002.png differ diff --git a/resources/sr/image/light_cone_portrait/23003.png b/resources/sr/image/light_cone_portrait/23003.png new file mode 100644 index 0000000..7eed91d Binary files /dev/null and b/resources/sr/image/light_cone_portrait/23003.png differ diff --git a/resources/sr/image/light_cone_portrait/23004.png b/resources/sr/image/light_cone_portrait/23004.png new file mode 100644 index 0000000..6be38db Binary files /dev/null and b/resources/sr/image/light_cone_portrait/23004.png differ diff --git a/resources/sr/image/light_cone_portrait/23005.png b/resources/sr/image/light_cone_portrait/23005.png new file mode 100644 index 0000000..16f3db2 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/23005.png differ diff --git a/resources/sr/image/light_cone_portrait/23010.png b/resources/sr/image/light_cone_portrait/23010.png new file mode 100644 index 0000000..dc39aaf Binary files /dev/null and b/resources/sr/image/light_cone_portrait/23010.png differ diff --git a/resources/sr/image/light_cone_portrait/23012.png b/resources/sr/image/light_cone_portrait/23012.png new file mode 100644 index 0000000..1dd18eb Binary files /dev/null and b/resources/sr/image/light_cone_portrait/23012.png differ diff --git a/resources/sr/image/light_cone_portrait/23013.png b/resources/sr/image/light_cone_portrait/23013.png new file mode 100644 index 0000000..55e2f51 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/23013.png differ diff --git a/resources/sr/image/light_cone_portrait/24000.png b/resources/sr/image/light_cone_portrait/24000.png new file mode 100644 index 0000000..d520328 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/24000.png differ diff --git a/resources/sr/image/light_cone_portrait/24001.png b/resources/sr/image/light_cone_portrait/24001.png new file mode 100644 index 0000000..554027d Binary files /dev/null and b/resources/sr/image/light_cone_portrait/24001.png differ diff --git a/resources/sr/image/light_cone_portrait/24002.png b/resources/sr/image/light_cone_portrait/24002.png new file mode 100644 index 0000000..a3e1ad7 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/24002.png differ diff --git a/resources/sr/image/light_cone_portrait/Icon_TestLightconeMax.png b/resources/sr/image/light_cone_portrait/Icon_TestLightconeMax.png new file mode 100644 index 0000000..667db33 Binary files /dev/null and b/resources/sr/image/light_cone_portrait/Icon_TestLightconeMax.png differ diff --git a/resources/sr/items/data.json b/resources/sr/items/data.json new file mode 100644 index 0000000..c2f0f36 --- /dev/null +++ b/resources/sr/items/data.json @@ -0,0 +1,8484 @@ +{ + "1": { + "id": "1", + "name": "星琼", + "type": "Virtual", + "sub_type": "Virtual", + "rarity": 5, + "icon": "icon/item/900001.png", + "come_from": [] + }, + "2": { + "id": "2", + "name": "信用点", + "type": "Virtual", + "sub_type": "Virtual", + "rarity": 3, + "icon": "icon/item/2.png", + "come_from": [ + "拟造花萼【大矿区】", + "任务奖励", + "委托奖励" + ] + }, + "3": { + "id": "3", + "name": "古老梦华", + "type": "Virtual", + "sub_type": "Virtual", + "rarity": 5, + "icon": "icon/item/3.png", + "come_from": [] + }, + "11": { + "id": "11", + "name": "开拓力", + "type": "Virtual", + "sub_type": "Virtual", + "rarity": 4, + "icon": "icon/item/11.png", + "come_from": [] + }, + "21": { + "id": "21", + "name": "经验", + "type": "Virtual", + "sub_type": "Virtual", + "rarity": 3, + "icon": "icon/item/21.png", + "come_from": [] + }, + "22": { + "id": "22", + "name": "里程", + "type": "Virtual", + "sub_type": "Virtual", + "rarity": 3, + "icon": "icon/item/22.png", + "come_from": [ + "任务奖励", + "消耗开拓力" + ] + }, + "23": { + "id": "23", + "name": "活跃度", + "type": "Virtual", + "sub_type": "Virtual", + "rarity": 3, + "icon": "icon/item/23.png", + "come_from": [] + }, + "24": { + "id": "24", + "name": "开拓进行时", + "type": "Virtual", + "sub_type": "Virtual", + "rarity": 5, + "icon": "icon/item/24.png", + "come_from": [] + }, + "31": { + "id": "31", + "name": "宇宙碎片", + "type": "Virtual", + "sub_type": "Virtual", + "rarity": 3, + "icon": "icon/item/31.png", + "come_from": [] + }, + "32": { + "id": "32", + "name": "技能点", + "type": "Virtual", + "sub_type": "Virtual", + "rarity": 3, + "icon": "icon/item/32.png", + "come_from": [] + }, + "33": { + "id": "33", + "name": "沉浸器", + "type": "Virtual", + "sub_type": "Virtual", + "rarity": 4, + "icon": "icon/item/33.png", + "come_from": [] + }, + "41": { + "id": "41", + "name": "成就点数", + "type": "Virtual", + "sub_type": "Virtual", + "rarity": 3, + "icon": "icon/item/41.png", + "come_from": [] + }, + "51": { + "id": "51", + "name": "无名客的经验", + "type": "Virtual", + "sub_type": "Virtual", + "rarity": 3, + "icon": "icon/item/51.png", + "come_from": [] + }, + "52": { + "id": "52", + "name": "无名客的经验", + "type": "Virtual", + "sub_type": "Virtual", + "rarity": 3, + "icon": "icon/item/51.png", + "come_from": [] + }, + "101": { + "id": "101", + "name": "星轨通票", + "type": "Material", + "sub_type": "Material", + "rarity": 5, + "icon": "icon/item/101.png", + "come_from": [] + }, + "102": { + "id": "102", + "name": "星轨专票", + "type": "Material", + "sub_type": "Material", + "rarity": 5, + "icon": "icon/item/102.png", + "come_from": [] + }, + "170": { + "id": "170", + "name": "探索积分", + "type": "Material", + "sub_type": "Material", + "rarity": 3, + "icon": "icon/item/Icon_Testmaterial01.png", + "come_from": [] + }, + "171": { + "id": "171", + "name": "探索积分", + "type": "Material", + "sub_type": "Material", + "rarity": 3, + "icon": "icon/item/Icon_Testmaterial01.png", + "come_from": [] + }, + "201": { + "id": "201", + "name": "燃料", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/201.png", + "come_from": [ + "等级奖励" + ] + }, + "211": { + "id": "211", + "name": "旅情见闻", + "type": "Material", + "sub_type": "Material", + "rarity": 2, + "icon": "icon/item/211.png", + "come_from": [ + "拟造花萼【城郊雪原】", + "委托奖励" + ] + }, + "212": { + "id": "212", + "name": "冒险记录", + "type": "Material", + "sub_type": "Material", + "rarity": 3, + "icon": "icon/item/212.png", + "come_from": [ + "拟造花萼【城郊雪原】", + "每日实训" + ] + }, + "213": { + "id": "213", + "name": "漫游指南", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/213.png", + "come_from": [ + "拟造花萼【城郊雪原】", + "「忘却之庭」" + ] + }, + "221": { + "id": "221", + "name": "稀薄以太", + "type": "Material", + "sub_type": "Material", + "rarity": 2, + "icon": "icon/item/221.png", + "come_from": [ + "拟造花萼【边缘通路】", + "委托奖励" + ] + }, + "222": { + "id": "222", + "name": "凝缩以太", + "type": "Material", + "sub_type": "Material", + "rarity": 3, + "icon": "icon/item/222.png", + "come_from": [ + "拟造花萼【边缘通路】" + ] + }, + "223": { + "id": "223", + "name": "提纯以太", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/223.png", + "come_from": [ + "拟造花萼【边缘通路】", + "「忘却之庭」" + ] + }, + "231": { + "id": "231", + "name": "遗失光尘", + "type": "Material", + "sub_type": "Material", + "rarity": 2, + "icon": "icon/item/231.png", + "come_from": [ + "遗器分解" + ] + }, + "232": { + "id": "232", + "name": "遗失碎金", + "type": "Material", + "sub_type": "Material", + "rarity": 3, + "icon": "icon/item/232.png", + "come_from": [ + "每日实训", + "遗器分解" + ] + }, + "233": { + "id": "233", + "name": "遗失晶块", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/233.png", + "come_from": [ + "「忘却之庭」" + ] + }, + "234": { + "id": "234", + "name": "遗失精粹", + "type": "Material", + "sub_type": "Material", + "rarity": 5, + "icon": "icon/item/234.png", + "come_from": [] + }, + "235": { + "id": "235", + "name": "遗器残骸", + "type": "Material", + "sub_type": "Material", + "rarity": 5, + "icon": "icon/item/235.png", + "come_from": [ + "遗器分解" + ] + }, + "236": { + "id": "236", + "name": "自塑尘脂", + "type": "Material", + "sub_type": "Material", + "rarity": 5, + "icon": "icon/item/236.png", + "come_from": [ + "无名勋礼" + ] + }, + "241": { + "id": "241", + "name": "命运的足迹", + "type": "Material", + "sub_type": "Material", + "rarity": 5, + "icon": "icon/item/241.png", + "come_from": [ + "「模拟宇宙」积分奖励", + "无名勋礼", + "余烬兑换", + "限时活动奖励" + ] + }, + "251": { + "id": "251", + "name": "未熄的余烬", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/251.png", + "come_from": [ + "跃迁" + ] + }, + "252": { + "id": "252", + "name": "未熄的星芒", + "type": "Material", + "sub_type": "Material", + "rarity": 5, + "icon": "icon/item/252.png", + "come_from": [ + "跃迁" + ] + }, + "261": { + "id": "261", + "name": "流光余晖", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/261.png", + "come_from": [ + "「忘却之庭」", + "历战余响【支援舱段】", + "历战余响【永冬岭】" + ] + }, + "271": { + "id": "271", + "name": "叠影器(特制)", + "type": "Material", + "sub_type": "Material", + "rarity": 5, + "icon": "icon/item/271.png", + "come_from": [] + }, + "503": { + "id": "503", + "name": "黑塔债券", + "type": "Material", + "sub_type": "Material", + "rarity": 5, + "icon": "icon/item/503.png", + "come_from": [ + "「模拟宇宙」积分奖励" + ] + }, + "800": { + "id": "800", + "name": "启行的祝福", + "type": "Material", + "sub_type": "Material", + "rarity": 5, + "icon": "icon/item/800.png", + "come_from": [] + }, + "801": { + "id": "801", + "name": "启行的祝福", + "type": "Material", + "sub_type": "Material", + "rarity": 5, + "icon": "icon/item/800.png", + "come_from": [] + }, + "999": { + "id": "999", + "name": "dev_通用测试道具", + "type": "Material", + "sub_type": "Material", + "rarity": 3, + "icon": "icon/item/Icon_Testmaterial01.png", + "come_from": [] + }, + "11001": { + "id": "11001", + "name": "【三月七】的星魂", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/11001.png", + "come_from": [] + }, + "11002": { + "id": "11002", + "name": "【丹恒】的星魂", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/11001.png", + "come_from": [] + }, + "11003": { + "id": "11003", + "name": "【姬子】的星魂", + "type": "Material", + "sub_type": "Material", + "rarity": 5, + "icon": "icon/item/11003.png", + "come_from": [] + }, + "11004": { + "id": "11004", + "name": "【瓦尔特】的星魂", + "type": "Material", + "sub_type": "Material", + "rarity": 5, + "icon": "icon/item/11003.png", + "come_from": [] + }, + "11005": { + "id": "11005", + "name": "【卡芙卡】的星魂", + "type": "Material", + "sub_type": "Material", + "rarity": 5, + "icon": "icon/item/11003.png", + "come_from": [] + }, + "11006": { + "id": "11006", + "name": "【银狼】的星魂", + "type": "Material", + "sub_type": "Material", + "rarity": 5, + "icon": "icon/item/11003.png", + "come_from": [] + }, + "11008": { + "id": "11008", + "name": "【阿兰】的星魂", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/11001.png", + "come_from": [] + }, + "11009": { + "id": "11009", + "name": "【艾丝妲】的星魂", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/11001.png", + "come_from": [] + }, + "11013": { + "id": "11013", + "name": "【黑塔】的星魂", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/11001.png", + "come_from": [] + }, + "11101": { + "id": "11101", + "name": "【布洛妮娅】的星魂", + "type": "Material", + "sub_type": "Material", + "rarity": 5, + "icon": "icon/item/11003.png", + "come_from": [] + }, + "11102": { + "id": "11102", + "name": "【希儿】的星魂", + "type": "Material", + "sub_type": "Material", + "rarity": 5, + "icon": "icon/item/11003.png", + "come_from": [] + }, + "11103": { + "id": "11103", + "name": "【希露瓦】的星魂", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/11001.png", + "come_from": [] + }, + "11104": { + "id": "11104", + "name": "【杰帕德】的星魂", + "type": "Material", + "sub_type": "Material", + "rarity": 5, + "icon": "icon/item/11003.png", + "come_from": [] + }, + "11105": { + "id": "11105", + "name": "【娜塔莎】的星魂", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/11001.png", + "come_from": [] + }, + "11106": { + "id": "11106", + "name": "【佩拉】的星魂", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/11001.png", + "come_from": [] + }, + "11107": { + "id": "11107", + "name": "【克拉拉】的星魂", + "type": "Material", + "sub_type": "Material", + "rarity": 5, + "icon": "icon/item/11003.png", + "come_from": [] + }, + "11108": { + "id": "11108", + "name": "【桑博】的星魂", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/11001.png", + "come_from": [] + }, + "11109": { + "id": "11109", + "name": "【虎克】的星魂", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/11001.png", + "come_from": [] + }, + "11201": { + "id": "11201", + "name": "【青雀】的星魂", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/11001.png", + "come_from": [] + }, + "11202": { + "id": "11202", + "name": "【停云】的星魂", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/11001.png", + "come_from": [] + }, + "11203": { + "id": "11203", + "name": "【罗刹】的星魂", + "type": "Material", + "sub_type": "Material", + "rarity": 5, + "icon": "icon/item/11003.png", + "come_from": [] + }, + "11204": { + "id": "11204", + "name": "【景元】的星魂", + "type": "Material", + "sub_type": "Material", + "rarity": 5, + "icon": "icon/item/11003.png", + "come_from": [] + }, + "11206": { + "id": "11206", + "name": "【素裳】的星魂", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/11001.png", + "come_from": [] + }, + "11209": { + "id": "11209", + "name": "【彦卿】的星魂", + "type": "Material", + "sub_type": "Material", + "rarity": 5, + "icon": "icon/item/11003.png", + "come_from": [] + }, + "11211": { + "id": "11211", + "name": "【白露】的星魂", + "type": "Material", + "sub_type": "Material", + "rarity": 5, + "icon": "icon/item/11003.png", + "come_from": [] + }, + "18001": { + "id": "18001", + "name": "「毁灭」之影", + "type": "Material", + "sub_type": "Material", + "rarity": 5, + "icon": "icon/item/18001.png", + "come_from": [] + }, + "18002": { + "id": "18002", + "name": "「毁灭」之影", + "type": "Material", + "sub_type": "Material", + "rarity": 5, + "icon": "icon/item/18001.png", + "come_from": [] + }, + "18003": { + "id": "18003", + "name": "「存护」之影", + "type": "Material", + "sub_type": "Material", + "rarity": 5, + "icon": "icon/item/18003.png", + "come_from": [] + }, + "18004": { + "id": "18004", + "name": "「存护」之影", + "type": "Material", + "sub_type": "Material", + "rarity": 5, + "icon": "icon/item/18003.png", + "come_from": [] + }, + "19100": { + "id": "19100", + "name": "dev_测试用白板", + "type": "Material", + "sub_type": "Material", + "rarity": 5, + "icon": "icon/item/11003.png", + "come_from": [] + }, + "71000": { + "id": "71000", + "name": "遗器铸盒:云无留迹的过客", + "type": "Usable", + "sub_type": "Usable", + "rarity": 5, + "icon": "icon/item/71000.png", + "come_from": [] + }, + "71001": { + "id": "71001", + "name": "遗器铸盒:野穗伴行的快枪手", + "type": "Usable", + "sub_type": "Usable", + "rarity": 5, + "icon": "icon/item/71001.png", + "come_from": [] + }, + "71002": { + "id": "71002", + "name": "遗器铸盒:净庭教宗的圣骑士", + "type": "Usable", + "sub_type": "Usable", + "rarity": 5, + "icon": "icon/item/71002.png", + "come_from": [] + }, + "71003": { + "id": "71003", + "name": "遗器铸盒:密林卧雪的猎人", + "type": "Usable", + "sub_type": "Usable", + "rarity": 5, + "icon": "icon/item/71003.png", + "come_from": [] + }, + "71004": { + "id": "71004", + "name": "遗器铸盒:街头出身的拳王", + "type": "Usable", + "sub_type": "Usable", + "rarity": 5, + "icon": "icon/item/71004.png", + "come_from": [] + }, + "71005": { + "id": "71005", + "name": "遗器铸盒:戍卫风雪的铁卫", + "type": "Usable", + "sub_type": "Usable", + "rarity": 5, + "icon": "icon/item/71005.png", + "come_from": [] + }, + "71006": { + "id": "71006", + "name": "遗器铸盒:熔岩锻铸的火匠", + "type": "Usable", + "sub_type": "Usable", + "rarity": 5, + "icon": "icon/item/71006.png", + "come_from": [] + }, + "71007": { + "id": "71007", + "name": "遗器铸盒:繁星璀璨的天才", + "type": "Usable", + "sub_type": "Usable", + "rarity": 5, + "icon": "icon/item/71007.png", + "come_from": [] + }, + "71008": { + "id": "71008", + "name": "遗器铸盒:激奏雷电的乐队", + "type": "Usable", + "sub_type": "Usable", + "rarity": 5, + "icon": "icon/item/71008.png", + "come_from": [] + }, + "71009": { + "id": "71009", + "name": "遗器铸盒:晨昏交界的翔鹰", + "type": "Usable", + "sub_type": "Usable", + "rarity": 5, + "icon": "icon/item/71009.png", + "come_from": [] + }, + "71010": { + "id": "71010", + "name": "遗器铸盒:流星追迹的怪盗", + "type": "Usable", + "sub_type": "Usable", + "rarity": 5, + "icon": "icon/item/71010.png", + "come_from": [] + }, + "71011": { + "id": "71011", + "name": "遗器铸盒:盗匪荒漠的废土客", + "type": "Usable", + "sub_type": "Usable", + "rarity": 5, + "icon": "icon/item/71011.png", + "come_from": [] + }, + "71012": { + "id": "71012", + "name": "遗器铸盒:太空封印站", + "type": "Usable", + "sub_type": "Usable", + "rarity": 5, + "icon": "icon/item/71012.png", + "come_from": [] + }, + "71013": { + "id": "71013", + "name": "遗器铸盒:不老者的仙舟", + "type": "Usable", + "sub_type": "Usable", + "rarity": 5, + "icon": "icon/item/71013.png", + "come_from": [] + }, + "71014": { + "id": "71014", + "name": "遗器铸盒:泛银河商业公司", + "type": "Usable", + "sub_type": "Usable", + "rarity": 5, + "icon": "icon/item/71014.png", + "come_from": [] + }, + "71015": { + "id": "71015", + "name": "遗器铸盒:筑城者的贝洛伯格", + "type": "Usable", + "sub_type": "Usable", + "rarity": 5, + "icon": "icon/item/71015.png", + "come_from": [] + }, + "71016": { + "id": "71016", + "name": "遗器铸盒:星体差分机", + "type": "Usable", + "sub_type": "Usable", + "rarity": 5, + "icon": "icon/item/71016.png", + "come_from": [] + }, + "71017": { + "id": "71017", + "name": "遗器铸盒:停转的萨尔索图", + "type": "Usable", + "sub_type": "Usable", + "rarity": 5, + "icon": "icon/item/71017.png", + "come_from": [] + }, + "71018": { + "id": "71018", + "name": "遗器铸盒:盗贼公国塔利亚", + "type": "Usable", + "sub_type": "Usable", + "rarity": 5, + "icon": "icon/item/71018.png", + "come_from": [] + }, + "71019": { + "id": "71019", + "name": "遗器铸盒:生命的翁瓦克", + "type": "Usable", + "sub_type": "Usable", + "rarity": 5, + "icon": "icon/item/71019.png", + "come_from": [] + }, + "81011": { + "id": "81011", + "name": "云无留迹的过客", + "type": "Display", + "sub_type": "Display", + "rarity": 2, + "icon": "icon/item/71000.png", + "come_from": [] + }, + "81012": { + "id": "81012", + "name": "云无留迹的过客", + "type": "Display", + "sub_type": "Display", + "rarity": 3, + "icon": "icon/item/71000.png", + "come_from": [] + }, + "81013": { + "id": "81013", + "name": "云无留迹的过客", + "type": "Display", + "sub_type": "Display", + "rarity": 4, + "icon": "icon/item/71000.png", + "come_from": [] + }, + "81014": { + "id": "81014", + "name": "云无留迹的过客", + "type": "Display", + "sub_type": "Display", + "rarity": 5, + "icon": "icon/item/71000.png", + "come_from": [] + }, + "81021": { + "id": "81021", + "name": "野穗伴行的快枪手", + "type": "Display", + "sub_type": "Display", + "rarity": 2, + "icon": "icon/item/71001.png", + "come_from": [] + }, + "81022": { + "id": "81022", + "name": "野穗伴行的快枪手", + "type": "Display", + "sub_type": "Display", + "rarity": 3, + "icon": "icon/item/71001.png", + "come_from": [] + }, + "81023": { + "id": "81023", + "name": "野穗伴行的快枪手", + "type": "Display", + "sub_type": "Display", + "rarity": 4, + "icon": "icon/item/71001.png", + "come_from": [] + }, + "81024": { + "id": "81024", + "name": "野穗伴行的快枪手", + "type": "Display", + "sub_type": "Display", + "rarity": 5, + "icon": "icon/item/71001.png", + "come_from": [] + }, + "81031": { + "id": "81031", + "name": "净庭教宗的圣骑士", + "type": "Display", + "sub_type": "Display", + "rarity": 2, + "icon": "icon/item/71002.png", + "come_from": [] + }, + "81032": { + "id": "81032", + "name": "净庭教宗的圣骑士", + "type": "Display", + "sub_type": "Display", + "rarity": 3, + "icon": "icon/item/71002.png", + "come_from": [] + }, + "81033": { + "id": "81033", + "name": "净庭教宗的圣骑士", + "type": "Display", + "sub_type": "Display", + "rarity": 4, + "icon": "icon/item/71002.png", + "come_from": [] + }, + "81034": { + "id": "81034", + "name": "净庭教宗的圣骑士", + "type": "Display", + "sub_type": "Display", + "rarity": 5, + "icon": "icon/item/71002.png", + "come_from": [] + }, + "81041": { + "id": "81041", + "name": "密林卧雪的猎人", + "type": "Display", + "sub_type": "Display", + "rarity": 2, + "icon": "icon/item/71003.png", + "come_from": [] + }, + "81042": { + "id": "81042", + "name": "密林卧雪的猎人", + "type": "Display", + "sub_type": "Display", + "rarity": 3, + "icon": "icon/item/71003.png", + "come_from": [] + }, + "81043": { + "id": "81043", + "name": "密林卧雪的猎人", + "type": "Display", + "sub_type": "Display", + "rarity": 4, + "icon": "icon/item/71003.png", + "come_from": [] + }, + "81044": { + "id": "81044", + "name": "密林卧雪的猎人", + "type": "Display", + "sub_type": "Display", + "rarity": 5, + "icon": "icon/item/71003.png", + "come_from": [] + }, + "81051": { + "id": "81051", + "name": "街头出身的拳王", + "type": "Display", + "sub_type": "Display", + "rarity": 2, + "icon": "icon/item/71004.png", + "come_from": [] + }, + "81052": { + "id": "81052", + "name": "街头出身的拳王", + "type": "Display", + "sub_type": "Display", + "rarity": 3, + "icon": "icon/item/71004.png", + "come_from": [] + }, + "81053": { + "id": "81053", + "name": "街头出身的拳王", + "type": "Display", + "sub_type": "Display", + "rarity": 4, + "icon": "icon/item/71004.png", + "come_from": [] + }, + "81054": { + "id": "81054", + "name": "街头出身的拳王", + "type": "Display", + "sub_type": "Display", + "rarity": 5, + "icon": "icon/item/71004.png", + "come_from": [] + }, + "81061": { + "id": "81061", + "name": "戍卫风雪的铁卫", + "type": "Display", + "sub_type": "Display", + "rarity": 2, + "icon": "icon/item/71005.png", + "come_from": [] + }, + "81062": { + "id": "81062", + "name": "戍卫风雪的铁卫", + "type": "Display", + "sub_type": "Display", + "rarity": 3, + "icon": "icon/item/71005.png", + "come_from": [] + }, + "81063": { + "id": "81063", + "name": "戍卫风雪的铁卫", + "type": "Display", + "sub_type": "Display", + "rarity": 4, + "icon": "icon/item/71005.png", + "come_from": [] + }, + "81064": { + "id": "81064", + "name": "戍卫风雪的铁卫", + "type": "Display", + "sub_type": "Display", + "rarity": 5, + "icon": "icon/item/71005.png", + "come_from": [] + }, + "81071": { + "id": "81071", + "name": "熔岩锻铸的火匠", + "type": "Display", + "sub_type": "Display", + "rarity": 2, + "icon": "icon/item/71006.png", + "come_from": [] + }, + "81072": { + "id": "81072", + "name": "熔岩锻铸的火匠", + "type": "Display", + "sub_type": "Display", + "rarity": 3, + "icon": "icon/item/71006.png", + "come_from": [] + }, + "81073": { + "id": "81073", + "name": "熔岩锻铸的火匠", + "type": "Display", + "sub_type": "Display", + "rarity": 4, + "icon": "icon/item/71006.png", + "come_from": [] + }, + "81074": { + "id": "81074", + "name": "熔岩锻铸的火匠", + "type": "Display", + "sub_type": "Display", + "rarity": 5, + "icon": "icon/item/71006.png", + "come_from": [] + }, + "81081": { + "id": "81081", + "name": "繁星璀璨的天才", + "type": "Display", + "sub_type": "Display", + "rarity": 2, + "icon": "icon/item/71007.png", + "come_from": [] + }, + "81082": { + "id": "81082", + "name": "繁星璀璨的天才", + "type": "Display", + "sub_type": "Display", + "rarity": 3, + "icon": "icon/item/71007.png", + "come_from": [] + }, + "81083": { + "id": "81083", + "name": "繁星璀璨的天才", + "type": "Display", + "sub_type": "Display", + "rarity": 4, + "icon": "icon/item/71007.png", + "come_from": [] + }, + "81084": { + "id": "81084", + "name": "繁星璀璨的天才", + "type": "Display", + "sub_type": "Display", + "rarity": 5, + "icon": "icon/item/71007.png", + "come_from": [] + }, + "81091": { + "id": "81091", + "name": "激奏雷电的乐队", + "type": "Display", + "sub_type": "Display", + "rarity": 2, + "icon": "icon/item/71008.png", + "come_from": [] + }, + "81092": { + "id": "81092", + "name": "激奏雷电的乐队", + "type": "Display", + "sub_type": "Display", + "rarity": 3, + "icon": "icon/item/71008.png", + "come_from": [] + }, + "81093": { + "id": "81093", + "name": "激奏雷电的乐队", + "type": "Display", + "sub_type": "Display", + "rarity": 4, + "icon": "icon/item/71008.png", + "come_from": [] + }, + "81094": { + "id": "81094", + "name": "激奏雷电的乐队", + "type": "Display", + "sub_type": "Display", + "rarity": 5, + "icon": "icon/item/71008.png", + "come_from": [] + }, + "81101": { + "id": "81101", + "name": "晨昏交界的翔鹰", + "type": "Display", + "sub_type": "Display", + "rarity": 2, + "icon": "icon/item/71009.png", + "come_from": [] + }, + "81102": { + "id": "81102", + "name": "晨昏交界的翔鹰", + "type": "Display", + "sub_type": "Display", + "rarity": 3, + "icon": "icon/item/71009.png", + "come_from": [] + }, + "81103": { + "id": "81103", + "name": "晨昏交界的翔鹰", + "type": "Display", + "sub_type": "Display", + "rarity": 4, + "icon": "icon/item/71009.png", + "come_from": [] + }, + "81104": { + "id": "81104", + "name": "晨昏交界的翔鹰", + "type": "Display", + "sub_type": "Display", + "rarity": 5, + "icon": "icon/item/71009.png", + "come_from": [] + }, + "81111": { + "id": "81111", + "name": "流星追迹的怪盗", + "type": "Display", + "sub_type": "Display", + "rarity": 2, + "icon": "icon/item/71010.png", + "come_from": [] + }, + "81112": { + "id": "81112", + "name": "流星追迹的怪盗", + "type": "Display", + "sub_type": "Display", + "rarity": 3, + "icon": "icon/item/71010.png", + "come_from": [] + }, + "81113": { + "id": "81113", + "name": "流星追迹的怪盗", + "type": "Display", + "sub_type": "Display", + "rarity": 4, + "icon": "icon/item/71010.png", + "come_from": [] + }, + "81114": { + "id": "81114", + "name": "流星追迹的怪盗", + "type": "Display", + "sub_type": "Display", + "rarity": 5, + "icon": "icon/item/71010.png", + "come_from": [] + }, + "81121": { + "id": "81121", + "name": "盗匪荒漠的废土客", + "type": "Display", + "sub_type": "Display", + "rarity": 2, + "icon": "icon/item/71011.png", + "come_from": [] + }, + "81122": { + "id": "81122", + "name": "盗匪荒漠的废土客", + "type": "Display", + "sub_type": "Display", + "rarity": 3, + "icon": "icon/item/71011.png", + "come_from": [] + }, + "81123": { + "id": "81123", + "name": "盗匪荒漠的废土客", + "type": "Display", + "sub_type": "Display", + "rarity": 4, + "icon": "icon/item/71011.png", + "come_from": [] + }, + "81124": { + "id": "81124", + "name": "盗匪荒漠的废土客", + "type": "Display", + "sub_type": "Display", + "rarity": 5, + "icon": "icon/item/71011.png", + "come_from": [] + }, + "83011": { + "id": "83011", + "name": "太空封印站", + "type": "Display", + "sub_type": "Display", + "rarity": 2, + "icon": "icon/item/71012.png", + "come_from": [] + }, + "83012": { + "id": "83012", + "name": "太空封印站", + "type": "Display", + "sub_type": "Display", + "rarity": 3, + "icon": "icon/item/71012.png", + "come_from": [] + }, + "83013": { + "id": "83013", + "name": "太空封印站", + "type": "Display", + "sub_type": "Display", + "rarity": 4, + "icon": "icon/item/71012.png", + "come_from": [] + }, + "83014": { + "id": "83014", + "name": "太空封印站", + "type": "Display", + "sub_type": "Display", + "rarity": 5, + "icon": "icon/item/71012.png", + "come_from": [] + }, + "83021": { + "id": "83021", + "name": "不老者的仙舟", + "type": "Display", + "sub_type": "Display", + "rarity": 2, + "icon": "icon/item/71013.png", + "come_from": [] + }, + "83022": { + "id": "83022", + "name": "不老者的仙舟", + "type": "Display", + "sub_type": "Display", + "rarity": 3, + "icon": "icon/item/71013.png", + "come_from": [] + }, + "83023": { + "id": "83023", + "name": "不老者的仙舟", + "type": "Display", + "sub_type": "Display", + "rarity": 4, + "icon": "icon/item/71013.png", + "come_from": [] + }, + "83024": { + "id": "83024", + "name": "不老者的仙舟", + "type": "Display", + "sub_type": "Display", + "rarity": 5, + "icon": "icon/item/71013.png", + "come_from": [] + }, + "83031": { + "id": "83031", + "name": "泛银河商业公司", + "type": "Display", + "sub_type": "Display", + "rarity": 2, + "icon": "icon/item/71014.png", + "come_from": [] + }, + "83032": { + "id": "83032", + "name": "泛银河商业公司", + "type": "Display", + "sub_type": "Display", + "rarity": 3, + "icon": "icon/item/71014.png", + "come_from": [] + }, + "83033": { + "id": "83033", + "name": "泛银河商业公司", + "type": "Display", + "sub_type": "Display", + "rarity": 4, + "icon": "icon/item/71014.png", + "come_from": [] + }, + "83034": { + "id": "83034", + "name": "泛银河商业公司", + "type": "Display", + "sub_type": "Display", + "rarity": 5, + "icon": "icon/item/71014.png", + "come_from": [] + }, + "83041": { + "id": "83041", + "name": "筑城者的贝洛伯格", + "type": "Display", + "sub_type": "Display", + "rarity": 2, + "icon": "icon/item/71015.png", + "come_from": [] + }, + "83042": { + "id": "83042", + "name": "筑城者的贝洛伯格", + "type": "Display", + "sub_type": "Display", + "rarity": 3, + "icon": "icon/item/71015.png", + "come_from": [] + }, + "83043": { + "id": "83043", + "name": "筑城者的贝洛伯格", + "type": "Display", + "sub_type": "Display", + "rarity": 4, + "icon": "icon/item/71015.png", + "come_from": [] + }, + "83044": { + "id": "83044", + "name": "筑城者的贝洛伯格", + "type": "Display", + "sub_type": "Display", + "rarity": 5, + "icon": "icon/item/71015.png", + "come_from": [] + }, + "83051": { + "id": "83051", + "name": "星体差分机", + "type": "Display", + "sub_type": "Display", + "rarity": 2, + "icon": "icon/item/71016.png", + "come_from": [] + }, + "83052": { + "id": "83052", + "name": "星体差分机", + "type": "Display", + "sub_type": "Display", + "rarity": 3, + "icon": "icon/item/71016.png", + "come_from": [] + }, + "83053": { + "id": "83053", + "name": "星体差分机", + "type": "Display", + "sub_type": "Display", + "rarity": 4, + "icon": "icon/item/71016.png", + "come_from": [] + }, + "83054": { + "id": "83054", + "name": "星体差分机", + "type": "Display", + "sub_type": "Display", + "rarity": 5, + "icon": "icon/item/71016.png", + "come_from": [] + }, + "83061": { + "id": "83061", + "name": "停转的萨尔索图", + "type": "Display", + "sub_type": "Display", + "rarity": 2, + "icon": "icon/item/71017.png", + "come_from": [] + }, + "83062": { + "id": "83062", + "name": "停转的萨尔索图", + "type": "Display", + "sub_type": "Display", + "rarity": 3, + "icon": "icon/item/71017.png", + "come_from": [] + }, + "83063": { + "id": "83063", + "name": "停转的萨尔索图", + "type": "Display", + "sub_type": "Display", + "rarity": 4, + "icon": "icon/item/71017.png", + "come_from": [] + }, + "83064": { + "id": "83064", + "name": "停转的萨尔索图", + "type": "Display", + "sub_type": "Display", + "rarity": 5, + "icon": "icon/item/71017.png", + "come_from": [] + }, + "83071": { + "id": "83071", + "name": "盗贼公国塔利亚", + "type": "Display", + "sub_type": "Display", + "rarity": 2, + "icon": "icon/item/71018.png", + "come_from": [] + }, + "83072": { + "id": "83072", + "name": "盗贼公国塔利亚", + "type": "Display", + "sub_type": "Display", + "rarity": 3, + "icon": "icon/item/71018.png", + "come_from": [] + }, + "83073": { + "id": "83073", + "name": "盗贼公国塔利亚", + "type": "Display", + "sub_type": "Display", + "rarity": 4, + "icon": "icon/item/71018.png", + "come_from": [] + }, + "83074": { + "id": "83074", + "name": "盗贼公国塔利亚", + "type": "Display", + "sub_type": "Display", + "rarity": 5, + "icon": "icon/item/71018.png", + "come_from": [] + }, + "83081": { + "id": "83081", + "name": "生命的翁瓦克", + "type": "Display", + "sub_type": "Display", + "rarity": 2, + "icon": "icon/item/71019.png", + "come_from": [] + }, + "83082": { + "id": "83082", + "name": "生命的翁瓦克", + "type": "Display", + "sub_type": "Display", + "rarity": 3, + "icon": "icon/item/71019.png", + "come_from": [] + }, + "83083": { + "id": "83083", + "name": "生命的翁瓦克", + "type": "Display", + "sub_type": "Display", + "rarity": 4, + "icon": "icon/item/71019.png", + "come_from": [] + }, + "83084": { + "id": "83084", + "name": "生命的翁瓦克", + "type": "Display", + "sub_type": "Display", + "rarity": 5, + "icon": "icon/item/71019.png", + "come_from": [] + }, + "100000": { + "id": "100000", + "name": "荣誉之星", + "type": "Virtual", + "sub_type": "Virtual", + "rarity": 3, + "icon": "icon/item/100000.png", + "come_from": [] + }, + "100001": { + "id": "100001", + "name": "像素弹头", + "type": "Virtual", + "sub_type": "Virtual", + "rarity": 1, + "icon": "icon/item/100001.png", + "come_from": [] + }, + "110111": { + "id": "110111", + "name": "破碎残刃", + "type": "Material", + "sub_type": "Material", + "rarity": 2, + "icon": "icon/item/110111.png", + "come_from": [ + "拟造花萼【收容舱段】" + ] + }, + "110112": { + "id": "110112", + "name": "无生残刃", + "type": "Material", + "sub_type": "Material", + "rarity": 3, + "icon": "icon/item/110112.png", + "come_from": [ + "拟造花萼【收容舱段】", + "「万能合成机」- 材料合成" + ] + }, + "110113": { + "id": "110113", + "name": "净世残刃", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/110113.png", + "come_from": [ + "拟造花萼【收容舱段】", + "「万能合成机」- 材料合成" + ] + }, + "110121": { + "id": "110121", + "name": "猎兽之矢", + "type": "Material", + "sub_type": "Material", + "rarity": 2, + "icon": "icon/item/110121.png", + "come_from": [ + "拟造花萼【城郊雪原】" + ] + }, + "110122": { + "id": "110122", + "name": "屠魔之矢", + "type": "Material", + "sub_type": "Material", + "rarity": 3, + "icon": "icon/item/110122.png", + "come_from": [ + "拟造花萼【城郊雪原】", + "「万能合成机」- 材料合成" + ] + }, + "110123": { + "id": "110123", + "name": "逐星之矢", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/110123.png", + "come_from": [ + "拟造花萼【城郊雪原】", + "「万能合成机」- 材料合成" + ] + }, + "110131": { + "id": "110131", + "name": "灵感之钥", + "type": "Material", + "sub_type": "Material", + "rarity": 2, + "icon": "icon/item/110131.png", + "come_from": [ + "拟造花萼【铆钉镇】" + ] + }, + "110132": { + "id": "110132", + "name": "启迪之钥", + "type": "Material", + "sub_type": "Material", + "rarity": 3, + "icon": "icon/item/110132.png", + "come_from": [ + "拟造花萼【铆钉镇】", + "「万能合成机」- 材料合成" + ] + }, + "110133": { + "id": "110133", + "name": "智识之钥", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/110133.png", + "come_from": [ + "拟造花萼【铆钉镇】", + "「万能合成机」- 材料合成" + ] + }, + "110141": { + "id": "110141", + "name": "青铜的执着", + "type": "Material", + "sub_type": "Material", + "rarity": 2, + "icon": "icon/item/110141.png", + "come_from": [ + "拟造花萼【支援舱段】" + ] + }, + "110142": { + "id": "110142", + "name": "寒铁的誓言", + "type": "Material", + "sub_type": "Material", + "rarity": 3, + "icon": "icon/item/110142.png", + "come_from": [ + "拟造花萼【支援舱段】", + "「万能合成机」- 材料合成" + ] + }, + "110143": { + "id": "110143", + "name": "琥珀的坚守", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/110143.png", + "come_from": [ + "拟造花萼【支援舱段】", + "「万能合成机」- 材料合成" + ] + }, + "110151": { + "id": "110151", + "name": "黯淡黑曜", + "type": "Material", + "sub_type": "Material", + "rarity": 2, + "icon": "icon/item/110151.png", + "come_from": [ + "拟造花萼【大矿区】" + ] + }, + "110152": { + "id": "110152", + "name": "虚空黑曜", + "type": "Material", + "sub_type": "Material", + "rarity": 3, + "icon": "icon/item/110152.png", + "come_from": [ + "拟造花萼【大矿区】", + "「万能合成机」- 材料合成" + ] + }, + "110153": { + "id": "110153", + "name": "沉沦黑曜", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/110153.png", + "come_from": [ + "拟造花萼【大矿区】", + "「万能合成机」- 材料合成" + ] + }, + "110161": { + "id": "110161", + "name": "谐乐小调", + "type": "Material", + "sub_type": "Material", + "rarity": 2, + "icon": "icon/item/110161.png", + "come_from": [ + "拟造花萼【机械聚落】" + ] + }, + "110162": { + "id": "110162", + "name": "家族颂歌", + "type": "Material", + "sub_type": "Material", + "rarity": 3, + "icon": "icon/item/110162.png", + "come_from": [ + "拟造花萼【机械聚落】", + "「万能合成机」- 材料合成" + ] + }, + "110163": { + "id": "110163", + "name": "群星乐章", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/110163.png", + "come_from": [ + "拟造花萼【机械聚落】", + "「万能合成机」- 材料合成" + ] + }, + "110171": { + "id": "110171", + "name": "丰饶之种", + "type": "Material", + "sub_type": "Material", + "rarity": 2, + "icon": "icon/item/110171.png", + "come_from": [ + "拟造花萼【边缘通路】" + ] + }, + "110172": { + "id": "110172", + "name": "生命之芽", + "type": "Material", + "sub_type": "Material", + "rarity": 3, + "icon": "icon/item/110172.png", + "come_from": [ + "拟造花萼【边缘通路】", + "「万能合成机」- 材料合成" + ] + }, + "110173": { + "id": "110173", + "name": "永恒之花", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/110173.png", + "come_from": [ + "拟造花萼【边缘通路】", + "「万能合成机」- 材料合成" + ] + }, + "110400": { + "id": "110400", + "name": "深邃的星外质", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/110400.png", + "come_from": [ + "任务奖励", + "等级奖励" + ] + }, + "110401": { + "id": "110401", + "name": "铁狼碎齿", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/110401.png", + "come_from": [ + "凝滞虚影【大矿区】", + "「万能合成机」- 材料置换" + ] + }, + "110402": { + "id": "110402", + "name": "恒温晶壳", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/110402.png", + "come_from": [ + "凝滞虚影【铁卫禁区】", + "「万能合成机」- 材料置换" + ] + }, + "110403": { + "id": "110403", + "name": "风雪之角", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/110403.png", + "come_from": [ + "凝滞虚影【残响回廊】", + "「万能合成机」- 材料置换" + ] + }, + "110404": { + "id": "110404", + "name": "往日之影的雷冠", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/110404.png", + "come_from": [ + "凝滞虚影【残响回廊】", + "「万能合成机」- 材料置换" + ] + }, + "110405": { + "id": "110405", + "name": "暴风之眼", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/110405.png", + "come_from": [ + "凝滞虚影【铆钉镇】", + "「万能合成机」- 材料置换" + ] + }, + "110406": { + "id": "110406", + "name": "虚幻铸铁", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/110406.png", + "come_from": [ + "凝滞虚影【基座舱段】", + "「万能合成机」- 材料置换" + ] + }, + "110407": { + "id": "110407", + "name": "往日之影的金饰", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/110407.png", + "come_from": [ + "凝滞虚影【边缘通路】", + "「万能合成机」- 材料置换" + ] + }, + "110411": { + "id": "110411", + "name": "dev_物理材料2", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/Icon_Testmaterial01.png", + "come_from": [] + }, + "110412": { + "id": "110412", + "name": "dev_火材料2", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/Icon_Testmaterial01.png", + "come_from": [] + }, + "110413": { + "id": "110413", + "name": "苦寒晶壳", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/110413.png", + "come_from": [ + "凝滞虚影【流云渡】", + "「万能合成机」- 材料置换" + ] + }, + "110414": { + "id": "110414", + "name": "炼形者雷枝", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/110414.png", + "come_from": [ + "凝滞虚影【迴星港】", + "「万能合成机」- 材料置换" + ] + }, + "110415": { + "id": "110415", + "name": "dev_风材料2", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/Icon_Testmaterial01.png", + "come_from": [] + }, + "110416": { + "id": "110416", + "name": "dev_量子材料2", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/Icon_Testmaterial01.png", + "come_from": [] + }, + "110417": { + "id": "110417", + "name": "dev_虚数材料2", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/Icon_Testmaterial01.png", + "come_from": [] + }, + "110501": { + "id": "110501", + "name": "毁灭者的末路", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/110501.png", + "come_from": [ + "历战余响【支援舱段】" + ] + }, + "110502": { + "id": "110502", + "name": "守护者的悲愿", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/110502.png", + "come_from": [ + "历战余响【永冬岭】" + ] + }, + "110503": { + "id": "110503", + "name": "dev_大Boss专属材料3", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/Icon_Testmaterial01.png", + "come_from": [] + }, + "111001": { + "id": "111001", + "name": "熄灭原核", + "type": "Material", + "sub_type": "Material", + "rarity": 2, + "icon": "icon/item/111001.png", + "come_from": [ + "炎华造物等敌方掉落【边缘通路】", + "炎华造物等敌方掉落【铆钉镇】", + "「模拟宇宙」中敌方掉落", + "委托奖励", + "余烬兑换", + "「万能合成机」- 材料置换" + ] + }, + "111002": { + "id": "111002", + "name": "微光原核", + "type": "Material", + "sub_type": "Material", + "rarity": 3, + "icon": "icon/item/111002.png", + "come_from": [ + "均衡等级2及以上炎华造物等敌方掉落【边缘通路】", + "均衡等级2及以上炎华造物等敌方掉落【铆钉镇】", + "「万能合成机」- 材料合成", + "「模拟宇宙」中敌方掉落", + "「万能合成机」- 材料置换" + ] + }, + "111003": { + "id": "111003", + "name": "蠢动原核", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/111003.png", + "come_from": [ + "均衡等级4及以上炎华造物等敌方掉落【边缘通路】", + "均衡等级4及以上炎华造物等敌方掉落【铆钉镇】", + "「万能合成机」- 材料合成", + "「模拟宇宙」中敌方掉落", + "「万能合成机」- 材料置换" + ] + }, + "111011": { + "id": "111011", + "name": "掠夺的本能", + "type": "Material", + "sub_type": "Material", + "rarity": 2, + "icon": "icon/item/111011.png", + "come_from": [ + "虚卒•掠夺者等敌方掉落【收容舱段】", + "虚卒•掠夺者等敌方掉落【支援舱段】", + "「模拟宇宙」中敌方掉落", + "委托奖励", + "余烬兑换", + "「万能合成机」- 材料置换" + ] + }, + "111012": { + "id": "111012", + "name": "篡改的野心", + "type": "Material", + "sub_type": "Material", + "rarity": 3, + "icon": "icon/item/111012.png", + "come_from": [ + "均衡等级2及以上虚卒•掠夺者等敌方掉落【收容舱段】", + "均衡等级2及以上虚卒•掠夺者等敌方掉落【支援舱段】", + "「万能合成机」- 材料合成", + "「模拟宇宙」中敌方掉落", + "「万能合成机」- 材料置换" + ] + }, + "111013": { + "id": "111013", + "name": "践踏的意志", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/111013.png", + "come_from": [ + "均衡等级4及以上虚卒•掠夺者等敌方掉落【收容舱段】", + "均衡等级4及以上虚卒•掠夺者等敌方掉落【支援舱段】", + "「万能合成机」- 材料合成", + "「模拟宇宙」中敌方掉落", + "「万能合成机」- 材料置换" + ] + }, + "112001": { + "id": "112001", + "name": "铁卫扣饰", + "type": "Material", + "sub_type": "Material", + "rarity": 2, + "icon": "icon/item/112001.png", + "come_from": [ + "银鬃铁卫等敌方掉落【城郊雪原】", + "永冬灾影等敌方掉落【残响回廊】", + "「模拟宇宙」中敌方掉落", + "委托奖励", + "余烬兑换", + "「万能合成机」- 材料置换" + ] + }, + "112002": { + "id": "112002", + "name": "铁卫军徽", + "type": "Material", + "sub_type": "Material", + "rarity": 3, + "icon": "icon/item/112002.png", + "come_from": [ + "均衡等级2及以上银鬃铁卫等敌方掉落【城郊雪原】", + "均衡等级2及以上永冬灾影等敌方掉落【残响回廊】", + "「万能合成机」- 材料合成", + "「模拟宇宙」中敌方掉落", + "「万能合成机」- 材料置换" + ] + }, + "112003": { + "id": "112003", + "name": "铁卫勋章", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/112003.png", + "come_from": [ + "均衡等级4及以上银鬃铁卫等敌方掉落【城郊雪原】", + "均衡等级4及以上永冬灾影等敌方掉落【残响回廊】", + "「万能合成机」- 材料合成", + "「模拟宇宙」中敌方掉落", + "「万能合成机」- 材料置换" + ] + }, + "112011": { + "id": "112011", + "name": "古代零件", + "type": "Material", + "sub_type": "Material", + "rarity": 2, + "icon": "icon/item/112011.png", + "come_from": [ + "自动机兵等敌方掉落【机械聚落】", + "自动机兵等敌方掉落【大矿区】", + "「模拟宇宙」中敌方掉落", + "委托奖励", + "余烬兑换", + "「万能合成机」- 材料置换" + ] + }, + "112012": { + "id": "112012", + "name": "古代转轴", + "type": "Material", + "sub_type": "Material", + "rarity": 3, + "icon": "icon/item/112012.png", + "come_from": [ + "均衡等级2及以上自动机兵等敌方掉落【机械聚落】", + "均衡等级2及以上自动机兵等敌方掉落【大矿区】", + "「万能合成机」- 材料合成", + "「模拟宇宙」中敌方掉落", + "「万能合成机」- 材料置换" + ] + }, + "112013": { + "id": "112013", + "name": "古代引擎", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/112013.png", + "come_from": [ + "均衡等级4及以上自动机兵等敌方掉落【机械聚落】", + "均衡等级4及以上自动机兵等敌方掉落【大矿区】", + "「万能合成机」- 材料合成", + "「模拟宇宙」中敌方掉落", + "「万能合成机」- 材料置换" + ] + }, + "113001": { + "id": "113001", + "name": "永寿幼芽", + "type": "Material", + "sub_type": "Material", + "rarity": 2, + "icon": "icon/item/113001.png", + "come_from": [ + "魔阴身士卒等敌方掉落【流云渡】", + "魔阴身士卒等敌方掉落【迴星港】", + "「模拟宇宙」中敌方掉落", + "委托奖励", + "余烬兑换", + "「万能合成机」- 材料置换" + ] + }, + "113002": { + "id": "113002", + "name": "永寿天华", + "type": "Material", + "sub_type": "Material", + "rarity": 3, + "icon": "icon/item/113002.png", + "come_from": [ + "均衡等级2及以上魔阴身士卒等敌方掉落【流云渡】", + "均衡等级2及以上魔阴身士卒等敌方掉落【迴星港】", + "「万能合成机」- 材料合成", + "「模拟宇宙」中敌方掉落", + "「万能合成机」- 材料置换" + ] + }, + "113003": { + "id": "113003", + "name": "永寿荣枝", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/113003.png", + "come_from": [ + "均衡等级4及以上魔阴身士卒等敌方掉落【流云渡】", + "均衡等级4及以上魔阴身士卒等敌方掉落【迴星港】", + "「万能合成机」- 材料合成", + "「模拟宇宙」中敌方掉落", + "「万能合成机」- 材料置换" + ] + }, + "113011": { + "id": "113011", + "name": "工造机杼", + "type": "Material", + "sub_type": "Material", + "rarity": 2, + "icon": "icon/item/113011.png", + "come_from": [ + "入魔机巧等敌方掉落【迴星港】", + "「万能合成机」- 材料置换", + "「模拟宇宙」中敌方掉落", + "余烬兑换", + "委托奖励" + ] + }, + "113012": { + "id": "113012", + "name": "工造迴轮", + "type": "Material", + "sub_type": "Material", + "rarity": 3, + "icon": "icon/item/113012.png", + "come_from": [ + "均衡等级2及以上入魔机巧等敌方掉落【迴星港】", + "「万能合成机」- 材料合成", + "「模拟宇宙」中敌方掉落", + "「万能合成机」- 材料置换" + ] + }, + "113013": { + "id": "113013", + "name": "工造浑心", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/113013.png", + "come_from": [ + "均衡等级4及以上入魔机巧等敌方掉落【迴星港】", + "「万能合成机」- 材料合成", + "「模拟宇宙」中敌方掉落", + "「万能合成机」- 材料置换" + ] + }, + "120000": { + "id": "120000", + "name": "黑塔币", + "type": "Material", + "sub_type": "Material", + "rarity": 3, + "icon": "icon/item/120000.png", + "come_from": [ + "「空间站『黑塔』」探索获得", + "冒险任务获得" + ] + }, + "120001": { + "id": "120001", + "name": "冬城盾", + "type": "Material", + "sub_type": "Material", + "rarity": 3, + "icon": "icon/item/120001.png", + "come_from": [ + "「雅利洛-Ⅵ」探索获得", + "冒险任务获得" + ] + }, + "120002": { + "id": "120002", + "name": "巡镝", + "type": "Material", + "sub_type": "Material", + "rarity": 3, + "icon": "icon/item/120002.png", + "come_from": [ + "「仙舟『罗浮』」探索获得", + "冒险任务获得" + ] + }, + "140000": { + "id": "140000", + "name": "崇高道德的赞许", + "type": "Mission", + "sub_type": "Mission", + "rarity": 1, + "icon": "icon/item/140005.png", + "come_from": [] + }, + "140004": { + "id": "140004", + "name": "古老的钱币", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140004.png", + "come_from": [ + "「雅利洛-Ⅵ」可破坏物掉落" + ] + }, + "140017": { + "id": "140017", + "name": "核心模组", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140017.png", + "come_from": [] + }, + "140021": { + "id": "140021", + "name": "热驱动机械矿镐", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140021.png", + "come_from": [] + }, + "140022": { + "id": "140022", + "name": "防粉尘呼吸面罩", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140022.png", + "come_from": [] + }, + "140023": { + "id": "140023", + "name": "定制粉色安全帽", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140023.png", + "come_from": [] + }, + "140024": { + "id": "140024", + "name": "奇怪的钻头饰品", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140024.png", + "come_from": [] + }, + "140025": { + "id": "140025", + "name": "巴拉金家族铁盒", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140025.png", + "come_from": [] + }, + "140026": { + "id": "140026", + "name": "机关密钥", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140026.png", + "come_from": [] + }, + "140027": { + "id": "140027", + "name": "终端密钥", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140026.png", + "come_from": [] + }, + "140032": { + "id": "140032", + "name": "临时访问凭证", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140032.png", + "come_from": [] + }, + "140033": { + "id": "140033", + "name": "矿车销子", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140033.png", + "come_from": [] + }, + "140034": { + "id": "140034", + "name": "机械聚落认证:1级", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140034.png", + "come_from": [] + }, + "140035": { + "id": "140035", + "name": "机械聚落认证:2级", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140035.png", + "come_from": [] + }, + "140036": { + "id": "140036", + "name": "机械聚落认证:3级", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140036.png", + "come_from": [] + }, + "140037": { + "id": "140037", + "name": "「黑塔」特许通行认证", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140037.png", + "come_from": [] + }, + "140039": { + "id": "140039", + "name": "矿车轮对", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140039.png", + "come_from": [] + }, + "140040": { + "id": "140040", + "name": "一罐玻璃弹珠", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140040.png", + "come_from": [] + }, + "140041": { + "id": "140041", + "name": "尤利安的时间胶囊", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140041.png", + "come_from": [] + }, + "140046": { + "id": "140046", + "name": "商业区钥匙", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140009.png", + "come_from": [] + }, + "140065": { + "id": "140065", + "name": "被叫作「菌菌」的大熊玩偶", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140065.png", + "come_from": [] + }, + "140066": { + "id": "140066", + "name": "藏宝图", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140066.png", + "come_from": [] + }, + "140067": { + "id": "140067", + "name": "真正的藏宝图", + "type": "Mission", + "sub_type": "Mission", + "rarity": 5, + "icon": "icon/item/140066.png", + "come_from": [] + }, + "140068": { + "id": "140068", + "name": "裂界怪物盔甲", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140068.png", + "come_from": [] + }, + "140069": { + "id": "140069", + "name": "旧物拍卖会宣传物料", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140069.png", + "come_from": [] + }, + "140070": { + "id": "140070", + "name": "物流导航图", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140066.png", + "come_from": [] + }, + "140071": { + "id": "140071", + "name": "超镍零件", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140071.png", + "come_from": [] + }, + "140072": { + "id": "140072", + "name": "红色转译录", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140072.png", + "come_from": [] + }, + "140073": { + "id": "140073", + "name": "蓝色转译录", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140073.png", + "come_from": [] + }, + "140074": { + "id": "140074", + "name": "监控影像", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/113007.png", + "come_from": [] + }, + "140075": { + "id": "140075", + "name": "录像带:黯淡蓝点", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/113006.png", + "come_from": [] + }, + "140076": { + "id": "140076", + "name": "录像带:正义", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/113006.png", + "come_from": [] + }, + "140077": { + "id": "140077", + "name": "录像带:毁灭日", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/113006.png", + "come_from": [] + }, + "140078": { + "id": "140078", + "name": "未妥投的信封•一", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/190003.png", + "come_from": [] + }, + "140079": { + "id": "140079", + "name": "未妥投的信封•二", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/190003.png", + "come_from": [] + }, + "140080": { + "id": "140080", + "name": "未妥投的信封•三", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/190003.png", + "come_from": [] + }, + "140081": { + "id": "140081", + "name": "未妥投的信封•四", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/190003.png", + "come_from": [] + }, + "140082": { + "id": "140082", + "name": "装有奶粉的包裹", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140082.png", + "come_from": [] + }, + "140083": { + "id": "140083", + "name": "匿名的包裹", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140082.png", + "come_from": [] + }, + "140084": { + "id": "140084", + "name": "「千星」权限认证", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140084.png", + "come_from": [] + }, + "140085": { + "id": "140085", + "name": "「██」权限认证", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140085.png", + "come_from": [] + }, + "140086": { + "id": "140086", + "name": "「集团」权限认证", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140086.png", + "come_from": [] + }, + "140090": { + "id": "140090", + "name": "一箱医用酒精", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140082.png", + "come_from": [] + }, + "140091": { + "id": "140091", + "name": "一箱特制止痛剂", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140082.png", + "come_from": [] + }, + "140095": { + "id": "140095", + "name": "装有故事书的包裹", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140082.png", + "come_from": [] + }, + "140096": { + "id": "140096", + "name": "装有幼儿衣物的包裹", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140082.png", + "come_from": [] + }, + "140097": { + "id": "140097", + "name": "科鲁泽的信件", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/190003.png", + "come_from": [] + }, + "140098": { + "id": "140098", + "name": "巴拉金的旧照片", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/149975.png", + "come_from": [] + }, + "140103": { + "id": "140103", + "name": "商品委托合同", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "140104": { + "id": "140104", + "name": "地髓探针", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140104.png", + "come_from": [] + }, + "140105": { + "id": "140105", + "name": "猎彗人来信", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140105.png", + "come_from": [] + }, + "140106": { + "id": "140106", + "name": "猎彗人来信", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140105.png", + "come_from": [] + }, + "140107": { + "id": "140107", + "name": "猎彗人来信", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140105.png", + "come_from": [] + }, + "140108": { + "id": "140108", + "name": "匣中水魈", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140108.png", + "come_from": [] + }, + "140109": { + "id": "140109", + "name": "卡利白的配方纸", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/113005.png", + "come_from": [] + }, + "140110": { + "id": "140110", + "name": "dev_卡利白", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140110.png", + "come_from": [] + }, + "140111": { + "id": "140111", + "name": "锈损的钥匙", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140009.png", + "come_from": [] + }, + "140112": { + "id": "140112", + "name": "秘藏显影图", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/113007.png", + "come_from": [] + }, + "140114": { + "id": "140114", + "name": "精致的雪景球", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140114.png", + "come_from": [] + }, + "140115": { + "id": "140115", + "name": "球牡丹", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140115.png", + "come_from": [] + }, + "140116": { + "id": "140116", + "name": "初雪八落", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140116.png", + "come_from": [] + }, + "140117": { + "id": "140117", + "name": "侯爵夫人", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140117.png", + "come_from": [] + }, + "140118": { + "id": "140118", + "name": "暖阳花", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140118.png", + "come_from": [] + }, + "140119": { + "id": "140119", + "name": "机械零件", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140119.png", + "come_from": [] + }, + "140120": { + "id": "140120", + "name": "机械外壳", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140120.png", + "come_from": [] + }, + "140121": { + "id": "140121", + "name": "铁皮花朵", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140121.png", + "come_from": [] + }, + "140123": { + "id": "140123", + "name": "备用电源", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140013.png", + "come_from": [] + }, + "140124": { + "id": "140124", + "name": "工造司玉符", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140124.png", + "come_from": [] + }, + "140125": { + "id": "140125", + "name": "梅姐的笔记•花卉", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140125.png", + "come_from": [] + }, + "140126": { + "id": "140126", + "name": "梅姐的笔记•家政交流", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140125.png", + "come_from": [] + }, + "140127": { + "id": "140127", + "name": "梅姐证言", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140125.png", + "come_from": [] + }, + "140128": { + "id": "140128", + "name": "有些迷糊的女士证言", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140125.png", + "come_from": [] + }, + "140129": { + "id": "140129", + "name": "突然兴奋的男士证言", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140125.png", + "come_from": [] + }, + "140130": { + "id": "140130", + "name": "机巧鸟监控照片", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/149975.png", + "come_from": [] + }, + "140132": { + "id": "140132", + "name": "「波少」粉丝回馈手卡", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140132.png", + "come_from": [] + }, + "140133": { + "id": "140133", + "name": "「波少」限定写真", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/113004.png", + "come_from": [] + }, + "140134": { + "id": "140134", + "name": "「波少」百科", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/113006.png", + "come_from": [] + }, + "140135": { + "id": "140135", + "name": "阿兰ID的通行证", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140135.png", + "come_from": [] + }, + "140136": { + "id": "140136", + "name": "破碎的天花板", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140136.png", + "come_from": [] + }, + "140137": { + "id": "140137", + "name": "脚印", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140137.png", + "come_from": [] + }, + "140138": { + "id": "140138", + "name": "阿兰背影的照片", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/113007.png", + "come_from": [] + }, + "140139": { + "id": "140139", + "name": "饰有铃铛的肮脏缎带", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140139.png", + "come_from": [] + }, + "140140": { + "id": "140140", + "name": "损坏的八音盒", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140140.png", + "come_from": [] + }, + "140141": { + "id": "140141", + "name": "「黑暗拳斗大赛」邀请函", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140141.png", + "come_from": [] + }, + "140146": { + "id": "140146", + "name": "署名匹克的包裹", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140082.png", + "come_from": [] + }, + "140147": { + "id": "140147", + "name": "署名伊妮丝的包裹", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140082.png", + "come_from": [] + }, + "140148": { + "id": "140148", + "name": "看不清署名的包裹", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140082.png", + "come_from": [] + }, + "140149": { + "id": "140149", + "name": "温符瑞的礼物", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140149.png", + "come_from": [] + }, + "140150": { + "id": "140150", + "name": "金灿灿的手表", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140150.png", + "come_from": [] + }, + "140151": { + "id": "140151", + "name": "一束球牡丹", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140115.png", + "come_from": [] + }, + "140152": { + "id": "140152", + "name": "一束七彩虹", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140019.png", + "come_from": [] + }, + "140153": { + "id": "140153", + "name": "一束初雪八落", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140116.png", + "come_from": [] + }, + "140154": { + "id": "140154", + "name": "一株侯爵夫人", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140117.png", + "come_from": [] + }, + "140155": { + "id": "140155", + "name": "吉尔伯特的信", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/190003.png", + "come_from": [] + }, + "140162": { + "id": "140162", + "name": "损毁的残兵", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140162.png", + "come_from": [] + }, + "140163": { + "id": "140163", + "name": "碎裂的玉符", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140163.png", + "come_from": [] + }, + "140164": { + "id": "140164", + "name": "哑火的手雷", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140164.png", + "come_from": [] + }, + "140165": { + "id": "140165", + "name": "逻辑语言中枢", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140013.png", + "come_from": [] + }, + "140167": { + "id": "140167", + "name": "夹在书中的纸条", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/149978.png", + "come_from": [] + }, + "140168": { + "id": "140168", + "name": "《冒险鼹鼠队:隐形的宝藏》目录", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "140169": { + "id": "140169", + "name": "《冒险鼹鼠队:隐形的宝藏》前言", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "140170": { + "id": "140170", + "name": "《冒险鼹鼠队:隐形的宝藏》意外的羊皮纸", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "140171": { + "id": "140171", + "name": "《冒险鼹鼠队:隐形的宝藏》消失的矿灯", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "140172": { + "id": "140172", + "name": "《冒险鼹鼠队:隐形的宝藏》「货箱便是钥匙」", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "140173": { + "id": "140173", + "name": "《冒险鼹鼠队:隐形的宝藏》战地追迹", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "140174": { + "id": "140174", + "name": "《冒险鼹鼠队:隐形的宝藏》后记", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "140175": { + "id": "140175", + "name": "设计师入职邀请函", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140175.png", + "come_from": [] + }, + "140176": { + "id": "140176", + "name": "工造司标准零件组", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140176.png", + "come_from": [] + }, + "140177": { + "id": "140177", + "name": "铖杰的纸船", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140177.png", + "come_from": [] + }, + "140178": { + "id": "140178", + "name": "完美的地髓结晶", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140029.png", + "come_from": [] + }, + "140179": { + "id": "140179", + "name": "八成新的热动力矿镐", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140021.png", + "come_from": [] + }, + "140180": { + "id": "140180", + "name": "六成新的热动力矿镐", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140021.png", + "come_from": [] + }, + "140181": { + "id": "140181", + "name": "美丽的五彩晶石", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140011.png", + "come_from": [] + }, + "140182": { + "id": "140182", + "name": "脏兮兮的零件", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140033.png", + "come_from": [] + }, + "140183": { + "id": "140183", + "name": "陈旧的铁盒", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140041.png", + "come_from": [] + }, + "140184": { + "id": "140184", + "name": "一罐「鲛人泪」", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140040.png", + "come_from": [] + }, + "140185": { + "id": "140185", + "name": "抄写好的经文", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "140186": { + "id": "140186", + "name": "未寄出的家书", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/190009.png", + "come_from": [] + }, + "140187": { + "id": "140187", + "name": "小型中子辐射炸弹", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140082.png", + "come_from": [] + }, + "140188": { + "id": "140188", + "name": "「宝箱」的取货码", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140125.png", + "come_from": [] + }, + "140189": { + "id": "140189", + "name": "「那位老师」的衣服", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140082.png", + "come_from": [] + }, + "140196": { + "id": "140196", + "name": "「龙蟠虬跃」药理考", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "140197": { + "id": "140197", + "name": "丹枢调配的药物", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140198.png", + "come_from": [] + }, + "140198": { + "id": "140198", + "name": "餐云承露丹", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140198.png", + "come_from": [] + }, + "149960": { + "id": "149960", + "name": "光桥钥匙", + "type": "Mission", + "sub_type": "Mission", + "rarity": 1, + "icon": "icon/item/140084.png", + "come_from": [] + }, + "149961": { + "id": "149961", + "name": "右侧房间钥匙", + "type": "Mission", + "sub_type": "Mission", + "rarity": 1, + "icon": "icon/item/140084.png", + "come_from": [] + }, + "149962": { + "id": "149962", + "name": "中央房间钥匙", + "type": "Mission", + "sub_type": "Mission", + "rarity": 1, + "icon": "icon/item/140084.png", + "come_from": [] + }, + "149963": { + "id": "149963", + "name": "光桥钥匙", + "type": "Mission", + "sub_type": "Mission", + "rarity": 1, + "icon": "icon/item/140084.png", + "come_from": [] + }, + "149964": { + "id": "149964", + "name": "右侧房间钥匙", + "type": "Mission", + "sub_type": "Mission", + "rarity": 1, + "icon": "icon/item/140084.png", + "come_from": [] + }, + "149965": { + "id": "149965", + "name": "中央房间钥匙", + "type": "Mission", + "sub_type": "Mission", + "rarity": 1, + "icon": "icon/item/140084.png", + "come_from": [] + }, + "149966": { + "id": "149966", + "name": "右侧房间钥匙", + "type": "Mission", + "sub_type": "Mission", + "rarity": 1, + "icon": "icon/item/140084.png", + "come_from": [] + }, + "149967": { + "id": "149967", + "name": "中央房间钥匙", + "type": "Mission", + "sub_type": "Mission", + "rarity": 1, + "icon": "icon/item/140084.png", + "come_from": [] + }, + "149975": { + "id": "149975", + "name": "内容模糊的照片", + "type": "Mission", + "sub_type": "Mission", + "rarity": 1, + "icon": "icon/item/149975.png", + "come_from": [] + }, + "149976": { + "id": "149976", + "name": "内容模糊的肖像", + "type": "Mission", + "sub_type": "Mission", + "rarity": 1, + "icon": "icon/item/Icon_Testmaterial01.png", + "come_from": [] + }, + "149977": { + "id": "149977", + "name": "记录着线索的肖像", + "type": "Mission", + "sub_type": "Mission", + "rarity": 1, + "icon": "icon/item/140002.png", + "come_from": [] + }, + "149978": { + "id": "149978", + "name": "佩拉的手记", + "type": "Mission", + "sub_type": "Mission", + "rarity": 1, + "icon": "icon/item/149978.png", + "come_from": [] + }, + "149979": { + "id": "149979", + "name": "修订过的手记", + "type": "Mission", + "sub_type": "Mission", + "rarity": 1, + "icon": "icon/item/140028.png", + "come_from": [] + }, + "149980": { + "id": "149980", + "name": "演练证明", + "type": "Mission", + "sub_type": "Mission", + "rarity": 1, + "icon": "icon/item/140004.png", + "come_from": [] + }, + "149981": { + "id": "149981", + "name": "演练证明", + "type": "Mission", + "sub_type": "Mission", + "rarity": 1, + "icon": "icon/item/140004.png", + "come_from": [] + }, + "149982": { + "id": "149982", + "name": "演练证明", + "type": "Mission", + "sub_type": "Mission", + "rarity": 1, + "icon": "icon/item/140004.png", + "come_from": [] + }, + "149983": { + "id": "149983", + "name": "信标数据", + "type": "Mission", + "sub_type": "Mission", + "rarity": 1, + "icon": "icon/item/140084.png", + "come_from": [] + }, + "149984": { + "id": "149984", + "name": "信标数据", + "type": "Mission", + "sub_type": "Mission", + "rarity": 1, + "icon": "icon/item/140084.png", + "come_from": [] + }, + "149985": { + "id": "149985", + "name": "信标数据", + "type": "Mission", + "sub_type": "Mission", + "rarity": 1, + "icon": "icon/item/140084.png", + "come_from": [] + }, + "149991": { + "id": "149991", + "name": "一箱钢板和绷带", + "type": "Mission", + "sub_type": "Mission", + "rarity": 3, + "icon": "icon/item/140082.png", + "come_from": [] + }, + "180001": { + "id": "180001", + "name": "固态净水", + "type": "Material", + "sub_type": "Material", + "rarity": 1, + "icon": "icon/item/180001.png", + "come_from": [ + "重子等敌方掉落【收容舱段】", + "「雅利洛-Ⅵ」可破坏物掉落", + "行政区商店" + ] + }, + "180002": { + "id": "180002", + "name": "基本食材", + "type": "Material", + "sub_type": "Material", + "rarity": 1, + "icon": "icon/item/180002.png", + "come_from": [ + "「空间站『黑塔』」可破坏物掉落", + "行政区商店" + ] + }, + "180004": { + "id": "180004", + "name": "燃素", + "type": "Material", + "sub_type": "Material", + "rarity": 1, + "icon": "icon/item/180004.png", + "come_from": [ + "炎华造物等敌方掉落【边缘通路】", + "「空间站『黑塔』」可破坏物掉落", + "行政区商店" + ] + }, + "180005": { + "id": "180005", + "name": "金属", + "type": "Material", + "sub_type": "Material", + "rarity": 1, + "icon": "icon/item/180005.png", + "come_from": [ + "「空间站『黑塔』」可破坏物掉落", + "行政区商店" + ] + }, + "180006": { + "id": "180006", + "name": "气态流体", + "type": "Material", + "sub_type": "Material", + "rarity": 1, + "icon": "icon/item/180006.png", + "come_from": [ + "「雅利洛-Ⅵ」可破坏物掉落", + "杂货小摊" + ] + }, + "180007": { + "id": "180007", + "name": "种子", + "type": "Material", + "sub_type": "Material", + "rarity": 1, + "icon": "icon/item/180007.png", + "come_from": [ + "「雅利洛-Ⅵ」可破坏物掉落", + "杂货小摊" + ] + }, + "181001": { + "id": "181001", + "name": "零件", + "type": "Material", + "sub_type": "Material", + "rarity": 2, + "icon": "icon/item/181001.png", + "come_from": [ + "自动机兵等敌方掉落【机械聚落】", + "「空间站『黑塔』」可破坏物掉落", + "行政区商店" + ] + }, + "181002": { + "id": "181002", + "name": "虚粒子", + "type": "Material", + "sub_type": "Material", + "rarity": 2, + "icon": "icon/item/181002.png", + "come_from": [ + "重子等敌方掉落【收容舱段】", + "「空间站『黑塔』」可破坏物掉落", + "杂货小摊" + ] + }, + "181003": { + "id": "181003", + "name": "蛋白米", + "type": "Material", + "sub_type": "Material", + "rarity": 2, + "icon": "icon/item/181003.png", + "come_from": [ + "虚卒•掠夺者等敌方掉落【收容舱段】", + "「空间站『黑塔』」可破坏物掉落", + "杂货小摊" + ] + }, + "181004": { + "id": "181004", + "name": "火之翎", + "type": "Material", + "sub_type": "Material", + "rarity": 2, + "icon": "icon/item/181004.png", + "come_from": [ + "魔阴身士卒等敌方掉落【流云渡】", + "「雅利洛-Ⅵ」可破坏物掉落", + "行政区商店" + ] + }, + "181005": { + "id": "181005", + "name": "冰之芯", + "type": "Material", + "sub_type": "Material", + "rarity": 2, + "icon": "icon/item/181005.png", + "come_from": [ + "永冬灾影等敌方掉落【残响回廊】", + "行政区商店" + ] + }, + "181006": { + "id": "181006", + "name": "雷之眼", + "type": "Material", + "sub_type": "Material", + "rarity": 2, + "icon": "icon/item/181006.png", + "come_from": [ + "永冬灾影等敌方掉落【残响回廊】", + "杂货小摊" + ] + }, + "181007": { + "id": "181007", + "name": "风之旋", + "type": "Material", + "sub_type": "Material", + "rarity": 2, + "icon": "icon/item/181007.png", + "come_from": [ + "魔阴身士卒等敌方掉落【流云渡】", + "「雅利洛-Ⅵ」可破坏物掉落", + "杂货小摊" + ] + }, + "181008": { + "id": "181008", + "name": "量子涟漪", + "type": "Material", + "sub_type": "Material", + "rarity": 2, + "icon": "icon/item/181008.png", + "come_from": [ + "虚数织叶者等敌方掉落【铆钉镇】", + "行政区商店" + ] + }, + "181009": { + "id": "181009", + "name": "虚数残叶", + "type": "Material", + "sub_type": "Material", + "rarity": 2, + "icon": "icon/item/181009.png", + "come_from": [ + "炎华造物等敌方掉落【边缘通路】", + "杂货小摊" + ] + }, + "181010": { + "id": "181010", + "name": "陨铁", + "type": "Material", + "sub_type": "Material", + "rarity": 2, + "icon": "icon/item/181010.png", + "come_from": [ + "自动机兵等敌方掉落【机械聚落】", + "「雅利洛-Ⅵ」可破坏物掉落", + "行政区商店" + ] + }, + "182001": { + "id": "182001", + "name": "毁灭异质", + "type": "Material", + "sub_type": "Material", + "rarity": 3, + "icon": "icon/item/182001.png", + "come_from": [ + "虚卒•掠夺者等敌方掉落【收容舱段】" + ] + }, + "182002": { + "id": "182002", + "name": "丰饶香涎", + "type": "Material", + "sub_type": "Material", + "rarity": 3, + "icon": "icon/item/182002.png", + "come_from": [ + "魔阴身士卒等敌方掉落【流云渡】" + ] + }, + "182003": { + "id": "182003", + "name": "巡猎石", + "type": "Material", + "sub_type": "Material", + "rarity": 3, + "icon": "icon/item/182003.png", + "come_from": [ + "杂货小摊" + ] + }, + "182004": { + "id": "182004", + "name": "存护筑材", + "type": "Material", + "sub_type": "Material", + "rarity": 3, + "icon": "icon/item/182004.png", + "come_from": [ + "永冬灾影等敌方掉落【残响回廊】" + ] + }, + "182005": { + "id": "182005", + "name": "虚无硬片", + "type": "Material", + "sub_type": "Material", + "rarity": 3, + "icon": "icon/item/182005.png", + "come_from": [ + "虚数织叶者等敌方掉落【铆钉镇】" + ] + }, + "182006": { + "id": "182006", + "name": "智识树皮", + "type": "Material", + "sub_type": "Material", + "rarity": 3, + "icon": "icon/item/182006.png", + "come_from": [ + "自动机兵等敌方掉落【机械聚落】" + ] + }, + "182007": { + "id": "182007", + "name": "同谐黏液", + "type": "Material", + "sub_type": "Material", + "rarity": 3, + "icon": "icon/item/182007.png", + "come_from": [ + "入魔机巧 • 率从狻猊等敌方掉落【迴星港】" + ] + }, + "183001": { + "id": "183001", + "name": "换境树叶", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/183001.png", + "come_from": [ + "魔阴身士卒等敌方掉落【流云渡】" + ] + }, + "183002": { + "id": "183002", + "name": "相位灵火", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/183002.png", + "come_from": [ + "自动机兵等敌方掉落【机械聚落】" + ] + }, + "183003": { + "id": "183003", + "name": "哀荣泣石", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/183003.png", + "come_from": [ + "永冬灾影等敌方掉落【残响回廊】" + ] + }, + "183004": { + "id": "183004", + "name": "迷思绳结", + "type": "Material", + "sub_type": "Material", + "rarity": 4, + "icon": "icon/item/183004.png", + "come_from": [ + "虚数织叶者等敌方掉落【铆钉镇】" + ] + }, + "190101": { + "id": "190101", + "name": "随花束附赠的花语手册", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190102": { + "id": "190102", + "name": "咖啡师的手账残页", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190103": { + "id": "190103", + "name": "《矿山员工安全手册》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190104": { + "id": "190104", + "name": "关于煦日节庆典相关事宜的安排", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190105": { + "id": "190105", + "name": "矿业机械订单列表", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190106": { + "id": "190106", + "name": "《「淬火工坊」全新启程!》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190107": { + "id": "190107", + "name": "天桥下的告示", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190108": { + "id": "190108", + "name": "《秘传:爆辣蓬蓬菇》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190109": { + "id": "190109", + "name": "大矿区排班表", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190110": { + "id": "190110", + "name": "《矿工每周报》 第205期", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190111": { + "id": "190111", + "name": "《星尘玫瑰》场刊 第一页", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190112": { + "id": "190112", + "name": "《星尘玫瑰》场刊 第二页", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190113": { + "id": "190113", + "name": "《星尘玫瑰》场刊 第三页", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190114": { + "id": "190114", + "name": "《公民亚历珊德拉》场刊 第一页", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190115": { + "id": "190115", + "name": "《公民亚历珊德拉》场刊 第二页", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190116": { + "id": "190116", + "name": "《公民亚历珊德拉》场刊 第三页", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190117": { + "id": "190117", + "name": "地火组织的宣传单", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190118": { + "id": "190118", + "name": "矿队的通牒", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190119": { + "id": "190119", + "name": "大矿区生活守则", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190120": { + "id": "190120", + "name": "「矿灯」巴列维的告顾客信", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190003.png", + "come_from": [] + }, + "190121": { + "id": "190121", + "name": "冰风暴成因", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190122": { + "id": "190122", + "name": "春神和战争之神雅利洛 神话故事", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190123": { + "id": "190123", + "name": "春神和战争之神雅利洛 解读", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190124": { + "id": "190124", + "name": "给新手检修员的留言", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190125": { + "id": "190125", + "name": "煦日节前的日常生活采访", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190126": { + "id": "190126", + "name": "潮流品牌「郊外」", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190127": { + "id": "190127", + "name": "矿毒清鼻用吸入剂说明书", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190128": { + "id": "190128", + "name": "某个民间科学家的日记 其一", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190129": { + "id": "190129", + "name": "某个民间科学家的日记 其二", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190130": { + "id": "190130", + "name": "某个民间科学家的日记 其三", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190131": { + "id": "190131", + "name": "某个民间科学家的日记 其四", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190132": { + "id": "190132", + "name": "拼接而成的信件", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190003.png", + "come_from": [] + }, + "190133": { + "id": "190133", + "name": "冷吃夕红鱼", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190134": { + "id": "190134", + "name": "穿过风雪的旅人", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190135": { + "id": "190135", + "name": "鲑鱼面包", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190136": { + "id": "190136", + "name": "清唱剧首演盛况", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190137": { + "id": "190137", + "name": "黑面包汽水冰山", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190138": { + "id": "190138", + "name": "倍润矿脂", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190139": { + "id": "190139", + "name": "关于梦境分析", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190140": { + "id": "190140", + "name": "关于清唱剧排练时间变更通知", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190141": { + "id": "190141", + "name": "贝洛伯格红肠", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190142": { + "id": "190142", + "name": "小朋友的信", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190003.png", + "come_from": [] + }, + "190143": { + "id": "190143", + "name": "《地底百科:植物和菌类》 其一", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190144": { + "id": "190144", + "name": "《地底百科:植物和菌类》 其二", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190145": { + "id": "190145", + "name": "宝石蜥肉串食谱", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190146": { + "id": "190146", + "name": "贝洛伯格七大不思议", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190147": { + "id": "190147", + "name": "「黑塔」资产定损清单", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190005.png", + "come_from": [] + }, + "190148": { + "id": "190148", + "name": "银河公义奖彰", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190149": { + "id": "190149", + "name": "临时调任执行启示", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190150": { + "id": "190150", + "name": "猎彗人来信 其一", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190006.png", + "come_from": [] + }, + "190151": { + "id": "190151", + "name": "猎彗人来信 其二", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190006.png", + "come_from": [] + }, + "190152": { + "id": "190152", + "name": "猎彗人来信 其三", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190006.png", + "come_from": [] + }, + "190153": { + "id": "190153", + "name": "猎彗人宝藏 手稿其一", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190005.png", + "come_from": [] + }, + "190154": { + "id": "190154", + "name": "猎彗人宝藏 手稿其二", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190005.png", + "come_from": [] + }, + "190155": { + "id": "190155", + "name": "猎彗人宝藏 手稿其三", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190005.png", + "come_from": [] + }, + "190156": { + "id": "190156", + "name": "猎彗人宝藏 手稿其四", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190005.png", + "come_from": [] + }, + "190157": { + "id": "190157", + "name": "卡利白秘方", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190005.png", + "come_from": [] + }, + "190158": { + "id": "190158", + "name": "星域界种指要:呜呜伯", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190159": { + "id": "190159", + "name": "辛-41云乡讯音", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190160": { + "id": "190160", + "name": "科员荣仓终的日记", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190161": { + "id": "190161", + "name": "呜呜伯行为考", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190162": { + "id": "190162", + "name": "《黑塔研究图鉴•第七卷•交通》残页", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190005.png", + "come_from": [] + }, + "190163": { + "id": "190163", + "name": "【科员档案】古恩", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190164": { + "id": "190164", + "name": "【科员档案】何塞", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190165": { + "id": "190165", + "name": "【科员档案】荣仓终", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190166": { + "id": "190166", + "name": "再见黑塔", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190167": { + "id": "190167", + "name": "宓堂传语", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190168": { + "id": "190168", + "name": "黑塔的手稿:《博识学会》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190169": { + "id": "190169", + "name": "黑塔的手稿:《星际和平公司》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190170": { + "id": "190170", + "name": "黑塔的手稿:《作者序》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190171": { + "id": "190171", + "name": "黑塔的手稿:《天才俱乐部》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190172": { + "id": "190172", + "name": "黑塔情诗其一", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190173": { + "id": "190173", + "name": "黑塔情诗其二", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190174": { + "id": "190174", + "name": "黑塔情诗其三", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190175": { + "id": "190175", + "name": "讯号转译录:琥珀2157纪40月-43月", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190176": { + "id": "190176", + "name": "讯号转译录:琥珀2157纪44月-47月", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190177": { + "id": "190177", + "name": "讯号转译录:琥珀2157纪48月-51月", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190178": { + "id": "190178", + "name": "雪国冒险奇谭 第一章 背井离乡 片段一", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190179": { + "id": "190179", + "name": "雪国冒险奇谭 第二章 寒冰之都 片段一", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190180": { + "id": "190180", + "name": "雪国冒险奇谭 第二章 寒冰之都 片段二", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190181": { + "id": "190181", + "name": "雪国冒险奇谭 第二章 寒冰之都 片段三", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190182": { + "id": "190182", + "name": "雪国冒险奇谭 第四章 春之牧野 片段一", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190183": { + "id": "190183", + "name": "雪国冒险奇谭 第五章 水之监牢 片段一", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190184": { + "id": "190184", + "name": "雪国冒险奇谭 第六章 熔岩之国 片段一", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190185": { + "id": "190185", + "name": "雪国冒险奇谭 第六章 熔岩之国 片段二", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190186": { + "id": "190186", + "name": "雪国冒险奇谭 最终章 天外之境 片段一", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190187": { + "id": "190187", + "name": "某个包裹上的附信", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190003.png", + "come_from": [] + }, + "190188": { + "id": "190188", + "name": "关于宠物「小麻」的日记", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190189": { + "id": "190189", + "name": "《地底百科:动物》 其一", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190190": { + "id": "190190", + "name": "《地底百科:动物》 其二", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190191": { + "id": "190191", + "name": "「矿灯」古代遗物鉴定录 半环形电极项圈", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190192": { + "id": "190192", + "name": "「矿灯」古代遗物鉴定录 旧世界积木", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190193": { + "id": "190193", + "name": "矿工病诊断书", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190194": { + "id": "190194", + "name": "梅登矿道要塌了", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190195": { + "id": "190195", + "name": "科鲁泽的信件", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190003.png", + "come_from": [] + }, + "190196": { + "id": "190196", + "name": "祖辈的告诫", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190197": { + "id": "190197", + "name": "布洛妮娅的信", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190003.png", + "come_from": [] + }, + "190198": { + "id": "190198", + "name": "瓦赫的信", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190003.png", + "come_from": [] + }, + "190199": { + "id": "190199", + "name": "「风雪免疫」实验记录 其一", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190200": { + "id": "190200", + "name": "「风雪免疫」实验记录 其二", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190201": { + "id": "190201", + "name": "希拉的人物剧本", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190202": { + "id": "190202", + "name": "告罪书", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190203": { + "id": "190203", + "name": "数据记录:乔安", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190005.png", + "come_from": [] + }, + "190204": { + "id": "190204", + "name": "数据记录:梅厄", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190005.png", + "come_from": [] + }, + "190205": { + "id": "190205", + "name": "数据记录:克里斯", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190005.png", + "come_from": [] + }, + "190206": { + "id": "190206", + "name": "艾丝妲的家书", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190006.png", + "come_from": [] + }, + "190207": { + "id": "190207", + "name": "艾丝妲的购物清单", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190005.png", + "come_from": [] + }, + "190208": { + "id": "190208", + "name": "艾丝妲与「商业精英」的往来邮件副本", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190005.png", + "come_from": [] + }, + "190209": { + "id": "190209", + "name": "写给闯入者的便条", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190005.png", + "come_from": [] + }, + "190210": { + "id": "190210", + "name": "一间好商铺,世代摇钱树", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190211": { + "id": "190211", + "name": "矿业机械采购单据", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190212": { + "id": "190212", + "name": "《矿工每周报》第192期", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190213": { + "id": "190213", + "name": "《矿工每周报》第158期", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190214": { + "id": "190214", + "name": "生活物资需求征集", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190215": { + "id": "190215", + "name": "支离破碎的日记", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190216": { + "id": "190216", + "name": "在广场干道增设路障的通知", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190217": { + "id": "190217", + "name": "油腻腻的食评册", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190218": { + "id": "190218", + "name": "光荣的铁卫将为我们抵御外敌!", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190219": { + "id": "190219", + "name": "逐梦者的信件", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190003.png", + "come_from": [] + }, + "190220": { + "id": "190220", + "name": "「新•淬火工坊」开张!", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190221": { + "id": "190221", + "name": "小朋友(已黑化)的观察日记", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190222": { + "id": "190222", + "name": "军用机械例行检修记录表", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190223": { + "id": "190223", + "name": "说唱大战投票通道开启", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190224": { + "id": "190224", + "name": "会咬人,禁止靠近!", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190225": { + "id": "190225", + "name": "拳手招募单", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190226": { + "id": "190226", + "name": "《贝洛伯格的音乐家》卷一", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190227": { + "id": "190227", + "name": "《贝洛伯格的音乐家》卷二", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190228": { + "id": "190228", + "name": "《贝洛伯格的音乐家》卷三", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190229": { + "id": "190229", + "name": "《贝洛伯格的音乐家》卷四", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190230": { + "id": "190230", + "name": "《贝洛伯格的音乐家》卷五", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190231": { + "id": "190231", + "name": "《贝洛伯格的音乐家》卷六", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190232": { + "id": "190232", + "name": "《贝洛伯格的音乐家》真结局", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190233": { + "id": "190233", + "name": "未能寄出的家书 其一", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190003.png", + "come_from": [] + }, + "190234": { + "id": "190234", + "name": "未能寄出的家书 其二", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190003.png", + "come_from": [] + }, + "190235": { + "id": "190235", + "name": "歌德宾馆下午茶餐单", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190236": { + "id": "190236", + "name": "集会所的留言板", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190237": { + "id": "190237", + "name": "致「炉心」基地全体的一封信", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190003.png", + "come_from": [] + }, + "190238": { + "id": "190238", + "name": "大守护者塔提维娜发表重要讲话", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190239": { + "id": "190239", + "name": "兄弟对簿公堂,歌德家宅暂封", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190240": { + "id": "190240", + "name": "冰原狼出没,大守护者宣布宵禁", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190241": { + "id": "190241", + "name": "《歌德宾馆的夜与雾》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190242": { + "id": "190242", + "name": "《雪国往事》场刊 第一页", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190243": { + "id": "190243", + "name": "《雪国往事》场刊 第二页", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190244": { + "id": "190244", + "name": "《雪国往事》场刊 第三页", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190245": { + "id": "190245", + "name": "《蕾莎与特鲁太太》场刊 第一页", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190246": { + "id": "190246", + "name": "《蕾莎与特鲁太太》场刊 第二页", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190247": { + "id": "190247", + "name": "《蕾莎与特鲁太太》场刊 第三页", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190248": { + "id": "190248", + "name": "《路边野餐》场刊 第一页", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190249": { + "id": "190249", + "name": "《路边野餐》场刊 第二页", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190250": { + "id": "190250", + "name": "《路边野餐》场刊 第三页", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190251": { + "id": "190251", + "name": "《白衣之后》场刊 第一页", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190252": { + "id": "190252", + "name": "《白衣之后》场刊 第二页", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190253": { + "id": "190253", + "name": "《白衣之后》场刊 第三页", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190254": { + "id": "190254", + "name": "记长乐天夜游", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190255": { + "id": "190255", + "name": "评至味盛苑 九和宴", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190256": { + "id": "190256", + "name": "星槎安全检查指南", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190008.png", + "come_from": [] + }, + "190257": { + "id": "190257", + "name": "星槎进出港报告管理办法", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190258": { + "id": "190258", + "name": "这星芋啵啵也太难喝了吧", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190259": { + "id": "190259", + "name": "回到未来", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190260": { + "id": "190260", + "name": "轻雨浥尘", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190261": { + "id": "190261", + "name": "旅行篇•初到仙舟", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190262": { + "id": "190262", + "name": "旅行篇•赠送礼物", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190263": { + "id": "190263", + "name": "工作篇•职场生活", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190264": { + "id": "190264", + "name": "《「克拉拉保护协会」成员火热募集中》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190265": { + "id": "190265", + "name": "娜塔莎的名单", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190266": { + "id": "190266", + "name": "密密麻麻的日程", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190267": { + "id": "190267", + "name": "《铁卫禁区近况汇总及相关意见》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190268": { + "id": "190268", + "name": "水晶日报的送审样稿", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190269": { + "id": "190269", + "name": "《鼹鼠记》贝洛伯格古诗集 斯诺菲尔德北纪行", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190270": { + "id": "190270", + "name": "《鼹鼠记》贝洛伯格古诗集 铆钉镇的黄昏", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190271": { + "id": "190271", + "name": "《鼹鼠记》贝洛伯格古诗集 胖子拉里", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190272": { + "id": "190272", + "name": "贝洛伯格学院期中测试卷", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190273": { + "id": "190273", + "name": "防骗指南修订版", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190274": { + "id": "190274", + "name": "征友启事", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190275": { + "id": "190275", + "name": "银鬃铁卫宣誓词", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190276": { + "id": "190276", + "name": "艾丝妲的仪器采购合同", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190005.png", + "come_from": [] + }, + "190277": { + "id": "190277", + "name": "「家用寻物仪」售后回复函", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190006.png", + "come_from": [] + }, + "190278": { + "id": "190278", + "name": "星域界种指要:约特伍德体", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190279": { + "id": "190279", + "name": "【录音带】愚人戏:祸祖砺兵寻旧恨,愚人挥剑斩金身", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190280": { + "id": "190280", + "name": "维修科室的不传之秘", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190281": { + "id": "190281", + "name": "空间站体检事项公告", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190282": { + "id": "190282", + "name": "空间站介绍手册", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190283": { + "id": "190283", + "name": "黑塔藏品间使用守则", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190284": { + "id": "190284", + "name": "研究报告:约特伍德水晶体", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190285": { + "id": "190285", + "name": "不完整的录音自动转译文档", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190005.png", + "come_from": [] + }, + "190286": { + "id": "190286", + "name": "障碍判别终端的攻击记录", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190287": { + "id": "190287", + "name": "科员们的留言便条其一", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190005.png", + "come_from": [] + }, + "190288": { + "id": "190288", + "name": "科员们的留言便条其二", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190005.png", + "come_from": [] + }, + "190289": { + "id": "190289", + "name": "科员们的留言便条其三", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190005.png", + "come_from": [] + }, + "190290": { + "id": "190290", + "name": "科员们的留言便条其四", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190005.png", + "come_from": [] + }, + "190291": { + "id": "190291", + "name": "科员们的留言便条其五", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190005.png", + "come_from": [] + }, + "190292": { + "id": "190292", + "name": "科员们的留言便条其六", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190005.png", + "come_from": [] + }, + "190293": { + "id": "190293", + "name": "空间站员工餐厅反馈记录表", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190294": { + "id": "190294", + "name": "某位界种科科员的周记残页", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190295": { + "id": "190295", + "name": "科员间的聊天记录", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190296": { + "id": "190296", + "name": "约特伍德体是石头", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190297": { + "id": "190297", + "name": "帕斯卡的日志其一", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190298": { + "id": "190298", + "name": "帕斯卡的日志其二", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190299": { + "id": "190299", + "name": "帕斯卡的日志其三", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190300": { + "id": "190300", + "name": "爆炸头协会纲领", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190301": { + "id": "190301", + "name": "波少百科12.0更新内容", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190302": { + "id": "190302", + "name": "阿兰工作记录", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190303": { + "id": "190303", + "name": "教育部的难题(之一)", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190304": { + "id": "190304", + "name": "教育部的难题(之二)", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190305": { + "id": "190305", + "name": "教育部的难题(之三)", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190306": { + "id": "190306", + "name": "教育部的难题(之四)", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190307": { + "id": "190307", + "name": "教育部的难题(之五)", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190308": { + "id": "190308", + "name": "教育部的难题(之六)", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190309": { + "id": "190309", + "name": "教育部的难题(之七)", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190310": { + "id": "190310", + "name": "教育部的难题(之八)", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190311": { + "id": "190311", + "name": "裂界来电 通话中留下的线索", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190312": { + "id": "190312", + "name": "裂界来电 铁卫整理的事故报告", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190313": { + "id": "190313", + "name": "希莉儿 年代久远的日记", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190314": { + "id": "190314", + "name": "希莉儿 年代久远的书信", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190003.png", + "come_from": [] + }, + "190315": { + "id": "190315", + "name": "希莉儿 「愚者」希莉儿", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190002.png", + "come_from": [] + }, + "190316": { + "id": "190316", + "name": "不适合人偶的职业 其一", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190317": { + "id": "190317", + "name": "不适合人偶的职业 其二", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190318": { + "id": "190318", + "name": "不适合人偶的职业 其三", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190319": { + "id": "190319", + "name": "守护星槎海 其一", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190320": { + "id": "190320", + "name": "守护星槎海 其二", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190321": { + "id": "190321", + "name": "守护星槎海 其三", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190322": { + "id": "190322", + "name": "仙舟风物志 洞天", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190323": { + "id": "190323", + "name": "仙舟风物志 星槎", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190325": { + "id": "190325", + "name": "仙舟风物志 地衡司", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190327": { + "id": "190327", + "name": "仙舟风物志 工造司", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190330": { + "id": "190330", + "name": "仙舟风物志 玉兆", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190331": { + "id": "190331", + "name": "云骑斗步离", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190332": { + "id": "190332", + "name": "来自远古的回声~仙舟传统曲艺大观~ 序言", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190333": { + "id": "190333", + "name": "来自远古的回声~仙舟传统曲艺大观~ 评书", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190334": { + "id": "190334", + "name": "来自远古的回声~仙舟传统曲艺大观~ 仙舟坠子", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190335": { + "id": "190335", + "name": "来自远古的回声~仙舟传统曲艺大观~ 狐人大鼓", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190336": { + "id": "190336", + "name": "来自远古的回声~仙舟传统曲艺大观~ 持明时调", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190337": { + "id": "190337", + "name": "来自远古的回声~仙舟传统曲艺大观~ 相声", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190338": { + "id": "190338", + "name": "来自远古的回声~仙舟传统曲艺大观~ 杂技", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190339": { + "id": "190339", + "name": "冥想遗忘疗法:健康长生,直到永恒!", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190340": { + "id": "190340", + "name": "万类宗汇 毛类·黄石", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190341": { + "id": "190341", + "name": "万类宗汇 毛类·梦貘", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190342": { + "id": "190342", + "name": "万类宗汇 毛类·晴柔", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190343": { + "id": "190343", + "name": "万类宗汇 毛类·芙茸", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190344": { + "id": "190344", + "name": "《帝弓迹躔歌》注疏 其一", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190345": { + "id": "190345", + "name": "《帝弓迹躔歌》注疏 其二", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190346": { + "id": "190346", + "name": "《帝弓迹躔歌》注疏 其三", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190347": { + "id": "190347", + "name": "《帝弓迹躔歌》注疏 其四", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190348": { + "id": "190348", + "name": "《帝弓迹躔歌》注疏 其五", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190349": { + "id": "190349", + "name": "梅姐的笔记", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190350": { + "id": "190350", + "name": "梅姐的笔记", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190351": { + "id": "190351", + "name": "梅姐的笔记", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190352": { + "id": "190352", + "name": "梅姐的笔记", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190353": { + "id": "190353", + "name": "梁沐的留言之一", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190008.png", + "come_from": [] + }, + "190354": { + "id": "190354", + "name": "梁沐的留言之二", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190008.png", + "come_from": [] + }, + "190355": { + "id": "190355", + "name": "梁沐的信件", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190009.png", + "come_from": [] + }, + "190356": { + "id": "190356", + "name": "渔公案 第一案•令堕魔阴", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190357": { + "id": "190357", + "name": "药王秘传•证物集册 未寄出的家书", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190358": { + "id": "190358", + "name": "药王秘传•证物集册 紧急指示", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190359": { + "id": "190359", + "name": "药王秘传•证物集册 莳者日记", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190360": { + "id": "190360", + "name": "药王秘传•证物集册 行动目标:景元", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190361": { + "id": "190361", + "name": "药王秘传•证物集册 药王秘传•密令", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190362": { + "id": "190362", + "name": "药王秘传•证物集册 还尘驻形丹", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190363": { + "id": "190363", + "name": "将军的日记 其一", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190364": { + "id": "190364", + "name": "将军的日记 其二", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190365": { + "id": "190365", + "name": "将军的日记其三", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190367": { + "id": "190367", + "name": "阿德勒的怪谈研究报告 其一", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190368": { + "id": "190368", + "name": "阿德勒的怪谈研究报告 其二", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190369": { + "id": "190369", + "name": "阿德勒的怪谈研究报告 其三", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190370": { + "id": "190370", + "name": "贝洛伯格大事年表•寒潮之前", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190371": { + "id": "190371", + "name": "通缉令纪念册", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190372": { + "id": "190372", + "name": "奇物管理日志 其一", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190373": { + "id": "190373", + "name": "奇物管理日志 其二", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190374": { + "id": "190374", + "name": "奇物管理日志 其三", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190004.png", + "come_from": [] + }, + "190375": { + "id": "190375", + "name": "《蝶影》杂志特刊:托蝶幻境千年十佳 第十名 《袍哥》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190376": { + "id": "190376", + "name": "《蝶影》杂志特刊:托蝶幻境千年十佳 第九名《青丘》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190377": { + "id": "190377", + "name": "《蝶影》杂志特刊:托蝶幻境千年十佳 第八名《凯蒙凯》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190378": { + "id": "190378", + "name": "《蝶影》杂志特刊:托蝶幻境千年十佳 第七名《透帘细草》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190379": { + "id": "190379", + "name": "《蝶影》杂志特刊:托蝶幻境千年十佳 第六名《饮膳正要》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190380": { + "id": "190380", + "name": "《蝶影》杂志特刊:托蝶幻境千年十佳 第五名《深水长眠》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190381": { + "id": "190381", + "name": "《蝶影》杂志特刊:托蝶幻境千年十佳 第四名《计程槎飞行士》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190382": { + "id": "190382", + "name": "《蝶影》杂志特刊:托蝶幻境千年十佳 第三名《罗浮上最后的夜晚》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190383": { + "id": "190383", + "name": "《蝶影》杂志特刊:托蝶幻境千年十佳 第二名《帝弓司命》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190384": { + "id": "190384", + "name": "《蝶影》杂志特刊:托蝶幻境千年十佳 第一名《外婆桥》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190385": { + "id": "190385", + "name": "被罗刹撕下侦探小说的扉页", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190008.png", + "come_from": [] + }, + "190386": { + "id": "190386", + "name": "罗浮天舶司商会名录", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190008.png", + "come_from": [] + }, + "190387": { + "id": "190387", + "name": "长生种,其一", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190388": { + "id": "190388", + "name": "千手慈怀药王救世品", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190389": { + "id": "190389", + "name": "药方:龙蟠虬跃", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190390": { + "id": "190390", + "name": "形虎拳馆 招生广告", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190391": { + "id": "190391", + "name": "提倡合理合法爱护动物,严查违法违规「放生」动物", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190392": { + "id": "190392", + "name": "仙舟通鉴•三劫本纪•残卷前篇", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190393": { + "id": "190393", + "name": "仙舟通鉴•三劫本纪•残卷后篇", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190394": { + "id": "190394", + "name": "天舶司金刚椟纪事总汇•星历3287年•庚酉3号", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190395": { + "id": "190395", + "name": "《仙舟联盟宣言•序》数字拓本", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190396": { + "id": "190396", + "name": "神秘的咨询信", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190009.png", + "come_from": [] + }, + "190397": { + "id": "190397", + "name": "感激的复信", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190009.png", + "come_from": [] + }, + "190398": { + "id": "190398", + "name": "哀伤的复信", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190009.png", + "come_from": [] + }, + "190399": { + "id": "190399", + "name": "云吟谱", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190008.png", + "come_from": [] + }, + "190400": { + "id": "190400", + "name": "绿芙蓉的密信", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190009.png", + "come_from": [] + }, + "190401": { + "id": "190401", + "name": "魔阴身考(序)", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190402": { + "id": "190402", + "name": "魔阴身考(其一)", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190403": { + "id": "190403", + "name": "来自「玉阙」仙舟的监察报告", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190404": { + "id": "190404", + "name": "烬灭卷:绝灭大君", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190405": { + "id": "190405", + "name": "孽物卷:步离人", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190406": { + "id": "190406", + "name": "大毫的日记(其一)", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190407": { + "id": "190407", + "name": "大毫的日记(其二)", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190408": { + "id": "190408", + "name": "帝弓垂迹录", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190409": { + "id": "190409", + "name": "一份卜测报告", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190410": { + "id": "190410", + "name": "(稽神篇 • 总论)", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190411": { + "id": "190411", + "name": "(稽神篇 • 司命)", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190412": { + "id": "190412", + "name": "(稽神篇 • 天君)", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190413": { + "id": "190413", + "name": "(稽神篇 • 祸祖)", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190414": { + "id": "190414", + "name": "黄钟系统共鸣记录", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190415": { + "id": "190415", + "name": "明阅的占卜记录", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190416": { + "id": "190416", + "name": "静斋的占卜记录", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190430": { + "id": "190430", + "name": "罗浮仙舟情报手记", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190431": { + "id": "190431", + "name": "丹枢的日记(其一)", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190432": { + "id": "190432", + "name": "丹枢的日记(其二)", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190433": { + "id": "190433", + "name": "药王秘传•证物集册 「龙蟠虬跃」药理考", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190007.png", + "come_from": [] + }, + "190901": { + "id": "190901", + "name": "《冒险鼹鼠队:隐形的宝藏》目录", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190902": { + "id": "190902", + "name": "《冒险鼹鼠队:隐形的宝藏》前言", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190903": { + "id": "190903", + "name": "《冒险鼹鼠队:隐形的宝藏》意外的羊皮纸", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190904": { + "id": "190904", + "name": "《冒险鼹鼠队:隐形的宝藏》消失的矿灯", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190905": { + "id": "190905", + "name": "《冒险鼹鼠队:隐形的宝藏》「货箱便是钥匙」", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190906": { + "id": "190906", + "name": "《冒险鼹鼠队:隐形的宝藏》战地追迹", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "190907": { + "id": "190907", + "name": "《冒险鼹鼠队:隐形的宝藏》后记", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "191001": { + "id": "191001", + "name": "星神总览", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "191002": { + "id": "191002", + "name": "「开拓」,阿基维利", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "191003": { + "id": "191003", + "name": "「毁灭」,纳努克", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "191004": { + "id": "191004", + "name": "「巡猎」,岚", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "191005": { + "id": "191005", + "name": "「智识」,博识尊", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "191006": { + "id": "191006", + "name": "「同谐」,希佩", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "191007": { + "id": "191007", + "name": "「虚无」,Ⅸ", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "191008": { + "id": "191008", + "name": "「存护」,克里珀", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "191009": { + "id": "191009", + "name": "「丰饶」,药师", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "191010": { + "id": "191010", + "name": "「贪饕」,奥博洛斯", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "191011": { + "id": "191011", + "name": "「欢愉」,阿哈", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "191012": { + "id": "191012", + "name": "「纯美」,伊德莉拉", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "191013": { + "id": "191013", + "name": "「繁育」,塔伊兹育罗斯", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "191014": { + "id": "191014", + "name": "「神秘」,迷思", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "191015": { + "id": "191015", + "name": "派系总览", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "191016": { + "id": "191016", + "name": "星穹列车 - 开拓", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "191017": { + "id": "191017", + "name": "星核猎手 - ???", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "191018": { + "id": "191018", + "name": "无名客 - 开拓", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "191019": { + "id": "191019", + "name": "仙舟联盟 - 巡猎", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "191020": { + "id": "191020", + "name": "混沌医师 - 虚无", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "191021": { + "id": "191021", + "name": "第Ⅸ机关 - 虚无", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "191022": { + "id": "191022", + "name": "丰饶之民 - 丰饶", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "191023": { + "id": "191023", + "name": "求药使 - 丰饶", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "191024": { + "id": "191024", + "name": "反物质军团 - 毁灭", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "191025": { + "id": "191025", + "name": "家族 - 同谐", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "191026": { + "id": "191026", + "name": "天才俱乐部 - 智识", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "191027": { + "id": "191027", + "name": "博识学会 - 智识", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "191028": { + "id": "191028", + "name": "筑城者 - 存护", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "191029": { + "id": "191029", + "name": "星际和平公司 - 存护", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "191030": { + "id": "191030", + "name": "虫群 - 繁育", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "191031": { + "id": "191031", + "name": "流光忆庭 - 记忆", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "191032": { + "id": "191032", + "name": "焚化工 - 记忆", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "191033": { + "id": "191033", + "name": "悲悼伶人 - 欢愉", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "191034": { + "id": "191034", + "name": "假面愚者 - 欢愉", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "191035": { + "id": "191035", + "name": "虚构史学家 - 神秘", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "191036": { + "id": "191036", + "name": "谜语人 - 神秘", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "210001": { + "id": "210001", + "name": "《灾虐的黎明》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/210001.png", + "come_from": [] + }, + "210003": { + "id": "210003", + "name": "《即兴演出》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/210001.png", + "come_from": [] + }, + "210008": { + "id": "210008", + "name": "《危机预知》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/210001.png", + "come_from": [] + }, + "210010": { + "id": "210010", + "name": "《重力丧失》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/210001.png", + "come_from": [] + }, + "210100": { + "id": "210100", + "name": "《秩序》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/210001.png", + "come_from": [] + }, + "210101": { + "id": "210101", + "name": "《火种》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/210001.png", + "come_from": [] + }, + "210102": { + "id": "210102", + "name": "《地下》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/210001.png", + "come_from": [] + }, + "210103": { + "id": "210103", + "name": "《教父》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/210001.png", + "come_from": [] + }, + "210104": { + "id": "210104", + "name": "《严寒行军》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/210001.png", + "come_from": [] + }, + "210105": { + "id": "210105", + "name": "《陷阵无回》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/210001.png", + "come_from": [] + }, + "210106": { + "id": "210106", + "name": "《野火》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/210001.png", + "come_from": [] + }, + "210107": { + "id": "210107", + "name": "《苍逝冷阳》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/210001.png", + "come_from": [] + }, + "210108": { + "id": "210108", + "name": "《旧日之影》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/210001.png", + "come_from": [] + }, + "210109": { + "id": "210109", + "name": "《永冬》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/210001.png", + "come_from": [] + }, + "210110": { + "id": "210110", + "name": "《命途》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/210001.png", + "come_from": [] + }, + "210111": { + "id": "210111", + "name": "《余烬》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/210001.png", + "come_from": [] + }, + "210112": { + "id": "210112", + "name": "《炉火》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/210001.png", + "come_from": [] + }, + "210113": { + "id": "210113", + "name": "《暖阳》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/210001.png", + "come_from": [] + }, + "210114": { + "id": "210114", + "name": "《喧哗》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/210001.png", + "come_from": [] + }, + "210200": { + "id": "210200", + "name": "《云阵四合》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/210001.png", + "come_from": [] + }, + "210201": { + "id": "210201", + "name": "《星文照旅魂》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/210001.png", + "come_from": [] + }, + "210202": { + "id": "210202", + "name": "《俯仰穷观》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/210001.png", + "come_from": [] + }, + "210203": { + "id": "210203", + "name": "《玲珑工巧》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/210001.png", + "come_from": [] + }, + "210204": { + "id": "210204", + "name": "《天下熙熙》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/210001.png", + "come_from": [] + }, + "210208": { + "id": "210208", + "name": "《逐鹿》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/210001.png", + "come_from": [] + }, + "210209": { + "id": "210209", + "name": "《邀挽明月成宵宴》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/210001.png", + "come_from": [] + }, + "210210": { + "id": "210210", + "name": "《折冲妙算》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/210001.png", + "come_from": [] + }, + "210211": { + "id": "210211", + "name": "《雷车动地》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/210001.png", + "come_from": [] + }, + "300002": { + "id": "300002", + "name": "命途行者的赠礼", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/300002.png", + "come_from": [] + }, + "300003": { + "id": "300003", + "name": "命途行者的隆重赠礼", + "type": "Usable", + "sub_type": "Usable", + "rarity": 4, + "icon": "icon/item/300003.png", + "come_from": [] + }, + "300011": { + "id": "300011", + "name": "星海宝藏", + "type": "Usable", + "sub_type": "Usable", + "rarity": 4, + "icon": "icon/item/300011.png", + "come_from": [] + }, + "300031": { + "id": "300031", + "name": "群星之礼", + "type": "Usable", + "sub_type": "Usable", + "rarity": 5, + "icon": "icon/item/300031.png", + "come_from": [] + }, + "300101": { + "id": "300101", + "name": "列车补给凭证", + "type": "Usable", + "sub_type": "Usable", + "rarity": 4, + "icon": "icon/item/300101.png", + "come_from": [] + }, + "300102": { + "id": "300102", + "name": "无名客的荣勋(未拆封)", + "type": "Usable", + "sub_type": "Usable", + "rarity": 4, + "icon": "icon/item/300102.png", + "come_from": [] + }, + "300103": { + "id": "300103", + "name": "无名客的奖章(未拆封)", + "type": "Usable", + "sub_type": "Usable", + "rarity": 4, + "icon": "icon/item/300103.png", + "come_from": [] + }, + "300104": { + "id": "300104", + "name": "荣勋授章(未拆封)", + "type": "Usable", + "sub_type": "Usable", + "rarity": 4, + "icon": "icon/item/300103.png", + "come_from": [] + }, + "300200": { + "id": "300200", + "name": "《冒险鼹鼠队:隐形的宝藏》", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/190001.png", + "come_from": [] + }, + "300201": { + "id": "300201", + "name": "test_太空大作战战利品", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/300201.png", + "come_from": [] + }, + "310001": { + "id": "310001", + "name": "黑塔 • 开拓支援协议", + "type": "Usable", + "sub_type": "Usable", + "rarity": 4, + "icon": "icon/item/310001.png", + "come_from": [] + }, + "310002": { + "id": "310002", + "name": "黑塔 • 燃料补充协议", + "type": "Usable", + "sub_type": "Usable", + "rarity": 4, + "icon": "icon/item/310002.png", + "come_from": [] + }, + "310003": { + "id": "310003", + "name": "黑塔 • 冒险共享协议", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/310003.png", + "come_from": [] + }, + "400004": { + "id": "400004", + "name": "果腹粮食", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/400004.png", + "come_from": [ + "「万能合成机」" + ] + }, + "400005": { + "id": "400005", + "name": "惩戒粮食", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/400005.png", + "come_from": [ + "「万能合成机」" + ] + }, + "400006": { + "id": "400006", + "name": "奇巧零食", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/400006.png", + "come_from": [ + "「万能合成机」" + ] + }, + "400007": { + "id": "400007", + "name": "简易抢救器", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/400007.png", + "come_from": [ + "「万能合成机」" + ] + }, + "401003": { + "id": "401003", + "name": "大宇宙炒饭", + "type": "Usable", + "sub_type": "Usable", + "rarity": 2, + "icon": "icon/item/401003.png", + "come_from": [ + "「万能合成机」" + ] + }, + "401004": { + "id": "401004", + "name": "难吃的炒饭", + "type": "Usable", + "sub_type": "Usable", + "rarity": 2, + "icon": "icon/item/401004.png", + "come_from": [ + "「万能合成机」" + ] + }, + "401005": { + "id": "401005", + "name": "惩戒能量", + "type": "Usable", + "sub_type": "Usable", + "rarity": 2, + "icon": "icon/item/401005.png", + "come_from": [ + "「万能合成机」" + ] + }, + "401006": { + "id": "401006", + "name": "能量饮料", + "type": "Usable", + "sub_type": "Usable", + "rarity": 2, + "icon": "icon/item/401006.png", + "come_from": [ + "「万能合成机」" + ] + }, + "401007": { + "id": "401007", + "name": "生命传输器", + "type": "Usable", + "sub_type": "Usable", + "rarity": 2, + "icon": "icon/item/401007.png", + "come_from": [ + "「万能合成机」" + ] + }, + "401008": { + "id": "401008", + "name": "罐装快乐水", + "type": "Usable", + "sub_type": "Usable", + "rarity": 2, + "icon": "icon/item/401008.png", + "come_from": [ + "「万能合成机」" + ] + }, + "401009": { + "id": "401009", + "name": "简易护具", + "type": "Usable", + "sub_type": "Usable", + "rarity": 2, + "icon": "icon/item/401009.png", + "come_from": [ + "「万能合成机」" + ] + }, + "401010": { + "id": "401010", + "name": "稻花", + "type": "Usable", + "sub_type": "Usable", + "rarity": 2, + "icon": "icon/item/401010.png", + "come_from": [ + "「万能合成机」" + ] + }, + "401011": { + "id": "401011", + "name": "迷彩油漆", + "type": "Usable", + "sub_type": "Usable", + "rarity": 2, + "icon": "icon/item/401011.png", + "come_from": [ + "「万能合成机」" + ] + }, + "401012": { + "id": "401012", + "name": "健康炒米", + "type": "Usable", + "sub_type": "Usable", + "rarity": 2, + "icon": "icon/item/401012.png", + "come_from": [ + "「万能合成机」" + ] + }, + "401013": { + "id": "401013", + "name": "愤怒拳套", + "type": "Usable", + "sub_type": "Usable", + "rarity": 2, + "icon": "icon/item/401013.png", + "come_from": [ + "「万能合成机」" + ] + }, + "402001": { + "id": "402001", + "name": "愈合喷剂", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/402001.png", + "come_from": [ + "「万能合成机」" + ] + }, + "402002": { + "id": "402002", + "name": "一次性防护壁", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/402002.png", + "come_from": [ + "「万能合成机」" + ] + }, + "402003": { + "id": "402003", + "name": "能量饮料(无糖)", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/402003.png", + "come_from": [ + "「万能合成机」" + ] + }, + "402004": { + "id": "402004", + "name": "反物质力场生成器", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/402004.png", + "come_from": [ + "「万能合成机」" + ] + }, + "402005": { + "id": "402005", + "name": "科技护具", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/402005.png", + "come_from": [ + "「万能合成机」" + ] + }, + "402006": { + "id": "402006", + "name": "劣质护具", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/402006.png", + "come_from": [ + "「万能合成机」" + ] + }, + "402007": { + "id": "402007", + "name": "美味快餐棒", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/402007.png", + "come_from": [ + "「万能合成机」" + ] + }, + "402008": { + "id": "402008", + "name": "疾速粉尘", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/402008.png", + "come_from": [ + "「万能合成机」" + ] + }, + "402009": { + "id": "402009", + "name": "强化膏:物理", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/402009.png", + "come_from": [ + "「万能合成机」" + ] + }, + "402010": { + "id": "402010", + "name": "强化膏:风", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/402010.png", + "come_from": [ + "「万能合成机」" + ] + }, + "402011": { + "id": "402011", + "name": "强化膏:火", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/402011.png", + "come_from": [ + "「万能合成机」" + ] + }, + "402012": { + "id": "402012", + "name": "强化膏:冰", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/402012.png", + "come_from": [ + "「万能合成机」" + ] + }, + "402013": { + "id": "402013", + "name": "强化膏:雷", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/402013.png", + "come_from": [ + "「万能合成机」" + ] + }, + "402014": { + "id": "402014", + "name": "强化膏:量子", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/402014.png", + "come_from": [ + "「万能合成机」" + ] + }, + "402015": { + "id": "402015", + "name": "强化膏:虚数", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/402015.png", + "come_from": [ + "「万能合成机」" + ] + }, + "402016": { + "id": "402016", + "name": "催吐剂", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/402016.png", + "come_from": [ + "「万能合成机」" + ] + }, + "403001": { + "id": "403001", + "name": "一次性动力臂", + "type": "Usable", + "sub_type": "Usable", + "rarity": 4, + "icon": "icon/item/403001.png", + "come_from": [ + "「万能合成机」" + ] + }, + "403002": { + "id": "403002", + "name": "露比冲剂", + "type": "Usable", + "sub_type": "Usable", + "rarity": 4, + "icon": "icon/item/403002.png", + "come_from": [ + "「万能合成机」" + ] + }, + "403003": { + "id": "403003", + "name": "一次性动力炮", + "type": "Usable", + "sub_type": "Usable", + "rarity": 4, + "icon": "icon/item/403003.png", + "come_from": [ + "「万能合成机」" + ] + }, + "403004": { + "id": "403004", + "name": "永冬碑石", + "type": "Usable", + "sub_type": "Usable", + "rarity": 4, + "icon": "icon/item/403004.png", + "come_from": [ + "「万能合成机」" + ] + }, + "403005": { + "id": "403005", + "name": "拓扑加速带", + "type": "Usable", + "sub_type": "Usable", + "rarity": 4, + "icon": "icon/item/403005.png", + "come_from": [ + "「万能合成机」" + ] + }, + "403006": { + "id": "403006", + "name": "万寿无情丹", + "type": "Usable", + "sub_type": "Usable", + "rarity": 4, + "icon": "icon/item/403006.png", + "come_from": [ + "「万能合成机」" + ] + }, + "404004": { + "id": "404004", + "name": "配方:果腹粮食", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "404005": { + "id": "404005", + "name": "配方:惩戒粮食", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "404006": { + "id": "404006", + "name": "配方:奇巧零食", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "404007": { + "id": "404007", + "name": "配方:简易抢救器", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "405003": { + "id": "405003", + "name": "配方:大宇宙炒饭", + "type": "Usable", + "sub_type": "Usable", + "rarity": 2, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "405004": { + "id": "405004", + "name": "配方:难吃的炒饭", + "type": "Usable", + "sub_type": "Usable", + "rarity": 2, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "405005": { + "id": "405005", + "name": "配方:惩戒能量", + "type": "Usable", + "sub_type": "Usable", + "rarity": 2, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "405006": { + "id": "405006", + "name": "配方:能量饮料", + "type": "Usable", + "sub_type": "Usable", + "rarity": 2, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "405007": { + "id": "405007", + "name": "配方:生命传输器", + "type": "Usable", + "sub_type": "Usable", + "rarity": 2, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "405008": { + "id": "405008", + "name": "配方:罐装快乐水", + "type": "Usable", + "sub_type": "Usable", + "rarity": 2, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "405009": { + "id": "405009", + "name": "配方:简易护具", + "type": "Usable", + "sub_type": "Usable", + "rarity": 2, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "405010": { + "id": "405010", + "name": "配方:稻花", + "type": "Usable", + "sub_type": "Usable", + "rarity": 2, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "405011": { + "id": "405011", + "name": "配方:迷彩油漆", + "type": "Usable", + "sub_type": "Usable", + "rarity": 2, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "405012": { + "id": "405012", + "name": "配方:健康炒米", + "type": "Usable", + "sub_type": "Usable", + "rarity": 2, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "405013": { + "id": "405013", + "name": "配方:愤怒拳套", + "type": "Usable", + "sub_type": "Usable", + "rarity": 2, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "406001": { + "id": "406001", + "name": "配方:愈合喷剂", + "type": "Usable", + "sub_type": "Usable", + "rarity": 2, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "406002": { + "id": "406002", + "name": "配方:一次性防护壁", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "406003": { + "id": "406003", + "name": "配方:能量饮料(无糖)", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "406004": { + "id": "406004", + "name": "配方:反物质力场生成器", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "406005": { + "id": "406005", + "name": "配方:科技护具", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "406006": { + "id": "406006", + "name": "配方:劣质护具", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "406007": { + "id": "406007", + "name": "配方:美味快餐棒", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "406008": { + "id": "406008", + "name": "配方:疾速粉尘", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "406009": { + "id": "406009", + "name": "配方:强化膏:物理", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "406010": { + "id": "406010", + "name": "配方:强化膏:风", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "406011": { + "id": "406011", + "name": "配方:强化膏:火", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "406012": { + "id": "406012", + "name": "配方:强化膏:冰", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "406013": { + "id": "406013", + "name": "配方:强化膏:雷", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "406014": { + "id": "406014", + "name": "配方:强化膏:量子", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "406015": { + "id": "406015", + "name": "配方:强化膏:虚数", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "406016": { + "id": "406016", + "name": "配方:催吐剂", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "407001": { + "id": "407001", + "name": "配方:一次性动力臂", + "type": "Usable", + "sub_type": "Usable", + "rarity": 4, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "407002": { + "id": "407002", + "name": "配方:露比冲剂", + "type": "Usable", + "sub_type": "Usable", + "rarity": 4, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "407003": { + "id": "407003", + "name": "配方:一次性动力炮", + "type": "Usable", + "sub_type": "Usable", + "rarity": 4, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "407004": { + "id": "407004", + "name": "配方:永冬碑石", + "type": "Usable", + "sub_type": "Usable", + "rarity": 4, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "407005": { + "id": "407005", + "name": "配方:拓扑加速带", + "type": "Usable", + "sub_type": "Usable", + "rarity": 4, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "407006": { + "id": "407006", + "name": "配方:万寿无情丹", + "type": "Usable", + "sub_type": "Usable", + "rarity": 4, + "icon": "icon/item/404001.png", + "come_from": [] + }, + "408001": { + "id": "408001", + "name": "垃圾", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/408001.png", + "come_from": [ + "「雅利洛-Ⅵ」可破坏物掉落" + ] + }, + "408002": { + "id": "408002", + "name": "好看的垃圾", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/408002.png", + "come_from": [] + }, + "408003": { + "id": "408003", + "name": "垃圾桶的尊严", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/408003.png", + "come_from": [] + }, + "408004": { + "id": "408004", + "name": "吉姆•罗杰面包味汽水", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/408004.png", + "come_from": [] + }, + "408005": { + "id": "408005", + "name": "卡利白", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/140110.png", + "come_from": [] + }, + "408201": { + "id": "408201", + "name": "貘馍卷", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/408201.png", + "come_from": [] + }, + "408202": { + "id": "408202", + "name": "琼实鸟串", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/408202.png", + "come_from": [] + }, + "408203": { + "id": "408203", + "name": "黑面包汽水冰山", + "type": "Usable", + "sub_type": "Usable", + "rarity": 1, + "icon": "icon/item/408203.png", + "come_from": [] + }, + "408401": { + "id": "408401", + "name": "冷吃夕红鱼", + "type": "Usable", + "sub_type": "Usable", + "rarity": 2, + "icon": "icon/item/408401.png", + "come_from": [] + }, + "408402": { + "id": "408402", + "name": "宝石蜥肉串", + "type": "Usable", + "sub_type": "Usable", + "rarity": 2, + "icon": "icon/item/408402.png", + "come_from": [] + }, + "408403": { + "id": "408403", + "name": "杂菜汤", + "type": "Usable", + "sub_type": "Usable", + "rarity": 2, + "icon": "icon/item/408403.png", + "come_from": [] + }, + "408404": { + "id": "408404", + "name": "炸岩居蟹", + "type": "Usable", + "sub_type": "Usable", + "rarity": 2, + "icon": "icon/item/408404.png", + "come_from": [] + }, + "408405": { + "id": "408405", + "name": "苏打豆汁儿", + "type": "Usable", + "sub_type": "Usable", + "rarity": 2, + "icon": "icon/item/408405.png", + "come_from": [] + }, + "408406": { + "id": "408406", + "name": "鳞渊冰泉", + "type": "Usable", + "sub_type": "Usable", + "rarity": 2, + "icon": "icon/item/408406.png", + "come_from": [] + }, + "408407": { + "id": "408407", + "name": "鸣藕糕", + "type": "Usable", + "sub_type": "Usable", + "rarity": 2, + "icon": "icon/item/408407.png", + "come_from": [] + }, + "408408": { + "id": "408408", + "name": "热浮羊奶", + "type": "Usable", + "sub_type": "Usable", + "rarity": 2, + "icon": "icon/item/408408.png", + "come_from": [] + }, + "408601": { + "id": "408601", + "name": "贝洛伯格红肠", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/408601.png", + "come_from": [] + }, + "408602": { + "id": "408602", + "name": "岩烧洞螈", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/408602.png", + "come_from": [] + }, + "408603": { + "id": "408603", + "name": "仙人快乐茶", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/408603.png", + "come_from": [] + }, + "408604": { + "id": "408604", + "name": "养心返魂丹", + "type": "Usable", + "sub_type": "Usable", + "rarity": 3, + "icon": "icon/item/408604.png", + "come_from": [] + } +} \ No newline at end of file diff --git a/resources/sr/weapon/data.json b/resources/sr/weapon/data.json new file mode 100644 index 0000000..8757f27 --- /dev/null +++ b/resources/sr/weapon/data.json @@ -0,0 +1,17006 @@ +{ + "20000": { + "id": "20000", + "name": "锋镝", + "rarity": 3, + "path": "Rogue", + "desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\n「飞矢在弦、挽弓逐鹿的那一刻,猎人的双眸最为清澈。」", + "icon": "icon/light_cone/20000.png", + "preview": "image/light_cone_preview/20000.png", + "portrait": "image/light_cone_portrait/20000.png", + "type": "巡猎", + "star": 3, + "access": "常驻", + "characteristic": "战斗开始前3回合,暴击率提高", + "names": [ + "锋镝", + "锋嘀", + "独角兽", + "锋谪", + "锋滴", + "峰滴", + "峰镝" + ], + "suitRole": [ + "希儿", + "彦卿", + "丹恒", + "素裳", + "开拓者" + ], + "belongRole": [], + "values": [ + { + "hp": { + "base": 38.4, + "step": 5.76 + }, + "atk": { + "base": 14.4, + "step": 2.16 + }, + "def": { + "base": 12, + "step": 1.8 + } + }, + { + "hp": { + "base": 84.48, + "step": 5.76 + }, + "atk": { + "base": 31.68, + "step": 2.16 + }, + "def": { + "base": 26.4, + "step": 1.8 + } + }, + { + "hp": { + "base": 145.92, + "step": 5.76 + }, + "atk": { + "base": 54.72, + "step": 2.16 + }, + "def": { + "base": 45.6, + "step": 1.8 + } + }, + { + "hp": { + "base": 207.36, + "step": 5.76 + }, + "atk": { + "base": 77.76, + "step": 2.16 + }, + "def": { + "base": 64.8, + "step": 1.8 + } + }, + { + "hp": { + "base": 268.8, + "step": 5.76 + }, + "atk": { + "base": 100.8, + "step": 2.16 + }, + "def": { + "base": 84, + "step": 1.8 + } + }, + { + "hp": { + "base": 330.24, + "step": 5.76 + }, + "atk": { + "base": 123.84, + "step": 2.16 + }, + "def": { + "base": 103.2, + "step": 1.8 + } + }, + { + "hp": { + "base": 391.68, + "step": 5.76 + }, + "atk": { + "base": 146.88, + "step": 2.16 + }, + "def": { + "base": 122.4, + "step": 1.8 + } + } + ], + "fullValues": { + "hp": { + "base": "846.72", + "stop": 5.76 + }, + "atk": { + "base": "317.52", + "stop": 2.16 + }, + "def": { + "base": "264.60", + "stop": 1.8 + } + }, + "attribute": "战斗开始时,使装备者的暴击率提高12%/15%/18%/21%/24%,持续3回合。", + "material": [ + [ + { + "id": "2", + "num": 3000 + }, + { + "id": "111011", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 6000 + }, + { + "id": "110121", + "num": 2 + }, + { + "id": "111011", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 12000 + }, + { + "id": "110122", + "num": 2 + }, + { + "id": "111012", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 30000 + }, + { + "id": "110122", + "num": 4 + }, + { + "id": "111012", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 60000 + }, + { + "id": "110123", + "num": 3 + }, + { + "id": "111013", + "num": 3 + } + ], + [ + { + "id": "2", + "num": 120000 + }, + { + "id": "110123", + "num": 6 + }, + { + "id": "111013", + "num": 5 + } + ], + [] + ], + "params": [ + [ + 0.12, + 3 + ], + [ + 0.15, + 3 + ], + [ + 0.18, + 3 + ], + [ + 0.21, + 3 + ], + [ + 0.24, + 3 + ] + ], + "skill": "危机" + }, + "20001": { + "id": "20001", + "name": "物穰", + "rarity": 3, + "path": "Priest", + "desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\n「生命就是有序度超越了某个阈值的存在。它的诞生便是对死寂宇宙的最终解答,宣告着古老混沌的时代一去不返。」", + "icon": "icon/light_cone/20001.png", + "preview": "image/light_cone_preview/20001.png", + "portrait": "image/light_cone_portrait/20001.png", + "type": "丰饶", + "star": 3, + "access": "常驻", + "characteristic": "终结技、战技治疗量提高", + "names": [ + "物嚷", + "物壤", + "物攘", + "物馕", + "物曩" + ], + "suitRole": [ + "白露", + "娜塔莎", + "罗刹", + "开拓者" + ], + "belongRole": [], + "values": [ + { + "hp": { + "base": 43.2, + "step": 6.48 + }, + "atk": { + "base": 12, + "step": 1.8 + }, + "def": { + "base": 12, + "step": 1.8 + } + }, + { + "hp": { + "base": 95.04, + "step": 6.48 + }, + "atk": { + "base": 26.4, + "step": 1.8 + }, + "def": { + "base": 26.4, + "step": 1.8 + } + }, + { + "hp": { + "base": 164.16, + "step": 6.48 + }, + "atk": { + "base": 45.6, + "step": 1.8 + }, + "def": { + "base": 45.6, + "step": 1.8 + } + }, + { + "hp": { + "base": 233.28, + "step": 6.48 + }, + "atk": { + "base": 64.8, + "step": 1.8 + }, + "def": { + "base": 64.8, + "step": 1.8 + } + }, + { + "hp": { + "base": 302.4, + "step": 6.48 + }, + "atk": { + "base": 84, + "step": 1.8 + }, + "def": { + "base": 84, + "step": 1.8 + } + }, + { + "hp": { + "base": 371.52, + "step": 6.48 + }, + "atk": { + "base": 103.2, + "step": 1.8 + }, + "def": { + "base": 103.2, + "step": 1.8 + } + }, + { + "hp": { + "base": 440.64, + "step": 6.48 + }, + "atk": { + "base": 122.4, + "step": 1.8 + }, + "def": { + "base": 122.4, + "step": 1.8 + } + } + ], + "fullValues": { + "hp": { + "base": "952.56", + "stop": 6.48 + }, + "atk": { + "base": "264.60", + "stop": 1.8 + }, + "def": { + "base": "264.60", + "stop": 1.8 + } + }, + "attribute": "装备者施放战技和终结技时,治疗量提高12%/15%/18%/21%/24%12%/15%/18%/21%/24%。", + "material": [ + [ + { + "id": "2", + "num": 3000 + }, + { + "id": "112001", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 6000 + }, + { + "id": "110171", + "num": 2 + }, + { + "id": "112001", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 12000 + }, + { + "id": "110172", + "num": 2 + }, + { + "id": "112002", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 30000 + }, + { + "id": "110172", + "num": 4 + }, + { + "id": "112002", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 60000 + }, + { + "id": "110173", + "num": 3 + }, + { + "id": "112003", + "num": 3 + } + ], + [ + { + "id": "2", + "num": 120000 + }, + { + "id": "110173", + "num": 6 + }, + { + "id": "112003", + "num": 5 + } + ], + [] + ], + "params": [ + [ + 0.12 + ], + [ + 0.15 + ], + [ + 0.18 + ], + [ + 0.21 + ], + [ + 0.24 + ] + ], + "skill": "繁盛" + }, + "20002": { + "id": "20002", + "name": "天倾", + "rarity": 3, + "path": "Warrior", + "desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\n「万物的消逝就像其诞生一样自然,时间冲刷之下,一切有形之物都将焚为劫灰。」", + "icon": "icon/light_cone/20002.png", + "preview": "image/light_cone_preview/20002.png", + "portrait": "image/light_cone_portrait/20002.png", + "type": "毁灭", + "star": 3, + "access": "常驻", + "characteristic": "普攻、战技增伤", + "names": [ + "天顷", + "天青", + "天庆" + ], + "suitRole": [ + "刃", + "克拉拉", + "虎克", + "阿兰", + "开拓者" + ], + "belongRole": [], + "values": [ + { + "hp": { + "base": 38.4, + "step": 5.76 + }, + "atk": { + "base": 16.8, + "step": 2.52 + }, + "def": { + "base": 9, + "step": 1.35 + } + }, + { + "hp": { + "base": 84.48, + "step": 5.76 + }, + "atk": { + "base": 36.96, + "step": 2.52 + }, + "def": { + "base": 19.8, + "step": 1.35 + } + }, + { + "hp": { + "base": 145.92, + "step": 5.76 + }, + "atk": { + "base": 63.84, + "step": 2.52 + }, + "def": { + "base": 34.2, + "step": 1.35 + } + }, + { + "hp": { + "base": 207.36, + "step": 5.76 + }, + "atk": { + "base": 90.72, + "step": 2.52 + }, + "def": { + "base": 48.6, + "step": 1.35 + } + }, + { + "hp": { + "base": 268.8, + "step": 5.76 + }, + "atk": { + "base": 117.6, + "step": 2.52 + }, + "def": { + "base": 63, + "step": 1.35 + } + }, + { + "hp": { + "base": 330.24, + "step": 5.76 + }, + "atk": { + "base": 144.48, + "step": 2.52 + }, + "def": { + "base": 77.4, + "step": 1.35 + } + }, + { + "hp": { + "base": 391.68, + "step": 5.76 + }, + "atk": { + "base": 171.36, + "step": 2.52 + }, + "def": { + "base": 91.8, + "step": 1.35 + } + } + ], + "fullValues": { + "hp": { + "base": "846.72", + "stop": 5.76 + }, + "atk": { + "base": "370.44", + "stop": 2.52 + }, + "def": { + "base": "198.45", + "stop": 1.35 + } + }, + "attribute": "使装备者普攻和战技造成的伤害提高20%/25%/30%/35%/40%。", + "material": [ + [ + { + "id": "2", + "num": 3000 + }, + { + "id": "111011", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 6000 + }, + { + "id": "110111", + "num": 2 + }, + { + "id": "111011", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 12000 + }, + { + "id": "110112", + "num": 2 + }, + { + "id": "111012", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 30000 + }, + { + "id": "110112", + "num": 4 + }, + { + "id": "111012", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 60000 + }, + { + "id": "110113", + "num": 3 + }, + { + "id": "111013", + "num": 3 + } + ], + [ + { + "id": "2", + "num": 120000 + }, + { + "id": "110113", + "num": 6 + }, + { + "id": "111013", + "num": 5 + } + ], + [] + ], + "params": [ + [ + 0.2 + ], + [ + 0.25 + ], + [ + 0.3 + ], + [ + 0.35 + ], + [ + 0.4 + ] + ], + "skill": "破灭" + }, + "20003": { + "id": "20003", + "name": "琥珀", + "rarity": 3, + "path": "Knight", + "desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\n「只有不受时光局限的事物,才能在时光中长生久传。」", + "icon": "icon/light_cone/20003.png", + "preview": "image/light_cone_preview/20003.png", + "portrait": "image/light_cone_portrait/20003.png", + "type": "存护", + "star": 3, + "access": "常驻", + "characteristic": "生命值<50%,防御力额外提高", + "names": [ + "湖泊", + "琥伯", + "虎白" + ], + "suitRole": [ + "杰帕德", + "三月七", + "开拓者" + ], + "belongRole": [], + "values": [ + { + "hp": { + "base": 38.4, + "step": 5.76 + }, + "atk": { + "base": 12, + "step": 1.8 + }, + "def": { + "base": 15, + "step": 2.25 + } + }, + { + "hp": { + "base": 84.48, + "step": 5.76 + }, + "atk": { + "base": 26.4, + "step": 1.8 + }, + "def": { + "base": 33, + "step": 2.25 + } + }, + { + "hp": { + "base": 145.92, + "step": 5.76 + }, + "atk": { + "base": 45.6, + "step": 1.8 + }, + "def": { + "base": 57, + "step": 2.25 + } + }, + { + "hp": { + "base": 207.36, + "step": 5.76 + }, + "atk": { + "base": 64.8, + "step": 1.8 + }, + "def": { + "base": 81, + "step": 2.25 + } + }, + { + "hp": { + "base": 268.8, + "step": 5.76 + }, + "atk": { + "base": 84, + "step": 1.8 + }, + "def": { + "base": 105, + "step": 2.25 + } + }, + { + "hp": { + "base": 330.24, + "step": 5.76 + }, + "atk": { + "base": 103.2, + "step": 1.8 + }, + "def": { + "base": 129, + "step": 2.25 + } + }, + { + "hp": { + "base": 391.68, + "step": 5.76 + }, + "atk": { + "base": 122.4, + "step": 1.8 + }, + "def": { + "base": 153, + "step": 2.25 + } + } + ], + "fullValues": { + "hp": { + "base": "846.72", + "stop": 5.76 + }, + "atk": { + "base": "264.60", + "stop": 1.8 + }, + "def": { + "base": "330.75", + "stop": 2.25 + } + }, + "attribute": "使装备者的防御力提高16%/20%/24%/28%/32%。当装备者当前生命值百分比小于50%/50%/50%/50%/50%时,其防御力额外提高16%/20%/24%/28%/32%。", + "material": [ + [ + { + "id": "2", + "num": 3000 + }, + { + "id": "111001", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 6000 + }, + { + "id": "110141", + "num": 2 + }, + { + "id": "111001", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 12000 + }, + { + "id": "110142", + "num": 2 + }, + { + "id": "111002", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 30000 + }, + { + "id": "110142", + "num": 4 + }, + { + "id": "111002", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 60000 + }, + { + "id": "110143", + "num": 3 + }, + { + "id": "111003", + "num": 3 + } + ], + [ + { + "id": "2", + "num": 120000 + }, + { + "id": "110143", + "num": 6 + }, + { + "id": "111003", + "num": 5 + } + ], + [] + ], + "params": [ + [ + 0.16, + 0.5, + 0.16 + ], + [ + 0.2, + 0.5, + 0.2 + ], + [ + 0.24, + 0.5, + 0.24 + ], + [ + 0.28, + 0.5, + 0.28 + ], + [ + 0.32, + 0.5, + 0.32 + ] + ], + "skill": "静滞" + }, + "20004": { + "id": "20004", + "name": "幽邃", + "rarity": 3, + "path": "Warlock", + "desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\n「他凝视着那轮空洞,它犹如在万物终末时高悬的漆黑太阳,又像是一张解答一切疑问的口——那张口说道:███ █ ███ ██ 这答案无法以任何人类的语言诠释,却能被所有人听懂。 」", + "icon": "icon/light_cone/20004.png", + "preview": "image/light_cone_preview/20004.png", + "portrait": "image/light_cone_portrait/20004.png", + "type": "虚无", + "star": 3, + "access": "常驻", + "characteristic": "效果命中提高", + "names": [ + "幽遂", + "幽燧", + "幽隧", + "幽歲" + ], + "suitRole": [ + "卢卡", + "卡芙卡", + "瓦尔特", + "桑博", + "佩拉", + "开拓者" + ], + "belongRole": [], + "values": [ + { + "hp": { + "base": 38.4, + "step": 5.76 + }, + "atk": { + "base": 14.4, + "step": 2.16 + }, + "def": { + "base": 12, + "step": 1.8 + } + }, + { + "hp": { + "base": 84.48, + "step": 5.76 + }, + "atk": { + "base": 31.68, + "step": 2.16 + }, + "def": { + "base": 26.4, + "step": 1.8 + } + }, + { + "hp": { + "base": 145.92, + "step": 5.76 + }, + "atk": { + "base": 54.72, + "step": 2.16 + }, + "def": { + "base": 45.6, + "step": 1.8 + } + }, + { + "hp": { + "base": 207.36, + "step": 5.76 + }, + "atk": { + "base": 77.76, + "step": 2.16 + }, + "def": { + "base": 64.8, + "step": 1.8 + } + }, + { + "hp": { + "base": 268.8, + "step": 5.76 + }, + "atk": { + "base": 100.8, + "step": 2.16 + }, + "def": { + "base": 84, + "step": 1.8 + } + }, + { + "hp": { + "base": 330.24, + "step": 5.76 + }, + "atk": { + "base": 123.84, + "step": 2.16 + }, + "def": { + "base": 103.2, + "step": 1.8 + } + }, + { + "hp": { + "base": 391.68, + "step": 5.76 + }, + "atk": { + "base": 146.88, + "step": 2.16 + }, + "def": { + "base": 122.4, + "step": 1.8 + } + } + ], + "fullValues": { + "hp": { + "base": "846.72", + "stop": 5.76 + }, + "atk": { + "base": "317.52", + "stop": 2.16 + }, + "def": { + "base": "264.60", + "stop": 1.8 + } + }, + "attribute": "战斗开始时,使装备者的效果命中提高20%/25%/30%/35%/40%,持续3回合。", + "material": [ + [ + { + "id": "2", + "num": 3000 + }, + { + "id": "112011", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 6000 + }, + { + "id": "110151", + "num": 2 + }, + { + "id": "112011", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 12000 + }, + { + "id": "110152", + "num": 2 + }, + { + "id": "112012", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 30000 + }, + { + "id": "110152", + "num": 4 + }, + { + "id": "112012", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 60000 + }, + { + "id": "110153", + "num": 3 + }, + { + "id": "112013", + "num": 3 + } + ], + [ + { + "id": "2", + "num": 120000 + }, + { + "id": "110153", + "num": 6 + }, + { + "id": "112013", + "num": 5 + } + ], + [] + ], + "params": [ + [ + 0.2, + 3 + ], + [ + 0.25, + 3 + ], + [ + 0.3, + 3 + ], + [ + 0.35, + 3 + ], + [ + 0.4, + 3 + ] + ], + "skill": "沉沦" + }, + "20005": { + "id": "20005", + "name": "齐颂", + "rarity": 3, + "path": "Shaman", + "desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\n「合指为拳,众志成城。我献出自我,而后收获更高之物——我们。」", + "icon": "icon/light_cone/20005.png", + "preview": "image/light_cone_preview/20005.png", + "portrait": "image/light_cone_portrait/20005.png", + "type": "同谐", + "star": 3, + "access": "常驻", + "characteristic": "进入战斗后,群体加攻", + "names": [ + "起送", + "齐送", + "齐顷", + "齐倾" + ], + "suitRole": [ + "布洛妮娅", + "停云", + "艾丝妲", + "开拓者" + ], + "belongRole": [], + "values": [ + { + "hp": { + "base": 38.4, + "step": 5.76 + }, + "atk": { + "base": 14.4, + "step": 2.16 + }, + "def": { + "base": 12, + "step": 1.8 + } + }, + { + "hp": { + "base": 84.48, + "step": 5.76 + }, + "atk": { + "base": 31.68, + "step": 2.16 + }, + "def": { + "base": 26.4, + "step": 1.8 + } + }, + { + "hp": { + "base": 145.92, + "step": 5.76 + }, + "atk": { + "base": 54.72, + "step": 2.16 + }, + "def": { + "base": 45.6, + "step": 1.8 + } + }, + { + "hp": { + "base": 207.36, + "step": 5.76 + }, + "atk": { + "base": 77.76, + "step": 2.16 + }, + "def": { + "base": 64.8, + "step": 1.8 + } + }, + { + "hp": { + "base": 268.8, + "step": 5.76 + }, + "atk": { + "base": 100.8, + "step": 2.16 + }, + "def": { + "base": 84, + "step": 1.8 + } + }, + { + "hp": { + "base": 330.24, + "step": 5.76 + }, + "atk": { + "base": 123.84, + "step": 2.16 + }, + "def": { + "base": 103.2, + "step": 1.8 + } + }, + { + "hp": { + "base": 391.68, + "step": 5.76 + }, + "atk": { + "base": 146.88, + "step": 2.16 + }, + "def": { + "base": 122.4, + "step": 1.8 + } + } + ], + "fullValues": { + "hp": { + "base": "846.72", + "stop": 5.76 + }, + "atk": { + "base": "317.52", + "stop": 2.16 + }, + "def": { + "base": "264.60", + "stop": 1.8 + } + }, + "attribute": "进入战斗后,使我方全体的攻击力提高8%/9%/10%/11%/12%。同类技能无法重复生效。", + "material": [ + [ + { + "id": "2", + "num": 3000 + }, + { + "id": "112001", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 6000 + }, + { + "id": "110161", + "num": 2 + }, + { + "id": "112001", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 12000 + }, + { + "id": "110162", + "num": 2 + }, + { + "id": "112002", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 30000 + }, + { + "id": "110162", + "num": 4 + }, + { + "id": "112002", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 60000 + }, + { + "id": "110163", + "num": 3 + }, + { + "id": "112003", + "num": 3 + } + ], + [ + { + "id": "2", + "num": 120000 + }, + { + "id": "110163", + "num": 6 + }, + { + "id": "112003", + "num": 5 + } + ], + [] + ], + "params": [ + [ + 0.08 + ], + [ + 0.09 + ], + [ + 0.1 + ], + [ + 0.11 + ], + [ + 0.12 + ] + ], + "skill": "协力" + }, + "20006": { + "id": "20006", + "name": "智库", + "rarity": 3, + "path": "Mage", + "desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\n「人类行将灭绝。而图书馆会存在下去:青灯孤照,无限无动,藏有珍本,默默无闻,无用而不败坏。」", + "icon": "icon/light_cone/20006.png", + "preview": "image/light_cone_preview/20006.png", + "portrait": "image/light_cone_portrait/20006.png", + "type": "智识", + "star": 3, + "access": "常驻", + "characteristic": "终结技伤害提高", + "names": [ + "智慧库", + "聪明库", + "智裤", + "聪明裤", + "智酷", + "智慧裤", + "智慧酷", + "聪明酷" + ], + "suitRole": [ + "景元", + "姬子", + "青雀", + "黑塔", + "希露瓦", + "开拓者" + ], + "belongRole": [], + "values": [ + { + "hp": { + "base": 33.6, + "step": 5.04 + }, + "atk": { + "base": 16.8, + "step": 2.52 + }, + "def": { + "base": 12, + "step": 1.8 + } + }, + { + "hp": { + "base": 73.92, + "step": 5.04 + }, + "atk": { + "base": 36.96, + "step": 2.52 + }, + "def": { + "base": 26.4, + "step": 1.8 + } + }, + { + "hp": { + "base": 127.68, + "step": 5.04 + }, + "atk": { + "base": 63.84, + "step": 2.52 + }, + "def": { + "base": 45.6, + "step": 1.8 + } + }, + { + "hp": { + "base": 181.44, + "step": 5.04 + }, + "atk": { + "base": 90.72, + "step": 2.52 + }, + "def": { + "base": 64.8, + "step": 1.8 + } + }, + { + "hp": { + "base": 235.2, + "step": 5.04 + }, + "atk": { + "base": 117.6, + "step": 2.52 + }, + "def": { + "base": 84, + "step": 1.8 + } + }, + { + "hp": { + "base": 288.96, + "step": 5.04 + }, + "atk": { + "base": 144.48, + "step": 2.52 + }, + "def": { + "base": 103.2, + "step": 1.8 + } + }, + { + "hp": { + "base": 342.72, + "step": 5.04 + }, + "atk": { + "base": 171.36, + "step": 2.52 + }, + "def": { + "base": 122.4, + "step": 1.8 + } + } + ], + "fullValues": { + "hp": { + "base": "740.88", + "stop": 5.04 + }, + "atk": { + "base": "370.44", + "stop": 2.52 + }, + "def": { + "base": "264.60", + "stop": 1.8 + } + }, + "attribute": "使装备者终结技造成的伤害提高28%/35%/42%/49%/56%。", + "material": [ + [ + { + "id": "2", + "num": 3000 + }, + { + "id": "111001", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 6000 + }, + { + "id": "110131", + "num": 2 + }, + { + "id": "111001", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 12000 + }, + { + "id": "110132", + "num": 2 + }, + { + "id": "111002", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 30000 + }, + { + "id": "110132", + "num": 4 + }, + { + "id": "111002", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 60000 + }, + { + "id": "110133", + "num": 3 + }, + { + "id": "111003", + "num": 3 + } + ], + [ + { + "id": "2", + "num": 120000 + }, + { + "id": "110133", + "num": 6 + }, + { + "id": "111003", + "num": 5 + } + ], + [] + ], + "params": [ + [ + 0.28 + ], + [ + 0.35 + ], + [ + 0.42 + ], + [ + 0.49 + ], + [ + 0.56 + ] + ], + "skill": "博识" + }, + "20007": { + "id": "20007", + "name": "离弦", + "rarity": 3, + "path": "Rogue", + "desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\n「战事已经开始,必须给箭矢找到下一个目标。」", + "icon": "icon/light_cone/20007.png", + "preview": "image/light_cone_preview/20007.png", + "portrait": "image/light_cone_portrait/20007.png", + "type": "巡猎", + "star": 3, + "access": "常驻", + "characteristic": "击杀加攻", + "names": [ + "脱线", + "离线", + "璃弦", + "漓弦", + "离玄" + ], + "suitRole": [ + "希儿", + "彦卿", + "丹恒", + "素裳", + "开拓者" + ], + "belongRole": [], + "values": [ + { + "hp": { + "base": 33.6, + "step": 5.04 + }, + "atk": { + "base": 16.8, + "step": 2.52 + }, + "def": { + "base": 12, + "step": 1.8 + } + }, + { + "hp": { + "base": 73.92, + "step": 5.04 + }, + "atk": { + "base": 36.96, + "step": 2.52 + }, + "def": { + "base": 26.4, + "step": 1.8 + } + }, + { + "hp": { + "base": 127.68, + "step": 5.04 + }, + "atk": { + "base": 63.84, + "step": 2.52 + }, + "def": { + "base": 45.6, + "step": 1.8 + } + }, + { + "hp": { + "base": 181.44, + "step": 5.04 + }, + "atk": { + "base": 90.72, + "step": 2.52 + }, + "def": { + "base": 64.8, + "step": 1.8 + } + }, + { + "hp": { + "base": 235.2, + "step": 5.04 + }, + "atk": { + "base": 117.6, + "step": 2.52 + }, + "def": { + "base": 84, + "step": 1.8 + } + }, + { + "hp": { + "base": 288.96, + "step": 5.04 + }, + "atk": { + "base": 144.48, + "step": 2.52 + }, + "def": { + "base": 103.2, + "step": 1.8 + } + }, + { + "hp": { + "base": 342.72, + "step": 5.04 + }, + "atk": { + "base": 171.36, + "step": 2.52 + }, + "def": { + "base": 122.4, + "step": 1.8 + } + } + ], + "fullValues": { + "hp": { + "base": "740.88", + "stop": 5.04 + }, + "atk": { + "base": "370.44", + "stop": 2.52 + }, + "def": { + "base": "264.60", + "stop": 1.8 + } + }, + "attribute": "使装备者消灭敌方目标后,攻击力提高24%/30%/36%/42%/48%,持续3回合。", + "material": [ + [ + { + "id": "2", + "num": 3000 + }, + { + "id": "112001", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 6000 + }, + { + "id": "110121", + "num": 2 + }, + { + "id": "112001", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 12000 + }, + { + "id": "110122", + "num": 2 + }, + { + "id": "112002", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 30000 + }, + { + "id": "110122", + "num": 4 + }, + { + "id": "112002", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 60000 + }, + { + "id": "110123", + "num": 3 + }, + { + "id": "112003", + "num": 3 + } + ], + [ + { + "id": "2", + "num": 120000 + }, + { + "id": "110123", + "num": 6 + }, + { + "id": "112003", + "num": 5 + } + ], + [] + ], + "params": [ + [ + 0.24, + 3 + ], + [ + 0.3, + 3 + ], + [ + 0.36, + 3 + ], + [ + 0.42, + 3 + ], + [ + 0.48, + 3 + ] + ], + "skill": "鸣角" + }, + "20008": { + "id": "20008", + "name": "嘉果", + "rarity": 3, + "path": "Priest", + "desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\n「口渴时,万物总是甜的。」", + "icon": "icon/light_cone/20008.png", + "preview": "image/light_cone_preview/20008.png", + "portrait": "image/light_cone_portrait/20008.png", + "type": "丰饶", + "star": 3, + "access": "常驻", + "characteristic": "战斗开始时,群体充能", + "names": [ + "荚果", + "假果", + "加果", + "佳果" + ], + "suitRole": [ + "白露", + "娜塔莎", + "罗刹", + "开拓者" + ], + "belongRole": [], + "values": [ + { + "hp": { + "base": 43.2, + "step": 6.48 + }, + "atk": { + "base": 14.4, + "step": 2.16 + }, + "def": { + "base": 9, + "step": 1.35 + } + }, + { + "hp": { + "base": 95.04, + "step": 6.48 + }, + "atk": { + "base": 31.68, + "step": 2.16 + }, + "def": { + "base": 19.8, + "step": 1.35 + } + }, + { + "hp": { + "base": 164.16, + "step": 6.48 + }, + "atk": { + "base": 54.72, + "step": 2.16 + }, + "def": { + "base": 34.2, + "step": 1.35 + } + }, + { + "hp": { + "base": 233.28, + "step": 6.48 + }, + "atk": { + "base": 77.76, + "step": 2.16 + }, + "def": { + "base": 48.6, + "step": 1.35 + } + }, + { + "hp": { + "base": 302.4, + "step": 6.48 + }, + "atk": { + "base": 100.8, + "step": 2.16 + }, + "def": { + "base": 63, + "step": 1.35 + } + }, + { + "hp": { + "base": 371.52, + "step": 6.48 + }, + "atk": { + "base": 123.84, + "step": 2.16 + }, + "def": { + "base": 77.4, + "step": 1.35 + } + }, + { + "hp": { + "base": 440.64, + "step": 6.48 + }, + "atk": { + "base": 146.88, + "step": 2.16 + }, + "def": { + "base": 91.8, + "step": 1.35 + } + } + ], + "fullValues": { + "hp": { + "base": "952.56", + "stop": 6.48 + }, + "atk": { + "base": "317.52", + "stop": 2.16 + }, + "def": { + "base": "198.45", + "stop": 1.35 + } + }, + "attribute": "战斗开始时,立即为我方全体恢复6/7/9/10/12点能量。", + "material": [ + [ + { + "id": "2", + "num": 3000 + }, + { + "id": "111001", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 6000 + }, + { + "id": "110171", + "num": 2 + }, + { + "id": "111001", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 12000 + }, + { + "id": "110172", + "num": 2 + }, + { + "id": "111002", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 30000 + }, + { + "id": "110172", + "num": 4 + }, + { + "id": "111002", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 60000 + }, + { + "id": "110173", + "num": 3 + }, + { + "id": "111003", + "num": 3 + } + ], + [ + { + "id": "2", + "num": 120000 + }, + { + "id": "110173", + "num": 6 + }, + { + "id": "111003", + "num": 5 + } + ], + [] + ], + "params": [ + [ + 6 + ], + [ + 7.5 + ], + [ + 9 + ], + [ + 10.5 + ], + [ + 12 + ] + ], + "skill": "甘美" + }, + "20009": { + "id": "20009", + "name": "乐圮", + "rarity": 3, + "path": "Warrior", + "desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\n「有能力摧毁某样事物的人,才是它真正的掌控者。」", + "icon": "icon/light_cone/20009.png", + "preview": "image/light_cone_preview/20009.png", + "portrait": "image/light_cone_portrait/20009.png", + "type": "毁灭", + "star": 3, + "access": "常驻", + "characteristic": "生命值>50%,伤害提高", + "names": [ + "乐皮", + "乐劈", + "乐匹", + "乐己", + "乐已", + "乐妃", + "乐土", + "乐王", + "乐飞" + ], + "suitRole": [ + "刃", + "克拉拉", + "虎克", + "阿兰", + "开拓者" + ], + "belongRole": [], + "values": [ + { + "hp": { + "base": 38.4, + "step": 5.76 + }, + "atk": { + "base": 16.8, + "step": 2.52 + }, + "def": { + "base": 9, + "step": 1.35 + } + }, + { + "hp": { + "base": 84.48, + "step": 5.76 + }, + "atk": { + "base": 36.96, + "step": 2.52 + }, + "def": { + "base": 19.8, + "step": 1.35 + } + }, + { + "hp": { + "base": 145.92, + "step": 5.76 + }, + "atk": { + "base": 63.84, + "step": 2.52 + }, + "def": { + "base": 34.2, + "step": 1.35 + } + }, + { + "hp": { + "base": 207.36, + "step": 5.76 + }, + "atk": { + "base": 90.72, + "step": 2.52 + }, + "def": { + "base": 48.6, + "step": 1.35 + } + }, + { + "hp": { + "base": 268.8, + "step": 5.76 + }, + "atk": { + "base": 117.6, + "step": 2.52 + }, + "def": { + "base": 63, + "step": 1.35 + } + }, + { + "hp": { + "base": 330.24, + "step": 5.76 + }, + "atk": { + "base": 144.48, + "step": 2.52 + }, + "def": { + "base": 77.4, + "step": 1.35 + } + }, + { + "hp": { + "base": 391.68, + "step": 5.76 + }, + "atk": { + "base": 171.36, + "step": 2.52 + }, + "def": { + "base": 91.8, + "step": 1.35 + } + } + ], + "fullValues": { + "hp": { + "base": "846.72", + "stop": 5.76 + }, + "atk": { + "base": "370.44", + "stop": 2.52 + }, + "def": { + "base": "198.45", + "stop": 1.35 + } + }, + "attribute": "使装备者对当前生命值百分比大于50%的敌方目标造成的伤害提高20%/25%/30%/35%/40%。", + "material": [ + [ + { + "id": "2", + "num": 3000 + }, + { + "id": "111001", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 6000 + }, + { + "id": "110111", + "num": 2 + }, + { + "id": "111001", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 12000 + }, + { + "id": "110112", + "num": 2 + }, + { + "id": "111002", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 30000 + }, + { + "id": "110112", + "num": 4 + }, + { + "id": "111002", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 60000 + }, + { + "id": "110113", + "num": 3 + }, + { + "id": "111003", + "num": 3 + } + ], + [ + { + "id": "2", + "num": 120000 + }, + { + "id": "110113", + "num": 6 + }, + { + "id": "111003", + "num": 5 + } + ], + [] + ], + "params": [ + [ + 0.5, + 0.2 + ], + [ + 0.5, + 0.25 + ], + [ + 0.5, + 0.3 + ], + [ + 0.5, + 0.35 + ], + [ + 0.5, + 0.4 + ] + ], + "skill": "诛讨" + }, + "20010": { + "id": "20010", + "name": "戍御", + "rarity": 3, + "path": "Knight", + "desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\n「城墙后坚强的民众,证明了防御也是一种取胜手段。」", + "icon": "icon/light_cone/20010.png", + "preview": "image/light_cone_preview/20010.png", + "portrait": "image/light_cone_portrait/20010.png", + "type": "存护", + "star": 3, + "access": "常驻", + "characteristic": "释放终结技恢复生命值", + "names": [ + "戎御", + "盾牌" + ], + "suitRole": [ + "杰帕德", + "三月七", + "开拓者" + ], + "belongRole": [], + "values": [ + { + "hp": { + "base": 43.2, + "step": 6.48 + }, + "atk": { + "base": 12, + "step": 1.8 + }, + "def": { + "base": 12, + "step": 1.8 + } + }, + { + "hp": { + "base": 95.04, + "step": 6.48 + }, + "atk": { + "base": 26.4, + "step": 1.8 + }, + "def": { + "base": 26.4, + "step": 1.8 + } + }, + { + "hp": { + "base": 164.16, + "step": 6.48 + }, + "atk": { + "base": 45.6, + "step": 1.8 + }, + "def": { + "base": 45.6, + "step": 1.8 + } + }, + { + "hp": { + "base": 233.28, + "step": 6.48 + }, + "atk": { + "base": 64.8, + "step": 1.8 + }, + "def": { + "base": 64.8, + "step": 1.8 + } + }, + { + "hp": { + "base": 302.4, + "step": 6.48 + }, + "atk": { + "base": 84, + "step": 1.8 + }, + "def": { + "base": 84, + "step": 1.8 + } + }, + { + "hp": { + "base": 371.52, + "step": 6.48 + }, + "atk": { + "base": 103.2, + "step": 1.8 + }, + "def": { + "base": 103.2, + "step": 1.8 + } + }, + { + "hp": { + "base": 440.64, + "step": 6.48 + }, + "atk": { + "base": 122.4, + "step": 1.8 + }, + "def": { + "base": 122.4, + "step": 1.8 + } + } + ], + "fullValues": { + "hp": { + "base": "952.56", + "stop": 6.48 + }, + "atk": { + "base": "264.60", + "stop": 1.8 + }, + "def": { + "base": "264.60", + "stop": 1.8 + } + }, + "attribute": "使装备者施放终结技时,回复等同于自身生命上限50%18%/21%/24%/27%/30%的生命值。", + "material": [ + [ + { + "id": "2", + "num": 3000 + }, + { + "id": "111011", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 6000 + }, + { + "id": "110141", + "num": 2 + }, + { + "id": "111011", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 12000 + }, + { + "id": "110142", + "num": 2 + }, + { + "id": "111012", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 30000 + }, + { + "id": "110142", + "num": 4 + }, + { + "id": "111012", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 60000 + }, + { + "id": "110143", + "num": 3 + }, + { + "id": "111013", + "num": 3 + } + ], + [ + { + "id": "2", + "num": 120000 + }, + { + "id": "110143", + "num": 6 + }, + { + "id": "111013", + "num": 5 + } + ], + [] + ], + "params": [ + [ + 0.18 + ], + [ + 0.21 + ], + [ + 0.24 + ], + [ + 0.27 + ], + [ + 0.3 + ] + ], + "skill": "兴复" + }, + "20011": { + "id": "20011", + "name": "渊环", + "rarity": 3, + "path": "Warlock", + "desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\n「逃亡者试图摆脱过去的幻影,他以为这痛苦无人能懂。直到他抬起头,未来的自己正睁着可怖的双眼。」", + "icon": "icon/light_cone/20011.png", + "preview": "image/light_cone_preview/20011.png", + "portrait": "image/light_cone_portrait/20011.png", + "type": "虚无", + "star": 3, + "access": "常驻", + "characteristic": "攻击减速下角色增伤", + "names": [ + "圆环", + "原环", + "渊还" + ], + "suitRole": [ + "卢卡", + "卡芙卡", + "瓦尔特" + ], + "belongRole": [], + "values": [ + { + "hp": { + "base": 38.4, + "step": 5.76 + }, + "atk": { + "base": 14.4, + "step": 2.16 + }, + "def": { + "base": 12, + "step": 1.8 + } + }, + { + "hp": { + "base": 84.48, + "step": 5.76 + }, + "atk": { + "base": 31.68, + "step": 2.16 + }, + "def": { + "base": 26.4, + "step": 1.8 + } + }, + { + "hp": { + "base": 145.92, + "step": 5.76 + }, + "atk": { + "base": 54.72, + "step": 2.16 + }, + "def": { + "base": 45.6, + "step": 1.8 + } + }, + { + "hp": { + "base": 207.36, + "step": 5.76 + }, + "atk": { + "base": 77.76, + "step": 2.16 + }, + "def": { + "base": 64.8, + "step": 1.8 + } + }, + { + "hp": { + "base": 268.8, + "step": 5.76 + }, + "atk": { + "base": 100.8, + "step": 2.16 + }, + "def": { + "base": 84, + "step": 1.8 + } + }, + { + "hp": { + "base": 330.24, + "step": 5.76 + }, + "atk": { + "base": 123.84, + "step": 2.16 + }, + "def": { + "base": 103.2, + "step": 1.8 + } + }, + { + "hp": { + "base": 391.68, + "step": 5.76 + }, + "atk": { + "base": 146.88, + "step": 2.16 + }, + "def": { + "base": 122.4, + "step": 1.8 + } + } + ], + "fullValues": { + "hp": { + "base": "846.72", + "stop": 5.76 + }, + "atk": { + "base": "317.52", + "stop": 2.16 + }, + "def": { + "base": "264.60", + "stop": 1.8 + } + }, + "attribute": "使装备者对减速状态下的敌方目标造成的伤害提高24%/30%/36%/42%/48%。", + "material": [ + [ + { + "id": "2", + "num": 3000 + }, + { + "id": "112011", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 6000 + }, + { + "id": "110151", + "num": 2 + }, + { + "id": "112011", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 12000 + }, + { + "id": "110152", + "num": 2 + }, + { + "id": "112012", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 30000 + }, + { + "id": "110152", + "num": 4 + }, + { + "id": "112012", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 60000 + }, + { + "id": "110153", + "num": 3 + }, + { + "id": "112013", + "num": 3 + } + ], + [ + { + "id": "2", + "num": 120000 + }, + { + "id": "110153", + "num": 6 + }, + { + "id": "112013", + "num": 5 + } + ], + [] + ], + "params": [ + [ + 0.24 + ], + [ + 0.3 + ], + [ + 0.36 + ], + [ + 0.42 + ], + [ + 0.48 + ] + ], + "skill": "追逼" + }, + "20012": { + "id": "20012", + "name": "轮契", + "rarity": 3, + "path": "Shaman", + "desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\n「没有比这更和谐的声响,人人各就其位,庞大的机器应声而动。」", + "icon": "icon/light_cone/20012.png", + "preview": "image/light_cone_preview/20012.png", + "portrait": "image/light_cone_portrait/20012.png", + "type": "同谐", + "star": 3, + "access": "常驻", + "characteristic": "受击额外充能", + "names": [ + "轮起", + "抡起", + "伦器", + "仑器", + "仑起" + ], + "suitRole": [], + "belongRole": [], + "values": [ + { + "hp": { + "base": 38.4, + "step": 5.76 + }, + "atk": { + "base": 14.4, + "step": 2.16 + }, + "def": { + "base": 12, + "step": 1.8 + } + }, + { + "hp": { + "base": 84.48, + "step": 5.76 + }, + "atk": { + "base": 31.68, + "step": 2.16 + }, + "def": { + "base": 26.4, + "step": 1.8 + } + }, + { + "hp": { + "base": 145.92, + "step": 5.76 + }, + "atk": { + "base": 54.72, + "step": 2.16 + }, + "def": { + "base": 45.6, + "step": 1.8 + } + }, + { + "hp": { + "base": 207.36, + "step": 5.76 + }, + "atk": { + "base": 77.76, + "step": 2.16 + }, + "def": { + "base": 64.8, + "step": 1.8 + } + }, + { + "hp": { + "base": 268.8, + "step": 5.76 + }, + "atk": { + "base": 100.8, + "step": 2.16 + }, + "def": { + "base": 84, + "step": 1.8 + } + }, + { + "hp": { + "base": 330.24, + "step": 5.76 + }, + "atk": { + "base": 123.84, + "step": 2.16 + }, + "def": { + "base": 103.2, + "step": 1.8 + } + }, + { + "hp": { + "base": 391.68, + "step": 5.76 + }, + "atk": { + "base": 146.88, + "step": 2.16 + }, + "def": { + "base": 122.4, + "step": 1.8 + } + } + ], + "fullValues": { + "hp": { + "base": "846.72", + "stop": 5.76 + }, + "atk": { + "base": "317.52", + "stop": 2.16 + }, + "def": { + "base": "264.60", + "stop": 1.8 + } + }, + "attribute": "使装备者施放攻击或受到攻击后,额外恢复4/5/6/7/8点能量,该效果单个回合内不可重复触发。", + "material": [ + [ + { + "id": "2", + "num": 3000 + }, + { + "id": "112001", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 6000 + }, + { + "id": "110161", + "num": 2 + }, + { + "id": "112001", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 12000 + }, + { + "id": "110162", + "num": 2 + }, + { + "id": "112002", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 30000 + }, + { + "id": "110162", + "num": 4 + }, + { + "id": "112002", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 60000 + }, + { + "id": "110163", + "num": 3 + }, + { + "id": "112003", + "num": 3 + } + ], + [ + { + "id": "2", + "num": 120000 + }, + { + "id": "110163", + "num": 6 + }, + { + "id": "112003", + "num": 5 + } + ], + [] + ], + "params": [ + [ + 4 + ], + [ + 5 + ], + [ + 6 + ], + [ + 7 + ], + [ + 8 + ] + ], + "skill": "速决" + }, + "20013": { + "id": "20013", + "name": "灵钥", + "rarity": 3, + "path": "Mage", + "desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\n「知识永远在那门后,而大门的钥匙也不由谁赏赐。谁最想要它,谁就能拥有。」", + "icon": "icon/light_cone/20013.png", + "preview": "image/light_cone_preview/20013.png", + "portrait": "image/light_cone_portrait/20013.png", + "type": "智识", + "star": 3, + "access": "常驻", + "characteristic": "释放战技额外充能", + "names": [ + "灵月", + "灵玥" + ], + "suitRole": [ + "景元", + "姬子", + "青雀", + "黑塔", + "希露瓦", + "开拓者" + ], + "belongRole": [], + "values": [ + { + "hp": { + "base": 33.6, + "step": 5.04 + }, + "atk": { + "base": 16.8, + "step": 2.52 + }, + "def": { + "base": 12, + "step": 1.8 + } + }, + { + "hp": { + "base": 73.92, + "step": 5.04 + }, + "atk": { + "base": 36.96, + "step": 2.52 + }, + "def": { + "base": 26.4, + "step": 1.8 + } + }, + { + "hp": { + "base": 127.68, + "step": 5.04 + }, + "atk": { + "base": 63.84, + "step": 2.52 + }, + "def": { + "base": 45.6, + "step": 1.8 + } + }, + { + "hp": { + "base": 181.44, + "step": 5.04 + }, + "atk": { + "base": 90.72, + "step": 2.52 + }, + "def": { + "base": 64.8, + "step": 1.8 + } + }, + { + "hp": { + "base": 235.2, + "step": 5.04 + }, + "atk": { + "base": 117.6, + "step": 2.52 + }, + "def": { + "base": 84, + "step": 1.8 + } + }, + { + "hp": { + "base": 288.96, + "step": 5.04 + }, + "atk": { + "base": 144.48, + "step": 2.52 + }, + "def": { + "base": 103.2, + "step": 1.8 + } + }, + { + "hp": { + "base": 342.72, + "step": 5.04 + }, + "atk": { + "base": 171.36, + "step": 2.52 + }, + "def": { + "base": 122.4, + "step": 1.8 + } + } + ], + "fullValues": { + "hp": { + "base": "740.88", + "stop": 5.04 + }, + "atk": { + "base": "370.44", + "stop": 2.52 + }, + "def": { + "base": "264.60", + "stop": 1.8 + } + }, + "attribute": "使装备者施放战技后额外恢复8/9/10/11/12点能量,该效果单个回合内不可重复触发。", + "material": [ + [ + { + "id": "2", + "num": 3000 + }, + { + "id": "111001", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 6000 + }, + { + "id": "110131", + "num": 2 + }, + { + "id": "111001", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 12000 + }, + { + "id": "110132", + "num": 2 + }, + { + "id": "111002", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 30000 + }, + { + "id": "110132", + "num": 4 + }, + { + "id": "111002", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 60000 + }, + { + "id": "110133", + "num": 3 + }, + { + "id": "111003", + "num": 3 + } + ], + [ + { + "id": "2", + "num": 120000 + }, + { + "id": "110133", + "num": 6 + }, + { + "id": "111003", + "num": 5 + } + ], + [] + ], + "params": [ + [ + 8 + ], + [ + 9 + ], + [ + 10 + ], + [ + 11 + ], + [ + 12 + ] + ], + "skill": "顿悟" + }, + "20014": { + "id": "20014", + "name": "相抗", + "rarity": 3, + "path": "Rogue", + "desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\n「为自由而战的人不会死,他的故事将被永远传唱。」", + "icon": "icon/light_cone/20014.png", + "preview": "image/light_cone_preview/20014.png", + "portrait": "image/light_cone_portrait/20014.png", + "type": "巡猎", + "star": 3, + "access": "常驻", + "characteristic": "击杀加速", + "names": [ + "抵抗", + "相扛", + "相杭", + "相亢" + ], + "suitRole": [ + "希儿", + "彦卿", + "丹恒", + "素裳", + "开拓者" + ], + "belongRole": [], + "values": [ + { + "hp": { + "base": 33.6, + "step": 5.04 + }, + "atk": { + "base": 16.8, + "step": 2.52 + }, + "def": { + "base": 12, + "step": 1.8 + } + }, + { + "hp": { + "base": 73.92, + "step": 5.04 + }, + "atk": { + "base": 36.96, + "step": 2.52 + }, + "def": { + "base": 26.4, + "step": 1.8 + } + }, + { + "hp": { + "base": 127.68, + "step": 5.04 + }, + "atk": { + "base": 63.84, + "step": 2.52 + }, + "def": { + "base": 45.6, + "step": 1.8 + } + }, + { + "hp": { + "base": 181.44, + "step": 5.04 + }, + "atk": { + "base": 90.72, + "step": 2.52 + }, + "def": { + "base": 64.8, + "step": 1.8 + } + }, + { + "hp": { + "base": 235.2, + "step": 5.04 + }, + "atk": { + "base": 117.6, + "step": 2.52 + }, + "def": { + "base": 84, + "step": 1.8 + } + }, + { + "hp": { + "base": 288.96, + "step": 5.04 + }, + "atk": { + "base": 144.48, + "step": 2.52 + }, + "def": { + "base": 103.2, + "step": 1.8 + } + }, + { + "hp": { + "base": 342.72, + "step": 5.04 + }, + "atk": { + "base": 171.36, + "step": 2.52 + }, + "def": { + "base": 122.4, + "step": 1.8 + } + } + ], + "fullValues": { + "hp": { + "base": "740.88", + "stop": 5.04 + }, + "atk": { + "base": "370.44", + "stop": 2.52 + }, + "def": { + "base": "264.60", + "stop": 1.8 + } + }, + "attribute": "使装备者在消灭敌方目标后,速度提高span class='text-num'>10%/12%/14%/16%/18%,持续2回合。", + "material": [ + [ + { + "id": "2", + "num": 3000 + }, + { + "id": "112011", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 6000 + }, + { + "id": "110121", + "num": 2 + }, + { + "id": "112011", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 12000 + }, + { + "id": "110122", + "num": 2 + }, + { + "id": "112012", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 30000 + }, + { + "id": "110122", + "num": 4 + }, + { + "id": "112012", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 60000 + }, + { + "id": "110123", + "num": 3 + }, + { + "id": "112013", + "num": 3 + } + ], + [ + { + "id": "2", + "num": 120000 + }, + { + "id": "110123", + "num": 6 + }, + { + "id": "112013", + "num": 5 + } + ], + [] + ], + "params": [ + [ + 0.1, + 2 + ], + [ + 0.12, + 2 + ], + [ + 0.14, + 2 + ], + [ + 0.16, + 2 + ], + [ + 0.18, + 2 + ] + ], + "skill": "联盟" + }, + "20015": { + "id": "20015", + "name": "蕃息", + "rarity": 3, + "path": "Priest", + "desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\n「当生命失却意蕴时,请继续赐以生命。」", + "icon": "icon/light_cone/20015.png", + "preview": "image/light_cone_preview/20015.png", + "portrait": "image/light_cone_portrait/20015.png", + "type": "丰饶", + "star": 3, + "access": "常驻", + "characteristic": "普攻造成行动提前", + "names": [ + "番息", + "潘息", + "返息", + "番西" + ], + "suitRole": [ + "白露", + "娜塔莎", + "罗刹", + "开拓者" + ], + "belongRole": [], + "values": [ + { + "hp": { + "base": 43.2, + "step": 6.48 + }, + "atk": { + "base": 14.4, + "step": 2.16 + }, + "def": { + "base": 9, + "step": 1.35 + } + }, + { + "hp": { + "base": 95.04, + "step": 6.48 + }, + "atk": { + "base": 31.68, + "step": 2.16 + }, + "def": { + "base": 19.8, + "step": 1.35 + } + }, + { + "hp": { + "base": 164.16, + "step": 6.48 + }, + "atk": { + "base": 54.72, + "step": 2.16 + }, + "def": { + "base": 34.2, + "step": 1.35 + } + }, + { + "hp": { + "base": 233.28, + "step": 6.48 + }, + "atk": { + "base": 77.76, + "step": 2.16 + }, + "def": { + "base": 48.6, + "step": 1.35 + } + }, + { + "hp": { + "base": 302.4, + "step": 6.48 + }, + "atk": { + "base": 100.8, + "step": 2.16 + }, + "def": { + "base": 63, + "step": 1.35 + } + }, + { + "hp": { + "base": 371.52, + "step": 6.48 + }, + "atk": { + "base": 123.84, + "step": 2.16 + }, + "def": { + "base": 77.4, + "step": 1.35 + } + }, + { + "hp": { + "base": 440.64, + "step": 6.48 + }, + "atk": { + "base": 146.88, + "step": 2.16 + }, + "def": { + "base": 91.8, + "step": 1.35 + } + } + ], + "fullValues": { + "hp": { + "base": "952.56", + "stop": 6.48 + }, + "atk": { + "base": "317.52", + "stop": 2.16 + }, + "def": { + "base": "198.45", + "stop": 1.35 + } + }, + "attribute": "当装备者施放普攻后,使下一次行动提前12%/14%/16%/18%/20%。", + "material": [ + [ + { + "id": "2", + "num": 3000 + }, + { + "id": "113001", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 6000 + }, + { + "id": "110171", + "num": 2 + }, + { + "id": "113001", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 12000 + }, + { + "id": "110172", + "num": 2 + }, + { + "id": "113002", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 30000 + }, + { + "id": "110172", + "num": 4 + }, + { + "id": "113002", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 60000 + }, + { + "id": "110173", + "num": 3 + }, + { + "id": "113003", + "num": 3 + } + ], + [ + { + "id": "2", + "num": 120000 + }, + { + "id": "110173", + "num": 6 + }, + { + "id": "113003", + "num": 5 + } + ], + [] + ], + "params": [ + [ + 0.12 + ], + [ + 0.14 + ], + [ + 0.16 + ], + [ + 0.18 + ], + [ + 0.2 + ] + ], + "skill": "丰饶民" + }, + "20016": { + "id": "20016", + "name": "俱役", + "rarity": 3, + "path": "Warrior", + "desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\n「如何使星球的过往更完美?现在,立刻,撕碎它。」", + "icon": "icon/light_cone/20016.png", + "preview": "image/light_cone_preview/20016.png", + "portrait": "image/light_cone_portrait/20016.png", + "type": "毁灭", + "star": 3, + "access": "常驻", + "characteristic": "生命值<80%,提高攻击力", + "names": [ + "具殁", + "具揖", + "具役", + "俱役" + ], + "suitRole": [ + "刃", + "克拉拉", + "虎克", + "阿兰", + "开拓者" + ], + "belongRole": [], + "values": [ + { + "hp": { + "base": 38.4, + "step": 5.76 + }, + "atk": { + "base": 16.8, + "step": 2.52 + }, + "def": { + "base": 9, + "step": 1.35 + } + }, + { + "hp": { + "base": 84.48, + "step": 5.76 + }, + "atk": { + "base": 36.96, + "step": 2.52 + }, + "def": { + "base": 19.8, + "step": 1.35 + } + }, + { + "hp": { + "base": 145.92, + "step": 5.76 + }, + "atk": { + "base": 63.84, + "step": 2.52 + }, + "def": { + "base": 34.2, + "step": 1.35 + } + }, + { + "hp": { + "base": 207.36, + "step": 5.76 + }, + "atk": { + "base": 90.72, + "step": 2.52 + }, + "def": { + "base": 48.6, + "step": 1.35 + } + }, + { + "hp": { + "base": 268.8, + "step": 5.76 + }, + "atk": { + "base": 117.6, + "step": 2.52 + }, + "def": { + "base": 63, + "step": 1.35 + } + }, + { + "hp": { + "base": 330.24, + "step": 5.76 + }, + "atk": { + "base": 144.48, + "step": 2.52 + }, + "def": { + "base": 77.4, + "step": 1.35 + } + }, + { + "hp": { + "base": 391.68, + "step": 5.76 + }, + "atk": { + "base": 171.36, + "step": 2.52 + }, + "def": { + "base": 91.8, + "step": 1.35 + } + } + ], + "fullValues": { + "hp": { + "base": "846.72", + "stop": 5.76 + }, + "atk": { + "base": "370.44", + "stop": 2.52 + }, + "def": { + "base": "198.45", + "stop": 1.35 + } + }, + "attribute": "装备者当前生命值百分比小于80%时,暴击率提高12%/15%/18%/21%/24%。", + "material": [ + [ + { + "id": "2", + "num": 3000 + }, + { + "id": "112001", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 6000 + }, + { + "id": "110111", + "num": 2 + }, + { + "id": "112001", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 12000 + }, + { + "id": "110112", + "num": 2 + }, + { + "id": "112002", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 30000 + }, + { + "id": "110112", + "num": 4 + }, + { + "id": "112002", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 60000 + }, + { + "id": "110113", + "num": 3 + }, + { + "id": "112003", + "num": 3 + } + ], + [ + { + "id": "2", + "num": 120000 + }, + { + "id": "110113", + "num": 6 + }, + { + "id": "112003", + "num": 5 + } + ], + [] + ], + "params": [ + [ + 0.8, + 0.12 + ], + [ + 0.8, + 0.15 + ], + [ + 0.8, + 0.18 + ], + [ + 0.8, + 0.21 + ], + [ + 0.8, + 0.24 + ] + ], + "skill": "军团" + }, + "20017": { + "id": "20017", + "name": "开疆", + "rarity": 3, + "path": "Knight", + "desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\n「无靠无依的时日已落场,公司将与诸位携手相助。」", + "icon": "icon/light_cone/20017.png", + "preview": "image/light_cone_preview/20017.png", + "portrait": "image/light_cone_portrait/20017.png", + "type": "存护", + "star": 3, + "access": "常驻", + "characteristic": "击破弱点后恢复生命值", + "names": [ + "开僵", + "开缰", + "开殭" + ], + "suitRole": [ + "杰帕德", + "三月七", + "开拓者" + ], + "belongRole": [], + "values": [ + { + "hp": { + "base": 43.2, + "step": 6.48 + }, + "atk": { + "base": 12, + "step": 1.8 + }, + "def": { + "base": 12, + "step": 1.8 + } + }, + { + "hp": { + "base": 95.04, + "step": 6.48 + }, + "atk": { + "base": 26.4, + "step": 1.8 + }, + "def": { + "base": 26.4, + "step": 1.8 + } + }, + { + "hp": { + "base": 164.16, + "step": 6.48 + }, + "atk": { + "base": 45.6, + "step": 1.8 + }, + "def": { + "base": 45.6, + "step": 1.8 + } + }, + { + "hp": { + "base": 233.28, + "step": 6.48 + }, + "atk": { + "base": 64.8, + "step": 1.8 + }, + "def": { + "base": 64.8, + "step": 1.8 + } + }, + { + "hp": { + "base": 302.4, + "step": 6.48 + }, + "atk": { + "base": 84, + "step": 1.8 + }, + "def": { + "base": 84, + "step": 1.8 + } + }, + { + "hp": { + "base": 371.52, + "step": 6.48 + }, + "atk": { + "base": 103.2, + "step": 1.8 + }, + "def": { + "base": 103.2, + "step": 1.8 + } + }, + { + "hp": { + "base": 440.64, + "step": 6.48 + }, + "atk": { + "base": 122.4, + "step": 1.8 + }, + "def": { + "base": 122.4, + "step": 1.8 + } + } + ], + "fullValues": { + "hp": { + "base": "952.56", + "stop": 6.48 + }, + "atk": { + "base": "264.60", + "stop": 1.8 + }, + "def": { + "base": "264.60", + "stop": 1.8 + } + }, + "attribute": "当装备者击破敌方目标的弱点时,回复等同于自身生命上限12%/14%/16%/18%/20%的生命值。", + "material": [ + [ + { + "id": "2", + "num": 3000 + }, + { + "id": "111001", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 6000 + }, + { + "id": "110141", + "num": 2 + }, + { + "id": "111001", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 12000 + }, + { + "id": "110142", + "num": 2 + }, + { + "id": "111002", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 30000 + }, + { + "id": "110142", + "num": 4 + }, + { + "id": "111002", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 60000 + }, + { + "id": "110143", + "num": 3 + }, + { + "id": "111003", + "num": 3 + } + ], + [ + { + "id": "2", + "num": 120000 + }, + { + "id": "110143", + "num": 6 + }, + { + "id": "111003", + "num": 5 + } + ], + [] + ], + "params": [ + [ + 0.12 + ], + [ + 0.14 + ], + [ + 0.16 + ], + [ + 0.18 + ], + [ + 0.2 + ] + ], + "skill": "公司" + }, + "20018": { + "id": "20018", + "name": "匿影", + "rarity": 3, + "path": "Warlock", + "desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\n「虚无也许会找到我们,但它很可能不会。」", + "icon": "icon/light_cone/20018.png", + "preview": "image/light_cone_preview/20018.png", + "portrait": "image/light_cone_portrait/20018.png", + "type": "虚无", + "star": 3, + "access": "常驻", + "characteristic": "释放战技附加伤害", + "names": [ + "旎影", + "若影" + ], + "suitRole": [ + "卢卡", + "卡芙卡", + "瓦尔特", + "桑博", + "佩拉", + "开拓者" + ], + "belongRole": [], + "values": [ + { + "hp": { + "base": 38.4, + "step": 5.76 + }, + "atk": { + "base": 14.4, + "step": 2.16 + }, + "def": { + "base": 12, + "step": 1.8 + } + }, + { + "hp": { + "base": 84.48, + "step": 5.76 + }, + "atk": { + "base": 31.68, + "step": 2.16 + }, + "def": { + "base": 26.4, + "step": 1.8 + } + }, + { + "hp": { + "base": 145.92, + "step": 5.76 + }, + "atk": { + "base": 54.72, + "step": 2.16 + }, + "def": { + "base": 45.6, + "step": 1.8 + } + }, + { + "hp": { + "base": 207.36, + "step": 5.76 + }, + "atk": { + "base": 77.76, + "step": 2.16 + }, + "def": { + "base": 64.8, + "step": 1.8 + } + }, + { + "hp": { + "base": 268.8, + "step": 5.76 + }, + "atk": { + "base": 100.8, + "step": 2.16 + }, + "def": { + "base": 84, + "step": 1.8 + } + }, + { + "hp": { + "base": 330.24, + "step": 5.76 + }, + "atk": { + "base": 123.84, + "step": 2.16 + }, + "def": { + "base": 103.2, + "step": 1.8 + } + }, + { + "hp": { + "base": 391.68, + "step": 5.76 + }, + "atk": { + "base": 146.88, + "step": 2.16 + }, + "def": { + "base": 122.4, + "step": 1.8 + } + } + ], + "fullValues": { + "hp": { + "base": "846.72", + "stop": 5.76 + }, + "atk": { + "base": "317.52", + "stop": 2.16 + }, + "def": { + "base": "264.60", + "stop": 1.8 + } + }, + "attribute": "施放战技后,使装备者的下一次普攻对敌方目标造成等同于自身60%/75%/90%/105%/120%攻击力的附加伤害。", + "material": [ + [ + { + "id": "2", + "num": 3000 + }, + { + "id": "113011", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 6000 + }, + { + "id": "110151", + "num": 2 + }, + { + "id": "113011", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 12000 + }, + { + "id": "110152", + "num": 2 + }, + { + "id": "113012", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 30000 + }, + { + "id": "110152", + "num": 4 + }, + { + "id": "113012", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 60000 + }, + { + "id": "110153", + "num": 3 + }, + { + "id": "113013", + "num": 3 + } + ], + [ + { + "id": "2", + "num": 120000 + }, + { + "id": "110153", + "num": 6 + }, + { + "id": "113013", + "num": 5 + } + ], + [] + ], + "params": [ + [ + 0.6 + ], + [ + 0.75 + ], + [ + 0.9 + ], + [ + 1.05 + ], + [ + 1.2 + ] + ], + "skill": "机关" + }, + "20019": { + "id": "20019", + "name": "调和", + "rarity": 3, + "path": "Shaman", + "desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\n「还有什么比消除不谐音律更愉快的事么?」", + "icon": "icon/light_cone/20019.png", + "preview": "image/light_cone_preview/20019.png", + "portrait": "image/light_cone_portrait/20019.png", + "type": "同谐", + "star": 3, + "access": "常驻", + "characteristic": "战斗开始时,群体加速", + "names": [ + "跳河", + "调合", + "调颌", + "凋和" + ], + "suitRole": [ + "布洛妮娅", + "停云", + "艾丝妲", + "开拓者" + ], + "belongRole": [], + "values": [ + { + "hp": { + "base": 38.4, + "step": 5.76 + }, + "atk": { + "base": 14.4, + "step": 2.16 + }, + "def": { + "base": 12, + "step": 1.8 + } + }, + { + "hp": { + "base": 84.48, + "step": 5.76 + }, + "atk": { + "base": 31.68, + "step": 2.16 + }, + "def": { + "base": 26.4, + "step": 1.8 + } + }, + { + "hp": { + "base": 145.92, + "step": 5.76 + }, + "atk": { + "base": 54.72, + "step": 2.16 + }, + "def": { + "base": 45.6, + "step": 1.8 + } + }, + { + "hp": { + "base": 207.36, + "step": 5.76 + }, + "atk": { + "base": 77.76, + "step": 2.16 + }, + "def": { + "base": 64.8, + "step": 1.8 + } + }, + { + "hp": { + "base": 268.8, + "step": 5.76 + }, + "atk": { + "base": 100.8, + "step": 2.16 + }, + "def": { + "base": 84, + "step": 1.8 + } + }, + { + "hp": { + "base": 330.24, + "step": 5.76 + }, + "atk": { + "base": 123.84, + "step": 2.16 + }, + "def": { + "base": 103.2, + "step": 1.8 + } + }, + { + "hp": { + "base": 391.68, + "step": 5.76 + }, + "atk": { + "base": 146.88, + "step": 2.16 + }, + "def": { + "base": 122.4, + "step": 1.8 + } + } + ], + "fullValues": { + "hp": { + "base": "846.72", + "stop": 5.76 + }, + "atk": { + "base": "317.52", + "stop": 2.16 + }, + "def": { + "base": "264.60", + "stop": 1.8 + } + }, + "attribute": "进入战斗时,我方全体速度提高12/14/16/18/20,持续1回合。", + "material": [ + [ + { + "id": "2", + "num": 3000 + }, + { + "id": "111001", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 6000 + }, + { + "id": "110161", + "num": 2 + }, + { + "id": "111001", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 12000 + }, + { + "id": "110162", + "num": 2 + }, + { + "id": "111002", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 30000 + }, + { + "id": "110162", + "num": 4 + }, + { + "id": "111002", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 60000 + }, + { + "id": "110163", + "num": 3 + }, + { + "id": "111003", + "num": 3 + } + ], + [ + { + "id": "2", + "num": 120000 + }, + { + "id": "110163", + "num": 6 + }, + { + "id": "111003", + "num": 5 + } + ], + [] + ], + "params": [ + [ + 12, + 1 + ], + [ + 14, + 1 + ], + [ + 16, + 1 + ], + [ + 18, + 1 + ], + [ + 20, + 1 + ] + ], + "skill": "家族" + }, + "20020": { + "id": "20020", + "name": "睿见", + "rarity": 3, + "path": "Mage", + "desc": "自时光中凝取的稀薄力量。正是所有微不足道的刹那,编织成了壮绝的命运。\n「智慧之人如果无法抛弃人的身份,则会被智慧抛弃。」", + "icon": "icon/light_cone/20020.png", + "preview": "image/light_cone_preview/20020.png", + "portrait": "image/light_cone_portrait/20020.png", + "type": "智识", + "star": 3, + "access": "常驻", + "characteristic": "释放终结技时提高攻击力", + "names": [ + "叡见", + "瑞见", + "锐见" + ], + "suitRole": [ + "景元", + "姬子", + "青雀", + "黑塔", + "希露瓦", + "开拓者" + ], + "belongRole": [], + "values": [ + { + "hp": { + "base": 33.6, + "step": 5.04 + }, + "atk": { + "base": 16.8, + "step": 2.52 + }, + "def": { + "base": 12, + "step": 1.8 + } + }, + { + "hp": { + "base": 73.92, + "step": 5.04 + }, + "atk": { + "base": 36.96, + "step": 2.52 + }, + "def": { + "base": 26.4, + "step": 1.8 + } + }, + { + "hp": { + "base": 127.68, + "step": 5.04 + }, + "atk": { + "base": 63.84, + "step": 2.52 + }, + "def": { + "base": 45.6, + "step": 1.8 + } + }, + { + "hp": { + "base": 181.44, + "step": 5.04 + }, + "atk": { + "base": 90.72, + "step": 2.52 + }, + "def": { + "base": 64.8, + "step": 1.8 + } + }, + { + "hp": { + "base": 235.2, + "step": 5.04 + }, + "atk": { + "base": 117.6, + "step": 2.52 + }, + "def": { + "base": 84, + "step": 1.8 + } + }, + { + "hp": { + "base": 288.96, + "step": 5.04 + }, + "atk": { + "base": 144.48, + "step": 2.52 + }, + "def": { + "base": 103.2, + "step": 1.8 + } + }, + { + "hp": { + "base": 342.72, + "step": 5.04 + }, + "atk": { + "base": 171.36, + "step": 2.52 + }, + "def": { + "base": 122.4, + "step": 1.8 + } + } + ], + "fullValues": { + "hp": { + "base": "740.88", + "stop": 5.04 + }, + "atk": { + "base": "370.44", + "stop": 2.52 + }, + "def": { + "base": "264.60", + "stop": 1.8 + } + }, + "attribute": "当装备者施放终结技时,攻击力提高24%/30%/36%/42%/48%,持续2回合。", + "material": [ + [ + { + "id": "2", + "num": 3000 + }, + { + "id": "111011", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 6000 + }, + { + "id": "110131", + "num": 2 + }, + { + "id": "111011", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 12000 + }, + { + "id": "110132", + "num": 2 + }, + { + "id": "111012", + "num": 4 + } + ], + [ + { + "id": "2", + "num": 30000 + }, + { + "id": "110132", + "num": 4 + }, + { + "id": "111012", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 60000 + }, + { + "id": "110133", + "num": 3 + }, + { + "id": "111013", + "num": 3 + } + ], + [ + { + "id": "2", + "num": 120000 + }, + { + "id": "110133", + "num": 6 + }, + { + "id": "111013", + "num": 5 + } + ], + [] + ], + "params": [ + [ + 0.24, + 2 + ], + [ + 0.3, + 2 + ], + [ + 0.36, + 2 + ], + [ + 0.42, + 2 + ], + [ + 0.48, + 2 + ] + ], + "skill": "天才" + }, + "21000": { + "id": "21000", + "name": "一场术后对话", + "rarity": 4, + "path": "Priest", + "desc": "「你醒了…谢谢。」\n「你…救了我…娜塔莎。该说谢谢的人…是我。」\n「不,是我要感谢你……坚持到我完成手术。」\n医生与病人疲惫地相视一笑,再也没有说话。", + "icon": "icon/light_cone/21000.png", + "preview": "image/light_cone_preview/21000.png", + "portrait": "image/light_cone_portrait/21000.png", + "type": "丰饶", + "star": 4, + "access": "常驻", + "characteristic": "能量回复效率提高、终结技治疗量提高", + "names": [ + "术后对话", + "手术后对话", + "一场手术对话", + "一场手术后的对话" + ], + "suitRole": [ + "白露", + "娜塔莎", + "罗刹", + "开拓者" + ], + "belongRole": [ + "娜塔莎" + ], + "values": [ + { + "hp": { + "base": 48, + "step": 7.2 + }, + "atk": { + "base": 19.2, + "step": 2.88 + }, + "def": { + "base": 15, + "step": 2.25 + } + }, + { + "hp": { + "base": 105.6, + "step": 7.2 + }, + "atk": { + "base": 42.24, + "step": 2.88 + }, + "def": { + "base": 33, + "step": 2.25 + } + }, + { + "hp": { + "base": 182.4, + "step": 7.2 + }, + "atk": { + "base": 72.96, + "step": 2.88 + }, + "def": { + "base": 57, + "step": 2.25 + } + }, + { + "hp": { + "base": 259.2, + "step": 7.2 + }, + "atk": { + "base": 103.68, + "step": 2.88 + }, + "def": { + "base": 81, + "step": 2.25 + } + }, + { + "hp": { + "base": 336, + "step": 7.2 + }, + "atk": { + "base": 134.4, + "step": 2.88 + }, + "def": { + "base": 105, + "step": 2.25 + } + }, + { + "hp": { + "base": 412.8, + "step": 7.2 + }, + "atk": { + "base": 165.12, + "step": 2.88 + }, + "def": { + "base": 129, + "step": 2.25 + } + }, + { + "hp": { + "base": 489.6, + "step": 7.2 + }, + "atk": { + "base": 195.84, + "step": 2.88 + }, + "def": { + "base": 153, + "step": 2.25 + } + } + ], + "fullValues": { + "hp": { + "base": "1058.40", + "stop": 7.2 + }, + "atk": { + "base": "423.36", + "stop": 2.88 + }, + "def": { + "base": "330.75", + "stop": 2.25 + } + }, + "attribute": "使装备者的能量恢复效率提高8%/10%/12%/14%/16%,并在施放终结技时治疗量提高12%/15%/18%/21%/24%。", + "material": [ + [ + { + "id": "2", + "num": 4000 + }, + { + "id": "111001", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 8000 + }, + { + "id": "110171", + "num": 3 + }, + { + "id": "111001", + "num": 10 + } + ], + [ + { + "id": "2", + "num": 16000 + }, + { + "id": "110172", + "num": 3 + }, + { + "id": "111002", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 40000 + }, + { + "id": "110172", + "num": 6 + }, + { + "id": "111002", + "num": 9 + } + ], + [ + { + "id": "2", + "num": 80000 + }, + { + "id": "110173", + "num": 4 + }, + { + "id": "111003", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 160000 + }, + { + "id": "110173", + "num": 8 + }, + { + "id": "111003", + "num": 7 + } + ], + [] + ], + "params": [ + [ + 0.08, + 0.12 + ], + [ + 0.1, + 0.15 + ], + [ + 0.12, + 0.18 + ], + [ + 0.14, + 0.21 + ], + [ + 0.16, + 0.24 + ] + ], + "skill": "互相治愈" + }, + "21001": { + "id": "21001", + "name": "晚安与睡颜", + "rarity": 4, + "path": "Warlock", + "desc": "静谧的灯光勾勒出尘埃的轨迹,\n平稳的呼吸里有少女香甜的梦呓。\n一个人影出现在她身后,悄无声息。\n「啧啧啧,果然还是摘掉眼镜比较可爱嘛。」\n吉他手端详着她的睡颜喃喃自语:\n「晚安,爱操心的天才少女。」", + "icon": "icon/light_cone/21001.png", + "preview": "image/light_cone_preview/21001.png", + "portrait": "image/light_cone_portrait/21001.png", + "type": "虚无", + "star": 4, + "access": "常驻", + "characteristic": "负面效果下造成伤害提高", + "names": [ + "晚安和睡颜", + "晚安", + "睡颜", + "晚安睡颜" + ], + "suitRole": [ + "卢卡", + "卡芙卡", + "瓦尔特", + "桑博", + "佩拉", + "开拓者" + ], + "belongRole": [ + "佩拉" + ], + "values": [ + { + "hp": { + "base": 43.2, + "step": 6.48 + }, + "atk": { + "base": 21.6, + "step": 3.24 + }, + "def": { + "base": 15, + "step": 2.25 + } + }, + { + "hp": { + "base": 95.04, + "step": 6.48 + }, + "atk": { + "base": 47.52, + "step": 3.24 + }, + "def": { + "base": 33, + "step": 2.25 + } + }, + { + "hp": { + "base": 164.16, + "step": 6.48 + }, + "atk": { + "base": 82.08, + "step": 3.24 + }, + "def": { + "base": 57, + "step": 2.25 + } + }, + { + "hp": { + "base": 233.28, + "step": 6.48 + }, + "atk": { + "base": 116.64, + "step": 3.24 + }, + "def": { + "base": 81, + "step": 2.25 + } + }, + { + "hp": { + "base": 302.4, + "step": 6.48 + }, + "atk": { + "base": 151.2, + "step": 3.24 + }, + "def": { + "base": 105, + "step": 2.25 + } + }, + { + "hp": { + "base": 371.52, + "step": 6.48 + }, + "atk": { + "base": 185.76, + "step": 3.24 + }, + "def": { + "base": 129, + "step": 2.25 + } + }, + { + "hp": { + "base": 440.64, + "step": 6.48 + }, + "atk": { + "base": 220.32, + "step": 3.24 + }, + "def": { + "base": 153, + "step": 2.25 + } + } + ], + "fullValues": { + "hp": { + "base": "952.56", + "stop": 6.48 + }, + "atk": { + "base": "476.28", + "stop": 3.24 + }, + "def": { + "base": "330.75", + "stop": 2.25 + } + }, + "attribute": "敌方目标每承受1个负面效果,装备者对其造成的伤害提高12%/15%/18%/21%/24%,最多叠加3层。该效果对持续伤害也会生效。", + "material": [ + [ + { + "id": "2", + "num": 4000 + }, + { + "id": "112001", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 8000 + }, + { + "id": "110151", + "num": 3 + }, + { + "id": "112001", + "num": 10 + } + ], + [ + { + "id": "2", + "num": 16000 + }, + { + "id": "110152", + "num": 3 + }, + { + "id": "112002", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 40000 + }, + { + "id": "110152", + "num": 6 + }, + { + "id": "112002", + "num": 9 + } + ], + [ + { + "id": "2", + "num": 80000 + }, + { + "id": "110153", + "num": 4 + }, + { + "id": "112003", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 160000 + }, + { + "id": "110153", + "num": 8 + }, + { + "id": "112003", + "num": 7 + } + ], + [] + ], + "params": [ + [ + 0.12, + 3 + ], + [ + 0.15, + 3 + ], + [ + 0.18, + 3 + ], + [ + 0.21, + 3 + ], + [ + 0.24, + 3 + ] + ], + "skill": "劳碌者" + }, + "21002": { + "id": "21002", + "name": "余生的第一天", + "rarity": 4, + "path": "Knight", + "desc": "「今天帕姆换上了新衣服,开心~喜欢~」\n「今天过生日啦,今年的我依旧可爱。」\n「今天我终于终于终于也有后辈啦!是不是,{NICKNAME}?」\n一次次不假思索地按下快门。\n是为了抓住当时的快乐?\n还是抓住当时的自己?", + "icon": "icon/light_cone/21002.png", + "preview": "image/light_cone_preview/21002.png", + "portrait": "image/light_cone_portrait/21002.png", + "type": "存护", + "star": 4, + "access": "常驻", + "characteristic": "群体伤害抗性提高", + "names": [ + "余生第一天", + "余生的一天", + "余生一天", + "余下的第一天", + "余下第一天" + ], + "suitRole": [ + "杰帕德", + "三月七", + "开拓者" + ], + "belongRole": [ + "三月七" + ], + "values": [ + { + "hp": { + "base": 43.2, + "step": 6.48 + }, + "atk": { + "base": 16.8, + "step": 2.52 + }, + "def": { + "base": 21, + "step": 3.15 + } + }, + { + "hp": { + "base": 95.04, + "step": 6.48 + }, + "atk": { + "base": 36.96, + "step": 2.52 + }, + "def": { + "base": 46.2, + "step": 3.15 + } + }, + { + "hp": { + "base": 164.16, + "step": 6.48 + }, + "atk": { + "base": 63.84, + "step": 2.52 + }, + "def": { + "base": 79.8, + "step": 3.15 + } + }, + { + "hp": { + "base": 233.28, + "step": 6.48 + }, + "atk": { + "base": 90.72, + "step": 2.52 + }, + "def": { + "base": 113.4, + "step": 3.15 + } + }, + { + "hp": { + "base": 302.4, + "step": 6.48 + }, + "atk": { + "base": 117.6, + "step": 2.52 + }, + "def": { + "base": 147, + "step": 3.15 + } + }, + { + "hp": { + "base": 371.52, + "step": 6.48 + }, + "atk": { + "base": 144.48, + "step": 2.52 + }, + "def": { + "base": 180.6, + "step": 3.15 + } + }, + { + "hp": { + "base": 440.64, + "step": 6.48 + }, + "atk": { + "base": 171.36, + "step": 2.52 + }, + "def": { + "base": 214.2, + "step": 3.15 + } + } + ], + "fullValues": { + "hp": { + "base": "952.56", + "stop": 6.48 + }, + "atk": { + "base": "370.44", + "stop": 2.52 + }, + "def": { + "base": "463.05", + "stop": 3.15 + } + }, + "attribute": "使装备者的防御力提高16%/18%/20%/22%/24%。进入战斗后,使我方全体的伤害抗性提高8%/9%/10%/11%/12%。同类技能无法重复生效。", + "material": [ + [ + { + "id": "2", + "num": 4000 + }, + { + "id": "111001", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 8000 + }, + { + "id": "110141", + "num": 3 + }, + { + "id": "111001", + "num": 10 + } + ], + [ + { + "id": "2", + "num": 16000 + }, + { + "id": "110142", + "num": 3 + }, + { + "id": "111002", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 40000 + }, + { + "id": "110142", + "num": 6 + }, + { + "id": "111002", + "num": 9 + } + ], + [ + { + "id": "2", + "num": 80000 + }, + { + "id": "110143", + "num": 4 + }, + { + "id": "111003", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 160000 + }, + { + "id": "110143", + "num": 8 + }, + { + "id": "111003", + "num": 7 + } + ], + [] + ], + "params": [ + [ + 0.16, + 0.08 + ], + [ + 0.18, + 0.09 + ], + [ + 0.2, + 0.1 + ], + [ + 0.22, + 0.11 + ], + [ + 0.24, + 0.12 + ] + ], + "skill": "此刻定格" + }, + "21003": { + "id": "21003", + "name": "唯有沉默", + "rarity": 4, + "path": "Rogue", + "desc": "「已经到站了,不下车吗?」\n头顶传来一声轻笑。他的眼睛动了动,没有抬头。\n「事先说明,小三月总说你面无表情,我可不这么觉得。」\n「列车智库的数据有更新输入的痕迹,但是却没保存结果。」\n「所以…哪个条目还能难住你?」\n他捏紧了笔,看着笔记本上那个仅凭印象复写而成的惨烈之景。\n「原来如此,是关于你自己的事……」", + "icon": "icon/light_cone/21003.png", + "preview": "image/light_cone_preview/21003.png", + "portrait": "image/light_cone_portrait/21003.png", + "type": "巡猎", + "star": 4, + "access": "常驻", + "characteristic": "场上敌人数<2时,暴击率提高", + "names": [ + "沉默", + "只有沉默", + "惟有沉默" + ], + "suitRole": [ + "希儿", + "彦卿", + "丹恒", + "素裳", + "开拓者" + ], + "belongRole": [ + "丹恒" + ], + "values": [ + { + "hp": { + "base": 43.2, + "step": 6.48 + }, + "atk": { + "base": 21.6, + "step": 3.24 + }, + "def": { + "base": 15, + "step": 2.25 + } + }, + { + "hp": { + "base": 95.04, + "step": 6.48 + }, + "atk": { + "base": 47.52, + "step": 3.24 + }, + "def": { + "base": 33, + "step": 2.25 + } + }, + { + "hp": { + "base": 164.16, + "step": 6.48 + }, + "atk": { + "base": 82.08, + "step": 3.24 + }, + "def": { + "base": 57, + "step": 2.25 + } + }, + { + "hp": { + "base": 233.28, + "step": 6.48 + }, + "atk": { + "base": 116.64, + "step": 3.24 + }, + "def": { + "base": 81, + "step": 2.25 + } + }, + { + "hp": { + "base": 302.4, + "step": 6.48 + }, + "atk": { + "base": 151.2, + "step": 3.24 + }, + "def": { + "base": 105, + "step": 2.25 + } + }, + { + "hp": { + "base": 371.52, + "step": 6.48 + }, + "atk": { + "base": 185.76, + "step": 3.24 + }, + "def": { + "base": 129, + "step": 2.25 + } + }, + { + "hp": { + "base": 440.64, + "step": 6.48 + }, + "atk": { + "base": 220.32, + "step": 3.24 + }, + "def": { + "base": 153, + "step": 2.25 + } + } + ], + "fullValues": { + "hp": { + "base": "952.56", + "stop": 6.48 + }, + "atk": { + "base": "476.28", + "stop": 3.24 + }, + "def": { + "base": "330.75", + "stop": 2.25 + } + }, + "attribute": "使装备者的攻击力提高16%/20%/24%/28%/32%。当场上的敌方目标数量小于等于2时,装备者的暴击率提高12%/15%/18%/21%/24%。", + "material": [ + [ + { + "id": "2", + "num": 4000 + }, + { + "id": "112001", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 8000 + }, + { + "id": "110121", + "num": 3 + }, + { + "id": "112001", + "num": 10 + } + ], + [ + { + "id": "2", + "num": 16000 + }, + { + "id": "110122", + "num": 3 + }, + { + "id": "112002", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 40000 + }, + { + "id": "110122", + "num": 6 + }, + { + "id": "112002", + "num": 9 + } + ], + [ + { + "id": "2", + "num": 80000 + }, + { + "id": "110123", + "num": 4 + }, + { + "id": "112003", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 160000 + }, + { + "id": "110123", + "num": 8 + }, + { + "id": "112003", + "num": 7 + } + ], + [] + ], + "params": [ + [ + 0.16, + 0.12 + ], + [ + 0.2, + 0.15 + ], + [ + 0.24, + 0.18 + ], + [ + 0.28, + 0.21 + ], + [ + 0.32, + 0.24 + ] + ], + "skill": "记录" + }, + "21004": { + "id": "21004", + "name": "记忆中的模样", + "rarity": 4, + "path": "Shaman", + "desc": "官邸的桌上摆放着一张老相片,在远远的一角。\n偶尔目光落在上面,她总会不自觉地错开视线。\n记忆中的模样虽已远去,但今天的梦仍自萦绕。", + "icon": "icon/light_cone/21004.png", + "preview": "image/light_cone_preview/21004.png", + "portrait": "image/light_cone_portrait/21004.png", + "type": "同谐", + "star": 4, + "access": "常驻", + "characteristic": "释放攻击后能量恢复", + "names": [ + "记忆的模样", + "模样", + "记忆" + ], + "suitRole": [ + "布洛妮娅", + "停云", + "艾丝妲", + "开拓者" + ], + "belongRole": [ + "布洛妮娅" + ], + "values": [ + { + "hp": { + "base": 43.2, + "step": 6.48 + }, + "atk": { + "base": 19.2, + "step": 2.88 + }, + "def": { + "base": 18, + "step": 2.7 + } + }, + { + "hp": { + "base": 95.04, + "step": 6.48 + }, + "atk": { + "base": 42.24, + "step": 2.88 + }, + "def": { + "base": 39.6, + "step": 2.7 + } + }, + { + "hp": { + "base": 164.16, + "step": 6.48 + }, + "atk": { + "base": 72.96, + "step": 2.88 + }, + "def": { + "base": 68.4, + "step": 2.7 + } + }, + { + "hp": { + "base": 233.28, + "step": 6.48 + }, + "atk": { + "base": 103.68, + "step": 2.88 + }, + "def": { + "base": 97.2, + "step": 2.7 + } + }, + { + "hp": { + "base": 302.4, + "step": 6.48 + }, + "atk": { + "base": 134.4, + "step": 2.88 + }, + "def": { + "base": 126, + "step": 2.7 + } + }, + { + "hp": { + "base": 371.52, + "step": 6.48 + }, + "atk": { + "base": 165.12, + "step": 2.88 + }, + "def": { + "base": 154.8, + "step": 2.7 + } + }, + { + "hp": { + "base": 440.64, + "step": 6.48 + }, + "atk": { + "base": 195.84, + "step": 2.88 + }, + "def": { + "base": 183.6, + "step": 2.7 + } + } + ], + "fullValues": { + "hp": { + "base": "952.56", + "stop": 6.48 + }, + "atk": { + "base": "423.36", + "stop": 2.88 + }, + "def": { + "base": "396.90", + "stop": 2.7 + } + }, + "attribute": "使装备者的击破特攻提高28%/35%/42%/49%/56%。装备者施放攻击后,额外恢复4/5/6/7/8点能量,该效果单个回合内不可重复触发。", + "material": [ + [ + { + "id": "2", + "num": 4000 + }, + { + "id": "112001", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 8000 + }, + { + "id": "110161", + "num": 3 + }, + { + "id": "112001", + "num": 10 + } + ], + [ + { + "id": "2", + "num": 16000 + }, + { + "id": "110162", + "num": 3 + }, + { + "id": "112002", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 40000 + }, + { + "id": "110162", + "num": 6 + }, + { + "id": "112002", + "num": 9 + } + ], + [ + { + "id": "2", + "num": 80000 + }, + { + "id": "110163", + "num": 4 + }, + { + "id": "112003", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 160000 + }, + { + "id": "110163", + "num": 8 + }, + { + "id": "112003", + "num": 7 + } + ], + [] + ], + "params": [ + [ + 0.28, + 4 + ], + [ + 0.35, + 5 + ], + [ + 0.42, + 6 + ], + [ + 0.49, + 7 + ], + [ + 0.56, + 8 + ] + ], + "skill": "老相片" + }, + "21005": { + "id": "21005", + "name": "鼹鼠党欢迎你", + "rarity": 4, + "path": "Warrior", + "desc": "「鼹鼠党,鼹鼠党」\n「我们马上出发」\n「机智鼹鼠不怕不怕」\n「鼹鼠党,鼹鼠党」\n「鼹鼠党开始冒险!」", + "icon": "icon/light_cone/21005.png", + "preview": "image/light_cone_preview/21005.png", + "portrait": "image/light_cone_portrait/21005.png", + "type": "毁灭", + "star": 4, + "access": "常驻", + "characteristic": "攻击力提高", + "names": [ + "鼹鼠党的欢迎", + "鼹鼠党", + "鼹鼠", + "冒险鼹鼠党欢迎你" + ], + "suitRole": [ + "刃", + "克拉拉", + "虎克", + "阿兰", + "开拓者" + ], + "belongRole": [ + "虎克" + ], + "values": [ + { + "hp": { + "base": 48, + "step": 7.2 + }, + "atk": { + "base": 21.6, + "step": 3.24 + }, + "def": { + "base": 12, + "step": 1.8 + } + }, + { + "hp": { + "base": 105.6, + "step": 7.2 + }, + "atk": { + "base": 47.52, + "step": 3.24 + }, + "def": { + "base": 26.4, + "step": 1.8 + } + }, + { + "hp": { + "base": 182.4, + "step": 7.2 + }, + "atk": { + "base": 82.08, + "step": 3.24 + }, + "def": { + "base": 45.6, + "step": 1.8 + } + }, + { + "hp": { + "base": 259.2, + "step": 7.2 + }, + "atk": { + "base": 116.64, + "step": 3.24 + }, + "def": { + "base": 64.8, + "step": 1.8 + } + }, + { + "hp": { + "base": 336, + "step": 7.2 + }, + "atk": { + "base": 151.2, + "step": 3.24 + }, + "def": { + "base": 84, + "step": 1.8 + } + }, + { + "hp": { + "base": 412.8, + "step": 7.2 + }, + "atk": { + "base": 185.76, + "step": 3.24 + }, + "def": { + "base": 103.2, + "step": 1.8 + } + }, + { + "hp": { + "base": 489.6, + "step": 7.2 + }, + "atk": { + "base": 220.32, + "step": 3.24 + }, + "def": { + "base": 122.4, + "step": 1.8 + } + } + ], + "fullValues": { + "hp": { + "base": "1058.40", + "stop": 7.2 + }, + "atk": { + "base": "476.28", + "stop": 3.24 + }, + "def": { + "base": "264.60", + "stop": 1.8 + } + }, + "attribute": "装备者施放普攻、战技或终结技攻击敌方目标后,分别获取一层【淘气值】。每层使装备者的攻击力提高 12%/15%/18%/21%/24%。", + "material": [ + [ + { + "id": "2", + "num": 4000 + }, + { + "id": "111011", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 8000 + }, + { + "id": "110111", + "num": 3 + }, + { + "id": "111011", + "num": 10 + } + ], + [ + { + "id": "2", + "num": 16000 + }, + { + "id": "110112", + "num": 3 + }, + { + "id": "111012", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 40000 + }, + { + "id": "110112", + "num": 6 + }, + { + "id": "111012", + "num": 9 + } + ], + [ + { + "id": "2", + "num": 80000 + }, + { + "id": "110113", + "num": 4 + }, + { + "id": "111013", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 160000 + }, + { + "id": "110113", + "num": 8 + }, + { + "id": "111013", + "num": 7 + } + ], + [] + ], + "params": [ + [ + 0.12 + ], + [ + 0.15 + ], + [ + 0.18 + ], + [ + 0.21 + ], + [ + 0.24 + ] + ], + "skill": "奇妙冒险" + }, + "21006": { + "id": "21006", + "name": "「我」的诞生", + "rarity": 4, + "path": "Mage", + "desc": "刚开始,它和上一幅画像中的姿势完全一致。\n她看着这张和自己一模一样的脸,认定这还不是她。\n「世上怎么可能会有两幅相同的画像呢?」\n她摆弄着它的关节,教它睁开眼,教它的手指变得更柔软。\n她满意地住了手。\n「和昨天截然不同,这才是今天的我。」", + "icon": "icon/light_cone/21006.png", + "preview": "image/light_cone_preview/21006.png", + "portrait": "image/light_cone_portrait/21006.png", + "type": "智识", + "star": 4, + "access": "常驻", + "characteristic": "追加攻击伤害提高", + "names": [ + "我的诞生", + "我诞生", + "诞生", + "我的诞辰" + ], + "suitRole": [ + "景元", + "姬子", + "青雀", + "黑塔", + "希露瓦", + "开拓者" + ], + "belongRole": [ + "黑塔" + ], + "values": [ + { + "hp": { + "base": 43.2, + "step": 6.48 + }, + "atk": { + "base": 21.6, + "step": 3.24 + }, + "def": { + "base": 15, + "step": 2.25 + } + }, + { + "hp": { + "base": 95.04, + "step": 6.48 + }, + "atk": { + "base": 47.52, + "step": 3.24 + }, + "def": { + "base": 33, + "step": 2.25 + } + }, + { + "hp": { + "base": 164.16, + "step": 6.48 + }, + "atk": { + "base": 82.08, + "step": 3.24 + }, + "def": { + "base": 57, + "step": 2.25 + } + }, + { + "hp": { + "base": 233.28, + "step": 6.48 + }, + "atk": { + "base": 116.64, + "step": 3.24 + }, + "def": { + "base": 81, + "step": 2.25 + } + }, + { + "hp": { + "base": 302.4, + "step": 6.48 + }, + "atk": { + "base": 151.2, + "step": 3.24 + }, + "def": { + "base": 105, + "step": 2.25 + } + }, + { + "hp": { + "base": 371.52, + "step": 6.48 + }, + "atk": { + "base": 185.76, + "step": 3.24 + }, + "def": { + "base": 129, + "step": 2.25 + } + }, + { + "hp": { + "base": 440.64, + "step": 6.48 + }, + "atk": { + "base": 220.32, + "step": 3.24 + }, + "def": { + "base": 153, + "step": 2.25 + } + } + ], + "fullValues": { + "hp": { + "base": "952.56", + "stop": 6.48 + }, + "atk": { + "base": "476.28", + "stop": 3.24 + }, + "def": { + "base": "330.75", + "stop": 2.25 + } + }, + "attribute": "使装备者追加攻击造成的伤害提高 24%/30%/36%/42%/48%。若该敌方目标当前生命值百分比小于等于 50%,则追加攻击造成的伤害额外提高 24%/30%/36%/42%/48%。", + "material": [ + [ + { + "id": "2", + "num": 4000 + }, + { + "id": "112011", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 8000 + }, + { + "id": "110131", + "num": 3 + }, + { + "id": "112011", + "num": 10 + } + ], + [ + { + "id": "2", + "num": 16000 + }, + { + "id": "110132", + "num": 3 + }, + { + "id": "112012", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 40000 + }, + { + "id": "110132", + "num": 6 + }, + { + "id": "112012", + "num": 9 + } + ], + [ + { + "id": "2", + "num": 80000 + }, + { + "id": "110133", + "num": 4 + }, + { + "id": "112013", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 160000 + }, + { + "id": "110133", + "num": 8 + }, + { + "id": "112013", + "num": 7 + } + ], + [] + ], + "params": [ + [ + 0.24, + 0.5, + 0.24 + ], + [ + 0.3, + 0.5, + 0.3 + ], + [ + 0.36, + 0.5, + 0.36 + ], + [ + 0.42, + 0.5, + 0.42 + ], + [ + 0.48, + 0.5, + 0.48 + ] + ], + "skill": "画像少女" + }, + "21007": { + "id": "21007", + "name": "同一种心情", + "rarity": 4, + "path": "Priest", + "desc": "医生找到女孩时,她受了伤,却仍紧紧抱着停止运转的机器,口袋里装满了翻找来的各种零件。\n她赶紧把女孩带回了诊所,给伤口上好药。\n汗珠从脸颊旁滑落,女孩虽然一言不发,手却一刻不停。\n医生知道,此时女孩的眼中只有那台机器,就像自己面对着等待救治的病人。\n因此她没有出声安慰,也没有提醒她往后要小心一些,只是坐在女孩身边,静静陪伴着她。", + "icon": "icon/light_cone/21007.png", + "preview": "image/light_cone_preview/21007.png", + "portrait": "image/light_cone_portrait/21007.png", + "type": "丰饶", + "star": 4, + "access": "常驻", + "characteristic": "释放战技时群体充能", + "names": [ + "同种心情", + "一种心情", + "心情" + ], + "suitRole": [ + "白露", + "娜塔莎", + "罗刹", + "开拓者" + ], + "belongRole": [ + "娜塔莎" + ], + "values": [ + { + "hp": { + "base": 43.2, + "step": 6.48 + }, + "atk": { + "base": 19.2, + "step": 2.88 + }, + "def": { + "base": 18, + "step": 2.7 + } + }, + { + "hp": { + "base": 95.04, + "step": 6.48 + }, + "atk": { + "base": 42.24, + "step": 2.88 + }, + "def": { + "base": 39.6, + "step": 2.7 + } + }, + { + "hp": { + "base": 164.16, + "step": 6.48 + }, + "atk": { + "base": 72.96, + "step": 2.88 + }, + "def": { + "base": 68.4, + "step": 2.7 + } + }, + { + "hp": { + "base": 233.28, + "step": 6.48 + }, + "atk": { + "base": 103.68, + "step": 2.88 + }, + "def": { + "base": 97.2, + "step": 2.7 + } + }, + { + "hp": { + "base": 302.4, + "step": 6.48 + }, + "atk": { + "base": 134.4, + "step": 2.88 + }, + "def": { + "base": 126, + "step": 2.7 + } + }, + { + "hp": { + "base": 371.52, + "step": 6.48 + }, + "atk": { + "base": 165.12, + "step": 2.88 + }, + "def": { + "base": 154.8, + "step": 2.7 + } + }, + { + "hp": { + "base": 440.64, + "step": 6.48 + }, + "atk": { + "base": 195.84, + "step": 2.88 + }, + "def": { + "base": 183.6, + "step": 2.7 + } + } + ], + "fullValues": { + "hp": { + "base": "952.56", + "stop": 6.48 + }, + "atk": { + "base": "423.36", + "stop": 2.88 + }, + "def": { + "base": "396.90", + "stop": 2.7 + } + }, + "attribute": "使装备者的治疗量提高 10%/12%/15%/17%/20%,并在施放战技时为我方全体恢复2/2/3/3/4点能量。", + "material": [ + [ + { + "id": "2", + "num": 4000 + }, + { + "id": "113011", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 8000 + }, + { + "id": "110171", + "num": 3 + }, + { + "id": "113011", + "num": 10 + } + ], + [ + { + "id": "2", + "num": 16000 + }, + { + "id": "110172", + "num": 3 + }, + { + "id": "113012", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 40000 + }, + { + "id": "110172", + "num": 6 + }, + { + "id": "113012", + "num": 9 + } + ], + [ + { + "id": "2", + "num": 80000 + }, + { + "id": "110173", + "num": 4 + }, + { + "id": "113013", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 160000 + }, + { + "id": "110173", + "num": 8 + }, + { + "id": "113013", + "num": 7 + } + ], + [] + ], + "params": [ + [ + 0.1, + 2 + ], + [ + 0.125, + 2.5 + ], + [ + 0.15, + 3 + ], + [ + 0.175, + 3.5 + ], + [ + 0.2, + 4 + ] + ], + "skill": "救治与维修" + }, + "21008": { + "id": "21008", + "name": "猎物的视线", + "rarity": 4, + "path": "Warlock", + "desc": "事实上,猎物多半不会意识到自己的处境。\n眼前的这个猎物也是如此。 \n瞄准镜缓缓转动,男人仍自顾自地抛洒着一叠又一叠的纸钞。\n「看他那贪婪的样子,这点钱够我做几单生意了…怪不得有人要干掉他。」\n像是听到了他心中的感慨,男人转过头来。\n「等你好久了,这些钱够不够让你听听我的条件再做决定?」", + "icon": "icon/light_cone/21008.png", + "preview": "image/light_cone_preview/21008.png", + "portrait": "image/light_cone_portrait/21008.png", + "type": "虚无", + "star": 4, + "access": "常驻", + "characteristic": "效果命中提高、持续伤害提高", + "names": [ + "猎物", + "视线", + "猎物视线", + "狩猎的视线" + ], + "suitRole": [ + "卢卡", + "卡芙卡", + "瓦尔特", + "桑博", + "佩拉", + "开拓者" + ], + "belongRole": [ + "桑博" + ], + "values": [ + { + "hp": { + "base": 43.2, + "step": 6.48 + }, + "atk": { + "base": 21.6, + "step": 3.24 + }, + "def": { + "base": 15, + "step": 2.25 + } + }, + { + "hp": { + "base": 95.04, + "step": 6.48 + }, + "atk": { + "base": 47.52, + "step": 3.24 + }, + "def": { + "base": 33, + "step": 2.25 + } + }, + { + "hp": { + "base": 164.16, + "step": 6.48 + }, + "atk": { + "base": 82.08, + "step": 3.24 + }, + "def": { + "base": 57, + "step": 2.25 + } + }, + { + "hp": { + "base": 233.28, + "step": 6.48 + }, + "atk": { + "base": 116.64, + "step": 3.24 + }, + "def": { + "base": 81, + "step": 2.25 + } + }, + { + "hp": { + "base": 302.4, + "step": 6.48 + }, + "atk": { + "base": 151.2, + "step": 3.24 + }, + "def": { + "base": 105, + "step": 2.25 + } + }, + { + "hp": { + "base": 371.52, + "step": 6.48 + }, + "atk": { + "base": 185.76, + "step": 3.24 + }, + "def": { + "base": 129, + "step": 2.25 + } + }, + { + "hp": { + "base": 440.64, + "step": 6.48 + }, + "atk": { + "base": 220.32, + "step": 3.24 + }, + "def": { + "base": 153, + "step": 2.25 + } + } + ], + "fullValues": { + "hp": { + "base": "952.56", + "stop": 6.48 + }, + "atk": { + "base": "476.28", + "stop": 3.24 + }, + "def": { + "base": "330.75", + "stop": 2.25 + } + }, + "attribute": "使装备者的效果命中提高20%/25%/30%/35%/40%,同时造成的持续伤害提高24%/30%/36%/42%/48%。", + "material": [ + [ + { + "id": "2", + "num": 4000 + }, + { + "id": "112011", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 8000 + }, + { + "id": "110151", + "num": 3 + }, + { + "id": "112011", + "num": 10 + } + ], + [ + { + "id": "2", + "num": 16000 + }, + { + "id": "110152", + "num": 3 + }, + { + "id": "112012", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 40000 + }, + { + "id": "110152", + "num": 6 + }, + { + "id": "112012", + "num": 9 + } + ], + [ + { + "id": "2", + "num": 80000 + }, + { + "id": "110153", + "num": 4 + }, + { + "id": "112013", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 160000 + }, + { + "id": "110153", + "num": 8 + }, + { + "id": "112013", + "num": 7 + } + ], + [] + ], + "params": [ + [ + 0.2, + 0.24 + ], + [ + 0.25, + 0.3 + ], + [ + 0.3, + 0.36 + ], + [ + 0.35, + 0.42 + ], + [ + 0.4, + 0.48 + ] + ], + "skill": "自信" + }, + "21009": { + "id": "21009", + "name": "朗道的选择", + "rarity": 4, + "path": "Knight", + "desc": "「听见没,明天不许去了!和几个平民混在一起能学些什么好的!」\n「但他们说的那些贝洛伯格故事,我都没听过…」\n她拉过还想辩解的弟弟,把他挡在身后。\n「你们是朗道的一员。特别是你,希露瓦,总有一天你也要做出选择。」\n她知道弟弟什么都没做错,但她不知道该怎么反驳。\n生了一天的闷气后,她暗自下定决心。\n「我会长大,总有一天我也能选择……」\n「我自己的选择。」", + "icon": "icon/light_cone/21009.png", + "preview": "image/light_cone_preview/21009.png", + "portrait": "image/light_cone_portrait/21009.png", + "type": "存护", + "star": 4, + "access": "常驻", + "characteristic": "受击概率提高", + "names": [ + "朗道", + "朗道选择", + "选择", + "朗到的选择" + ], + "suitRole": [ + "杰帕德", + "三月七", + "开拓者" + ], + "belongRole": [ + "杰帕德" + ], + "values": [ + { + "hp": { + "base": 43.2, + "step": 6.48 + }, + "atk": { + "base": 19.2, + "step": 2.88 + }, + "def": { + "base": 18, + "step": 2.7 + } + }, + { + "hp": { + "base": 95.04, + "step": 6.48 + }, + "atk": { + "base": 42.24, + "step": 2.88 + }, + "def": { + "base": 39.6, + "step": 2.7 + } + }, + { + "hp": { + "base": 164.16, + "step": 6.48 + }, + "atk": { + "base": 72.96, + "step": 2.88 + }, + "def": { + "base": 68.4, + "step": 2.7 + } + }, + { + "hp": { + "base": 233.28, + "step": 6.48 + }, + "atk": { + "base": 103.68, + "step": 2.88 + }, + "def": { + "base": 97.2, + "step": 2.7 + } + }, + { + "hp": { + "base": 302.4, + "step": 6.48 + }, + "atk": { + "base": 134.4, + "step": 2.88 + }, + "def": { + "base": 126, + "step": 2.7 + } + }, + { + "hp": { + "base": 371.52, + "step": 6.48 + }, + "atk": { + "base": 165.12, + "step": 2.88 + }, + "def": { + "base": 154.8, + "step": 2.7 + } + }, + { + "hp": { + "base": 440.64, + "step": 6.48 + }, + "atk": { + "base": 195.84, + "step": 2.88 + }, + "def": { + "base": 183.6, + "step": 2.7 + } + } + ], + "fullValues": { + "hp": { + "base": "952.56", + "stop": 6.48 + }, + "atk": { + "base": "423.36", + "stop": 2.88 + }, + "def": { + "base": "396.90", + "stop": 2.7 + } + }, + "attribute": "使装备者受到攻击的概率提高,同时受到的伤害降低16%/18%/20%/22%/24%。", + "material": [ + [ + { + "id": "2", + "num": 4000 + }, + { + "id": "111001", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 8000 + }, + { + "id": "110141", + "num": 3 + }, + { + "id": "111001", + "num": 10 + } + ], + [ + { + "id": "2", + "num": 16000 + }, + { + "id": "110142", + "num": 3 + }, + { + "id": "111002", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 40000 + }, + { + "id": "110142", + "num": 6 + }, + { + "id": "111002", + "num": 9 + } + ], + [ + { + "id": "2", + "num": 80000 + }, + { + "id": "110143", + "num": 4 + }, + { + "id": "111003", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 160000 + }, + { + "id": "110143", + "num": 8 + }, + { + "id": "111003", + "num": 7 + } + ], + [] + ], + "params": [ + [ + 2, + 0.16 + ], + [ + 2, + 0.18 + ], + [ + 2, + 0.2 + ], + [ + 2, + 0.22 + ], + [ + 2, + 0.24 + ] + ], + "skill": "时光如梭" + }, + "21010": { + "id": "21010", + "name": "论剑", + "rarity": 4, + "path": "Rogue", + "desc": "少女不解地比划着手中的细剑。\n自己的剑要双手才能挥舞,这样的剑也能算剑?这样的剑也能杀敌?\n剑的主人倒是对此毫不在意,毕竟——\n杀不杀敌又不在剑,全在心。\n用的重剑还是细剑,又有什么区别。", + "icon": "icon/light_cone/21010.png", + "preview": "image/light_cone_preview/21010.png", + "portrait": "image/light_cone_portrait/21010.png", + "type": "巡猎", + "star": 4, + "access": "常驻", + "characteristic": "攻击单一目标时伤害提高", + "names": [ + "轮剑", + "打量剑", + "看剑", + "素裳论剑", + "素裳论剑" + ], + "suitRole": [ + "希儿", + "彦卿", + "丹恒", + "素裳", + "开拓者" + ], + "belongRole": [ + "素裳" + ], + "values": [ + { + "hp": { + "base": 43.2, + "step": 6.48 + }, + "atk": { + "base": 21.6, + "step": 3.24 + }, + "def": { + "base": 15, + "step": 2.25 + } + }, + { + "hp": { + "base": 95.04, + "step": 6.48 + }, + "atk": { + "base": 47.52, + "step": 3.24 + }, + "def": { + "base": 33, + "step": 2.25 + } + }, + { + "hp": { + "base": 164.16, + "step": 6.48 + }, + "atk": { + "base": 82.08, + "step": 3.24 + }, + "def": { + "base": 57, + "step": 2.25 + } + }, + { + "hp": { + "base": 233.28, + "step": 6.48 + }, + "atk": { + "base": 116.64, + "step": 3.24 + }, + "def": { + "base": 81, + "step": 2.25 + } + }, + { + "hp": { + "base": 302.4, + "step": 6.48 + }, + "atk": { + "base": 151.2, + "step": 3.24 + }, + "def": { + "base": 105, + "step": 2.25 + } + }, + { + "hp": { + "base": 371.52, + "step": 6.48 + }, + "atk": { + "base": 185.76, + "step": 3.24 + }, + "def": { + "base": 129, + "step": 2.25 + } + }, + { + "hp": { + "base": 440.64, + "step": 6.48 + }, + "atk": { + "base": 220.32, + "step": 3.24 + }, + "def": { + "base": 153, + "step": 2.25 + } + } + ], + "fullValues": { + "hp": { + "base": "952.56", + "stop": 6.48 + }, + "atk": { + "base": "476.28", + "stop": 3.24 + }, + "def": { + "base": "330.75", + "stop": 2.25 + } + }, + "attribute": "当装备者多次击中同一敌方目标时,每次造成的伤害提高8%/10%/12%/14%/16%,该效果最多叠加5层。若攻击目标发生变化,立即解除当前的增益效果。", + "material": [ + [ + { + "id": "2", + "num": 4000 + }, + { + "id": "111001", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 8000 + }, + { + "id": "110121", + "num": 3 + }, + { + "id": "111001", + "num": 10 + } + ], + [ + { + "id": "2", + "num": 16000 + }, + { + "id": "110122", + "num": 3 + }, + { + "id": "111002", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 40000 + }, + { + "id": "110122", + "num": 6 + }, + { + "id": "111002", + "num": 9 + } + ], + [ + { + "id": "2", + "num": 80000 + }, + { + "id": "110123", + "num": 4 + }, + { + "id": "111003", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 160000 + }, + { + "id": "110123", + "num": 8 + }, + { + "id": "111003", + "num": 7 + } + ], + [] + ], + "params": [ + [ + 0.08, + 5 + ], + [ + 0.1, + 5 + ], + [ + 0.12, + 5 + ], + [ + 0.14, + 5 + ], + [ + 0.16, + 5 + ] + ], + "skill": "各自的答案" + }, + "21011": { + "id": "21011", + "name": "与行星相会", + "rarity": 4, + "path": "Shaman", + "desc": "上路时,她仍然对这趟远行一无所知。\n只知道终于能告别家中的百舌之声,躲避无处不在的明枪暗箭。\n直到她望向窗外时,她终于明白了那首诗的意味。\n「在某个时刻之后,我们不再行走,而是飞翔。」\n而她眼中闪动的亮光,正是行星的倒影。", + "icon": "icon/light_cone/21011.png", + "preview": "image/light_cone_preview/21011.png", + "portrait": "image/light_cone_portrait/21011.png", + "type": "同谐", + "star": 4, + "access": "常驻", + "characteristic": "与装备者同属性时伤害提高", + "names": [ + "行星相会", + "行星", + "与星星相会", + "和行星相会", + "和星星相会" + ], + "suitRole": [ + "布洛妮娅", + "停云", + "艾丝妲", + "开拓者" + ], + "belongRole": [ + "艾丝妲" + ], + "values": [ + { + "hp": { + "base": 48, + "step": 7.2 + }, + "atk": { + "base": 19.2, + "step": 2.88 + }, + "def": { + "base": 15, + "step": 2.25 + } + }, + { + "hp": { + "base": 105.6, + "step": 7.2 + }, + "atk": { + "base": 42.24, + "step": 2.88 + }, + "def": { + "base": 33, + "step": 2.25 + } + }, + { + "hp": { + "base": 182.4, + "step": 7.2 + }, + "atk": { + "base": 72.96, + "step": 2.88 + }, + "def": { + "base": 57, + "step": 2.25 + } + }, + { + "hp": { + "base": 259.2, + "step": 7.2 + }, + "atk": { + "base": 103.68, + "step": 2.88 + }, + "def": { + "base": 81, + "step": 2.25 + } + }, + { + "hp": { + "base": 336, + "step": 7.2 + }, + "atk": { + "base": 134.4, + "step": 2.88 + }, + "def": { + "base": 105, + "step": 2.25 + } + }, + { + "hp": { + "base": 412.8, + "step": 7.2 + }, + "atk": { + "base": 165.12, + "step": 2.88 + }, + "def": { + "base": 129, + "step": 2.25 + } + }, + { + "hp": { + "base": 489.6, + "step": 7.2 + }, + "atk": { + "base": 195.84, + "step": 2.88 + }, + "def": { + "base": 153, + "step": 2.25 + } + } + ], + "fullValues": { + "hp": { + "base": "1058.40", + "stop": 7.2 + }, + "atk": { + "base": "423.36", + "stop": 2.88 + }, + "def": { + "base": "330.75", + "stop": 2.25 + } + }, + "attribute": "进入战斗后,当我方目标造成与装备者相同属性的伤害时,造成的伤害提高12%/15%/18%/21%/24%。", + "material": [ + [ + { + "id": "2", + "num": 4000 + }, + { + "id": "111011", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 8000 + }, + { + "id": "110161", + "num": 3 + }, + { + "id": "111011", + "num": 10 + } + ], + [ + { + "id": "2", + "num": 16000 + }, + { + "id": "110162", + "num": 3 + }, + { + "id": "111012", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 40000 + }, + { + "id": "110162", + "num": 6 + }, + { + "id": "111012", + "num": 9 + } + ], + [ + { + "id": "2", + "num": 80000 + }, + { + "id": "110163", + "num": 4 + }, + { + "id": "111013", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 160000 + }, + { + "id": "110163", + "num": 8 + }, + { + "id": "111013", + "num": 7 + } + ], + [] + ], + "params": [ + [ + 0.12 + ], + [ + 0.15 + ], + [ + 0.18 + ], + [ + 0.21 + ], + [ + 0.24 + ] + ], + "skill": "启程" + }, + "21012": { + "id": "21012", + "name": "秘密誓心", + "rarity": 4, + "path": "Warrior", + "desc": "每次出发前,男孩都要仔细地检查护肘和手套。\n那是他最钟爱的手套,它足够严实,可以藏起很多秘密。\n如此一来,没有人可以看见他手上的绷带,以及绷带下的伤口。\n大家把他当作一个普通人,普通地和他打着招呼。\n这就够了。", + "icon": "icon/light_cone/21012.png", + "preview": "image/light_cone_preview/21012.png", + "portrait": "image/light_cone_portrait/21012.png", + "type": "毁灭", + "star": 4, + "access": "常驻", + "characteristic": "残血增伤", + "names": [ + "秘密誓言", + "秘密", + "誓心" + ], + "suitRole": [ + "刃", + "克拉拉", + "虎克", + "阿兰", + "开拓者" + ], + "belongRole": [ + "阿兰" + ], + "values": [ + { + "hp": { + "base": 48, + "step": 7.2 + }, + "atk": { + "base": 21.6, + "step": 3.24 + }, + "def": { + "base": 12, + "step": 1.8 + } + }, + { + "hp": { + "base": 105.6, + "step": 7.2 + }, + "atk": { + "base": 47.52, + "step": 3.24 + }, + "def": { + "base": 26.4, + "step": 1.8 + } + }, + { + "hp": { + "base": 182.4, + "step": 7.2 + }, + "atk": { + "base": 82.08, + "step": 3.24 + }, + "def": { + "base": 45.6, + "step": 1.8 + } + }, + { + "hp": { + "base": 259.2, + "step": 7.2 + }, + "atk": { + "base": 116.64, + "step": 3.24 + }, + "def": { + "base": 64.8, + "step": 1.8 + } + }, + { + "hp": { + "base": 336, + "step": 7.2 + }, + "atk": { + "base": 151.2, + "step": 3.24 + }, + "def": { + "base": 84, + "step": 1.8 + } + }, + { + "hp": { + "base": 412.8, + "step": 7.2 + }, + "atk": { + "base": 185.76, + "step": 3.24 + }, + "def": { + "base": 103.2, + "step": 1.8 + } + }, + { + "hp": { + "base": 489.6, + "step": 7.2 + }, + "atk": { + "base": 220.32, + "step": 3.24 + }, + "def": { + "base": 122.4, + "step": 1.8 + } + } + ], + "fullValues": { + "hp": { + "base": "1058.40", + "stop": 7.2 + }, + "atk": { + "base": "476.28", + "stop": 3.24 + }, + "def": { + "base": "264.60", + "stop": 1.8 + } + }, + "attribute": "使装备者造成的伤害提高20%/25%/30%/35%/40%,同时对当前生命值百分比高于装备者自身当前生命值百分比的敌方目标造成的伤害额外提高20%/25%/30%/35%/40%。", + "material": [ + [ + { + "id": "2", + "num": 4000 + }, + { + "id": "112001", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 8000 + }, + { + "id": "110111", + "num": 3 + }, + { + "id": "112001", + "num": 10 + } + ], + [ + { + "id": "2", + "num": 16000 + }, + { + "id": "110112", + "num": 3 + }, + { + "id": "112002", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 40000 + }, + { + "id": "110112", + "num": 6 + }, + { + "id": "112002", + "num": 9 + } + ], + [ + { + "id": "2", + "num": 80000 + }, + { + "id": "110113", + "num": 4 + }, + { + "id": "112003", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 160000 + }, + { + "id": "110113", + "num": 8 + }, + { + "id": "112003", + "num": 7 + } + ], + [] + ], + "params": [ + [ + 0.2, + 0.2 + ], + [ + 0.25, + 0.25 + ], + [ + 0.3, + 0.3 + ], + [ + 0.35, + 0.35 + ], + [ + 0.4, + 0.4 + ] + ], + "skill": "竭力而为" + }, + "21013": { + "id": "21013", + "name": "别让世界静下来", + "rarity": 4, + "path": "Mage", + "desc": "她在台上挥着手,希望每个人跟着她一起发出自己的声音。\n不管是歌唱、呐喊、哀叹,以任何形式。\n发出自己的声音,直到有人听见,才会有人加入。\n「别让心冷了,变得和这个城市一样冷。」\n——别让世界静下来。", + "icon": "icon/light_cone/21013.png", + "preview": "image/light_cone_preview/21013.png", + "portrait": "image/light_cone_portrait/21013.png", + "type": "智识", + "star": 4, + "access": "常驻", + "characteristic": "进入战斗时充能、终结技伤害提高", + "names": [ + "别静下来", + "让世界静下来" + ], + "suitRole": [ + "景元", + "姬子", + "青雀", + "黑塔", + "希露瓦", + "开拓者" + ], + "belongRole": [ + "希露瓦" + ], + "values": [ + { + "hp": { + "base": 38.4, + "step": 5.76 + }, + "atk": { + "base": 21.6, + "step": 3.24 + }, + "def": { + "base": 18, + "step": 2.7 + } + }, + { + "hp": { + "base": 84.48, + "step": 5.76 + }, + "atk": { + "base": 47.52, + "step": 3.24 + }, + "def": { + "base": 39.6, + "step": 2.7 + } + }, + { + "hp": { + "base": 145.92, + "step": 5.76 + }, + "atk": { + "base": 82.08, + "step": 3.24 + }, + "def": { + "base": 68.4, + "step": 2.7 + } + }, + { + "hp": { + "base": 207.36, + "step": 5.76 + }, + "atk": { + "base": 116.64, + "step": 3.24 + }, + "def": { + "base": 97.2, + "step": 2.7 + } + }, + { + "hp": { + "base": 268.8, + "step": 5.76 + }, + "atk": { + "base": 151.2, + "step": 3.24 + }, + "def": { + "base": 126, + "step": 2.7 + } + }, + { + "hp": { + "base": 330.24, + "step": 5.76 + }, + "atk": { + "base": 185.76, + "step": 3.24 + }, + "def": { + "base": 154.8, + "step": 2.7 + } + }, + { + "hp": { + "base": 391.68, + "step": 5.76 + }, + "atk": { + "base": 220.32, + "step": 3.24 + }, + "def": { + "base": 183.6, + "step": 2.7 + } + } + ], + "fullValues": { + "hp": { + "base": "846.72", + "stop": 5.76 + }, + "atk": { + "base": "476.28", + "stop": 3.24 + }, + "def": { + "base": "396.90", + "stop": 2.7 + } + }, + "attribute": "使装备者进入战斗时立即恢复20/23/26/29/32点能量,同时使其终结技造成的伤害提高32%/40%/48%/56%/64%。", + "material": [ + [ + { + "id": "2", + "num": 4000 + }, + { + "id": "112011", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 8000 + }, + { + "id": "110131", + "num": 3 + }, + { + "id": "112011", + "num": 10 + } + ], + [ + { + "id": "2", + "num": 16000 + }, + { + "id": "110132", + "num": 3 + }, + { + "id": "112012", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 40000 + }, + { + "id": "110132", + "num": 6 + }, + { + "id": "112012", + "num": 9 + } + ], + [ + { + "id": "2", + "num": 80000 + }, + { + "id": "110133", + "num": 4 + }, + { + "id": "112013", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 160000 + }, + { + "id": "110133", + "num": 8 + }, + { + "id": "112013", + "num": 7 + } + ], + [] + ], + "params": [ + [ + 0.32, + 20 + ], + [ + 0.4, + 23 + ], + [ + 0.48, + 26 + ], + [ + 0.56, + 29 + ], + [ + 0.64, + 32 + ] + ], + "skill": "声音的力量" + }, + "21014": { + "id": "21014", + "name": "此时恰好", + "rarity": 4, + "path": "Priest", + "desc": "街道熙攘,他走着,阳光跟着。\n他停了脚步,挑了纸伞,乘了阴凉\n——也遮了那一道目光。", + "icon": "icon/light_cone/21014.png", + "preview": "image/light_cone_preview/21014.png", + "portrait": "image/light_cone_portrait/21014.png", + "type": "丰饶", + "star": 4, + "access": "常驻", + "characteristic": "效果抵抗提高、治疗量提高", + "names": [ + "此时刚好", + "这时恰好" + ], + "suitRole": [ + "白露", + "娜塔莎", + "罗刹", + "开拓者" + ], + "belongRole": [ + "罗刹" + ], + "values": [ + { + "hp": { + "base": 43.2, + "step": 6.48 + }, + "atk": { + "base": 19.2, + "step": 2.88 + }, + "def": { + "base": 18, + "step": 2.7 + } + }, + { + "hp": { + "base": 95.04, + "step": 6.48 + }, + "atk": { + "base": 42.24, + "step": 2.88 + }, + "def": { + "base": 39.6, + "step": 2.7 + } + }, + { + "hp": { + "base": 164.16, + "step": 6.48 + }, + "atk": { + "base": 72.96, + "step": 2.88 + }, + "def": { + "base": 68.4, + "step": 2.7 + } + }, + { + "hp": { + "base": 233.28, + "step": 6.48 + }, + "atk": { + "base": 103.68, + "step": 2.88 + }, + "def": { + "base": 97.2, + "step": 2.7 + } + }, + { + "hp": { + "base": 302.4, + "step": 6.48 + }, + "atk": { + "base": 134.4, + "step": 2.88 + }, + "def": { + "base": 126, + "step": 2.7 + } + }, + { + "hp": { + "base": 371.52, + "step": 6.48 + }, + "atk": { + "base": 165.12, + "step": 2.88 + }, + "def": { + "base": 154.8, + "step": 2.7 + } + }, + { + "hp": { + "base": 440.64, + "step": 6.48 + }, + "atk": { + "base": 195.84, + "step": 2.88 + }, + "def": { + "base": 183.6, + "step": 2.7 + } + } + ], + "fullValues": { + "hp": { + "base": "952.56", + "stop": 6.48 + }, + "atk": { + "base": "423.36", + "stop": 2.88 + }, + "def": { + "base": "396.90", + "stop": 2.7 + } + }, + "attribute": "使装备者的效果抵抗提高16%/20%/24%/28%/32%,并使装备者的治疗量提高,提高数值等同于效果抵抗的33%/36%/39%/42%/45%,最多使治疗量提高15%/18%/21%/24%/27%。", + "material": [ + [ + { + "id": "2", + "num": 4000 + }, + { + "id": "113011", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 8000 + }, + { + "id": "110171", + "num": 3 + }, + { + "id": "113011", + "num": 10 + } + ], + [ + { + "id": "2", + "num": 16000 + }, + { + "id": "110172", + "num": 3 + }, + { + "id": "113012", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 40000 + }, + { + "id": "110172", + "num": 6 + }, + { + "id": "113012", + "num": 9 + } + ], + [ + { + "id": "2", + "num": 80000 + }, + { + "id": "110173", + "num": 4 + }, + { + "id": "113013", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 160000 + }, + { + "id": "110173", + "num": 8 + }, + { + "id": "113013", + "num": 7 + } + ], + [] + ], + "params": [ + [ + 0.16, + 0.33, + 0.15 + ], + [ + 0.2, + 0.36, + 0.18 + ], + [ + 0.24, + 0.39, + 0.21 + ], + [ + 0.28, + 0.42, + 0.24 + ], + [ + 0.32, + 0.45, + 0.27 + ] + ], + "skill": "折射的视线" + }, + "21015": { + "id": "21015", + "name": "决心如汗珠般闪耀", + "rarity": 4, + "path": "Warlock", + "desc": "拳台灯光闪耀,\n却闪耀不过从背脊间滑落的汗珠。\n他早已决心用自己的双拳守护重要的人们。\n而给予他决心的,也正是他们\n——不管是台上台下,都站在他的背后。", + "icon": "icon/light_cone/21015.png", + "preview": "image/light_cone_preview/21015.png", + "portrait": "image/light_cone_portrait/21015.png", + "type": "虚无", + "star": 4, + "access": "常驻", + "characteristic": "命中后概率减防", + "names": [ + "决心如汗珠", + "汗珠闪耀", + "闪耀" + ], + "suitRole": [ + "卢卡", + "卡芙卡", + "瓦尔特", + "桑博", + "佩拉", + "开拓者" + ], + "belongRole": [ + "卢卡" + ], + "values": [ + { + "hp": { + "base": 43.2, + "step": 6.48 + }, + "atk": { + "base": 21.6, + "step": 3.24 + }, + "def": { + "base": 15, + "step": 2.25 + } + }, + { + "hp": { + "base": 95.04, + "step": 6.48 + }, + "atk": { + "base": 47.52, + "step": 3.24 + }, + "def": { + "base": 33, + "step": 2.25 + } + }, + { + "hp": { + "base": 164.16, + "step": 6.48 + }, + "atk": { + "base": 82.08, + "step": 3.24 + }, + "def": { + "base": 57, + "step": 2.25 + } + }, + { + "hp": { + "base": 233.28, + "step": 6.48 + }, + "atk": { + "base": 116.64, + "step": 3.24 + }, + "def": { + "base": 81, + "step": 2.25 + } + }, + { + "hp": { + "base": 302.4, + "step": 6.48 + }, + "atk": { + "base": 151.2, + "step": 3.24 + }, + "def": { + "base": 105, + "step": 2.25 + } + }, + { + "hp": { + "base": 371.52, + "step": 6.48 + }, + "atk": { + "base": 185.76, + "step": 3.24 + }, + "def": { + "base": 129, + "step": 2.25 + } + }, + { + "hp": { + "base": 440.64, + "step": 6.48 + }, + "atk": { + "base": 220.32, + "step": 3.24 + }, + "def": { + "base": 153, + "step": 2.25 + } + } + ], + "fullValues": { + "hp": { + "base": "952.56", + "stop": 6.48 + }, + "atk": { + "base": "476.28", + "stop": 3.24 + }, + "def": { + "base": "330.75", + "stop": 2.25 + } + }, + "attribute": "当装备者击中敌方目标时,如果该目标不处于【攻陷】状态,则有60%/70%/80%/90%/100%的基础概率使其陷入【攻陷】状态。【攻陷】状态下的敌方目标防御力降低12%/13%/14%/15%/16%,持续1回合。", + "material": [ + [ + { + "id": "2", + "num": 4000 + }, + { + "id": "113011", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 8000 + }, + { + "id": "110151", + "num": 3 + }, + { + "id": "113011", + "num": 10 + } + ], + [ + { + "id": "2", + "num": 16000 + }, + { + "id": "110152", + "num": 3 + }, + { + "id": "113012", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 40000 + }, + { + "id": "110152", + "num": 6 + }, + { + "id": "113012", + "num": 9 + } + ], + [ + { + "id": "2", + "num": 80000 + }, + { + "id": "110153", + "num": 4 + }, + { + "id": "113013", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 160000 + }, + { + "id": "110153", + "num": 8 + }, + { + "id": "113013", + "num": 7 + } + ], + [] + ], + "params": [ + [ + 0.6, + 0.12, + 1 + ], + [ + 0.7, + 0.13, + 1 + ], + [ + 0.8, + 0.14, + 1 + ], + [ + 0.9, + 0.15, + 1 + ], + [ + 1, + 0.16, + 1 + ] + ], + "skill": "回眸" + }, + "21016": { + "id": "21016", + "name": "宇宙市场趋势", + "rarity": 4, + "path": "Knight", + "desc": "星球的价值正在被重新计算……\n「这个项目是否会说明,追回债务的益处是相互的?」\n「但我们只需传达一个信息,就是宣告我们的存在。」\n「它若是要有自己的价值,就得为公司增添价值。」", + "icon": "icon/light_cone/21016.png", + "preview": "image/light_cone_preview/21016.png", + "portrait": "image/light_cone_portrait/21016.png", + "type": "存护", + "star": 4, + "access": "常驻", + "characteristic": "受击有几率使敌方陷入灼烧", + "names": [ + "宇宙市场", + "市场趋势", + "宇宙趋势" + ], + "suitRole": [ + "托帕", + "杰帕德", + "三月七", + "开拓者" + ], + "belongRole": [ + "托帕" + ], + "values": [ + { + "hp": { + "base": 48, + "step": 7.2 + }, + "atk": { + "base": 16.8, + "step": 2.52 + }, + "def": { + "base": 18, + "step": 2.7 + } + }, + { + "hp": { + "base": 105.6, + "step": 7.2 + }, + "atk": { + "base": 36.96, + "step": 2.52 + }, + "def": { + "base": 39.6, + "step": 2.7 + } + }, + { + "hp": { + "base": 182.4, + "step": 7.2 + }, + "atk": { + "base": 63.84, + "step": 2.52 + }, + "def": { + "base": 68.4, + "step": 2.7 + } + }, + { + "hp": { + "base": 259.2, + "step": 7.2 + }, + "atk": { + "base": 90.72, + "step": 2.52 + }, + "def": { + "base": 97.2, + "step": 2.7 + } + }, + { + "hp": { + "base": 336, + "step": 7.2 + }, + "atk": { + "base": 117.6, + "step": 2.52 + }, + "def": { + "base": 126, + "step": 2.7 + } + }, + { + "hp": { + "base": 412.8, + "step": 7.2 + }, + "atk": { + "base": 144.48, + "step": 2.52 + }, + "def": { + "base": 154.8, + "step": 2.7 + } + }, + { + "hp": { + "base": 489.6, + "step": 7.2 + }, + "atk": { + "base": 171.36, + "step": 2.52 + }, + "def": { + "base": 183.6, + "step": 2.7 + } + } + ], + "fullValues": { + "hp": { + "base": "1058.40", + "stop": 7.2 + }, + "atk": { + "base": "370.44", + "stop": 2.52 + }, + "def": { + "base": "396.90", + "stop": 2.7 + } + }, + "attribute": "使装备者的防御力提高16%/20%/24%/28%/32%。当装备者受到攻击后,有100%/105%/110%/114%/120%的基础概率使敌方目标陷入灼烧状态,每回合造成等同于装备者40%/50%/60%/70%/80%防御力的持续伤害,持续2回合。", + "material": [ + [ + { + "id": "2", + "num": 4000 + }, + { + "id": "113001", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 8000 + }, + { + "id": "110141", + "num": 3 + }, + { + "id": "113001", + "num": 10 + } + ], + [ + { + "id": "2", + "num": 16000 + }, + { + "id": "110142", + "num": 3 + }, + { + "id": "113002", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 40000 + }, + { + "id": "110142", + "num": 6 + }, + { + "id": "113002", + "num": 9 + } + ], + [ + { + "id": "2", + "num": 80000 + }, + { + "id": "110143", + "num": 4 + }, + { + "id": "113003", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 160000 + }, + { + "id": "110143", + "num": 8 + }, + { + "id": "113003", + "num": 7 + } + ], + [] + ], + "params": [ + [ + 0.16, + 1, + 0.4, + 2 + ], + [ + 0.2, + 1.05, + 0.5, + 2 + ], + [ + 0.24, + 1.1, + 0.6, + 2 + ], + [ + 0.28, + 1.15, + 0.7, + 2 + ], + [ + 0.32, + 1.2, + 0.8, + 2 + ] + ], + "skill": "新一轮洗牌" + }, + "21017": { + "id": "21017", + "name": "点个关注吧!", + "rarity": 4, + "path": "Rogue", + "desc": "「嗨——嗨——!观众老爷们,这里的信号畅通吗?」\n橙发少女兴奋地喊着,对着镜头笃悠悠举起锤子。\n「大家——见过少女胸口碎大石吗!」\n「我当云骑军可不是为了做这种事啊!」\n褐发少女眼冒金星,橙发少女狡黠一笑。\n「拜托啦——这也是助人为乐啊!」", + "icon": "icon/light_cone/21017.png", + "preview": "image/light_cone_preview/21017.png", + "portrait": "image/light_cone_portrait/21017.png", + "type": "巡猎", + "star": 4, + "access": "常驻", + "characteristic": "普攻战技伤害提高、能量到达上限时额外提高", + "names": [ + "点个关注吧", + "点个关注", + "点关注", + "点关注吧" + ], + "suitRole": [ + "希儿", + "彦卿", + "丹恒", + "素裳", + "开拓者" + ], + "belongRole": [], + "values": [ + { + "hp": { + "base": 43.2, + "step": 6.48 + }, + "atk": { + "base": 21.6, + "step": 3.24 + }, + "def": { + "base": 15, + "step": 2.25 + } + }, + { + "hp": { + "base": 95.04, + "step": 6.48 + }, + "atk": { + "base": 47.52, + "step": 3.24 + }, + "def": { + "base": 33, + "step": 2.25 + } + }, + { + "hp": { + "base": 164.16, + "step": 6.48 + }, + "atk": { + "base": 82.08, + "step": 3.24 + }, + "def": { + "base": 57, + "step": 2.25 + } + }, + { + "hp": { + "base": 233.28, + "step": 6.48 + }, + "atk": { + "base": 116.64, + "step": 3.24 + }, + "def": { + "base": 81, + "step": 2.25 + } + }, + { + "hp": { + "base": 302.4, + "step": 6.48 + }, + "atk": { + "base": 151.2, + "step": 3.24 + }, + "def": { + "base": 105, + "step": 2.25 + } + }, + { + "hp": { + "base": 371.52, + "step": 6.48 + }, + "atk": { + "base": 185.76, + "step": 3.24 + }, + "def": { + "base": 129, + "step": 2.25 + } + }, + { + "hp": { + "base": 440.64, + "step": 6.48 + }, + "atk": { + "base": 220.32, + "step": 3.24 + }, + "def": { + "base": 153, + "step": 2.25 + } + } + ], + "fullValues": { + "hp": { + "base": "952.56", + "stop": 6.48 + }, + "atk": { + "base": "476.28", + "stop": 3.24 + }, + "def": { + "base": "330.75", + "stop": 2.25 + } + }, + "attribute": "使装备者普攻和战技造成的伤害提高24%/30%/36%/42%/48%,当装备者的当前能量值等于其能量上限时,该效果额外提高24%/30%/36%/42%/48%。", + "material": [ + [ + { + "id": "2", + "num": 4000 + }, + { + "id": "113011", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 8000 + }, + { + "id": "110121", + "num": 3 + }, + { + "id": "113011", + "num": 10 + } + ], + [ + { + "id": "2", + "num": 16000 + }, + { + "id": "110122", + "num": 3 + }, + { + "id": "113012", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 40000 + }, + { + "id": "110122", + "num": 6 + }, + { + "id": "113012", + "num": 9 + } + ], + [ + { + "id": "2", + "num": 80000 + }, + { + "id": "110123", + "num": 4 + }, + { + "id": "113013", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 160000 + }, + { + "id": "110123", + "num": 8 + }, + { + "id": "113013", + "num": 7 + } + ], + [] + ], + "params": [ + [ + 0.24, + 0.24 + ], + [ + 0.3, + 0.3 + ], + [ + 0.36, + 0.36 + ], + [ + 0.42, + 0.42 + ], + [ + 0.48, + 0.48 + ] + ], + "skill": "不赞不许走!" + }, + "21018": { + "id": "21018", + "name": "舞!舞!舞!", + "rarity": 4, + "path": "Shaman", + "desc": "「为什么虎克不能像克拉拉一样跳舞转圈圈呢…」\n她握紧拳头,嘟囔起嘴,圆乎乎的面颊被毛毡帽烘得红润。\n「史瓦罗先生,可以帮帮虎克么?」\n不苟言笑的大机器人,一言不发地伸出机械手。\n「要、要转晕啦!!可恶…快放我下来!」", + "icon": "icon/light_cone/21018.png", + "preview": "image/light_cone_preview/21018.png", + "portrait": "image/light_cone_portrait/21018.png", + "type": "同谐", + "star": 4, + "access": "常驻", + "characteristic": "释放终结技后群体行动提前", + "names": [ + "舞", + "舞舞舞" + ], + "suitRole": [ + "布洛妮娅", + "停云", + "艾丝妲", + "开拓者" + ], + "belongRole": [], + "values": [ + { + "hp": { + "base": 43.2, + "step": 6.48 + }, + "atk": { + "base": 19.2, + "step": 2.88 + }, + "def": { + "base": 18, + "step": 2.7 + } + }, + { + "hp": { + "base": 95.04, + "step": 6.48 + }, + "atk": { + "base": 42.24, + "step": 2.88 + }, + "def": { + "base": 39.6, + "step": 2.7 + } + }, + { + "hp": { + "base": 164.16, + "step": 6.48 + }, + "atk": { + "base": 72.96, + "step": 2.88 + }, + "def": { + "base": 68.4, + "step": 2.7 + } + }, + { + "hp": { + "base": 233.28, + "step": 6.48 + }, + "atk": { + "base": 103.68, + "step": 2.88 + }, + "def": { + "base": 97.2, + "step": 2.7 + } + }, + { + "hp": { + "base": 302.4, + "step": 6.48 + }, + "atk": { + "base": 134.4, + "step": 2.88 + }, + "def": { + "base": 126, + "step": 2.7 + } + }, + { + "hp": { + "base": 371.52, + "step": 6.48 + }, + "atk": { + "base": 165.12, + "step": 2.88 + }, + "def": { + "base": 154.8, + "step": 2.7 + } + }, + { + "hp": { + "base": 440.64, + "step": 6.48 + }, + "atk": { + "base": 195.84, + "step": 2.88 + }, + "def": { + "base": 183.6, + "step": 2.7 + } + } + ], + "fullValues": { + "hp": { + "base": "952.56", + "stop": 6.48 + }, + "atk": { + "base": "423.36", + "stop": 2.88 + }, + "def": { + "base": "396.90", + "stop": 2.7 + } + }, + "attribute": "当装备者施放终结技后,我方全体行动提前16%/18%/20%/22%/24%。", + "material": [ + [ + { + "id": "2", + "num": 4000 + }, + { + "id": "113011", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 8000 + }, + { + "id": "110161", + "num": 3 + }, + { + "id": "113011", + "num": 10 + } + ], + [ + { + "id": "2", + "num": 16000 + }, + { + "id": "110162", + "num": 3 + }, + { + "id": "113012", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 40000 + }, + { + "id": "110162", + "num": 6 + }, + { + "id": "113012", + "num": 9 + } + ], + [ + { + "id": "2", + "num": 80000 + }, + { + "id": "110163", + "num": 4 + }, + { + "id": "113013", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 160000 + }, + { + "id": "110163", + "num": 8 + }, + { + "id": "113013", + "num": 7 + } + ], + [] + ], + "params": [ + [ + 0.16 + ], + [ + 0.18 + ], + [ + 0.2 + ], + [ + 0.22 + ], + [ + 0.24 + ] + ], + "skill": "停不下来啦!" + }, + "21019": { + "id": "21019", + "name": "在蓝天下", + "rarity": 4, + "path": "Warrior", + "desc": "蓝天下的麦浪阵阵摇荡,\n少女精心编织着花环,\n戴在最亲爱的妹妹的额头上。\n那时的她们还一般高,\n那时的她们仍那样笑。", + "icon": "icon/light_cone/21019.png", + "preview": "image/light_cone_preview/21019.png", + "portrait": "image/light_cone_portrait/21019.png", + "type": "毁灭", + "star": 4, + "access": "常驻", + "characteristic": "消灭目标后暴击率提高", + "names": [ + "在蓝天之下", + "蓝天之下" + ], + "suitRole": [ + "刃", + "克拉拉", + "虎克", + "阿兰", + "开拓者" + ], + "belongRole": [], + "values": [ + { + "hp": { + "base": 43.2, + "step": 6.48 + }, + "atk": { + "base": 21.6, + "step": 3.24 + }, + "def": { + "base": 15, + "step": 2.25 + } + }, + { + "hp": { + "base": 95.04, + "step": 6.48 + }, + "atk": { + "base": 47.52, + "step": 3.24 + }, + "def": { + "base": 33, + "step": 2.25 + } + }, + { + "hp": { + "base": 164.16, + "step": 6.48 + }, + "atk": { + "base": 82.08, + "step": 3.24 + }, + "def": { + "base": 57, + "step": 2.25 + } + }, + { + "hp": { + "base": 233.28, + "step": 6.48 + }, + "atk": { + "base": 116.64, + "step": 3.24 + }, + "def": { + "base": 81, + "step": 2.25 + } + }, + { + "hp": { + "base": 302.4, + "step": 6.48 + }, + "atk": { + "base": 151.2, + "step": 3.24 + }, + "def": { + "base": 105, + "step": 2.25 + } + }, + { + "hp": { + "base": 371.52, + "step": 6.48 + }, + "atk": { + "base": 185.76, + "step": 3.24 + }, + "def": { + "base": 129, + "step": 2.25 + } + }, + { + "hp": { + "base": 440.64, + "step": 6.48 + }, + "atk": { + "base": 220.32, + "step": 3.24 + }, + "def": { + "base": 153, + "step": 2.25 + } + } + ], + "fullValues": { + "hp": { + "base": "952.56", + "stop": 6.48 + }, + "atk": { + "base": "476.28", + "stop": 3.24 + }, + "def": { + "base": "330.75", + "stop": 2.25 + } + }, + "attribute": "使装备者攻击力提高16%/20%/24%/28%/32%,当装备者消灭敌方目标后,暴击率提高12%/15%/18%/21%/24%,持续3回合。", + "material": [ + [ + { + "id": "2", + "num": 4000 + }, + { + "id": "113001", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 8000 + }, + { + "id": "110111", + "num": 3 + }, + { + "id": "113001", + "num": 10 + } + ], + [ + { + "id": "2", + "num": 16000 + }, + { + "id": "110112", + "num": 3 + }, + { + "id": "113002", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 40000 + }, + { + "id": "110112", + "num": 6 + }, + { + "id": "113002", + "num": 9 + } + ], + [ + { + "id": "2", + "num": 80000 + }, + { + "id": "110113", + "num": 4 + }, + { + "id": "113003", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 160000 + }, + { + "id": "110113", + "num": 8 + }, + { + "id": "113003", + "num": 7 + } + ], + [] + ], + "params": [ + [ + 0.16, + 0.12, + 3 + ], + [ + 0.2, + 0.15, + 3 + ], + [ + 0.24, + 0.18, + 3 + ], + [ + 0.28, + 0.21, + 3 + ], + [ + 0.32, + 0.24, + 3 + ] + ], + "skill": "暖阳麦浪" + }, + "21020": { + "id": "21020", + "name": "天才们的休憩", + "rarity": 4, + "path": "Mage", + "desc": "她点了点那碧绿色的团子。\n「实验结束,该休息了。我不能错过刚出炉的时令点心。」\n她看到人偶少女皱起眉头沉思。\n「你先用这具身体看看便好,回头给你捎上一盒。」\n她看到机械贵族面露难色,端起杯子。\n「放心吧,那是机油。」", + "icon": "icon/light_cone/21020.png", + "preview": "image/light_cone_preview/21020.png", + "portrait": "image/light_cone_portrait/21020.png", + "type": "智识", + "star": 4, + "access": "常驻", + "characteristic": "消灭目标后暴击伤害提高", + "names": [ + "天才们休憩", + "天才们的休息", + "天才们休息", + "天才的休憩", + "天才的休息" + ], + "suitRole": [ + "景元", + "姬子", + "青雀", + "黑塔", + "希露瓦", + "开拓者" + ], + "belongRole": [], + "values": [ + { + "hp": { + "base": 38.4, + "step": 5.76 + }, + "atk": { + "base": 21.6, + "step": 3.24 + }, + "def": { + "base": 18, + "step": 2.7 + } + }, + { + "hp": { + "base": 84.48, + "step": 5.76 + }, + "atk": { + "base": 47.52, + "step": 3.24 + }, + "def": { + "base": 39.6, + "step": 2.7 + } + }, + { + "hp": { + "base": 145.92, + "step": 5.76 + }, + "atk": { + "base": 82.08, + "step": 3.24 + }, + "def": { + "base": 68.4, + "step": 2.7 + } + }, + { + "hp": { + "base": 207.36, + "step": 5.76 + }, + "atk": { + "base": 116.64, + "step": 3.24 + }, + "def": { + "base": 97.2, + "step": 2.7 + } + }, + { + "hp": { + "base": 268.8, + "step": 5.76 + }, + "atk": { + "base": 151.2, + "step": 3.24 + }, + "def": { + "base": 126, + "step": 2.7 + } + }, + { + "hp": { + "base": 330.24, + "step": 5.76 + }, + "atk": { + "base": 185.76, + "step": 3.24 + }, + "def": { + "base": 154.8, + "step": 2.7 + } + }, + { + "hp": { + "base": 391.68, + "step": 5.76 + }, + "atk": { + "base": 220.32, + "step": 3.24 + }, + "def": { + "base": 183.6, + "step": 2.7 + } + } + ], + "fullValues": { + "hp": { + "base": "846.72", + "stop": 5.76 + }, + "atk": { + "base": "476.28", + "stop": 3.24 + }, + "def": { + "base": "396.90", + "stop": 2.7 + } + }, + "attribute": "使装备者攻击力提高16%/20%/24%/28%/32%,当装备者消灭敌方目标后,暴击伤害提高24%/30%/36%/42%/48%,持续3回合。", + "material": [ + [ + { + "id": "2", + "num": 4000 + }, + { + "id": "113001", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 8000 + }, + { + "id": "110131", + "num": 3 + }, + { + "id": "113001", + "num": 10 + } + ], + [ + { + "id": "2", + "num": 16000 + }, + { + "id": "110132", + "num": 3 + }, + { + "id": "113002", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 40000 + }, + { + "id": "110132", + "num": 6 + }, + { + "id": "113002", + "num": 9 + } + ], + [ + { + "id": "2", + "num": 80000 + }, + { + "id": "110133", + "num": 4 + }, + { + "id": "113003", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 160000 + }, + { + "id": "110133", + "num": 8 + }, + { + "id": "113003", + "num": 7 + } + ], + [] + ], + "params": [ + [ + 0.16, + 0.24, + 3 + ], + [ + 0.2, + 0.3, + 3 + ], + [ + 0.24, + 0.36, + 3 + ], + [ + 0.28, + 0.42, + 3 + ], + [ + 0.32, + 0.48, + 3 + ] + ], + "skill": "各得其所" + }, + "21021": { + "id": "21021", + "name": "等价交换", + "rarity": 4, + "path": "Priest", + "desc": "在享受完龙女使出一身雷劲的按摩后,\n狐人少女伸出手,捏了捏她的脸蛋。\n看着小人儿气鼓鼓地嘟起嘴,她媚然一笑。\n「等价交换嘛。」", + "icon": "icon/light_cone/21021.png", + "preview": "image/light_cone_preview/21021.png", + "portrait": "image/light_cone_portrait/21021.png", + "type": "丰饶", + "star": 4, + "names": [ + "等价", + "交换" + ], + "suitRole": [ + "白露", + "娜塔莎", + "罗刹", + "开拓者" + ], + "belongRole": [ + "白露" + ], + "values": [ + { + "hp": { + "base": 43.2, + "step": 6.48 + }, + "atk": { + "base": 19.2, + "step": 2.88 + }, + "def": { + "base": 18, + "step": 2.7 + } + }, + { + "hp": { + "base": 95.04, + "step": 6.48 + }, + "atk": { + "base": 42.24, + "step": 2.88 + }, + "def": { + "base": 39.6, + "step": 2.7 + } + }, + { + "hp": { + "base": 164.16, + "step": 6.48 + }, + "atk": { + "base": 72.96, + "step": 2.88 + }, + "def": { + "base": 68.4, + "step": 2.7 + } + }, + { + "hp": { + "base": 233.28, + "step": 6.48 + }, + "atk": { + "base": 103.68, + "step": 2.88 + }, + "def": { + "base": 97.2, + "step": 2.7 + } + }, + { + "hp": { + "base": 302.4, + "step": 6.48 + }, + "atk": { + "base": 134.4, + "step": 2.88 + }, + "def": { + "base": 126, + "step": 2.7 + } + }, + { + "hp": { + "base": 371.52, + "step": 6.48 + }, + "atk": { + "base": 165.12, + "step": 2.88 + }, + "def": { + "base": 154.8, + "step": 2.7 + } + }, + { + "hp": { + "base": 440.64, + "step": 6.48 + }, + "atk": { + "base": 195.84, + "step": 2.88 + }, + "def": { + "base": 183.6, + "step": 2.7 + } + } + ], + "fullValues": { + "hp": { + "base": "952.56", + "stop": 6.48 + }, + "atk": { + "base": "423.36", + "stop": 2.88 + }, + "def": { + "base": "396.90", + "stop": 2.7 + } + }, + "attribute": "当装备者的回合开始时,随机为1个当前能量百分比小于50%的我方其他目标恢复8/10/12/14/16点能量。", + "material": [ + [ + { + "id": "2", + "num": 4000 + }, + { + "id": "112001", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 8000 + }, + { + "id": "110171", + "num": 3 + }, + { + "id": "112001", + "num": 10 + } + ], + [ + { + "id": "2", + "num": 16000 + }, + { + "id": "110172", + "num": 3 + }, + { + "id": "112002", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 40000 + }, + { + "id": "110172", + "num": 6 + }, + { + "id": "112002", + "num": 9 + } + ], + [ + { + "id": "2", + "num": 80000 + }, + { + "id": "110173", + "num": 4 + }, + { + "id": "112003", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 160000 + }, + { + "id": "110173", + "num": 8 + }, + { + "id": "112003", + "num": 7 + } + ], + [] + ], + "params": [ + [ + 0.5, + 8 + ], + [ + 0.5, + 10 + ], + [ + 0.5, + 12 + ], + [ + 0.5, + 14 + ], + [ + 0.5, + 16 + ] + ], + "access": "开拓等级达到20级时,可前往「帕姆」处领取", + "characteristic": "回合开始时为我方角色恢复能量", + "skill": "酣适" + }, + "21022": { + "id": "21022", + "name": "延长记号", + "rarity": 4, + "path": "Warlock", + "desc": "唱片转呀转呀,嘶哑的叫喊被热气浸润。\n她看似毫无防备,沉醉在迷人的旋律中:\n先由恳求与期待引入,\n再是激烈真挚的倾诉,\n跃过一个又一个高潮…\n直到唱片停转,嘶哑的叫喊也失了声息。\n「任务结束。」", + "icon": "icon/light_cone/21022.png", + "preview": "image/light_cone_preview/21022.png", + "portrait": "image/light_cone_portrait/21022.png", + "type": "虚无", + "star": 4, + "names": [ + "延长", + "记号" + ], + "suitRole": [ + "卢卡", + "卡芙卡", + "瓦尔特", + "桑博", + "佩拉", + "开拓者" + ], + "belongRole": [ + "卡芙卡" + ], + "values": [ + { + "hp": { + "base": 43.2, + "step": 6.48 + }, + "atk": { + "base": 21.6, + "step": 3.24 + }, + "def": { + "base": 15, + "step": 2.25 + } + }, + { + "hp": { + "base": 95.04, + "step": 6.48 + }, + "atk": { + "base": 47.52, + "step": 3.24 + }, + "def": { + "base": 33, + "step": 2.25 + } + }, + { + "hp": { + "base": 164.16, + "step": 6.48 + }, + "atk": { + "base": 82.08, + "step": 3.24 + }, + "def": { + "base": 57, + "step": 2.25 + } + }, + { + "hp": { + "base": 233.28, + "step": 6.48 + }, + "atk": { + "base": 116.64, + "step": 3.24 + }, + "def": { + "base": 81, + "step": 2.25 + } + }, + { + "hp": { + "base": 302.4, + "step": 6.48 + }, + "atk": { + "base": 151.2, + "step": 3.24 + }, + "def": { + "base": 105, + "step": 2.25 + } + }, + { + "hp": { + "base": 371.52, + "step": 6.48 + }, + "atk": { + "base": 185.76, + "step": 3.24 + }, + "def": { + "base": 129, + "step": 2.25 + } + }, + { + "hp": { + "base": 440.64, + "step": 6.48 + }, + "atk": { + "base": 220.32, + "step": 3.24 + }, + "def": { + "base": 153, + "step": 2.25 + } + } + ], + "fullValues": { + "hp": { + "base": "952.56", + "stop": 6.48 + }, + "atk": { + "base": "476.28", + "stop": 3.24 + }, + "def": { + "base": "330.75", + "stop": 2.25 + } + }, + "attribute": "使装备者的击破特攻提高16%/20%/24%/28%/32%,对处于触电或风化状态的敌方目标造成的伤害提高16%/20%/24%/28%/32%,该效果对持续伤害也会生效。", + "material": [ + [ + { + "id": "2", + "num": 4000 + }, + { + "id": "112001", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 8000 + }, + { + "id": "110151", + "num": 3 + }, + { + "id": "112001", + "num": 10 + } + ], + [ + { + "id": "2", + "num": 16000 + }, + { + "id": "110152", + "num": 3 + }, + { + "id": "112002", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 40000 + }, + { + "id": "110152", + "num": 6 + }, + { + "id": "112002", + "num": 9 + } + ], + [ + { + "id": "2", + "num": 80000 + }, + { + "id": "110153", + "num": 4 + }, + { + "id": "112003", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 160000 + }, + { + "id": "110153", + "num": 8 + }, + { + "id": "112003", + "num": 7 + } + ], + [] + ], + "params": [ + [ + 0.16, + 0.16 + ], + [ + 0.2, + 0.2 + ], + [ + 0.24, + 0.24 + ], + [ + 0.28, + 0.28 + ], + [ + 0.32, + 0.32 + ] + ], + "access": "兑换", + "characteristic": "攻击处于风化、触电状态下目标,造成伤害提高", + "skill": "休止符" + }, + "21023": { + "id": "21023", + "name": "我们是地火", + "rarity": 4, + "path": "Knight", + "desc": "她习惯了人们失去家园,\n也习惯了人们失去生命,\n但一个人时,哭泣也无用。\n「系上这条红丝巾,分担彼此痛苦。」\n「我们是一家人…我们是地火。」\n当宽阔的手掌抚上她的脑袋,她终于忍不住掉下眼泪。", + "icon": "icon/light_cone/21023.png", + "preview": "image/light_cone_preview/21023.png", + "portrait": "image/light_cone_portrait/21023.png", + "type": "存护", + "star": 4, + "names": [ + "地火" + ], + "suitRole": [ + "杰帕德", + "三月七", + "开拓者" + ], + "belongRole": [], + "values": [ + { + "hp": { + "base": 33.6, + "step": 5.04 + }, + "atk": { + "base": 21.6, + "step": 3.24 + }, + "def": { + "base": 21, + "step": 3.15 + } + }, + { + "hp": { + "base": 73.92, + "step": 5.04 + }, + "atk": { + "base": 47.52, + "step": 3.24 + }, + "def": { + "base": 46.2, + "step": 3.15 + } + }, + { + "hp": { + "base": 127.68, + "step": 5.04 + }, + "atk": { + "base": 82.08, + "step": 3.24 + }, + "def": { + "base": 79.8, + "step": 3.15 + } + }, + { + "hp": { + "base": 181.44, + "step": 5.04 + }, + "atk": { + "base": 116.64, + "step": 3.24 + }, + "def": { + "base": 113.4, + "step": 3.15 + } + }, + { + "hp": { + "base": 235.2, + "step": 5.04 + }, + "atk": { + "base": 151.2, + "step": 3.24 + }, + "def": { + "base": 147, + "step": 3.15 + } + }, + { + "hp": { + "base": 288.96, + "step": 5.04 + }, + "atk": { + "base": 185.76, + "step": 3.24 + }, + "def": { + "base": 180.6, + "step": 3.15 + } + }, + { + "hp": { + "base": 342.72, + "step": 5.04 + }, + "atk": { + "base": 220.32, + "step": 3.24 + }, + "def": { + "base": 214.2, + "step": 3.15 + } + } + ], + "fullValues": { + "hp": { + "base": "740.88", + "stop": 5.04 + }, + "atk": { + "base": "476.28", + "stop": 3.24 + }, + "def": { + "base": "463.05", + "stop": 3.15 + } + }, + "attribute": "战斗开始时,使我方全体受到的伤害降低8%/10%/12%/14%/16%,持续5回合。同时立即为我方全体回复等同于各自已损失生命值30%/35%/40%/45%/50%的生命值。", + "material": [ + [ + { + "id": "2", + "num": 4000 + }, + { + "id": "112011", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 8000 + }, + { + "id": "110141", + "num": 3 + }, + { + "id": "112011", + "num": 10 + } + ], + [ + { + "id": "2", + "num": 16000 + }, + { + "id": "110142", + "num": 3 + }, + { + "id": "112012", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 40000 + }, + { + "id": "110142", + "num": 6 + }, + { + "id": "112012", + "num": 9 + } + ], + [ + { + "id": "2", + "num": 80000 + }, + { + "id": "110143", + "num": 4 + }, + { + "id": "112013", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 160000 + }, + { + "id": "110143", + "num": 8 + }, + { + "id": "112013", + "num": 7 + } + ], + [] + ], + "params": [ + [ + 0.3, + 0.08, + 5 + ], + [ + 0.35, + 0.1, + 5 + ], + [ + 0.4, + 0.12, + 5 + ], + [ + 0.45, + 0.14, + 5 + ], + [ + 0.5, + 0.16, + 5 + ] + ], + "access": "兑换", + "characteristic": "战斗开始时,群体受到伤害降低,少量回复", + "skill": "泪中人" + }, + "21024": { + "id": "21024", + "name": "春水初生", + "rarity": 4, + "path": "Rogue", + "desc": "练剑的少年稍事歇息。\n阳光烘着他微热的脖颈,缓缓入水,\n没过脚边时,虽是凉的,\n但铃铛叮铃,飞鸟啁啾,\n远方的人们知是春天到了。", + "icon": "icon/light_cone/21024.png", + "preview": "image/light_cone_preview/21024.png", + "portrait": "image/light_cone_portrait/21024.png", + "type": "巡猎", + "star": 4, + "names": [ + "春水", + "初生", + "出生" + ], + "suitRole": [ + "希儿", + "彦卿", + "丹恒", + "素裳", + "开拓者" + ], + "belongRole": [ + "彦卿" + ], + "values": [ + { + "hp": { + "base": 38.4, + "step": 5.76 + }, + "atk": { + "base": 21.6, + "step": 3.24 + }, + "def": { + "base": 18, + "step": 2.7 + } + }, + { + "hp": { + "base": 84.48, + "step": 5.76 + }, + "atk": { + "base": 47.52, + "step": 3.24 + }, + "def": { + "base": 39.6, + "step": 2.7 + } + }, + { + "hp": { + "base": 145.92, + "step": 5.76 + }, + "atk": { + "base": 82.08, + "step": 3.24 + }, + "def": { + "base": 68.4, + "step": 2.7 + } + }, + { + "hp": { + "base": 207.36, + "step": 5.76 + }, + "atk": { + "base": 116.64, + "step": 3.24 + }, + "def": { + "base": 97.2, + "step": 2.7 + } + }, + { + "hp": { + "base": 268.8, + "step": 5.76 + }, + "atk": { + "base": 151.2, + "step": 3.24 + }, + "def": { + "base": 126, + "step": 2.7 + } + }, + { + "hp": { + "base": 330.24, + "step": 5.76 + }, + "atk": { + "base": 185.76, + "step": 3.24 + }, + "def": { + "base": 154.8, + "step": 2.7 + } + }, + { + "hp": { + "base": 391.68, + "step": 5.76 + }, + "atk": { + "base": 220.32, + "step": 3.24 + }, + "def": { + "base": 183.6, + "step": 2.7 + } + } + ], + "fullValues": { + "hp": { + "base": "846.72", + "stop": 5.76 + }, + "atk": { + "base": "476.28", + "stop": 3.24 + }, + "def": { + "base": "396.90", + "stop": 2.7 + } + }, + "attribute": "进入战斗后,使装备者速度提高8%/9%/10%/11%/12%,造成的伤害提高12%/15%/18%/21%/24%。当装备者受到伤害后该效果失效,下个回合结束时该效果恢复。", + "material": [ + [ + { + "id": "2", + "num": 4000 + }, + { + "id": "112011", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 8000 + }, + { + "id": "110121", + "num": 3 + }, + { + "id": "112011", + "num": 10 + } + ], + [ + { + "id": "2", + "num": 16000 + }, + { + "id": "110122", + "num": 3 + }, + { + "id": "112012", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 40000 + }, + { + "id": "110122", + "num": 6 + }, + { + "id": "112012", + "num": 9 + } + ], + [ + { + "id": "2", + "num": 80000 + }, + { + "id": "110123", + "num": 4 + }, + { + "id": "112013", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 160000 + }, + { + "id": "110123", + "num": 8 + }, + { + "id": "112013", + "num": 7 + } + ], + [] + ], + "params": [ + [ + 0.08, + 0.12 + ], + [ + 0.09, + 0.15 + ], + [ + 0.1, + 0.18 + ], + [ + 0.11, + 0.21 + ], + [ + 0.12, + 0.24 + ] + ], + "access": "兑换", + "characteristic": "速度提高、造成伤害提高", + "skill": "驱散余寒" + }, + "21025": { + "id": "21025", + "name": "过往未来", + "rarity": 4, + "path": "Shaman", + "desc": "手中的纸鸢双翼折断,就如那最珍贵之人的陨落。\n她跪坐在战火里,眼里满是悲伤。\n「如果只能被你所救,那我们的牺牲…」\n炮火染红天际,苍穹依然宏伟。\n她抬头望向天空,眼里满是愤怒。", + "icon": "icon/light_cone/21025.png", + "preview": "image/light_cone_preview/21025.png", + "portrait": "image/light_cone_portrait/21025.png", + "type": "同谐", + "star": 4, + "names": [ + "过往", + "未来", + "驭空四星专武", + "驭空4星专武" + ], + "suitRole": [ + "布洛妮娅", + "停云", + "艾丝妲", + "开拓者" + ], + "belongRole": [], + "values": [ + { + "hp": { + "base": 43.2, + "step": 6.48 + }, + "atk": { + "base": 19.2, + "step": 2.88 + }, + "def": { + "base": 18, + "step": 2.7 + } + }, + { + "hp": { + "base": 95.04, + "step": 6.48 + }, + "atk": { + "base": 42.24, + "step": 2.88 + }, + "def": { + "base": 39.6, + "step": 2.7 + } + }, + { + "hp": { + "base": 164.16, + "step": 6.48 + }, + "atk": { + "base": 72.96, + "step": 2.88 + }, + "def": { + "base": 68.4, + "step": 2.7 + } + }, + { + "hp": { + "base": 233.28, + "step": 6.48 + }, + "atk": { + "base": 103.68, + "step": 2.88 + }, + "def": { + "base": 97.2, + "step": 2.7 + } + }, + { + "hp": { + "base": 302.4, + "step": 6.48 + }, + "atk": { + "base": 134.4, + "step": 2.88 + }, + "def": { + "base": 126, + "step": 2.7 + } + }, + { + "hp": { + "base": 371.52, + "step": 6.48 + }, + "atk": { + "base": 165.12, + "step": 2.88 + }, + "def": { + "base": 154.8, + "step": 2.7 + } + }, + { + "hp": { + "base": 440.64, + "step": 6.48 + }, + "atk": { + "base": 195.84, + "step": 2.88 + }, + "def": { + "base": 183.6, + "step": 2.7 + } + } + ], + "fullValues": { + "hp": { + "base": "952.56", + "stop": 6.48 + }, + "atk": { + "base": "423.36", + "stop": 2.88 + }, + "def": { + "base": "396.90", + "stop": 2.7 + } + }, + "attribute": "当装备者施放战技后,使下一个行动的我方其他目标造成的伤害提高16%/20%/24%/28%/32%,持续1回合。", + "material": [ + [ + { + "id": "2", + "num": 4000 + }, + { + "id": "111001", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 8000 + }, + { + "id": "110161", + "num": 3 + }, + { + "id": "111001", + "num": 10 + } + ], + [ + { + "id": "2", + "num": 16000 + }, + { + "id": "110162", + "num": 3 + }, + { + "id": "111002", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 40000 + }, + { + "id": "110162", + "num": 6 + }, + { + "id": "111002", + "num": 9 + } + ], + [ + { + "id": "2", + "num": 80000 + }, + { + "id": "110163", + "num": 4 + }, + { + "id": "111003", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 160000 + }, + { + "id": "110163", + "num": 8 + }, + { + "id": "111003", + "num": 7 + } + ], + [] + ], + "params": [ + [ + 0.16, + 1 + ], + [ + 0.2, + 1 + ], + [ + 0.24, + 1 + ], + [ + 0.28, + 1 + ], + [ + 0.32, + 1 + ] + ], + "access": "在世界商店「赎珠阁」处,累计消费590巡镝即可获取", + "characteristic": "释放战技后下一个目标伤害提高", + "skill": "旧日纸鸢" + }, + "21026": { + "id": "21026", + "name": "汪!散步时间!", + "rarity": 4, + "path": "Warrior", + "desc": "可惜还没人看到…\n看到它抽抽鼻子,四处嗅嗅,钻入无人的小路。\n可惜还没人看到…\n看到它收起爪子,按下密码,投入自由的怀抱。\n还没有人看到么…\n一只成熟的小狗,早就学会自己去太空散步了!", + "icon": "icon/light_cone/21026.png", + "preview": "image/light_cone_preview/21026.png", + "portrait": "image/light_cone_portrait/21026.png", + "type": "毁灭", + "star": 4, + "names": [ + "汪", + "散步", + "散步时间" + ], + "suitRole": [ + "刃", + "克拉拉", + "虎克", + "阿兰", + "开拓者" + ], + "belongRole": [], + "values": [ + { + "hp": { + "base": 43.2, + "step": 6.48 + }, + "atk": { + "base": 21.6, + "step": 3.24 + }, + "def": { + "base": 15, + "step": 2.25 + } + }, + { + "hp": { + "base": 95.04, + "step": 6.48 + }, + "atk": { + "base": 47.52, + "step": 3.24 + }, + "def": { + "base": 33, + "step": 2.25 + } + }, + { + "hp": { + "base": 164.16, + "step": 6.48 + }, + "atk": { + "base": 82.08, + "step": 3.24 + }, + "def": { + "base": 57, + "step": 2.25 + } + }, + { + "hp": { + "base": 233.28, + "step": 6.48 + }, + "atk": { + "base": 116.64, + "step": 3.24 + }, + "def": { + "base": 81, + "step": 2.25 + } + }, + { + "hp": { + "base": 302.4, + "step": 6.48 + }, + "atk": { + "base": 151.2, + "step": 3.24 + }, + "def": { + "base": 105, + "step": 2.25 + } + }, + { + "hp": { + "base": 371.52, + "step": 6.48 + }, + "atk": { + "base": 185.76, + "step": 3.24 + }, + "def": { + "base": 129, + "step": 2.25 + } + }, + { + "hp": { + "base": 440.64, + "step": 6.48 + }, + "atk": { + "base": 220.32, + "step": 3.24 + }, + "def": { + "base": 153, + "step": 2.25 + } + } + ], + "fullValues": { + "hp": { + "base": "952.56", + "stop": 6.48 + }, + "atk": { + "base": "476.28", + "stop": 3.24 + }, + "def": { + "base": "330.75", + "stop": 2.25 + } + }, + "attribute": "使装备者的攻击力提高10%/12%/15%/17%/20%,对处于灼烧或裂伤状态的敌方目标造成的伤害提高16%/20%/24%/28%/32%,该效果对持续伤害也会生效。", + "material": [ + [ + { + "id": "2", + "num": 4000 + }, + { + "id": "111001", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 8000 + }, + { + "id": "110111", + "num": 3 + }, + { + "id": "111001", + "num": 10 + } + ], + [ + { + "id": "2", + "num": 16000 + }, + { + "id": "110112", + "num": 3 + }, + { + "id": "111002", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 40000 + }, + { + "id": "110112", + "num": 6 + }, + { + "id": "111002", + "num": 9 + } + ], + [ + { + "id": "2", + "num": 80000 + }, + { + "id": "110113", + "num": 4 + }, + { + "id": "111003", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 160000 + }, + { + "id": "110113", + "num": 8 + }, + { + "id": "111003", + "num": 7 + } + ], + [] + ], + "params": [ + [ + 0.1, + 0.16 + ], + [ + 0.125, + 0.2 + ], + [ + 0.15, + 0.24 + ], + [ + 0.175, + 0.28 + ], + [ + 0.2, + 0.32 + ] + ], + "access": "兑换", + "characteristic": "攻击处于裂伤、灼烧状态下,伤害提高", + "skill": "快溜" + }, + "21027": { + "id": "21027", + "name": "早餐的仪式感", + "rarity": 4, + "path": "Mage", + "desc": "虽然餐桌已经摆好…\n有人要先喝一杯红茶;\n有人要先拍一张照片;\n有人要先读一份报纸;\n有人要先记一页笔记;\n有人要先玩一会手机。\n「都给我趁热吃帕!」", + "icon": "icon/light_cone/21027.png", + "preview": "image/light_cone_preview/21027.png", + "portrait": "image/light_cone_portrait/21027.png", + "type": "智识", + "star": 4, + "names": [ + "早餐的仪式", + "早餐仪式感", + "早餐", + "仪式感", + "仪式" + ], + "suitRole": [ + "景元", + "姬子", + "青雀", + "黑塔", + "希露瓦", + "开拓者" + ], + "belongRole": [], + "values": [ + { + "hp": { + "base": 38.4, + "step": 5.76 + }, + "atk": { + "base": 21.6, + "step": 3.24 + }, + "def": { + "base": 18, + "step": 2.7 + } + }, + { + "hp": { + "base": 84.48, + "step": 5.76 + }, + "atk": { + "base": 47.52, + "step": 3.24 + }, + "def": { + "base": 39.6, + "step": 2.7 + } + }, + { + "hp": { + "base": 145.92, + "step": 5.76 + }, + "atk": { + "base": 82.08, + "step": 3.24 + }, + "def": { + "base": 68.4, + "step": 2.7 + } + }, + { + "hp": { + "base": 207.36, + "step": 5.76 + }, + "atk": { + "base": 116.64, + "step": 3.24 + }, + "def": { + "base": 97.2, + "step": 2.7 + } + }, + { + "hp": { + "base": 268.8, + "step": 5.76 + }, + "atk": { + "base": 151.2, + "step": 3.24 + }, + "def": { + "base": 126, + "step": 2.7 + } + }, + { + "hp": { + "base": 330.24, + "step": 5.76 + }, + "atk": { + "base": 185.76, + "step": 3.24 + }, + "def": { + "base": 154.8, + "step": 2.7 + } + }, + { + "hp": { + "base": 391.68, + "step": 5.76 + }, + "atk": { + "base": 220.32, + "step": 3.24 + }, + "def": { + "base": 183.6, + "step": 2.7 + } + } + ], + "fullValues": { + "hp": { + "base": "846.72", + "stop": 5.76 + }, + "atk": { + "base": "476.28", + "stop": 3.24 + }, + "def": { + "base": "396.90", + "stop": 2.7 + } + }, + "attribute": "使装备者造成伤害提高12%/15%/18%/21%/24%。每消灭1个敌方目标,装备者的攻击力提高4%/5%/6%/7%/8%,该效果最多叠加3层。", + "material": [ + [ + { + "id": "2", + "num": 4000 + }, + { + "id": "111001", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 8000 + }, + { + "id": "110131", + "num": 3 + }, + { + "id": "111001", + "num": 10 + } + ], + [ + { + "id": "2", + "num": 16000 + }, + { + "id": "110132", + "num": 3 + }, + { + "id": "111002", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 40000 + }, + { + "id": "110132", + "num": 6 + }, + { + "id": "111002", + "num": 9 + } + ], + [ + { + "id": "2", + "num": 80000 + }, + { + "id": "110133", + "num": 4 + }, + { + "id": "111003", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 160000 + }, + { + "id": "110133", + "num": 8 + }, + { + "id": "111003", + "num": 7 + } + ], + [] + ], + "params": [ + [ + 0.12, + 0.04, + 3 + ], + [ + 0.15, + 0.05, + 3 + ], + [ + 0.18, + 0.06, + 3 + ], + [ + 0.21, + 0.07, + 3 + ], + [ + 0.24, + 0.08, + 3 + ] + ], + "access": "兑换", + "characteristic": "击杀目标后攻击力提高", + "skill": "各就其位" + }, + "21028": { + "id": "21028", + "name": "暖夜不会漫长", + "rarity": 4, + "path": "Priest", + "desc": "点一盏灯,捧一杯暖呼呼的巧克力,看着身旁的朋友。\n看着她阅读自己送的书和笔记。\n看着她露出平时见不到的笑容。\n在寒冷的夜晚,一点小小的幸福便能驱散寒意。", + "icon": "icon/light_cone/21028.png", + "preview": "image/light_cone_preview/21028.png", + "portrait": "image/light_cone_portrait/21028.png", + "type": "丰饶", + "star": 4, + "names": [ + "暖夜", + "不会漫长" + ], + "suitRole": [ + "白露", + "娜塔莎", + "罗刹", + "开拓者" + ], + "belongRole": [], + "values": [ + { + "hp": { + "base": 48, + "step": 7.2 + }, + "atk": { + "base": 16.8, + "step": 2.52 + }, + "def": { + "base": 18, + "step": 2.7 + } + }, + { + "hp": { + "base": 105.6, + "step": 7.2 + }, + "atk": { + "base": 36.96, + "step": 2.52 + }, + "def": { + "base": 39.6, + "step": 2.7 + } + }, + { + "hp": { + "base": 182.4, + "step": 7.2 + }, + "atk": { + "base": 63.84, + "step": 2.52 + }, + "def": { + "base": 68.4, + "step": 2.7 + } + }, + { + "hp": { + "base": 259.2, + "step": 7.2 + }, + "atk": { + "base": 90.72, + "step": 2.52 + }, + "def": { + "base": 97.2, + "step": 2.7 + } + }, + { + "hp": { + "base": 336, + "step": 7.2 + }, + "atk": { + "base": 117.6, + "step": 2.52 + }, + "def": { + "base": 126, + "step": 2.7 + } + }, + { + "hp": { + "base": 412.8, + "step": 7.2 + }, + "atk": { + "base": 144.48, + "step": 2.52 + }, + "def": { + "base": 154.8, + "step": 2.7 + } + }, + { + "hp": { + "base": 489.6, + "step": 7.2 + }, + "atk": { + "base": 171.36, + "step": 2.52 + }, + "def": { + "base": 183.6, + "step": 2.7 + } + } + ], + "fullValues": { + "hp": { + "base": "1058.40", + "stop": 7.2 + }, + "atk": { + "base": "370.44", + "stop": 2.52 + }, + "def": { + "base": "396.90", + "stop": 2.7 + } + }, + "attribute": "使装备者的生命上限提高16%/20%/24%/28%/32%。施放普攻或战技后,为我方全体回复等同于各自生命上限2%/2%/3%/3%/4%的生命值。", + "material": [ + [ + { + "id": "2", + "num": 4000 + }, + { + "id": "111001", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 8000 + }, + { + "id": "110171", + "num": 3 + }, + { + "id": "111001", + "num": 10 + } + ], + [ + { + "id": "2", + "num": 16000 + }, + { + "id": "110172", + "num": 3 + }, + { + "id": "111002", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 40000 + }, + { + "id": "110172", + "num": 6 + }, + { + "id": "111002", + "num": 9 + } + ], + [ + { + "id": "2", + "num": 80000 + }, + { + "id": "110173", + "num": 4 + }, + { + "id": "111003", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 160000 + }, + { + "id": "110173", + "num": 8 + }, + { + "id": "111003", + "num": 7 + } + ], + [] + ], + "params": [ + [ + 0.16, + 0.02 + ], + [ + 0.2, + 0.025 + ], + [ + 0.24, + 0.03 + ], + [ + 0.28, + 0.035 + ], + [ + 0.32, + 0.04 + ] + ], + "access": "无名勋礼", + "characteristic": "释放普攻或战技后群体少量回血", + "skill": "小小灯火" + }, + "21029": { + "id": "21029", + "name": "后会有期", + "rarity": 4, + "path": "Warlock", + "desc": "她曾怀疑那是某种程式,不然怎会不知疲倦。\n但程式不会主动舍弃最优方案,绕过她布下的陷阱。\n「看来我们要打一场持久战。」\n她打了个哈欠。\n「早点睡吧,有机生命应当珍惜梦境。」\n周围暗了下去。\n她突然惊醒,但数据的残渣已被扫去,烧毁,好像一场梦\n——除了那初尝失败的滋味是如此真实。", + "icon": "icon/light_cone/21029.png", + "preview": "image/light_cone_preview/21029.png", + "portrait": "image/light_cone_portrait/21029.png", + "type": "虚无", + "star": 4, + "names": [ + "后会无期" + ], + "suitRole": [ + "卢卡", + "卡芙卡", + "瓦尔特", + "桑博", + "佩拉", + "开拓者" + ], + "belongRole": [], + "values": [ + { + "hp": { + "base": 38.4, + "step": 5.76 + }, + "atk": { + "base": 24, + "step": 3.6 + }, + "def": { + "base": 15, + "step": 2.25 + } + }, + { + "hp": { + "base": 84.48, + "step": 5.76 + }, + "atk": { + "base": 52.8, + "step": 3.6 + }, + "def": { + "base": 33, + "step": 2.25 + } + }, + { + "hp": { + "base": 145.92, + "step": 5.76 + }, + "atk": { + "base": 91.2, + "step": 3.6 + }, + "def": { + "base": 57, + "step": 2.25 + } + }, + { + "hp": { + "base": 207.36, + "step": 5.76 + }, + "atk": { + "base": 129.6, + "step": 3.6 + }, + "def": { + "base": 81, + "step": 2.25 + } + }, + { + "hp": { + "base": 268.8, + "step": 5.76 + }, + "atk": { + "base": 168, + "step": 3.6 + }, + "def": { + "base": 105, + "step": 2.25 + } + }, + { + "hp": { + "base": 330.24, + "step": 5.76 + }, + "atk": { + "base": 206.4, + "step": 3.6 + }, + "def": { + "base": 129, + "step": 2.25 + } + }, + { + "hp": { + "base": 391.68, + "step": 5.76 + }, + "atk": { + "base": 244.8, + "step": 3.6 + }, + "def": { + "base": 153, + "step": 2.25 + } + } + ], + "fullValues": { + "hp": { + "base": "846.72", + "stop": 5.76 + }, + "atk": { + "base": "529.20", + "stop": 3.6 + }, + "def": { + "base": "330.75", + "stop": 2.25 + } + }, + "attribute": "装备者施放普攻或战技后,对随机1个受到攻击的敌方目标造成等同于自身48%/60%/72%/84%/96%攻击力的附加伤害。", + "material": [ + [ + { + "id": "2", + "num": 4000 + }, + { + "id": "112011", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 8000 + }, + { + "id": "110151", + "num": 3 + }, + { + "id": "112011", + "num": 10 + } + ], + [ + { + "id": "2", + "num": 16000 + }, + { + "id": "110152", + "num": 3 + }, + { + "id": "112012", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 40000 + }, + { + "id": "110152", + "num": 6 + }, + { + "id": "112012", + "num": 9 + } + ], + [ + { + "id": "2", + "num": 80000 + }, + { + "id": "110153", + "num": 4 + }, + { + "id": "112013", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 160000 + }, + { + "id": "110153", + "num": 8 + }, + { + "id": "112013", + "num": 7 + } + ], + [] + ], + "params": [ + [ + 0.48 + ], + [ + 0.6 + ], + [ + 0.72 + ], + [ + 0.84 + ], + [ + 0.96 + ] + ], + "access": "无名勋礼", + "characteristic": "普攻、战技附加伤害", + "skill": "交手如交谈" + }, + "21030": { + "id": "21030", + "name": "这就是我啦!", + "rarity": 4, + "path": "Knight", + "desc": "少女穿什么都很可人,但她似乎仍不满意,身后堆叠的衣服不下十几套。\n「今天会是最后一次么?」\n她默默地想着,抬头看向镜中的少女,今天的她好像格外开心。\n「好啦!这就是我啦!」", + "icon": "icon/light_cone/21030.png", + "preview": "image/light_cone_preview/21030.png", + "portrait": "image/light_cone_portrait/21030.png", + "type": "存护", + "star": 4, + "names": [ + "这就是我啦", + "这就是我", + "这是我啦" + ], + "suitRole": [ + "杰帕德", + "三月七", + "开拓者" + ], + "belongRole": [ + "三月七" + ], + "values": [ + { + "hp": { + "base": 38.4, + "step": 5.76 + }, + "atk": { + "base": 16.8, + "step": 2.52 + }, + "def": { + "base": 24, + "step": 3.6 + } + }, + { + "hp": { + "base": 84.48, + "step": 5.76 + }, + "atk": { + "base": 36.96, + "step": 2.52 + }, + "def": { + "base": 52.8, + "step": 3.6 + } + }, + { + "hp": { + "base": 145.92, + "step": 5.76 + }, + "atk": { + "base": 63.84, + "step": 2.52 + }, + "def": { + "base": 91.2, + "step": 3.6 + } + }, + { + "hp": { + "base": 207.36, + "step": 5.76 + }, + "atk": { + "base": 90.72, + "step": 2.52 + }, + "def": { + "base": 129.6, + "step": 3.6 + } + }, + { + "hp": { + "base": 268.8, + "step": 5.76 + }, + "atk": { + "base": 117.6, + "step": 2.52 + }, + "def": { + "base": 168, + "step": 3.6 + } + }, + { + "hp": { + "base": 330.24, + "step": 5.76 + }, + "atk": { + "base": 144.48, + "step": 2.52 + }, + "def": { + "base": 206.4, + "step": 3.6 + } + }, + { + "hp": { + "base": 391.68, + "step": 5.76 + }, + "atk": { + "base": 171.36, + "step": 2.52 + }, + "def": { + "base": 244.8, + "step": 3.6 + } + } + ], + "fullValues": { + "hp": { + "base": "846.72", + "stop": 5.76 + }, + "atk": { + "base": "370.44", + "stop": 2.52 + }, + "def": { + "base": "529.20", + "stop": 3.6 + } + }, + "attribute": "使装备者防御力提高16%/20%/24%/28%/32%。使装备者施放终结技时造成的伤害值提高,提高数值等同于装备者防御力的60%/75%/90%/105%/120%,该效果对每个敌方目标仅生效1次。", + "material": [ + [ + { + "id": "2", + "num": 4000 + }, + { + "id": "111011", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 8000 + }, + { + "id": "110141", + "num": 3 + }, + { + "id": "111011", + "num": 10 + } + ], + [ + { + "id": "2", + "num": 16000 + }, + { + "id": "110142", + "num": 3 + }, + { + "id": "111012", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 40000 + }, + { + "id": "110142", + "num": 6 + }, + { + "id": "111012", + "num": 9 + } + ], + [ + { + "id": "2", + "num": 80000 + }, + { + "id": "110143", + "num": 4 + }, + { + "id": "111013", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 160000 + }, + { + "id": "110143", + "num": 8 + }, + { + "id": "111013", + "num": 7 + } + ], + [] + ], + "params": [ + [ + 0.16, + 0.6 + ], + [ + 0.2, + 0.75 + ], + [ + 0.24, + 0.9 + ], + [ + 0.28, + 1.05 + ], + [ + 0.32, + 1.2 + ] + ], + "access": "无名勋礼", + "characteristic": "基于装备着防御力终结技伤害提高", + "skill": "新篇章" + }, + "21031": { + "id": "21031", + "name": "重返幽冥", + "rarity": 4, + "path": "Rogue", + "desc": "虽然在姐姐身边,她却什么都听不见。\n只有心底的声音越来越响。\n「姐姐的身体冷冷的。」\n「姐姐的身体不会动。」\n愤怒的潮水将她淹没,义无反顾。她已来不及想起——\n「姐姐的身体,很早以前就是冷的了。」", + "icon": "icon/light_cone/21031.png", + "preview": "image/light_cone_preview/21031.png", + "portrait": "image/light_cone_portrait/21031.png", + "type": "巡猎", + "star": 4, + "names": [ + "重返", + "幽冥" + ], + "suitRole": [ + "希儿", + "彦卿", + "丹恒", + "素裳", + "开拓者" + ], + "belongRole": [], + "values": [ + { + "hp": { + "base": 38.4, + "step": 5.76 + }, + "atk": { + "base": 24, + "step": 3.6 + }, + "def": { + "base": 15, + "step": 2.25 + } + }, + { + "hp": { + "base": 84.48, + "step": 5.76 + }, + "atk": { + "base": 52.8, + "step": 3.6 + }, + "def": { + "base": 33, + "step": 2.25 + } + }, + { + "hp": { + "base": 145.92, + "step": 5.76 + }, + "atk": { + "base": 91.2, + "step": 3.6 + }, + "def": { + "base": 57, + "step": 2.25 + } + }, + { + "hp": { + "base": 207.36, + "step": 5.76 + }, + "atk": { + "base": 129.6, + "step": 3.6 + }, + "def": { + "base": 81, + "step": 2.25 + } + }, + { + "hp": { + "base": 268.8, + "step": 5.76 + }, + "atk": { + "base": 168, + "step": 3.6 + }, + "def": { + "base": 105, + "step": 2.25 + } + }, + { + "hp": { + "base": 330.24, + "step": 5.76 + }, + "atk": { + "base": 206.4, + "step": 3.6 + }, + "def": { + "base": 129, + "step": 2.25 + } + }, + { + "hp": { + "base": 391.68, + "step": 5.76 + }, + "atk": { + "base": 244.8, + "step": 3.6 + }, + "def": { + "base": 153, + "step": 2.25 + } + } + ], + "fullValues": { + "hp": { + "base": "846.72", + "stop": 5.76 + }, + "atk": { + "base": "529.20", + "stop": 3.6 + }, + "def": { + "base": "330.75", + "stop": 2.25 + } + }, + "attribute": "使装备者暴击率提高12%/15%/18%/21%/24%。暴击后有16%/20%/24%/28%/32%的固定概率解除被攻击敌方目标所持有的1个增益效果,该效果每次攻击只可触发1次。", + "material": [ + [ + { + "id": "2", + "num": 4000 + }, + { + "id": "113001", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 8000 + }, + { + "id": "110121", + "num": 3 + }, + { + "id": "113001", + "num": 10 + } + ], + [ + { + "id": "2", + "num": 16000 + }, + { + "id": "110122", + "num": 3 + }, + { + "id": "113002", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 40000 + }, + { + "id": "110122", + "num": 6 + }, + { + "id": "113002", + "num": 9 + } + ], + [ + { + "id": "2", + "num": 80000 + }, + { + "id": "110123", + "num": 4 + }, + { + "id": "113003", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 160000 + }, + { + "id": "110123", + "num": 8 + }, + { + "id": "113003", + "num": 7 + } + ], + [] + ], + "params": [ + [ + 0.12, + 0.16 + ], + [ + 0.15, + 0.2 + ], + [ + 0.18, + 0.24 + ], + [ + 0.21, + 0.28 + ], + [ + 0.24, + 0.32 + ] + ], + "access": "无名勋礼", + "characteristic": "暴击后有概率清除一个敌方增益", + "skill": "汹涌" + }, + "21032": { + "id": "21032", + "name": "镂月裁云之意", + "rarity": 4, + "path": "Shaman", + "desc": "他一眼便相中了那件金器,正要买下,\n狐人少女却将他拉入一隅,悄声说道:\n「请恩公晚上再光临本铺,到时再做决定不迟。」\n夜晚,他如约而至。\n开门的又是那狐人少女,盈盈一笑。\n「请恩公随我来。」\n只见一线月光刻入錾花盘底。\n工匠以线条之深浅勾勒花瓣的深浅,若非在月光之下,便看不真切这一毫一厘。\n他这才想起,这件器物为何名为「镂月裁云」。", + "icon": "icon/light_cone/21032.png", + "preview": "image/light_cone_preview/21032.png", + "portrait": "image/light_cone_portrait/21032.png", + "type": "同谐", + "star": 4, + "names": [ + "镂月裁月", + "镂月", + "裁云" + ], + "suitRole": [ + "布洛妮娅", + "停云", + "艾丝妲", + "开拓者" + ], + "belongRole": [ + "停云" + ], + "values": [ + { + "hp": { + "base": 43.2, + "step": 6.48 + }, + "atk": { + "base": 21.6, + "step": 3.24 + }, + "def": { + "base": 15, + "step": 2.25 + } + }, + { + "hp": { + "base": 95.04, + "step": 6.48 + }, + "atk": { + "base": 47.52, + "step": 3.24 + }, + "def": { + "base": 33, + "step": 2.25 + } + }, + { + "hp": { + "base": 164.16, + "step": 6.48 + }, + "atk": { + "base": 82.08, + "step": 3.24 + }, + "def": { + "base": 57, + "step": 2.25 + } + }, + { + "hp": { + "base": 233.28, + "step": 6.48 + }, + "atk": { + "base": 116.64, + "step": 3.24 + }, + "def": { + "base": 81, + "step": 2.25 + } + }, + { + "hp": { + "base": 302.4, + "step": 6.48 + }, + "atk": { + "base": 151.2, + "step": 3.24 + }, + "def": { + "base": 105, + "step": 2.25 + } + }, + { + "hp": { + "base": 371.52, + "step": 6.48 + }, + "atk": { + "base": 185.76, + "step": 3.24 + }, + "def": { + "base": 129, + "step": 2.25 + } + }, + { + "hp": { + "base": 440.64, + "step": 6.48 + }, + "atk": { + "base": 220.32, + "step": 3.24 + }, + "def": { + "base": 153, + "step": 2.25 + } + } + ], + "fullValues": { + "hp": { + "base": "952.56", + "stop": 6.48 + }, + "atk": { + "base": "476.28", + "stop": 3.24 + }, + "def": { + "base": "330.75", + "stop": 2.25 + } + }, + "attribute": "在战斗开始时以及当装备者回合开始时,随机生效1个效果。该效果生效时,替换上次的效果且本次不会与上次重复。效果包含:使我方全体攻击力提高10%/12%/15%/17%/20%;使我方全体暴击伤害提高12%/15%/18%/21%/24%;使我方全体能量恢复效率提高6%/7%/9%/10%/12%。同类效果无法叠加,在装备者陷入无法战斗状态时解除。", + "material": [ + [ + { + "id": "2", + "num": 4000 + }, + { + "id": "111011", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 8000 + }, + { + "id": "110161", + "num": 3 + }, + { + "id": "111011", + "num": 10 + } + ], + [ + { + "id": "2", + "num": 16000 + }, + { + "id": "110162", + "num": 3 + }, + { + "id": "111012", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 40000 + }, + { + "id": "110162", + "num": 6 + }, + { + "id": "111012", + "num": 9 + } + ], + [ + { + "id": "2", + "num": 80000 + }, + { + "id": "110163", + "num": 4 + }, + { + "id": "111013", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 160000 + }, + { + "id": "110163", + "num": 8 + }, + { + "id": "111013", + "num": 7 + } + ], + [] + ], + "params": [ + [ + 0.1, + 0.12, + 0.06 + ], + [ + 0.125, + 0.15, + 0.075 + ], + [ + 0.15, + 0.18, + 0.09 + ], + [ + 0.175, + 0.21, + 0.105 + ], + [ + 0.2, + 0.24, + 0.12 + ] + ], + "access": "无名勋礼", + "characteristic": "群体加攻、群体爆伤增加、群体充能效率增加,效果随机3选1", + "skill": "秘密" + }, + "21033": { + "id": "21033", + "name": "无处可逃", + "rarity": 4, + "path": "Warrior", + "desc": "他并非第一次见到这个男人。\n不知从何时起,男人就像他身下的一道阴影。\n无论以长枪贯穿多少次,总会再次出现。\n他不会输,但也赢不了。\n他想逃,但也无处可逃。", + "icon": "icon/light_cone/21033.png", + "preview": "image/light_cone_preview/21033.png", + "portrait": "image/light_cone_portrait/21033.png", + "type": "毁灭", + "star": 4, + "names": [ + "无处能逃" + ], + "suitRole": [ + "刃", + "克拉拉", + "虎克", + "阿兰", + "开拓者" + ], + "belongRole": [], + "values": [ + { + "hp": { + "base": 43.2, + "step": 6.48 + }, + "atk": { + "base": 24, + "step": 3.6 + }, + "def": { + "base": 12, + "step": 1.8 + } + }, + { + "hp": { + "base": 95.04, + "step": 6.48 + }, + "atk": { + "base": 52.8, + "step": 3.6 + }, + "def": { + "base": 26.4, + "step": 1.8 + } + }, + { + "hp": { + "base": 164.16, + "step": 6.48 + }, + "atk": { + "base": 91.2, + "step": 3.6 + }, + "def": { + "base": 45.6, + "step": 1.8 + } + }, + { + "hp": { + "base": 233.28, + "step": 6.48 + }, + "atk": { + "base": 129.6, + "step": 3.6 + }, + "def": { + "base": 64.8, + "step": 1.8 + } + }, + { + "hp": { + "base": 302.4, + "step": 6.48 + }, + "atk": { + "base": 168, + "step": 3.6 + }, + "def": { + "base": 84, + "step": 1.8 + } + }, + { + "hp": { + "base": 371.52, + "step": 6.48 + }, + "atk": { + "base": 206.4, + "step": 3.6 + }, + "def": { + "base": 103.2, + "step": 1.8 + } + }, + { + "hp": { + "base": 440.64, + "step": 6.48 + }, + "atk": { + "base": 244.8, + "step": 3.6 + }, + "def": { + "base": 122.4, + "step": 1.8 + } + } + ], + "fullValues": { + "hp": { + "base": "952.56", + "stop": 6.48 + }, + "atk": { + "base": "529.20", + "stop": 3.6 + }, + "def": { + "base": "264.60", + "stop": 1.8 + } + }, + "attribute": "使装备者的攻击力提高24%/30%/36%/42%/48%。当装备者消灭敌方目标时,回复等同于自身12%/15%/18%/21%/24%攻击力的生命值。", + "material": [ + [ + { + "id": "2", + "num": 4000 + }, + { + "id": "112001", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 8000 + }, + { + "id": "110111", + "num": 3 + }, + { + "id": "112001", + "num": 10 + } + ], + [ + { + "id": "2", + "num": 16000 + }, + { + "id": "110112", + "num": 3 + }, + { + "id": "112002", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 40000 + }, + { + "id": "110112", + "num": 6 + }, + { + "id": "112002", + "num": 9 + } + ], + [ + { + "id": "2", + "num": 80000 + }, + { + "id": "110113", + "num": 4 + }, + { + "id": "112003", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 160000 + }, + { + "id": "110113", + "num": 8 + }, + { + "id": "112003", + "num": 7 + } + ], + [] + ], + "params": [ + [ + 0.24, + 0.12 + ], + [ + 0.3, + 0.15 + ], + [ + 0.36, + 0.18 + ], + [ + 0.42, + 0.21 + ], + [ + 0.48, + 0.24 + ] + ], + "access": "无名勋礼", + "characteristic": "击杀回血", + "skill": "绝境" + }, + "21034": { + "id": "21034", + "name": "今日亦是和平的一日", + "rarity": 4, + "path": "Mage", + "desc": "牌戏的新玩法刚有了眉头,午休又借了闲书。\n掐指一算,余下的工作慢慢做,正好能做到下班。\n她不慌不忙,躲入一隅。\n美好的闲散时光,绝不能被任何人打扰\n——就算是符太卜也不能。\n只是万一,要是有个万一……\n「就把这奶糖团子给符太卜。吃了甜食,总该消气罢!」", + "icon": "icon/light_cone/21034.png", + "preview": "image/light_cone_preview/21034.png", + "portrait": "image/light_cone_portrait/21034.png", + "type": "智识", + "star": 4, + "names": [ + "今日是和平的一日", + "今天是和平的一天", + "和平的一日", + "和平的一天" + ], + "suitRole": [ + "景元", + "姬子", + "青雀", + "黑塔", + "希露瓦", + "开拓者" + ], + "belongRole": [ + "青雀" + ], + "values": [ + { + "hp": { + "base": 38.4, + "step": 5.76 + }, + "atk": { + "base": 24, + "step": 3.6 + }, + "def": { + "base": 15, + "step": 2.25 + } + }, + { + "hp": { + "base": 84.48, + "step": 5.76 + }, + "atk": { + "base": 52.8, + "step": 3.6 + }, + "def": { + "base": 33, + "step": 2.25 + } + }, + { + "hp": { + "base": 145.92, + "step": 5.76 + }, + "atk": { + "base": 91.2, + "step": 3.6 + }, + "def": { + "base": 57, + "step": 2.25 + } + }, + { + "hp": { + "base": 207.36, + "step": 5.76 + }, + "atk": { + "base": 129.6, + "step": 3.6 + }, + "def": { + "base": 81, + "step": 2.25 + } + }, + { + "hp": { + "base": 268.8, + "step": 5.76 + }, + "atk": { + "base": 168, + "step": 3.6 + }, + "def": { + "base": 105, + "step": 2.25 + } + }, + { + "hp": { + "base": 330.24, + "step": 5.76 + }, + "atk": { + "base": 206.4, + "step": 3.6 + }, + "def": { + "base": 129, + "step": 2.25 + } + }, + { + "hp": { + "base": 391.68, + "step": 5.76 + }, + "atk": { + "base": 244.8, + "step": 3.6 + }, + "def": { + "base": 153, + "step": 2.25 + } + } + ], + "fullValues": { + "hp": { + "base": "846.72", + "stop": 5.76 + }, + "atk": { + "base": "529.20", + "stop": 3.6 + }, + "def": { + "base": "330.75", + "stop": 2.25 + } + }, + "attribute": "进入战斗后,根据装备者的能量上限,提高装备者造成的伤害:每点能量提高0.20%/0.25%/0.30%/0.35%/0.40%,最多计入160点。", + "material": [ + [ + { + "id": "2", + "num": 4000 + }, + { + "id": "113001", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 8000 + }, + { + "id": "110131", + "num": 3 + }, + { + "id": "113001", + "num": 10 + } + ], + [ + { + "id": "2", + "num": 16000 + }, + { + "id": "110132", + "num": 3 + }, + { + "id": "113002", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 40000 + }, + { + "id": "110132", + "num": 6 + }, + { + "id": "113002", + "num": 9 + } + ], + [ + { + "id": "2", + "num": 80000 + }, + { + "id": "110133", + "num": 4 + }, + { + "id": "113003", + "num": 5 + } + ], + [ + { + "id": "2", + "num": 160000 + }, + { + "id": "110133", + "num": 8 + }, + { + "id": "113003", + "num": 7 + } + ], + [] + ], + "params": [ + [ + 0.002, + 160 + ], + [ + 0.0025, + 160 + ], + [ + 0.003, + 160 + ], + [ + 0.0035, + 160 + ], + [ + 0.004, + 160 + ] + ], + "access": "无名勋礼", + "characteristic": "根据能量上限提高伤害", + "skill": "风雨将至" + }, + "23000": { + "id": "23000", + "name": "银河铁道之夜", + "rarity": 5, + "path": "Mage", + "desc": "若是担心脚下,只需再度抬头凝望,\n当繁星温柔地注视,心已乘风而上。\n每一个念想,每一声低语,\n都化作生命中的承载,再不会失去。", + "icon": "icon/light_cone/23000.png", + "preview": "image/light_cone_preview/23000.png", + "portrait": "image/light_cone_portrait/23000.png", + "type": "智识", + "star": 5, + "names": [ + "银河铁道", + "银河", + "铁道" + ], + "suitRole": [ + "景元", + "姬子", + "青雀", + "黑塔", + "希露瓦", + "开拓者" + ], + "belongRole": [ + "姬子" + ], + "values": [ + { + "hp": { + "base": 52.8, + "step": 7.92 + }, + "atk": { + "base": 26.4, + "step": 3.96 + }, + "def": { + "base": 18, + "step": 2.7 + } + }, + { + "hp": { + "base": 116.16, + "step": 7.92 + }, + "atk": { + "base": 58.08, + "step": 3.96 + }, + "def": { + "base": 39.6, + "step": 2.7 + } + }, + { + "hp": { + "base": 200.64, + "step": 7.92 + }, + "atk": { + "base": 100.32, + "step": 3.96 + }, + "def": { + "base": 68.4, + "step": 2.7 + } + }, + { + "hp": { + "base": 285.12, + "step": 7.92 + }, + "atk": { + "base": 142.56, + "step": 3.96 + }, + "def": { + "base": 97.2, + "step": 2.7 + } + }, + { + "hp": { + "base": 369.6, + "step": 7.92 + }, + "atk": { + "base": 184.8, + "step": 3.96 + }, + "def": { + "base": 126, + "step": 2.7 + } + }, + { + "hp": { + "base": 454.08, + "step": 7.92 + }, + "atk": { + "base": 227.04, + "step": 3.96 + }, + "def": { + "base": 154.8, + "step": 2.7 + } + }, + { + "hp": { + "base": 538.56, + "step": 7.92 + }, + "atk": { + "base": 269.28, + "step": 3.96 + }, + "def": { + "base": 183.6, + "step": 2.7 + } + } + ], + "fullValues": { + "hp": { + "base": "1164.24", + "stop": 7.92 + }, + "atk": { + "base": "582.12", + "stop": 3.96 + }, + "def": { + "base": "396.90", + "stop": 2.7 + } + }, + "attribute": "场上每有1个敌方目标,使装备者的攻击力提高9%/10%/12%/13%/15%,该效果最多叠加5层。当有敌方目标的弱点被击破时,装备者造成的伤害提高30%/35%/40%/45%/50%,持续1回合。", + "material": [ + [ + { + "id": "2", + "num": 5000 + }, + { + "id": "111001", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 10000 + }, + { + "id": "110131", + "num": 4 + }, + { + "id": "111001", + "num": 12 + } + ], + [ + { + "id": "2", + "num": 20000 + }, + { + "id": "110132", + "num": 4 + }, + { + "id": "111002", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 50000 + }, + { + "id": "110132", + "num": 8 + }, + { + "id": "111002", + "num": 12 + } + ], + [ + { + "id": "2", + "num": 100000 + }, + { + "id": "110133", + "num": 5 + }, + { + "id": "111003", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 200000 + }, + { + "id": "110133", + "num": 10 + }, + { + "id": "111003", + "num": 8 + } + ], + [] + ], + "params": [ + [ + 0.3, + 0.09 + ], + [ + 0.35, + 0.105 + ], + [ + 0.4, + 0.12 + ], + [ + 0.45, + 0.135 + ], + [ + 0.5, + 0.15 + ] + ], + "access": "兑换", + "characteristic": "击破弱点后伤害提高", + "skill": "流星群" + }, + "23001": { + "id": "23001", + "name": "于夜色中", + "rarity": 5, + "path": "Rogue", + "desc": "少女露出一丝不易察觉的微笑。\n「为什么呢?」\n「此时此刻此地,明明只有我一个人……」\n「却感觉…很热闹呢。」", + "icon": "icon/light_cone/23001.png", + "preview": "image/light_cone_preview/23001.png", + "portrait": "image/light_cone_portrait/23001.png", + "type": "巡猎", + "star": 5, + "names": [ + "在夜色中", + "夜色", + "于夜" + ], + "suitRole": [ + "希儿", + "彦卿", + "丹恒", + "素裳", + "开拓者" + ], + "belongRole": [ + "希儿" + ], + "values": [ + { + "hp": { + "base": 48, + "step": 7.2 + }, + "atk": { + "base": 26.4, + "step": 3.96 + }, + "def": { + "base": 21, + "step": 3.15 + } + }, + { + "hp": { + "base": 105.6, + "step": 7.2 + }, + "atk": { + "base": 58.08, + "step": 3.96 + }, + "def": { + "base": 46.2, + "step": 3.15 + } + }, + { + "hp": { + "base": 182.4, + "step": 7.2 + }, + "atk": { + "base": 100.32, + "step": 3.96 + }, + "def": { + "base": 79.8, + "step": 3.15 + } + }, + { + "hp": { + "base": 259.2, + "step": 7.2 + }, + "atk": { + "base": 142.56, + "step": 3.96 + }, + "def": { + "base": 113.4, + "step": 3.15 + } + }, + { + "hp": { + "base": 336, + "step": 7.2 + }, + "atk": { + "base": 184.8, + "step": 3.96 + }, + "def": { + "base": 147, + "step": 3.15 + } + }, + { + "hp": { + "base": 412.8, + "step": 7.2 + }, + "atk": { + "base": 227.04, + "step": 3.96 + }, + "def": { + "base": 180.6, + "step": 3.15 + } + }, + { + "hp": { + "base": 489.6, + "step": 7.2 + }, + "atk": { + "base": 269.28, + "step": 3.96 + }, + "def": { + "base": 214.2, + "step": 3.15 + } + } + ], + "fullValues": { + "hp": { + "base": "1058.40", + "stop": 7.2 + }, + "atk": { + "base": "582.12", + "stop": 3.96 + }, + "def": { + "base": "463.05", + "stop": 3.15 + } + }, + "attribute": "使装备者的暴击率提高18%/21%/24%/27%/30%。当装备者在战斗中速度大于100时,每超过10点,普攻和战技造成的伤害提高6%/7%/8%/9%/10%,同时终结技的暴击伤害提高12%/14%/16%/18%/20%,该效果可叠加6层。", + "material": [ + [ + { + "id": "2", + "num": 5000 + }, + { + "id": "111011", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 10000 + }, + { + "id": "110121", + "num": 4 + }, + { + "id": "111011", + "num": 12 + } + ], + [ + { + "id": "2", + "num": 20000 + }, + { + "id": "110122", + "num": 4 + }, + { + "id": "111012", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 50000 + }, + { + "id": "110122", + "num": 8 + }, + { + "id": "111012", + "num": 12 + } + ], + [ + { + "id": "2", + "num": 100000 + }, + { + "id": "110123", + "num": 5 + }, + { + "id": "111013", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 200000 + }, + { + "id": "110123", + "num": 10 + }, + { + "id": "111013", + "num": 8 + } + ], + [] + ], + "params": [ + [ + 0.18, + 10, + 0.06, + 0.12, + 6 + ], + [ + 0.21, + 10, + 0.07, + 0.14, + 6 + ], + [ + 0.24, + 10, + 0.08, + 0.16, + 6 + ], + [ + 0.27, + 10, + 0.09, + 0.18, + 6 + ], + [ + 0.3, + 10, + 0.1, + 0.2, + 6 + ] + ], + "access": "限定", + "characteristic": "依照速度等比提高伤害", + "skill": "花与蝶" + }, + "23002": { + "id": "23002", + "name": "无可取代的东西", + "rarity": 5, + "path": "Warrior", + "desc": "「史瓦罗,如果有一天我也不在了,这个数据库就拜托你了。」\n(是谁…为什么我的记录里会有这样的留声……)\n「史瓦罗,你有什么觉得无可取代的东西么?」\n(无可取代…坏掉的零件…只要替换掉就好……)\n「史瓦罗,总有一天你会找到的。」\n(那种东西…只会是个麻烦……)\n「到了那个时候…你就离开这里吧。」", + "icon": "icon/light_cone/23002.png", + "preview": "image/light_cone_preview/23002.png", + "portrait": "image/light_cone_portrait/23002.png", + "type": "毁灭", + "star": 5, + "names": [ + "无可取代", + "无可取代的", + "不可取代" + ], + "suitRole": [ + "刃", + "克拉拉", + "虎克", + "阿兰", + "开拓者" + ], + "belongRole": [ + "克拉拉" + ], + "values": [ + { + "hp": { + "base": 52.8, + "step": 7.92 + }, + "atk": { + "base": 26.4, + "step": 3.96 + }, + "def": { + "base": 18, + "step": 2.7 + } + }, + { + "hp": { + "base": 116.16, + "step": 7.92 + }, + "atk": { + "base": 58.08, + "step": 3.96 + }, + "def": { + "base": 39.6, + "step": 2.7 + } + }, + { + "hp": { + "base": 200.64, + "step": 7.92 + }, + "atk": { + "base": 100.32, + "step": 3.96 + }, + "def": { + "base": 68.4, + "step": 2.7 + } + }, + { + "hp": { + "base": 285.12, + "step": 7.92 + }, + "atk": { + "base": 142.56, + "step": 3.96 + }, + "def": { + "base": 97.2, + "step": 2.7 + } + }, + { + "hp": { + "base": 369.6, + "step": 7.92 + }, + "atk": { + "base": 184.8, + "step": 3.96 + }, + "def": { + "base": 126, + "step": 2.7 + } + }, + { + "hp": { + "base": 454.08, + "step": 7.92 + }, + "atk": { + "base": 227.04, + "step": 3.96 + }, + "def": { + "base": 154.8, + "step": 2.7 + } + }, + { + "hp": { + "base": 538.56, + "step": 7.92 + }, + "atk": { + "base": 269.28, + "step": 3.96 + }, + "def": { + "base": 183.6, + "step": 2.7 + } + } + ], + "fullValues": { + "hp": { + "base": "1164.24", + "stop": 7.92 + }, + "atk": { + "base": "582.12", + "stop": 3.96 + }, + "def": { + "base": "396.90", + "stop": 2.7 + } + }, + "attribute": "使装备者的攻击力提高24%/28%/32%/36%/40%。当装备者消灭敌方目标或受到攻击后,立即回复等同于装备者攻击力8%/9%/10%/11%/12%的生命值,同时造成的伤害提高24%/28%/32%/36%/40%,持续到自身下个回合结束。该效果不可叠加,每回合只可触发1次。", + "material": [ + [ + { + "id": "2", + "num": 5000 + }, + { + "id": "112011", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 10000 + }, + { + "id": "110111", + "num": 4 + }, + { + "id": "112011", + "num": 12 + } + ], + [ + { + "id": "2", + "num": 20000 + }, + { + "id": "110112", + "num": 4 + }, + { + "id": "112012", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 50000 + }, + { + "id": "110112", + "num": 8 + }, + { + "id": "112012", + "num": 12 + } + ], + [ + { + "id": "2", + "num": 100000 + }, + { + "id": "110113", + "num": 5 + }, + { + "id": "112013", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 200000 + }, + { + "id": "110113", + "num": 10 + }, + { + "id": "112013", + "num": 8 + } + ], + [] + ], + "params": [ + [ + 0.24, + 0.08, + 0.24 + ], + [ + 0.28, + 0.09, + 0.28 + ], + [ + 0.32, + 0.1, + 0.32 + ], + [ + 0.36, + 0.11, + 0.36 + ], + [ + 0.4, + 0.12, + 0.4 + ] + ], + "access": "兑换", + "characteristic": "击杀/受击回血增伤", + "skill": "家人" + }, + "23003": { + "id": "23003", + "name": "但战斗还未结束", + "rarity": 5, + "path": "Shaman", + "desc": "「记住,和那些怪物的战争,是不能靠撤退打赢的。」\n「我们的身后就是贝洛伯格,我们就是最后一道钢铁防线,……」\n「只有我们,绝不能退!」\n她抬起头,前方是寒天,是冻土,是一望无际的风雪。\n一切如常。\n唯独那个她一直注视着的背影,不在了。", + "icon": "icon/light_cone/23003.png", + "preview": "image/light_cone_preview/23003.png", + "portrait": "image/light_cone_portrait/23003.png", + "type": "同谐", + "star": 5, + "names": [ + "战斗还未结束", + "战斗还没有结束" + ], + "suitRole": [ + "布洛妮娅", + "停云", + "艾丝妲", + "开拓者" + ], + "belongRole": [ + "布洛妮娅" + ], + "values": [ + { + "hp": { + "base": 52.8, + "step": 7.92 + }, + "atk": { + "base": 24, + "step": 3.6 + }, + "def": { + "base": 21, + "step": 3.15 + } + }, + { + "hp": { + "base": 116.16, + "step": 7.92 + }, + "atk": { + "base": 52.8, + "step": 3.6 + }, + "def": { + "base": 46.2, + "step": 3.15 + } + }, + { + "hp": { + "base": 200.64, + "step": 7.92 + }, + "atk": { + "base": 91.2, + "step": 3.6 + }, + "def": { + "base": 79.8, + "step": 3.15 + } + }, + { + "hp": { + "base": 285.12, + "step": 7.92 + }, + "atk": { + "base": 129.6, + "step": 3.6 + }, + "def": { + "base": 113.4, + "step": 3.15 + } + }, + { + "hp": { + "base": 369.6, + "step": 7.92 + }, + "atk": { + "base": 168, + "step": 3.6 + }, + "def": { + "base": 147, + "step": 3.15 + } + }, + { + "hp": { + "base": 454.08, + "step": 7.92 + }, + "atk": { + "base": 206.4, + "step": 3.6 + }, + "def": { + "base": 180.6, + "step": 3.15 + } + }, + { + "hp": { + "base": 538.56, + "step": 7.92 + }, + "atk": { + "base": 244.8, + "step": 3.6 + }, + "def": { + "base": 214.2, + "step": 3.15 + } + } + ], + "fullValues": { + "hp": { + "base": "1164.24", + "stop": 7.92 + }, + "atk": { + "base": "529.20", + "stop": 3.6 + }, + "def": { + "base": "463.05", + "stop": 3.15 + } + }, + "attribute": "使装备者的能量恢复效率提高10%/12%/14%/16%/18%,并在对我方目标施放终结技时恢复1个战技点。该效果每施放2次终结技可触发1次。当装备者施放战技后,使下一个行动的我方其他目标造成的伤害提高30%/35%/40%/45%/50%,持续1回合。", + "material": [ + [ + { + "id": "2", + "num": 5000 + }, + { + "id": "112001", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 10000 + }, + { + "id": "110161", + "num": 4 + }, + { + "id": "112001", + "num": 12 + } + ], + [ + { + "id": "2", + "num": 20000 + }, + { + "id": "110162", + "num": 4 + }, + { + "id": "112002", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 50000 + }, + { + "id": "110162", + "num": 8 + }, + { + "id": "112002", + "num": 12 + } + ], + [ + { + "id": "2", + "num": 100000 + }, + { + "id": "110163", + "num": 5 + }, + { + "id": "112003", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 200000 + }, + { + "id": "110163", + "num": 10 + }, + { + "id": "112003", + "num": 8 + } + ], + [] + ], + "params": [ + [ + 0.1, + 0.3, + 1 + ], + [ + 0.12, + 0.35, + 1 + ], + [ + 0.14, + 0.4, + 1 + ], + [ + 0.16, + 0.45, + 1 + ], + [ + 0.18, + 0.5, + 1 + ] + ], + "access": "兑换", + "characteristic": "战技点恢复", + "skill": "继承人" + }, + "23004": { + "id": "23004", + "name": "以世界之名", + "rarity": 5, + "path": "Warlock", + "desc": "「瓦尔特…吗……」\n「这个名字…很棒吧?」\n「那么……」\n「从现在开始,你就是瓦尔特了。」\n「律者的核心…还有守护这个世界的使命……」\n「就拜托你了,瓦尔特。」", + "icon": "icon/light_cone/23004.png", + "preview": "image/light_cone_preview/23004.png", + "portrait": "image/light_cone_portrait/23004.png", + "type": "虚无", + "star": 5, + "names": [ + "世界之名" + ], + "suitRole": [ + "卢卡", + "卡芙卡", + "瓦尔特", + "桑博", + "佩拉", + "开拓者" + ], + "belongRole": [ + "瓦尔特" + ], + "values": [ + { + "hp": { + "base": 48, + "step": 7.2 + }, + "atk": { + "base": 26.4, + "step": 3.96 + }, + "def": { + "base": 21, + "step": 3.15 + } + }, + { + "hp": { + "base": 105.6, + "step": 7.2 + }, + "atk": { + "base": 58.08, + "step": 3.96 + }, + "def": { + "base": 46.2, + "step": 3.15 + } + }, + { + "hp": { + "base": 182.4, + "step": 7.2 + }, + "atk": { + "base": 100.32, + "step": 3.96 + }, + "def": { + "base": 79.8, + "step": 3.15 + } + }, + { + "hp": { + "base": 259.2, + "step": 7.2 + }, + "atk": { + "base": 142.56, + "step": 3.96 + }, + "def": { + "base": 113.4, + "step": 3.15 + } + }, + { + "hp": { + "base": 336, + "step": 7.2 + }, + "atk": { + "base": 184.8, + "step": 3.96 + }, + "def": { + "base": 147, + "step": 3.15 + } + }, + { + "hp": { + "base": 412.8, + "step": 7.2 + }, + "atk": { + "base": 227.04, + "step": 3.96 + }, + "def": { + "base": 180.6, + "step": 3.15 + } + }, + { + "hp": { + "base": 489.6, + "step": 7.2 + }, + "atk": { + "base": 269.28, + "step": 3.96 + }, + "def": { + "base": 214.2, + "step": 3.15 + } + } + ], + "fullValues": { + "hp": { + "base": "1058.40", + "stop": 7.2 + }, + "atk": { + "base": "582.12", + "stop": 3.96 + }, + "def": { + "base": "463.05", + "stop": 3.15 + } + }, + "attribute": "使装备者对陷入负面效果的敌方目标造成的伤害提高24%/28%/32%/36%/40%。当装备者施放战技时,装备者此次攻击的效果命中提高18%/21%/24%/27%/30%,攻击力提高24%/28%/32%/36%/40%。", + "material": [ + [ + { + "id": "2", + "num": 5000 + }, + { + "id": "112001", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 10000 + }, + { + "id": "110151", + "num": 4 + }, + { + "id": "112001", + "num": 12 + } + ], + [ + { + "id": "2", + "num": 20000 + }, + { + "id": "110152", + "num": 4 + }, + { + "id": "112002", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 50000 + }, + { + "id": "110152", + "num": 8 + }, + { + "id": "112002", + "num": 12 + } + ], + [ + { + "id": "2", + "num": 100000 + }, + { + "id": "110153", + "num": 5 + }, + { + "id": "112003", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 200000 + }, + { + "id": "110153", + "num": 10 + }, + { + "id": "112003", + "num": 8 + } + ], + [] + ], + "params": [ + [ + 0.24, + 0.18, + 0.24 + ], + [ + 0.28, + 0.21, + 0.28 + ], + [ + 0.32, + 0.24, + 0.32 + ], + [ + 0.36, + 0.27, + 0.36 + ], + [ + 0.4, + 0.3, + 0.4 + ] + ], + "access": "兑换", + "characteristic": "负面效果下伤害提高、命中提高", + "skill": "传承者" + }, + "23005": { + "id": "23005", + "name": "制胜的瞬间", + "rarity": 5, + "path": "Knight", + "desc": "「输了想哭就哭吧,杰帕德。」\n「但哭着也要站起来,直到你能赢过我…无论需要五年还是十年。」\n几年后,小男孩不再哭鼻子,也不再输给姐姐。\n如今在战场上,无论以何种姿态,骁勇无畏的银鬃铁卫戍卫官总会坚守至最后\n——只为找到彻底摧毁敌人的一瞬。", + "icon": "icon/light_cone/23005.png", + "preview": "image/light_cone_preview/23005.png", + "portrait": "image/light_cone_portrait/23005.png", + "type": "存护", + "star": 5, + "names": [ + "制胜瞬间", + "胜利的瞬间", + "制胜" + ], + "suitRole": [ + "杰帕德", + "三月七", + "开拓者" + ], + "belongRole": [ + "杰帕德" + ], + "values": [ + { + "hp": { + "base": 48, + "step": 7.2 + }, + "atk": { + "base": 21.6, + "step": 3.24 + }, + "def": { + "base": 27, + "step": 4.05 + } + }, + { + "hp": { + "base": 105.6, + "step": 7.2 + }, + "atk": { + "base": 47.52, + "step": 3.24 + }, + "def": { + "base": 59.4, + "step": 4.05 + } + }, + { + "hp": { + "base": 182.4, + "step": 7.2 + }, + "atk": { + "base": 82.08, + "step": 3.24 + }, + "def": { + "base": 102.6, + "step": 4.05 + } + }, + { + "hp": { + "base": 259.2, + "step": 7.2 + }, + "atk": { + "base": 116.64, + "step": 3.24 + }, + "def": { + "base": 145.8, + "step": 4.05 + } + }, + { + "hp": { + "base": 336, + "step": 7.2 + }, + "atk": { + "base": 151.2, + "step": 3.24 + }, + "def": { + "base": 189, + "step": 4.05 + } + }, + { + "hp": { + "base": 412.8, + "step": 7.2 + }, + "atk": { + "base": 185.76, + "step": 3.24 + }, + "def": { + "base": 232.2, + "step": 4.05 + } + }, + { + "hp": { + "base": 489.6, + "step": 7.2 + }, + "atk": { + "base": 220.32, + "step": 3.24 + }, + "def": { + "base": 275.4, + "step": 4.05 + } + } + ], + "fullValues": { + "hp": { + "base": "1058.40", + "stop": 7.2 + }, + "atk": { + "base": "476.28", + "stop": 3.24 + }, + "def": { + "base": "595.35", + "stop": 4.05 + } + }, + "attribute": "使装备者的防御力提高24%/28%/32%/36%/40%,效果命中提高24%/28%/32%/36%/40%,同时使自身受到攻击的概率提高。当装备者受到攻击后,防御力额外提高24%/28%/32%/36%/40%,持续到自身回合结束。", + "material": [ + [ + { + "id": "2", + "num": 5000 + }, + { + "id": "112001", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 10000 + }, + { + "id": "110141", + "num": 4 + }, + { + "id": "112001", + "num": 12 + } + ], + [ + { + "id": "2", + "num": 20000 + }, + { + "id": "110142", + "num": 4 + }, + { + "id": "112002", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 50000 + }, + { + "id": "110142", + "num": 8 + }, + { + "id": "112002", + "num": 12 + } + ], + [ + { + "id": "2", + "num": 100000 + }, + { + "id": "110143", + "num": 5 + }, + { + "id": "112003", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 200000 + }, + { + "id": "110143", + "num": 10 + }, + { + "id": "112003", + "num": 8 + } + ], + [] + ], + "params": [ + [ + 2, + 0.24, + 0.24, + 0.24 + ], + [ + 2, + 0.28, + 0.28, + 0.28 + ], + [ + 2, + 0.32, + 0.32, + 0.32 + ], + [ + 2, + 0.36, + 0.36, + 0.36 + ], + [ + 2, + 0.4, + 0.4, + 0.4 + ] + ], + "access": "兑换", + "characteristic": "受击概率提高", + "skill": "决断" + }, + "23010": { + "id": "23010", + "name": "拂晓之前", + "rarity": 5, + "path": "Mage", + "desc": "「将军,此事请务必慎重…往后历史会怎么评论将军您……」\n云骑将军双目半阖,听取手下来报。\n「历史自然会有判断,但我对历史的结论无甚兴趣。」\n「事成,我此时便是胸有成竹,神闲气定。」\n「事败,我此时便是逸乐无度,爱雀失众。」\n一只雀儿跳下他的肩膀,他顺势抬手接住。\n「我只是做了我的判断罢了。」", + "icon": "icon/light_cone/23010.png", + "preview": "image/light_cone_preview/23010.png", + "portrait": "image/light_cone_portrait/23010.png", + "type": "智识", + "star": 5, + "names": [ + "拂晓" + ], + "suitRole": [ + "景元", + "姬子", + "青雀", + "黑塔", + "希露瓦", + "开拓者" + ], + "belongRole": [ + "景元" + ], + "values": [ + { + "hp": { + "base": 48, + "step": 7.2 + }, + "atk": { + "base": 26.4, + "step": 3.96 + }, + "def": { + "base": 21, + "step": 3.15 + } + }, + { + "hp": { + "base": 105.6, + "step": 7.2 + }, + "atk": { + "base": 58.08, + "step": 3.96 + }, + "def": { + "base": 46.2, + "step": 3.15 + } + }, + { + "hp": { + "base": 182.4, + "step": 7.2 + }, + "atk": { + "base": 100.32, + "step": 3.96 + }, + "def": { + "base": 79.8, + "step": 3.15 + } + }, + { + "hp": { + "base": 259.2, + "step": 7.2 + }, + "atk": { + "base": 142.56, + "step": 3.96 + }, + "def": { + "base": 113.4, + "step": 3.15 + } + }, + { + "hp": { + "base": 336, + "step": 7.2 + }, + "atk": { + "base": 184.8, + "step": 3.96 + }, + "def": { + "base": 147, + "step": 3.15 + } + }, + { + "hp": { + "base": 412.8, + "step": 7.2 + }, + "atk": { + "base": 227.04, + "step": 3.96 + }, + "def": { + "base": 180.6, + "step": 3.15 + } + }, + { + "hp": { + "base": 489.6, + "step": 7.2 + }, + "atk": { + "base": 269.28, + "step": 3.96 + }, + "def": { + "base": 214.2, + "step": 3.15 + } + } + ], + "fullValues": { + "hp": { + "base": "1058.40", + "stop": 7.2 + }, + "atk": { + "base": "582.12", + "stop": 3.96 + }, + "def": { + "base": "463.05", + "stop": 3.15 + } + }, + "attribute": "使装备者暴击伤害提高36%/42%/48%/54%/60%。使装备者战技和终结技造成的伤害提高18%/21%/24%/27%/30%。当装备者施放战技或终结技后,获得【梦身】效果。触发追加攻击时,消耗【梦身】,使追加攻击造成的伤害提高48%/56%/64%/72%/80%。", + "material": [ + [ + { + "id": "2", + "num": 5000 + }, + { + "id": "113001", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 10000 + }, + { + "id": "110131", + "num": 4 + }, + { + "id": "113001", + "num": 12 + } + ], + [ + { + "id": "2", + "num": 20000 + }, + { + "id": "110132", + "num": 4 + }, + { + "id": "113002", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 50000 + }, + { + "id": "110132", + "num": 8 + }, + { + "id": "113002", + "num": 12 + } + ], + [ + { + "id": "2", + "num": 100000 + }, + { + "id": "110133", + "num": 5 + }, + { + "id": "113003", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 200000 + }, + { + "id": "110133", + "num": 10 + }, + { + "id": "113003", + "num": 8 + } + ], + [] + ], + "params": [ + [ + 0.36, + 0.18, + 0.48 + ], + [ + 0.42, + 0.21, + 0.56 + ], + [ + 0.48, + 0.24, + 0.64 + ], + [ + 0.54, + 0.27, + 0.72 + ], + [ + 0.6, + 0.3, + 0.8 + ] + ], + "access": "限定", + "characteristic": "追加伤害提高", + "skill": "长夜" + }, + "23012": { + "id": "23012", + "name": "如泥酣眠", + "rarity": 5, + "path": "Rogue", + "desc": "即使已在将军的肩头酣然睡去,男孩的手中仍紧紧握着剑。\n他轻轻拍了拍男孩的脸颊,只听到他嘟囔着。\n「将军…终于…我赢了……」\n他愣了愣,突然意识到相比起每天都在努力成长的男孩,\n自己早已度过了漫长的岁月,也早已习惯「不变」。\n「很快,你就会赢过所有人。在那之后,才是开始……」", + "icon": "icon/light_cone/23012.png", + "preview": "image/light_cone_preview/23012.png", + "portrait": "image/light_cone_portrait/23012.png", + "type": "巡猎", + "star": 5, + "names": [ + "如泥酣睡", + "如泥" + ], + "suitRole": [ + "希儿", + "彦卿", + "丹恒", + "素裳", + "开拓者" + ], + "belongRole": [ + "彦卿" + ], + "values": [ + { + "hp": { + "base": 48, + "step": 7.2 + }, + "atk": { + "base": 26.4, + "step": 3.96 + }, + "def": { + "base": 21, + "step": 3.15 + } + }, + { + "hp": { + "base": 105.6, + "step": 7.2 + }, + "atk": { + "base": 58.08, + "step": 3.96 + }, + "def": { + "base": 46.2, + "step": 3.15 + } + }, + { + "hp": { + "base": 182.4, + "step": 7.2 + }, + "atk": { + "base": 100.32, + "step": 3.96 + }, + "def": { + "base": 79.8, + "step": 3.15 + } + }, + { + "hp": { + "base": 259.2, + "step": 7.2 + }, + "atk": { + "base": 142.56, + "step": 3.96 + }, + "def": { + "base": 113.4, + "step": 3.15 + } + }, + { + "hp": { + "base": 336, + "step": 7.2 + }, + "atk": { + "base": 184.8, + "step": 3.96 + }, + "def": { + "base": 147, + "step": 3.15 + } + }, + { + "hp": { + "base": 412.8, + "step": 7.2 + }, + "atk": { + "base": 227.04, + "step": 3.96 + }, + "def": { + "base": 180.6, + "step": 3.15 + } + }, + { + "hp": { + "base": 489.6, + "step": 7.2 + }, + "atk": { + "base": 269.28, + "step": 3.96 + }, + "def": { + "base": 214.2, + "step": 3.15 + } + } + ], + "fullValues": { + "hp": { + "base": "1058.40", + "stop": 7.2 + }, + "atk": { + "base": "582.12", + "stop": 3.96 + }, + "def": { + "base": "463.05", + "stop": 3.15 + } + }, + "attribute": "使装备者的暴击伤害提高30%/35%/40%/45%/50%。当装备者的普攻或战技伤害未造成暴击时,使自身暴击率提高36%/42%/48%/54%/60%,持续1回合。该效果每3回合可以触发1次。", + "material": [ + [ + { + "id": "2", + "num": 5000 + }, + { + "id": "111011", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 10000 + }, + { + "id": "110121", + "num": 4 + }, + { + "id": "111011", + "num": 12 + } + ], + [ + { + "id": "2", + "num": 20000 + }, + { + "id": "110122", + "num": 4 + }, + { + "id": "111012", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 50000 + }, + { + "id": "110122", + "num": 8 + }, + { + "id": "111012", + "num": 12 + } + ], + [ + { + "id": "2", + "num": 100000 + }, + { + "id": "110123", + "num": 5 + }, + { + "id": "111013", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 200000 + }, + { + "id": "110123", + "num": 10 + }, + { + "id": "111013", + "num": 8 + } + ], + [] + ], + "params": [ + [ + 0.3, + 0.36, + 1, + 3 + ], + [ + 0.35, + 0.42, + 1, + 3 + ], + [ + 0.4, + 0.48, + 1, + 3 + ], + [ + 0.45, + 0.54, + 1, + 3 + ], + [ + 0.5, + 0.6, + 1, + 3 + ] + ], + "access": "兑换", + "characteristic": "高额暴击、爆伤加成", + "skill": "美梦" + }, + "23013": { + "id": "23013", + "name": "时节不居", + "rarity": 5, + "path": "Priest", + "desc": "她曾在窗边度过许多时光。\n配制薄荷、荆芥等辛温之药时,窗外就开花了。\n配制香薷、生姜等辛热之药时,窗外就下雨了。\n配制芍药、乌梅等酸温之药时,窗外就落叶了。\n配制黄芩、知母等苦寒之药时,窗外就飘雪了。\n时节不居,岁月如流,但这扇窗,坐在窗边的人,依旧未变。", + "icon": "icon/light_cone/23013.png", + "preview": "image/light_cone_preview/23013.png", + "portrait": "image/light_cone_portrait/23013.png", + "type": "丰饶", + "star": 5, + "names": [ + "时节", + "不居", + "白露专武", + "白露五星专武", + "白露5星专武" + ], + "suitRole": [ + "白露", + "娜塔莎", + "罗刹", + "开拓者" + ], + "belongRole": [], + "values": [ + { + "hp": { + "base": 57.6, + "step": 8.64 + }, + "atk": { + "base": 21.6, + "step": 3.24 + }, + "def": { + "base": 21, + "step": 3.15 + } + }, + { + "hp": { + "base": 126.72, + "step": 8.64 + }, + "atk": { + "base": 47.52, + "step": 3.24 + }, + "def": { + "base": 46.2, + "step": 3.15 + } + }, + { + "hp": { + "base": 218.88, + "step": 8.64 + }, + "atk": { + "base": 82.08, + "step": 3.24 + }, + "def": { + "base": 79.8, + "step": 3.15 + } + }, + { + "hp": { + "base": 311.04, + "step": 8.64 + }, + "atk": { + "base": 116.64, + "step": 3.24 + }, + "def": { + "base": 113.4, + "step": 3.15 + } + }, + { + "hp": { + "base": 403.2, + "step": 8.64 + }, + "atk": { + "base": 151.2, + "step": 3.24 + }, + "def": { + "base": 147, + "step": 3.15 + } + }, + { + "hp": { + "base": 495.36, + "step": 8.64 + }, + "atk": { + "base": 185.76, + "step": 3.24 + }, + "def": { + "base": 180.6, + "step": 3.15 + } + }, + { + "hp": { + "base": 587.52, + "step": 8.64 + }, + "atk": { + "base": 220.32, + "step": 3.24 + }, + "def": { + "base": 214.2, + "step": 3.15 + } + } + ], + "fullValues": { + "hp": { + "base": "1270.08", + "stop": 8.64 + }, + "atk": { + "base": "476.28", + "stop": 3.24 + }, + "def": { + "base": "463.05", + "stop": 3.15 + } + }, + "attribute": "使装备者生命上限提高18%/21%/24%/27%/30%,治疗量提高12%/14%/16%/18%/20%。当装备者对我方目标提供治疗时,记录治疗量。当任意我方目标施放攻击后,根据记录治疗量的36%/42%/48%/54%/60%,对随机1个受到攻击的敌方目标造成基于装备者属性的附加伤害。该伤害不受加成影响,每回合最多结算1次。", + "material": [ + [ + { + "id": "2", + "num": 5000 + }, + { + "id": "111001", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 10000 + }, + { + "id": "110171", + "num": 4 + }, + { + "id": "111001", + "num": 12 + } + ], + [ + { + "id": "2", + "num": 20000 + }, + { + "id": "110172", + "num": 4 + }, + { + "id": "111002", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 50000 + }, + { + "id": "110172", + "num": 8 + }, + { + "id": "111002", + "num": 12 + } + ], + [ + { + "id": "2", + "num": 100000 + }, + { + "id": "110173", + "num": 5 + }, + { + "id": "111003", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 200000 + }, + { + "id": "110173", + "num": 10 + }, + { + "id": "111003", + "num": 8 + } + ], + [] + ], + "params": [ + [ + 0.18, + 0.12, + 0.36 + ], + [ + 0.21, + 0.14, + 0.42 + ], + [ + 0.24, + 0.16, + 0.48 + ], + [ + 0.27, + 0.18, + 0.54 + ], + [ + 0.3, + 0.2, + 0.6 + ] + ], + "access": "兑换", + "characteristic": "治疗量提高", + "skill": "日有四时" + }, + "24000": { + "id": "24000", + "name": "记一位星神的陨落", + "rarity": 5, + "path": "Warrior", + "desc": "从一道光开始。\n祂们坠落,陨灭的威胁居高临下。\n祂们不得不停止自我复制,争先恐后拥抱彼此,\n试图用繁殖的权利为代价,换取生存的可能。\n祂们携手,从未如此团结\n——但命途戛然而止,\n祂们趋向真正的死亡。", + "icon": "icon/light_cone/24000.png", + "preview": "image/light_cone_preview/24000.png", + "portrait": "image/light_cone_portrait/24000.png", + "type": "毁灭", + "star": 5, + "names": [ + "星神的陨落", + "星神陨落", + "陨落", + "一位星神的陨落" + ], + "suitRole": [ + "刃", + "克拉拉", + "虎克", + "阿兰", + "开拓者" + ], + "belongRole": [], + "values": [ + { + "hp": { + "base": 48, + "step": 7.2 + }, + "atk": { + "base": 24, + "step": 3.6 + }, + "def": { + "base": 18, + "step": 2.7 + } + }, + { + "hp": { + "base": 105.6, + "step": 7.2 + }, + "atk": { + "base": 52.8, + "step": 3.6 + }, + "def": { + "base": 39.6, + "step": 2.7 + } + }, + { + "hp": { + "base": 182.4, + "step": 7.2 + }, + "atk": { + "base": 91.2, + "step": 3.6 + }, + "def": { + "base": 68.4, + "step": 2.7 + } + }, + { + "hp": { + "base": 259.2, + "step": 7.2 + }, + "atk": { + "base": 129.6, + "step": 3.6 + }, + "def": { + "base": 97.2, + "step": 2.7 + } + }, + { + "hp": { + "base": 336, + "step": 7.2 + }, + "atk": { + "base": 168, + "step": 3.6 + }, + "def": { + "base": 126, + "step": 2.7 + } + }, + { + "hp": { + "base": 412.8, + "step": 7.2 + }, + "atk": { + "base": 206.4, + "step": 3.6 + }, + "def": { + "base": 154.8, + "step": 2.7 + } + }, + { + "hp": { + "base": 489.6, + "step": 7.2 + }, + "atk": { + "base": 244.8, + "step": 3.6 + }, + "def": { + "base": 183.6, + "step": 2.7 + } + } + ], + "fullValues": { + "hp": { + "base": "1058.40", + "stop": 7.2 + }, + "atk": { + "base": "529.20", + "stop": 3.6 + }, + "def": { + "base": "396.90", + "stop": 2.7 + } + }, + "attribute": "当装备者施放攻击时,使装备者本场战斗中的攻击力提高8%/10%/12%/14%/16%,该效果最多叠加4层。当装备者击破敌方目标弱点后,造成的伤害提高12%/15%/18%/21%/24%,持续2回合。", + "material": [ + [ + { + "id": "2", + "num": 5000 + }, + { + "id": "111001", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 10000 + }, + { + "id": "110111", + "num": 4 + }, + { + "id": "111001", + "num": 12 + } + ], + [ + { + "id": "2", + "num": 20000 + }, + { + "id": "110112", + "num": 4 + }, + { + "id": "111002", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 50000 + }, + { + "id": "110112", + "num": 8 + }, + { + "id": "111002", + "num": 12 + } + ], + [ + { + "id": "2", + "num": 100000 + }, + { + "id": "110113", + "num": 5 + }, + { + "id": "111003", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 200000 + }, + { + "id": "110113", + "num": 10 + }, + { + "id": "111003", + "num": 8 + } + ], + [] + ], + "params": [ + [ + 0.08, + 4, + 0.12, + 2 + ], + [ + 0.1, + 4, + 0.15, + 2 + ], + [ + 0.12, + 4, + 0.18, + 2 + ], + [ + 0.14, + 4, + 0.21, + 2 + ], + [ + 0.16, + 4, + 0.24, + 2 + ] + ], + "access": "兑换", + "characteristic": "击破弱点后伤害提高", + "skill": "扑火" + }, + "24001": { + "id": "24001", + "name": "星海巡航", + "rarity": 5, + "path": "Rogue", + "desc": "来往于星海之间,\n祂的速度有如虹霓闪光的一瞬。\n围追不死孽物,\n揽寻幻宝解药,\n寻求解脱之途。\n祂的航程将犹如永不被打破的誓言般,\n永无尽头。", + "icon": "icon/light_cone/24001.png", + "preview": "image/light_cone_preview/24001.png", + "portrait": "image/light_cone_portrait/24001.png", + "type": "巡猎", + "star": 5, + "names": [ + "星海", + "巡航", + "黑塔商店巡猎武器", + "黑塔商店巡猎" + ], + "suitRole": [ + "希儿", + "彦卿", + "丹恒", + "素裳", + "开拓者" + ], + "belongRole": [], + "values": [ + { + "hp": { + "base": 43.2, + "step": 6.48 + }, + "atk": { + "base": 24, + "step": 3.6 + }, + "def": { + "base": 21, + "step": 3.15 + } + }, + { + "hp": { + "base": 95.04, + "step": 6.48 + }, + "atk": { + "base": 52.8, + "step": 3.6 + }, + "def": { + "base": 46.2, + "step": 3.15 + } + }, + { + "hp": { + "base": 164.16, + "step": 6.48 + }, + "atk": { + "base": 91.2, + "step": 3.6 + }, + "def": { + "base": 79.8, + "step": 3.15 + } + }, + { + "hp": { + "base": 233.28, + "step": 6.48 + }, + "atk": { + "base": 129.6, + "step": 3.6 + }, + "def": { + "base": 113.4, + "step": 3.15 + } + }, + { + "hp": { + "base": 302.4, + "step": 6.48 + }, + "atk": { + "base": 168, + "step": 3.6 + }, + "def": { + "base": 147, + "step": 3.15 + } + }, + { + "hp": { + "base": 371.52, + "step": 6.48 + }, + "atk": { + "base": 206.4, + "step": 3.6 + }, + "def": { + "base": 180.6, + "step": 3.15 + } + }, + { + "hp": { + "base": 440.64, + "step": 6.48 + }, + "atk": { + "base": 244.8, + "step": 3.6 + }, + "def": { + "base": 214.2, + "step": 3.15 + } + } + ], + "fullValues": { + "hp": { + "base": "952.56", + "stop": 6.48 + }, + "atk": { + "base": "529.20", + "stop": 3.6 + }, + "def": { + "base": "463.05", + "stop": 3.15 + } + }, + "attribute": "使装备者的暴击率提高8%/10%/12%/14%/16%,装备者对生命值百分比小于等于50%的敌方目标暴击率额外提高8%/10%/12%/14%/16%。当装备者消灭敌方目标后,攻击力提高20%/25%/30%/35%/40%,持续2回合。", + "material": [ + [ + { + "id": "2", + "num": 5000 + }, + { + "id": "111001", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 10000 + }, + { + "id": "110121", + "num": 4 + }, + { + "id": "111001", + "num": 12 + } + ], + [ + { + "id": "2", + "num": 20000 + }, + { + "id": "110122", + "num": 4 + }, + { + "id": "111002", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 50000 + }, + { + "id": "110122", + "num": 8 + }, + { + "id": "111002", + "num": 12 + } + ], + [ + { + "id": "2", + "num": 100000 + }, + { + "id": "110123", + "num": 5 + }, + { + "id": "111003", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 200000 + }, + { + "id": "110123", + "num": 10 + }, + { + "id": "111003", + "num": 8 + } + ], + [] + ], + "params": [ + [ + 0.08, + 0.5, + 0.08, + 0.2, + 2 + ], + [ + 0.1, + 0.5, + 0.1, + 0.25, + 2 + ], + [ + 0.12, + 0.5, + 0.12, + 0.3, + 2 + ], + [ + 0.14, + 0.5, + 0.14, + 0.35, + 2 + ], + [ + 0.16, + 0.5, + 0.16, + 0.4, + 2 + ] + ], + "access": "兑换", + "characteristic": "击杀加攻", + "skill": "猎逐" + }, + "24002": { + "id": "24002", + "name": "记忆的质料", + "rarity": 5, + "path": "Knight", + "desc": "宇宙像一片堆满垃圾的生荒地。\n偶有琳琅,无人捡拾。\n祂翻阅往日的罅隙,拣选记忆的种子\n——新的生命要是萌芽,它的种子须是死的。\n粉色、蓝色、白色的宝石被带了来,\n在祂的苗圃中轻盈闪烁,\n但宇宙依旧寂静如谜。", + "icon": "icon/light_cone/24002.png", + "preview": "image/light_cone_preview/24002.png", + "portrait": "image/light_cone_portrait/24002.png", + "type": "存护", + "star": 5, + "names": [ + "记忆质料", + "质料", + "黑塔商店存护武器", + "黑塔商店存护" + ], + "suitRole": [ + "杰帕德", + "三月七", + "开拓者" + ], + "belongRole": [], + "values": [ + { + "hp": { + "base": 48, + "step": 7.2 + }, + "atk": { + "base": 19.2, + "step": 2.88 + }, + "def": { + "base": 24, + "step": 3.6 + } + }, + { + "hp": { + "base": 105.6, + "step": 7.2 + }, + "atk": { + "base": 42.24, + "step": 2.88 + }, + "def": { + "base": 52.8, + "step": 3.6 + } + }, + { + "hp": { + "base": 182.4, + "step": 7.2 + }, + "atk": { + "base": 72.96, + "step": 2.88 + }, + "def": { + "base": 91.2, + "step": 3.6 + } + }, + { + "hp": { + "base": 259.2, + "step": 7.2 + }, + "atk": { + "base": 103.68, + "step": 2.88 + }, + "def": { + "base": 129.6, + "step": 3.6 + } + }, + { + "hp": { + "base": 336, + "step": 7.2 + }, + "atk": { + "base": 134.4, + "step": 2.88 + }, + "def": { + "base": 168, + "step": 3.6 + } + }, + { + "hp": { + "base": 412.8, + "step": 7.2 + }, + "atk": { + "base": 165.12, + "step": 2.88 + }, + "def": { + "base": 206.4, + "step": 3.6 + } + }, + { + "hp": { + "base": 489.6, + "step": 7.2 + }, + "atk": { + "base": 195.84, + "step": 2.88 + }, + "def": { + "base": 244.8, + "step": 3.6 + } + } + ], + "fullValues": { + "hp": { + "base": "1058.40", + "stop": 7.2 + }, + "atk": { + "base": "423.36", + "stop": 2.88 + }, + "def": { + "base": "529.20", + "stop": 3.6 + } + }, + "attribute": "使装备者的效果抵抗提高8%/10%/12%/14%/16%,当装备者受到攻击后,如果自身未持有护盾,则获得1个等同于装备者16%/20%/24%/28%/32%生命上限的护盾,持续2回合。该效果每3回合只能触发1次。如果装备者持有护盾,则使自身受到的伤害降低12%/15%/18%/21%/24%。", + "material": [ + [ + { + "id": "2", + "num": 5000 + }, + { + "id": "111001", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 10000 + }, + { + "id": "110141", + "num": 4 + }, + { + "id": "111001", + "num": 12 + } + ], + [ + { + "id": "2", + "num": 20000 + }, + { + "id": "110142", + "num": 4 + }, + { + "id": "111002", + "num": 8 + } + ], + [ + { + "id": "2", + "num": 50000 + }, + { + "id": "110142", + "num": 8 + }, + { + "id": "111002", + "num": 12 + } + ], + [ + { + "id": "2", + "num": 100000 + }, + { + "id": "110143", + "num": 5 + }, + { + "id": "111003", + "num": 6 + } + ], + [ + { + "id": "2", + "num": 200000 + }, + { + "id": "110143", + "num": 10 + }, + { + "id": "111003", + "num": 8 + } + ], + [] + ], + "params": [ + [ + 0.08, + 0.16, + 2, + 3, + 0.12 + ], + [ + 0.1, + 0.2, + 2, + 3, + 0.15 + ], + [ + 0.12, + 0.24, + 2, + 3, + 0.18 + ], + [ + 0.14, + 0.28, + 2, + 3, + 0.21 + ], + [ + 0.16, + 0.32, + 2, + 3, + 0.24 + ] + ], + "access": "兑换", + "characteristic": "持有护盾下受到伤害降低", + "skill": "珍存" + } +} \ No newline at end of file diff --git a/resources/sr/weapon/image/专.png b/resources/sr/weapon/image/专.png new file mode 100644 index 0000000..424553b Binary files /dev/null and b/resources/sr/weapon/image/专.png differ diff --git a/resources/sr/weapon/image/头像框.png b/resources/sr/weapon/image/头像框.png new file mode 100644 index 0000000..5f17a48 Binary files /dev/null and b/resources/sr/weapon/image/头像框.png differ diff --git a/resources/sr/weapon/image/底层.png b/resources/sr/weapon/image/底层.png new file mode 100644 index 0000000..e58ddec Binary files /dev/null and b/resources/sr/weapon/image/底层.png differ diff --git a/resources/sr/weapon/image/星.png b/resources/sr/weapon/image/星.png new file mode 100644 index 0000000..32af75c Binary files /dev/null and b/resources/sr/weapon/image/星.png differ diff --git a/resources/sr/weapon/image/背景.png b/resources/sr/weapon/image/背景.png new file mode 100644 index 0000000..50ff0fe Binary files /dev/null and b/resources/sr/weapon/image/背景.png differ diff --git a/resources/sr/weapon/image/装饰.png b/resources/sr/weapon/image/装饰.png new file mode 100644 index 0000000..12e2088 Binary files /dev/null and b/resources/sr/weapon/image/装饰.png differ diff --git a/resources/sr/weapon/image/顶层.png b/resources/sr/weapon/image/顶层.png new file mode 100644 index 0000000..fdb9c29 Binary files /dev/null and b/resources/sr/weapon/image/顶层.png differ diff --git a/resources/sr/weapon/index.css b/resources/sr/weapon/index.css new file mode 100644 index 0000000..0fa34ea --- /dev/null +++ b/resources/sr/weapon/index.css @@ -0,0 +1,422 @@ +@font-face { + font-family: HYWenHei; + src: url(../../font/HYWenHei.ttf); +} + +@font-face { + font-family: MiSans-Regular; + src: url(../../font/MiSans-Regular.ttf); +} + +@font-face { + font-family: MiSans-Medium; + src: url(../../font/MiSans-Medium.ttf); +} +@font-face { + font-family: MiSans-Bold; + src: url(../../font/MiSans-Bold.ttf); +} +@font-face { + font-family: HYWenHei-Hew; + src: url(../../font/HYWenHei-55W.ttf); +} + +@font-face { + font-family: MiSans-Normal; + src: url(../../font/MiSans-Normal.ttf); +} +@font-face { + font-family: MiSans-Demibold; + src: url(../../font/MiSans-Demibold.ttf); +} + +* { + margin: 0; + padding: 0; + box-sizing: border-box; + user-select: none; +} + +body { + font-size: 18px; + color: #1e1f20; + font-family: Number, YS2, PingFangSC-Medium, PingFang SC, sans-serif; + transform: scale(1.4); + transform-origin: 0 0; + width: 1600px; +} + +img { + width: 100%; + height: 100%; +} + +.container { + width: 1600px; + background-image: url('image/背景.png'); + height: 900px; +} + +.body { + padding: 50px; + display: flex; +} + +.body-left { + width: 600px; + height: 800px; + font-family: 'HYWenHei-HEW'; +} + +.body-left-top { + position: absolute; + z-index: 10; +} + +.body-left-img { + width: 470px; + position: absolute; + margin-top: 25px; + margin-left: 50px; + z-index: 2; + margin-top: 35px; + margin-left: 40px; + /*border: 8px solid rgb(201, 189, 192);*/ + background-color: rgb(201, 189, 192); + height: 660px; +} + +.body-left-img img { + clip-path: inset(8px 8px 8px 8px); +} + +.body-left-bottom { + position: absolute; + right: 0; + bottom: 0; +} + +.body-dev { + width: 550px; + position: relative; + height: 730px; + left: 25px; + top: 30px; + transform: rotate(4deg); +} + +.body-left-text { + color: #fff; + position: absolute; + z-index: 99; + white-space: pre-line; + margin-left: 68px; + font-size: 15px; + text-align: left; + line-height: 30px; + bottom: 250px; + font-family: 'Misans-Medium'; + width: 380px; +} + +.body-left-type { + position: absolute; + bottom: 165px; + background-color: rgba(25, 25, 25, 0.8); + height: 70px; + margin-left: 31px; + z-index: 8; + width: 230px; + display: flex; +} + +.body-left-icon { + width: 100px; + text-align: center; +} + +.body-left-icon img { + width: 70px; + padding: 4px; +} + +.body-left-type-text { + color: #fff; + font-size: 48px; + width: 130px; + text-align: center; + background-color: rgba(0, 0, 0, 0.8); + font-family: HYWenHei-HEW; +} + +.body-left-levet { + width: 100px; + height: 35px; + font-size: 24px; + color: #fff; + text-align: center; + background-color: rgba(0, 0, 0, 0.8); + position: absolute; + right: 95px; + bottom: 165px; + z-index: 2; + font-family: HYWenHei-HEW; +} + +.body-left-star { + position: absolute; + display: flex; + justify-content: end; + right: 97px; + bottom: 88px; + z-index: 2; + flex-wrap: wrap; + align-content: flex-end; +} + +.body-left-star-img { + width: 75px; + height: 75px; + margin-right: -11px; +} + +.body-left-star-img:last-child { + left: 0px; +} + +.body-right { + margin-left: 50px; + color: #fff; + width: calc(100% - 650px); +} + +.body-right-title { + font-size: 48px; + text-align: left; + font-family: 'MiSans-Demibold'; + margin-bottom: 20px; + position: relative; + left: -30px; +} + +.body-right-num { + display: flex; +} + +.body-right-num-item { + background-color: rgba(255, 255, 255, 0.1); + text-align: center; + width: 110px; + height: 80px; + border-radius: 8px; + display: flex; + flex-flow: column; + justify-content: center; + line-height: 30px; + margin-right: 13px; +} + +.body-right-num-item:nth-child(2) { + width: 80px; +} + +.body-right-num-list { + display: flex; + margin-right: 31px; +} + +.body-right-num-item div:nth-child(1) { + font-size: 30px; + font-family: 'MiSans-Normal'; +} + +.body-right-num-item div:nth-child(2) { + font-size: 14px; + font-family: 'MiSans-Medium'; +} + +.body-right-items { + display: flex; + margin-top: 20px; + font-family: 'MiSans-Medium'; +} + +.body-right-items-item { + width: 110px; + border-radius: 8px; + text-align: center; + font-size: 12px; + margin-right: 13px; +} + +.body-right-items-item:last-child { + margin-right: 0; + margin-left: 2px; +} + +.body-right-items-item-title { + border-radius: 8px 8px 0 0; +} + +.bgcolor1 { + background-color: rgba(56, 120, 118); +} + +.bgcolor2 { + background-color: rgb(67, 114, 185); +} + +.bgcolor3 { + background-color: rgb(120, 82, 184); +} + +.jb1 { + background-image: linear-gradient(rgba(48, 60, 82), rgba(56, 120, 118)); +} + +.jb2 { + background-image: linear-gradient(rgba(48, 49, 83), rgba(70, 123, 200)); +} + +.jb3 { + background-image: linear-gradient(rgba(56, 55, 89), rgba(131, 86, 199)); +} + +.body-right-items-item-num { + border-radius: 0 0 8px 8px; +} + +.bgcolorbottom1 { + background-color: rgba(48, 60, 82); +} + +.bgcolorbottom2 { + background-color: rgba(50, 60, 101); +} + +.bgcolorbottom3 { + background-color: rgba(65, 59, 103); +} + +.body-right-items-item-image img { + width: 52px; + height: 52px; + padding: 2px; +} + +.body-right-attribute { + width: 850px; + height: 300px; + margin-top: 20px; + border: 4px solid rgba(255, 255, 255, 0.1); + border-radius: 8px; +} + +.body-right-attribute-title { + display: flex; + width: 100%; + justify-content: center; + align-items: center; + background-color: rgb(255, 255, 255, 0.1); +} + +.body-right-attribute-img { + width: 70px; + justify-content: flex-start; +} + +.body-right-attribute-img:nth-child(3) { + transform: rotate(180deg); +} + +.body-right-attribute-name { + flex: 1 auto; + text-align: center; +} + +.body-right-attribute-name span:nth-child(1) { + font-size: 36px; + font-family: 'MiSans-Bold'; +} + +.body-right-attribute-name span:nth-child(2) { + font-size: 24px; + font-family: 'MiSans-Medium'; +} + +.body-right-attribute-text { + padding: 17px; + font-size: 24px; + font-family: 'MiSans-Regular'; +} + +.body-right-headerImg { + background-color: rgba(255, 255, 255, 0.1); + border-radius: 8px; + margin-top: 20px; + display: flex; + align-items: center; + justify-content: flex-start; + width: 850px; +} + +.body-right-headerImg-title { + font-size: 36px; + font-family: 'MiSans-Bold'; + padding: 35px; +} + +.body-right-headerImg-bg { + background-image: url('./image/头像框.png'); + width: 138px; + height: 138px; + display: flex; + justify-content: center; + align-items: center; +} + +.body-right-headerImg-img { + width: 90px; + height: 90px; + text-align: center; +} + +.up4 img{ + background-image: linear-gradient(rgba(56, 55, 90), rgba(130, 86, 199)); + border-radius: 50%; +} +.up5 img{ + background-image: linear-gradient(rgba(112, 66, 61), rgba(204, 166, 110)); + border-radius: 50%; +} +.up4 { + border-radius: 50%; + border: 4px solid rgba(255, 255, 255, 0.5); +} + +.up5 { + + border-radius: 50%; + border: 4px solid rgba(255, 255, 255, 0.5); +} +.icon { + position: absolute; + right: 50px; + color: #fff; + font-size: 30px; + font-family: 'MiSans-Demibold'; + margin-top: 10px; +} +.body-right-headerImg-isup { + position: absolute; + width: 30px; + height: 30px; + margin-bottom: 60px; + margin-left: 60px; +} +.text-num{ + background: linear-gradient(to right,rgba(71, 180, 254) 0%, rgba(9, 235, 254)) 100%; + -webkit-background-clip: text; + color: transparent; + font-weight: 600; +} \ No newline at end of file diff --git a/resources/sr/weapon/index.html b/resources/sr/weapon/index.html new file mode 100644 index 0000000..66f3200 --- /dev/null +++ b/resources/sr/weapon/index.html @@ -0,0 +1,149 @@ + + + + + + + + +
    +
    +
    xiaoyao-cvs
    +
    +
    +
    + +
    +
    + +
    +
    + +
    +
    {{desc}}
    +
    +
    + +
    +
    + {{type}} +
    +
    +
    + Lv.80 +
    +
    + <% for(var i = 0; i < star; i++){ %> +
    + +
    + <% } %> +
    +
    + +
    +
    +
    + 「{{type}} · {{name}}」 +
    +
    + {{each fullValues list}} + +
    +
    +
    {{list.base}}
    + {{if $index=='hp'}} +
    生命值
    + {{else if $index=='atk'}} +
    攻击力
    + {{else}} +
    防御力
    + {{/if}} +
    +
    +
    +{{list.stop}}
    +
    成长
    +
    +
    + {{/each}} +
    +
    +
    {{access}}
    +
    +
    +
    +
    + {{each material list}} +
    +
    + {{list.name}} +
    +
    + +
    +
    + {{list.num}} +
    +
    + {{/each}} +
    +
    + {{rarity==3?529750:rarity==4?706500:883000}} +
    +
    +
    +
    +
    +
    +
    + {{rarity==3?100:rarity==4?133:166}} +
    +
    + +
    +
    +
    +
    + +
    +
    + {{skill}} + ({{characteristic}}) +
    +
    + +
    +
    +
    + {{@attribute}} +
    +
    +
    +
    适配
    + <% for(var i = 0; i < 5; i++){ %> + <% if(suitRole[i]){ %> +
    +
    + +
    + <% if(suitRole[i].isUp){ %> +
    + +
    + <% } %> +
    + <% }else{ %> +
    + +
    + <% }%> + <% } %> +
    +
    +
    + +
    +
    + + \ No newline at end of file