diff --git a/game-server/app/services/activity/giftPackageService.ts b/game-server/app/services/activity/giftPackageService.ts index 2325c7b2e..4b22ebfd9 100644 --- a/game-server/app/services/activity/giftPackageService.ts +++ b/game-server/app/services/activity/giftPackageService.ts @@ -13,7 +13,7 @@ import { combineItems } from '../role/util'; import { recordGuildFund } from './timeLimitRankService'; import { filterGoods, isGoodsHidden, isHeroHidden } from '../dataService'; import { DicGiftPackagePlan } from '../../pubUtils/dictionary/DicGiftPackagePlan'; -import { GiftPackageFloorModel } from '../../db/GiftPackageFloor'; +import { Floor, GiftPackageFloorModel } from '../../db/GiftPackageFloor'; @@ -152,38 +152,114 @@ export function getSelectedReward(plans: DicGiftPackagePlan[], selected: Array { + if (cur.floorId !== 0) { + if (!acc[cur.floorId]) acc[cur.floorId] = []; + acc[cur.floorId].push(cur); + } + return acc; + }, {} as { [key: number]: DicGiftPackagePlan[] }); +} + +// 初始化用户某个礼包的保底数据 +async function initFloorData(floors: Floor[], floorPlans: { [key: number]: DicGiftPackagePlan[] }) { + for (let floorId in floorPlans) { + let hasFloorFlag = false; + for (let floor of floors) { + if (floor.id === parseInt(floorId)) { + hasFloorFlag = true; + continue; + } + } + if (!hasFloorFlag) { + floors.push({ id: parseInt(floorId), count: 0, quality: gameData.giftPackageFloor.get(parseInt(floorId)).quality }); + } + } +} + async function randomSelectedData(pool: DicGiftPackagePlan[], roleId: string, giftPackageId: number, count: number) { let rewards: RewardParam[] = []; - let floorPlan = pool.find(cur => cur.floorCount > 0); - let dropHistory = floorPlan? await GiftPackageFloorModel.findByPlanId(roleId, giftPackageId, floorPlan?.id): { getNum: 0, allNum: 0, getSum: 0, allSum: 0 }; - let { getNum = 0, allNum = 0, getSum = 0, allSum = 0 } = dropHistory; + const floorPlans = groupByFloorId(pool); + let dropHistory = (floorPlans && Object.keys(floorPlans).length > 0) ? await GiftPackageFloorModel.findByGiftPackageId(roleId, giftPackageId): { floors: [], getSum: 0, allSum: 0 }; + let { floors = [], getSum = 0, allSum = 0 } = dropHistory; - for(let i = 0; i < count; i++) { + for (let i = 0; i < count; i++) { let randResult = getRandEelmWithWeight(pool)?.dic; - if(!randResult) continue; - if(!floorPlan) { + if (!randResult) continue; + // 如果没有保底池子,直接返回 + if (!floorPlans || Object.keys(floorPlans).length === 0) { rewards.push({ type: randResult.contentType, id: randResult.content, count: randResult.count }); continue; } - let flag = randResult.id == floorPlan.id; // 是否获得 - if(allNum - getNum >= floorPlan.floorFrequency - floorPlan.floorCount) { - flag = true; + initFloorData(floors, floorPlans); + + // 检查随机结果的 id 是否在 floorPlans 中,是的话抽中保底 + let flag = false; + for (let floorId in floorPlans) { + if (floorPlans[floorId].findIndex(cur => cur.id === randResult.id) !== -1) { + flag = true; + break; + } } - if(flag) { - getNum ++; getSum++; - rewards.push({ type: floorPlan.contentType, id: floorPlan.content, count: floorPlan.count }); - } else { + + // 检查是否达到了保底次数,并且记录最大品质的 floorId + let maxQaulityFloorId = 0; // 最大品质的 floorId + let maxQaulity = 0; + if (!flag) { + for (let floor of floors) { + if (floor.count + 1 >= gameData.giftPackageFloor.get(floor.id).times) { + flag = true; + if (gameData.giftPackageFloor.get(floor.id).quality > maxQaulity) { + maxQaulityFloorId = floor.id; + maxQaulity = gameData.giftPackageFloor.get(floor.id).quality; + } + } + } + } + + // 更新抽取次数,确定要返回的物品 + if (flag && maxQaulityFloorId == 0) { // 抽到了保底物品 + const quality = gameData.giftPackageFloor.get(randResult.floorId).quality; rewards.push({ type: randResult.contentType, id: randResult.content, count: randResult.count }); + updateFloorCount(floors, quality, true); + getSum++; + console.log('got floorId: ', randResult.floorId, quality); + } else if (flag && maxQaulityFloorId > 0) { // 次数保底 + let floorResult = getRandEelmWithWeight(floorPlans[maxQaulityFloorId])?.dic; + if (!floorResult) continue; + rewards.push({ type: floorResult.contentType, id: floorResult.content, count: floorResult.count }); + updateFloorCount(floors, maxQaulity, true); + getSum++; + console.log('got floorId: ', maxQaulityFloorId, maxQaulity); + } else { // 未达到保底次数 + rewards.push({ type: randResult.contentType, id: randResult.content, count: randResult.count }); + updateFloorCount(floors, 0, false); + console.log('got floorId: ', randResult.floorId, 0); } - allNum ++; allSum ++; - if(getNum >= floorPlan.floorCount) { - allNum = 0; getNum = 0; - } + allSum++; } - if(floorPlan) { - await GiftPackageFloorModel.updateByPlanId(roleId, giftPackageId, floorPlan.id, { - getNum, allNum, getSum, allSum + if(floorPlans && Object.keys(floorPlans).length > 0) { + await GiftPackageFloorModel.updateByGiftPackageId(roleId, giftPackageId, { + floors, getSum, allSum }); } return rewards diff --git a/game-server/test/gift.test.ts b/game-server/test/gift.test.ts new file mode 100644 index 000000000..f2a1ba857 --- /dev/null +++ b/game-server/test/gift.test.ts @@ -0,0 +1,47 @@ +import 'mocha'; +import { PinusWSClient } from 'pinus-robot-plugin'; +import { expect } from 'chai'; +import { Client } from './Client'; +import { addItem, checkSuccessResponse } from './CheckPatten'; +describe('测试英杰传宝箱', function () { + let pinusClient: PinusWSClient; + + let roleInfo; + const GOOD_ID_ZHUGE = 71058; + const GOOD_ID_RED_RAND = 71072; + + before(function (done) { + const c = new Client(); + const timer = setInterval(() => { + if (c.client) { + pinusClient = c.client; + roleInfo = c.roleInfo; + clearInterval(timer); + done(); + } + }, 500); + }); + + afterEach(function (done) { + pinusClient.disconnect(); + // disconnect 后等待 500ms,供服务器清理环境、退出频道等 + setTimeout(() => { + done(); + }, 500); + }); + + it('使用随机保底宝箱', function (done) { + addItem(pinusClient, GOOD_ID_RED_RAND, 1, (res) => { + pinusClient.request('role.itemHandler.useItem', { + id: GOOD_ID_RED_RAND, + selected: [], + count: 1 + }, (res) => { + checkSuccessResponse(res); + console.log(JSON.stringify(res)); + done(); + }); + + }); + }); +}); diff --git a/shared/consts/constModules/sysConst.ts b/shared/consts/constModules/sysConst.ts index a0af12a4c..ea5c38771 100644 --- a/shared/consts/constModules/sysConst.ts +++ b/shared/consts/constModules/sysConst.ts @@ -543,6 +543,7 @@ export const FILENAME = { DIC_GACHA_FLOOR: 'dic_zyz_gachaFloor', DIC_GIFT_PACKAGE: 'dic_zyz_giftPackage', DIC_GIFT_PACKAGE_PLAN: 'dic_zyz_giftPackagePlan', + DIC_GIFT_PACKAGE_FLOOR: 'dic_zyz_giftPackageFloor', DIC_RECRUIT: 'dic_zyz_recruit', DIC_RMB: 'dic_zyz_rmb', DIC_ACTIVITY_TYPE: 'dic_zyz_activityType', diff --git a/shared/db/GiftPackageFloor.ts b/shared/db/GiftPackageFloor.ts index dcd4f6eea..bd3cd2357 100644 --- a/shared/db/GiftPackageFloor.ts +++ b/shared/db/GiftPackageFloor.ts @@ -1,8 +1,17 @@ import BaseModel from './BaseModel'; import { index, getModelForClass, prop, DocumentType } from '@typegoose/typegoose'; +export class Floor { + @prop({ required: true }) + id: number; // 保底类型,对应 DicGiftPackageFloor 的 floorId + @prop({ required: true }) + count: number; // 抽卡次数 + @prop({ required: true }) + quality: number; // 品质 +} + /** - * 战斗记录接口 + * 宝箱保底 */ @index({ roleId: 1, giftPackageId: 1, floorPlanId: 1 }) @@ -12,12 +21,14 @@ export default class GiftPackageFloor extends BaseModel { @prop({ required: true }) giftPackageId: number; // 礼包 id @prop({ required: true }) - floorPlanId: number; // 物品id + floorPlanId: number; // 礼包内容 id,唯一 id @prop({ required: true, default: 0 }) getNum: number; // 获取次数,当allNum超过配置次数重置 @prop({ required: true, default: 0 }) allNum: number; // 全部次数,当超过配置次数重置 + @prop({ required: true, type: Floor, default: [], _id: false }) + floors: Floor[]; // 已抽卡次数 @prop({ required: true, default: 0 }) getSum: number; // 获取道具的全部次数 @prop({ required: true, default: 0 }) @@ -29,6 +40,18 @@ export default class GiftPackageFloor extends BaseModel { return result; } + // 根据礼包 id 查找 + public static async findByGiftPackageId(roleId: string, giftPackageId: number, lean = true) { + const result: GiftPackageFloorType = await GiftPackageFloorModel.findOneAndUpdate({ roleId, giftPackageId}, {}, {new: true, upsert: true}).lean(lean); + return result; + } + + // 根据礼包 id 更新 + public static async updateByGiftPackageId(roleId: string, giftPackageId: number, params: {floors: Floor[], getSum: number, allSum: number}, lean = true) { + const result: GiftPackageFloorType = await GiftPackageFloorModel.findOneAndUpdate({roleId, giftPackageId}, {$set: params}, {new: true}).lean(lean); + return result; + } + public static async updateByPlanId(roleId: string, giftPackageId: number, floorPlanId: number, params: {getNum: number, allNum: number, getSum: number, allSum: number}, lean = true) { const result: GiftPackageFloorType = await GiftPackageFloorModel.findOneAndUpdate({roleId, giftPackageId, floorPlanId}, {$set: params}).lean(lean); return result; diff --git a/shared/pubUtils/data.ts b/shared/pubUtils/data.ts index d2e61e688..46b446caa 100644 --- a/shared/pubUtils/data.ts +++ b/shared/pubUtils/data.ts @@ -118,6 +118,7 @@ import { dicArtifactSeid, loadArtifactSeid } from "./dictionary/DicArtifactSeid" import { DicArtifact } from "./dictionary/DicArtifact"; import { DicArtifactQuality } from "./dictionary/DicArtifactQuality"; import { dicGiftPackagePlan, loadGiftPackagePlan } from "./dictionary/DicGiftPackagePlan"; +import { dicGiftPackageFloor, loadGiftPackageFloor } from "./dictionary/DicGiftPackageFloor"; import { dicGVGPeriod, loadGVGPeriod } from './dictionary/DicGVGPeriod'; import { dicGVGTech, loadGVGTech } from "./dictionary/DicGVGTech"; import { dicGVGItem, loadGVGItem } from "./dictionary/DicGVGItems"; @@ -246,6 +247,7 @@ export const gameData = { heroTransPiece: new Map(), giftPackage: dicGiftPackage, giftPackagePlan: dicGiftPackagePlan, + giftPackageFloor: dicGiftPackageFloor, comBtlLvRange: new Map(), recruit: dicRecruit, rmb: dicRMB, @@ -1417,6 +1419,7 @@ function loadDatas() { loadGachaFloor(); loadGiftPackage(); loadGiftPackagePlan(); + loadGiftPackageFloor(); loadRecruit(); loadRMB(); loadActivityType(); diff --git a/shared/pubUtils/dictionary/DicGiftPackageFloor.ts b/shared/pubUtils/dictionary/DicGiftPackageFloor.ts new file mode 100644 index 000000000..5f5433c0c --- /dev/null +++ b/shared/pubUtils/dictionary/DicGiftPackageFloor.ts @@ -0,0 +1,23 @@ +// 礼包奖励表 +import { readFileAndParse } from '../util'; +import { FILENAME } from '../../consts'; + +// 礼包保底表 +export interface DicGiftPackageFloor { + // 唯一id + readonly id: number; + // 触发保底次数 + readonly times: number; + // 品质(触发多保底时的优先级覆盖关系) + readonly quality: number; +} + +export const dicGiftPackageFloor = new Map(); // floorId => [floor] +export function loadGiftPackageFloor() { + dicGiftPackageFloor.clear(); + let arr = readFileAndParse(FILENAME.DIC_GIFT_PACKAGE_FLOOR); + arr.forEach(o => { + dicGiftPackageFloor.set(o.id, o); + }); + arr = undefined; +} \ No newline at end of file diff --git a/shared/pubUtils/dictionary/DicGiftPackagePlan.ts b/shared/pubUtils/dictionary/DicGiftPackagePlan.ts index 6f68f0f66..d6d8955b9 100644 --- a/shared/pubUtils/dictionary/DicGiftPackagePlan.ts +++ b/shared/pubUtils/dictionary/DicGiftPackagePlan.ts @@ -16,10 +16,8 @@ export interface DicGiftPackagePlan { readonly count: number; // 权重 readonly weight: number; - // 保底, 每floor必出floorCount个,提前获取到次数就重置 - readonly floorFrequency: number; - // 保底数量 - readonly floorCount: number; + // 保底表id + readonly floorId: number; } type KeysEnum = { [P in keyof Required]: true }; @@ -30,8 +28,7 @@ const DicGiftPackagePlanKeys: KeysEnum = { content: true, count: true, weight: true, - floorFrequency: true, - floorCount: true + floorId: true, } export const dicGiftPackagePlan = new Map(); // packageId => [plan] @@ -40,14 +37,7 @@ export function loadGiftPackagePlan() { let arr = readFileAndParse(FILENAME.DIC_GIFT_PACKAGE_PLAN); arr.forEach(o => { - if(o.floor == '&') { - o.floorFrequency = 0; - o.floorCount = 0; - } else { - let arr = o.floor.split('&'); - o.floorFrequency = isNaN(parseInt(arr[0]))? 0: parseInt(arr[0]); - o.floorCount = isNaN(parseInt(arr[1]))? 0: parseInt(arr[1]); - } + o.floorId = o.floor; if(!dicGiftPackagePlan.has(o.giftPackageId)) { dicGiftPackagePlan.set(o.giftPackageId, []); } diff --git a/shared/resource/jsons/dic_zyz_giftPackageFloor.json b/shared/resource/jsons/dic_zyz_giftPackageFloor.json new file mode 100644 index 000000000..0c7024a0f --- /dev/null +++ b/shared/resource/jsons/dic_zyz_giftPackageFloor.json @@ -0,0 +1,12 @@ +[ + { + "id": 1, + "quality": 3, + "times": 40 + }, + { + "id": 2, + "quality": 4, + "times": 100 + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_zyz_giftPackagePlan.json b/shared/resource/jsons/dic_zyz_giftPackagePlan.json index 07da09206..b6bc85927 100644 --- a/shared/resource/jsons/dic_zyz_giftPackagePlan.json +++ b/shared/resource/jsons/dic_zyz_giftPackagePlan.json @@ -6,7 +6,7 @@ "content": 11001, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "初级武将经验书" }, { @@ -16,7 +16,7 @@ "content": 11002, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "中级武将经验书" }, { @@ -26,7 +26,7 @@ "content": 11003, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "高级武将经验书" }, { @@ -36,7 +36,7 @@ "content": 11004, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "特级武将经验书" }, { @@ -46,7 +46,7 @@ "content": 11011, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "美食" }, { @@ -56,7 +56,7 @@ "content": 11012, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "兵器" }, { @@ -66,7 +66,7 @@ "content": 11013, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "字画" }, { @@ -76,7 +76,7 @@ "content": 11014, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "古玩" }, { @@ -86,7 +86,7 @@ "content": 11101, "count": 99, "weight": 1, - "floor": "&", + "floor": 0, "备注": "四叶草玉符" }, { @@ -96,7 +96,7 @@ "content": 17001, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "觉醒石" }, { @@ -106,7 +106,7 @@ "content": 17002, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "一品白虎丹" }, { @@ -116,7 +116,7 @@ "content": 17003, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "一品玄武丹" }, { @@ -126,7 +126,7 @@ "content": 17004, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "一品青龙丹" }, { @@ -136,7 +136,7 @@ "content": 17005, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "一品朱雀丹" }, { @@ -146,7 +146,7 @@ "content": 17006, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "一品麒麟丹" }, { @@ -156,7 +156,7 @@ "content": 17007, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "二品白虎丹" }, { @@ -166,7 +166,7 @@ "content": 17008, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "二品玄武丹" }, { @@ -176,7 +176,7 @@ "content": 17009, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "二品青龙丹" }, { @@ -186,7 +186,7 @@ "content": 17010, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "二品朱雀丹" }, { @@ -196,7 +196,7 @@ "content": 17011, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "二品麒麟丹" }, { @@ -206,7 +206,7 @@ "content": 17012, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "三品白虎丹" }, { @@ -216,7 +216,7 @@ "content": 17013, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "三品玄武丹" }, { @@ -226,7 +226,7 @@ "content": 17014, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "三品青龙丹" }, { @@ -236,7 +236,7 @@ "content": 17015, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "三品朱雀丹" }, { @@ -246,7 +246,7 @@ "content": 17016, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "三品麒麟丹" }, { @@ -256,7 +256,7 @@ "content": 17017, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "四品白虎丹" }, { @@ -266,7 +266,7 @@ "content": 17018, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "四品玄武丹" }, { @@ -276,7 +276,7 @@ "content": 17019, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "四品青龙丹" }, { @@ -286,7 +286,7 @@ "content": 17020, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "四品朱雀丹" }, { @@ -296,7 +296,7 @@ "content": 17021, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "四品麒麟丹" }, { @@ -306,7 +306,7 @@ "content": 17022, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "五品白虎丹" }, { @@ -316,7 +316,7 @@ "content": 17023, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "五品玄武丹" }, { @@ -326,7 +326,7 @@ "content": 17024, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "五品青龙丹" }, { @@ -336,7 +336,7 @@ "content": 17025, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "五品朱雀丹" }, { @@ -346,7 +346,7 @@ "content": 17026, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "五品麒麟丹" }, { @@ -356,7 +356,7 @@ "content": 17027, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "六品白虎丹" }, { @@ -366,7 +366,7 @@ "content": 17028, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "六品玄武丹" }, { @@ -376,7 +376,7 @@ "content": 17029, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "六品青龙丹" }, { @@ -386,7 +386,7 @@ "content": 17030, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "六品朱雀丹" }, { @@ -396,7 +396,7 @@ "content": 17031, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "六品麒麟丹" }, { @@ -406,7 +406,7 @@ "content": 17032, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "七品白虎丹" }, { @@ -416,7 +416,7 @@ "content": 17033, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "七品玄武丹" }, { @@ -426,7 +426,7 @@ "content": 17034, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "七品青龙丹" }, { @@ -436,7 +436,7 @@ "content": 17035, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "七品朱雀丹" }, { @@ -446,7 +446,7 @@ "content": 17036, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "七品麒麟丹" }, { @@ -456,7 +456,7 @@ "content": 17037, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "八品白虎丹" }, { @@ -466,7 +466,7 @@ "content": 17038, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "八品玄武丹" }, { @@ -476,7 +476,7 @@ "content": 17039, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "八品青龙丹" }, { @@ -486,7 +486,7 @@ "content": 17040, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "八品朱雀丹" }, { @@ -496,7 +496,7 @@ "content": 17041, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "八品麒麟丹" }, { @@ -506,7 +506,7 @@ "content": 17042, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "虎符" }, { @@ -516,7 +516,7 @@ "content": 17044, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "洗炼石" }, { @@ -526,7 +526,7 @@ "content": 17045, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "乾坤锁" }, { @@ -536,7 +536,7 @@ "content": 17046, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "皇蟒印" }, { @@ -546,7 +546,7 @@ "content": 17047, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "玄龟印" }, { @@ -556,7 +556,7 @@ "content": 17048, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "饕餮印" }, { @@ -566,7 +566,7 @@ "content": 17049, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "螭虎印" }, { @@ -576,7 +576,7 @@ "content": 17050, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "金龙印" }, { @@ -586,7 +586,7 @@ "content": 17051, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "庚金" }, { @@ -596,7 +596,7 @@ "content": 17052, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "玉石" }, { @@ -606,7 +606,7 @@ "content": 17053, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "玉髓" }, { @@ -616,7 +616,7 @@ "content": 17054, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "镔铁" }, { @@ -626,7 +626,7 @@ "content": 17055, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天外陨金" }, { @@ -636,7 +636,7 @@ "content": 17056, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "息壤" }, { @@ -646,7 +646,7 @@ "content": 21001, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "曹操将魂" }, { @@ -656,7 +656,7 @@ "content": 21002, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯惇将魂" }, { @@ -666,7 +666,7 @@ "content": 21003, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张辽将魂" }, { @@ -676,7 +676,7 @@ "content": 21004, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯渊将魂" }, { @@ -686,7 +686,7 @@ "content": 21005, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "郭嘉将魂" }, { @@ -696,7 +696,7 @@ "content": 21007, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "典韦将魂" }, { @@ -706,7 +706,7 @@ "content": 21008, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "庞德将魂" }, { @@ -716,7 +716,7 @@ "content": 21010, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "徐晃将魂" }, { @@ -726,7 +726,7 @@ "content": 21011, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "曹仁将魂" }, { @@ -736,7 +736,7 @@ "content": 21012, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "李典将魂" }, { @@ -746,7 +746,7 @@ "content": 21013, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "蔡琰将魂" }, { @@ -756,7 +756,7 @@ "content": 21014, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "贾诩将魂" }, { @@ -766,7 +766,7 @@ "content": 21016, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "乐进将魂" }, { @@ -776,7 +776,7 @@ "content": 21017, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张飞将魂" }, { @@ -786,7 +786,7 @@ "content": 21018, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "关羽将魂" }, { @@ -796,7 +796,7 @@ "content": 21019, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "赵云将魂" }, { @@ -806,7 +806,7 @@ "content": 21020, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "刘备将魂" }, { @@ -816,7 +816,7 @@ "content": 21021, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "黄忠将魂" }, { @@ -826,7 +826,7 @@ "content": 21022, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "诸葛亮将魂" }, { @@ -836,7 +836,7 @@ "content": 21024, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "魏延将魂" }, { @@ -846,7 +846,7 @@ "content": 21025, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "陈到将魂" }, { @@ -856,7 +856,7 @@ "content": 21026, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "关银屏将魂" }, { @@ -866,7 +866,7 @@ "content": 21027, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "马云禄将魂" }, { @@ -876,7 +876,7 @@ "content": 21028, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "马良将魂" }, { @@ -886,7 +886,7 @@ "content": 21030, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "王平将魂" }, { @@ -896,7 +896,7 @@ "content": 21031, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙乾将魂" }, { @@ -906,7 +906,7 @@ "content": 21032, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "周泰将魂" }, { @@ -916,7 +916,7 @@ "content": 21033, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙策将魂" }, { @@ -926,7 +926,7 @@ "content": 21034, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "周瑜将魂" }, { @@ -936,7 +936,7 @@ "content": 21035, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "太史慈将魂" }, { @@ -946,7 +946,7 @@ "content": 21036, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙权将魂" }, { @@ -956,7 +956,7 @@ "content": 21037, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "甘宁将魂" }, { @@ -966,7 +966,7 @@ "content": 21038, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙尚香将魂" }, { @@ -976,7 +976,7 @@ "content": 21040, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "小乔将魂" }, { @@ -986,7 +986,7 @@ "content": 21041, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "大乔将魂" }, { @@ -996,7 +996,7 @@ "content": 21044, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "吕布将魂" }, { @@ -1006,7 +1006,7 @@ "content": 21045, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张任将魂" }, { @@ -1016,7 +1016,7 @@ "content": 21046, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "华佗将魂" }, { @@ -1026,7 +1026,7 @@ "content": 21047, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张角将魂" }, { @@ -1036,7 +1036,7 @@ "content": 21049, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "高顺将魂" }, { @@ -1046,7 +1046,7 @@ "content": 21050, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "麹义将魂" }, { @@ -1056,7 +1056,7 @@ "content": 21051, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "李儒将魂" }, { @@ -1066,7 +1066,7 @@ "content": 21052, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "庞舞将魂" }, { @@ -1076,7 +1076,7 @@ "content": 21053, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯轻衣将魂" }, { @@ -1086,7 +1086,7 @@ "content": 21054, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "文丑将魂" }, { @@ -1096,7 +1096,7 @@ "content": 21055, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "颜良将魂" }, { @@ -1106,7 +1106,7 @@ "content": 21056, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "貂蝉将魂" }, { @@ -1116,7 +1116,7 @@ "content": 21062, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "潘璋将魂" }, { @@ -1126,7 +1126,7 @@ "content": 21063, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "凌统将魂" }, { @@ -1136,7 +1136,7 @@ "content": 21064, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "黄盖将魂" }, { @@ -1146,7 +1146,7 @@ "content": 22001, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "点将令" }, { @@ -1156,7 +1156,7 @@ "content": 22002, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "求贤令" }, { @@ -1166,7 +1166,7 @@ "content": 22003, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "擢迁令" }, { @@ -1176,7 +1176,7 @@ "content": 31001, "count": 9999999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "铜钱" }, { @@ -1186,7 +1186,7 @@ "content": 31002, "count": 9999999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "元宝" }, { @@ -1196,7 +1196,7 @@ "content": 33001, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(一品)藏宝图" }, { @@ -1206,7 +1206,7 @@ "content": 33002, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(二品)藏宝图" }, { @@ -1216,7 +1216,7 @@ "content": 33003, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(三品)藏宝图" }, { @@ -1226,7 +1226,7 @@ "content": 33004, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(四品)藏宝图" }, { @@ -1236,7 +1236,7 @@ "content": 33005, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(五品)藏宝图" }, { @@ -1246,7 +1246,7 @@ "content": 33006, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(六品)藏宝图" }, { @@ -1256,7 +1256,7 @@ "content": 33007, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(七品)藏宝图" }, { @@ -1266,7 +1266,7 @@ "content": 33008, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(八品)藏宝图" }, { @@ -1276,7 +1276,7 @@ "content": 33009, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(九品)藏宝图" }, { @@ -1286,7 +1286,7 @@ "content": 33010, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(一品)藏宝图" }, { @@ -1296,7 +1296,7 @@ "content": 33011, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(二品)藏宝图" }, { @@ -1306,7 +1306,7 @@ "content": 33012, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(三品)藏宝图" }, { @@ -1316,7 +1316,7 @@ "content": 33013, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(四品)藏宝图" }, { @@ -1326,7 +1326,7 @@ "content": 33014, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(五品)藏宝图" }, { @@ -1336,7 +1336,7 @@ "content": 33015, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(六品)藏宝图" }, { @@ -1346,7 +1346,7 @@ "content": 33016, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(七品)藏宝图" }, { @@ -1356,7 +1356,7 @@ "content": 33017, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(八品)藏宝图" }, { @@ -1366,7 +1366,7 @@ "content": 33018, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(九品)藏宝图" }, { @@ -1376,7 +1376,7 @@ "content": 33019, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(一品)藏宝图" }, { @@ -1386,7 +1386,7 @@ "content": 33020, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(二品)藏宝图" }, { @@ -1396,7 +1396,7 @@ "content": 33021, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(三品)藏宝图" }, { @@ -1406,7 +1406,7 @@ "content": 33022, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(四品)藏宝图" }, { @@ -1416,7 +1416,7 @@ "content": 33023, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(五品)藏宝图" }, { @@ -1426,7 +1426,7 @@ "content": 33024, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(六品)藏宝图" }, { @@ -1436,7 +1436,7 @@ "content": 33025, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(七品)藏宝图" }, { @@ -1446,7 +1446,7 @@ "content": 33026, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(八品)藏宝图" }, { @@ -1456,7 +1456,7 @@ "content": 33027, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(九品)藏宝图" }, { @@ -1466,7 +1466,7 @@ "content": 33028, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(一品)藏宝图" }, { @@ -1476,7 +1476,7 @@ "content": 33029, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(二品)藏宝图" }, { @@ -1486,7 +1486,7 @@ "content": 33030, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(三品)藏宝图" }, { @@ -1496,7 +1496,7 @@ "content": 33031, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(四品)藏宝图" }, { @@ -1506,7 +1506,7 @@ "content": 33032, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(五品)藏宝图" }, { @@ -1516,7 +1516,7 @@ "content": 33033, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(六品)藏宝图" }, { @@ -1526,7 +1526,7 @@ "content": 33034, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(七品)藏宝图" }, { @@ -1536,7 +1536,7 @@ "content": 33035, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(八品)藏宝图" }, { @@ -1546,7 +1546,7 @@ "content": 33036, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(九品)藏宝图" }, { @@ -1556,7 +1556,7 @@ "content": 60001, "count": 99999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·破(一品)" }, { @@ -1566,7 +1566,7 @@ "content": 60002, "count": 99999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·破(二品)" }, { @@ -1576,7 +1576,7 @@ "content": 60003, "count": 99999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·破(三品)" }, { @@ -1586,7 +1586,7 @@ "content": 60011, "count": 99999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·护(一品)" }, { @@ -1596,7 +1596,7 @@ "content": 60012, "count": 99999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·护(二品)" }, { @@ -1606,7 +1606,7 @@ "content": 60013, "count": 99999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·护(三品)" }, { @@ -1616,7 +1616,7 @@ "content": 60021, "count": 99999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·御(一品)" }, { @@ -1626,7 +1626,7 @@ "content": 60022, "count": 99999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·御(二品)" }, { @@ -1636,7 +1636,7 @@ "content": 60023, "count": 99999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·御(三品)" }, { @@ -1646,7 +1646,7 @@ "content": 60031, "count": 99999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·命(一品)" }, { @@ -1656,7 +1656,7 @@ "content": 60032, "count": 99999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·命(二品)" }, { @@ -1666,7 +1666,7 @@ "content": 60033, "count": 99999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·命(三品)" }, { @@ -1676,7 +1676,7 @@ "content": 72001, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "烧肉" }, { @@ -1686,7 +1686,7 @@ "content": 80001, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(一品)" }, { @@ -1696,7 +1696,7 @@ "content": 80002, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(二品)" }, { @@ -1706,7 +1706,7 @@ "content": 80003, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(三品)" }, { @@ -1716,7 +1716,7 @@ "content": 80004, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(四品)" }, { @@ -1726,7 +1726,7 @@ "content": 80005, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(五品)" }, { @@ -1736,7 +1736,7 @@ "content": 80006, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(六品)" }, { @@ -1746,7 +1746,7 @@ "content": 80007, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(七品)" }, { @@ -1756,7 +1756,7 @@ "content": 80008, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(八品)" }, { @@ -1766,7 +1766,7 @@ "content": 80009, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(九品)" }, { @@ -1776,7 +1776,7 @@ "content": 80011, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(一品)" }, { @@ -1786,7 +1786,7 @@ "content": 80012, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(二品)" }, { @@ -1796,7 +1796,7 @@ "content": 80013, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(三品)" }, { @@ -1806,7 +1806,7 @@ "content": 80014, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(四品)" }, { @@ -1816,7 +1816,7 @@ "content": 80015, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(五品)" }, { @@ -1826,7 +1826,7 @@ "content": 80016, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(六品)" }, { @@ -1836,7 +1836,7 @@ "content": 80017, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(七品)" }, { @@ -1846,7 +1846,7 @@ "content": 80018, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(八品)" }, { @@ -1856,7 +1856,7 @@ "content": 80019, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(九品)" }, { @@ -1866,7 +1866,7 @@ "content": 80021, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(一品)" }, { @@ -1876,7 +1876,7 @@ "content": 80022, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(二品)" }, { @@ -1886,7 +1886,7 @@ "content": 80023, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(三品)" }, { @@ -1896,7 +1896,7 @@ "content": 80024, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(四品)" }, { @@ -1906,7 +1906,7 @@ "content": 80025, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(五品)" }, { @@ -1916,7 +1916,7 @@ "content": 80026, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(六品)" }, { @@ -1926,7 +1926,7 @@ "content": 80027, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(七品)" }, { @@ -1936,7 +1936,7 @@ "content": 80028, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(八品)" }, { @@ -1946,7 +1946,7 @@ "content": 80029, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(九品)" }, { @@ -1956,7 +1956,7 @@ "content": 80031, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(一品)" }, { @@ -1966,7 +1966,7 @@ "content": 80032, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(二品)" }, { @@ -1976,7 +1976,7 @@ "content": 80033, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(三品)" }, { @@ -1986,7 +1986,7 @@ "content": 80034, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(四品)" }, { @@ -1996,7 +1996,7 @@ "content": 80035, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(五品)" }, { @@ -2006,7 +2006,7 @@ "content": 80036, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(六品)" }, { @@ -2016,7 +2016,7 @@ "content": 80037, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(七品)" }, { @@ -2026,7 +2026,7 @@ "content": 80038, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(八品)" }, { @@ -2036,7 +2036,7 @@ "content": 80039, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(九品)" }, { @@ -2046,7 +2046,7 @@ "content": 50001, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "下品装备设计图" }, { @@ -2056,7 +2056,7 @@ "content": 50002, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "中品装备设计图" }, { @@ -2066,7 +2066,7 @@ "content": 50003, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "上品装备设计图" }, { @@ -2076,7 +2076,7 @@ "content": 50004, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "极品装备设计图" }, { @@ -2086,7 +2086,7 @@ "content": 50005, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "圣品装备设计图" }, { @@ -2096,7 +2096,7 @@ "content": 17002, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "一品白虎丹" }, { @@ -2106,7 +2106,7 @@ "content": 17003, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "一品玄武丹" }, { @@ -2116,7 +2116,7 @@ "content": 17004, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "一品青龙丹" }, { @@ -2126,7 +2126,7 @@ "content": 17005, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "一品朱雀丹" }, { @@ -2136,7 +2136,7 @@ "content": 17006, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "一品麒麟丹" }, { @@ -2146,7 +2146,7 @@ "content": 17007, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "二品白虎丹" }, { @@ -2156,7 +2156,7 @@ "content": 17008, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "二品玄武丹" }, { @@ -2166,7 +2166,7 @@ "content": 17009, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "二品青龙丹" }, { @@ -2176,7 +2176,7 @@ "content": 17010, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "二品朱雀丹" }, { @@ -2186,7 +2186,7 @@ "content": 17011, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "二品麒麟丹" }, { @@ -2196,7 +2196,7 @@ "content": 17012, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "三品白虎丹" }, { @@ -2206,7 +2206,7 @@ "content": 17013, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "三品玄武丹" }, { @@ -2216,7 +2216,7 @@ "content": 17014, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "三品青龙丹" }, { @@ -2226,7 +2226,7 @@ "content": 17015, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "三品朱雀丹" }, { @@ -2236,7 +2236,7 @@ "content": 17016, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "三品麒麟丹" }, { @@ -2246,7 +2246,7 @@ "content": 17017, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "四品白虎丹" }, { @@ -2256,7 +2256,7 @@ "content": 17018, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "四品玄武丹" }, { @@ -2266,7 +2266,7 @@ "content": 17019, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "四品青龙丹" }, { @@ -2276,7 +2276,7 @@ "content": 17020, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "四品朱雀丹" }, { @@ -2286,7 +2286,7 @@ "content": 17021, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "四品麒麟丹" }, { @@ -2296,7 +2296,7 @@ "content": 17022, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "五品白虎丹" }, { @@ -2306,7 +2306,7 @@ "content": 17023, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "五品玄武丹" }, { @@ -2316,7 +2316,7 @@ "content": 17024, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "五品青龙丹" }, { @@ -2326,7 +2326,7 @@ "content": 17025, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "五品朱雀丹" }, { @@ -2336,7 +2336,7 @@ "content": 17026, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "五品麒麟丹" }, { @@ -2346,7 +2346,7 @@ "content": 17027, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "六品白虎丹" }, { @@ -2356,7 +2356,7 @@ "content": 17028, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "六品玄武丹" }, { @@ -2366,7 +2366,7 @@ "content": 17029, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "六品青龙丹" }, { @@ -2376,7 +2376,7 @@ "content": 17030, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "六品朱雀丹" }, { @@ -2386,7 +2386,7 @@ "content": 17031, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "六品麒麟丹" }, { @@ -2396,7 +2396,7 @@ "content": 17032, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "七品白虎丹" }, { @@ -2406,7 +2406,7 @@ "content": 17033, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "七品玄武丹" }, { @@ -2416,7 +2416,7 @@ "content": 17034, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "七品青龙丹" }, { @@ -2426,7 +2426,7 @@ "content": 17035, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "七品朱雀丹" }, { @@ -2436,7 +2436,7 @@ "content": 17036, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "七品麒麟丹" }, { @@ -2446,7 +2446,7 @@ "content": 17037, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "八品白虎丹" }, { @@ -2456,7 +2456,7 @@ "content": 17038, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "八品玄武丹" }, { @@ -2466,7 +2466,7 @@ "content": 17039, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "八品青龙丹" }, { @@ -2476,7 +2476,7 @@ "content": 17040, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "八品朱雀丹" }, { @@ -2486,7 +2486,7 @@ "content": 17041, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "八品麒麟丹" }, { @@ -2496,7 +2496,7 @@ "content": 17042, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "虎符" }, { @@ -2506,7 +2506,7 @@ "content": 31002, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "元宝" }, { @@ -2516,7 +2516,7 @@ "content": 11001, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "初级武将经验书" }, { @@ -2526,7 +2526,7 @@ "content": 17030, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "六品朱雀丹" }, { @@ -2536,7 +2536,7 @@ "content": 31001, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "铜钱" }, { @@ -2546,7 +2546,7 @@ "content": 11003, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "高级武将经验书" }, { @@ -2556,7 +2556,7 @@ "content": 11004, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "特级武将经验书" }, { @@ -2566,7 +2566,7 @@ "content": 21008, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "庞德将魂" }, { @@ -2576,7 +2576,7 @@ "content": 21010, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "徐晃将魂" }, { @@ -2586,7 +2586,7 @@ "content": 21011, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "曹仁将魂" }, { @@ -2596,7 +2596,7 @@ "content": 21012, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "李典将魂" }, { @@ -2606,7 +2606,7 @@ "content": 21014, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "贾诩将魂" }, { @@ -2616,7 +2616,7 @@ "content": 21025, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "陈到将魂" }, { @@ -2626,7 +2626,7 @@ "content": 21026, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "关银屏将魂" }, { @@ -2636,7 +2636,7 @@ "content": 21027, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "马云禄将魂" }, { @@ -2646,7 +2646,7 @@ "content": 21028, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "马良将魂" }, { @@ -2656,7 +2656,7 @@ "content": 21030, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "王平将魂" }, { @@ -2666,7 +2666,7 @@ "content": 21036, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙权将魂" }, { @@ -2676,7 +2676,7 @@ "content": 21037, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "甘宁将魂" }, { @@ -2686,7 +2686,7 @@ "content": 21050, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "麹义将魂" }, { @@ -2696,7 +2696,7 @@ "content": 21051, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "李儒将魂" }, { @@ -2706,7 +2706,7 @@ "content": 21052, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "庞舞将魂" }, { @@ -2716,7 +2716,7 @@ "content": 21064, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "黄盖将魂" }, { @@ -2726,7 +2726,7 @@ "content": 21008, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "庞德将魂" }, { @@ -2736,7 +2736,7 @@ "content": 21010, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "徐晃将魂" }, { @@ -2746,7 +2746,7 @@ "content": 21011, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "曹仁将魂" }, { @@ -2756,7 +2756,7 @@ "content": 21012, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "李典将魂" }, { @@ -2766,7 +2766,7 @@ "content": 21014, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "贾诩将魂" }, { @@ -2776,7 +2776,7 @@ "content": 21025, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "陈到将魂" }, { @@ -2786,7 +2786,7 @@ "content": 21026, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "关银屏将魂" }, { @@ -2796,7 +2796,7 @@ "content": 21027, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "马云禄将魂" }, { @@ -2806,7 +2806,7 @@ "content": 21028, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "马良将魂" }, { @@ -2816,7 +2816,7 @@ "content": 21030, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "王平将魂" }, { @@ -2826,7 +2826,7 @@ "content": 21036, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙权将魂" }, { @@ -2836,7 +2836,7 @@ "content": 21037, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "甘宁将魂" }, { @@ -2846,7 +2846,7 @@ "content": 21050, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "麹义将魂" }, { @@ -2856,7 +2856,7 @@ "content": 21051, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "李儒将魂" }, { @@ -2866,7 +2866,7 @@ "content": 21052, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "庞舞将魂" }, { @@ -2876,7 +2876,7 @@ "content": 21064, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "黄盖将魂" }, { @@ -2886,7 +2886,7 @@ "content": 60001, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·破(一品)" }, { @@ -2896,7 +2896,7 @@ "content": 60011, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·护(一品)" }, { @@ -2906,7 +2906,7 @@ "content": 60021, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·御(一品)" }, { @@ -2916,7 +2916,7 @@ "content": 60031, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·命(一品)" }, { @@ -2926,7 +2926,7 @@ "content": 21013, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "蔡琰将魂" }, { @@ -2936,7 +2936,7 @@ "content": 21016, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "乐进将魂" }, { @@ -2946,7 +2946,7 @@ "content": 21019, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "赵云将魂" }, { @@ -2956,7 +2956,7 @@ "content": 21031, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙乾将魂" }, { @@ -2966,7 +2966,7 @@ "content": 21053, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯轻衣将魂" }, { @@ -2976,7 +2976,7 @@ "content": 21054, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "文丑将魂" }, { @@ -2986,7 +2986,7 @@ "content": 21055, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "颜良将魂" }, { @@ -2996,7 +2996,7 @@ "content": 21062, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "潘璋将魂" }, { @@ -3006,7 +3006,7 @@ "content": 21063, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "凌统将魂" }, { @@ -3016,7 +3016,7 @@ "content": 21013, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "蔡琰将魂" }, { @@ -3026,7 +3026,7 @@ "content": 21016, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "乐进将魂" }, { @@ -3036,7 +3036,7 @@ "content": 21019, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "赵云将魂" }, { @@ -3046,7 +3046,7 @@ "content": 21031, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙乾将魂" }, { @@ -3056,7 +3056,7 @@ "content": 21053, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯轻衣将魂" }, { @@ -3066,7 +3066,7 @@ "content": 21054, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "文丑将魂" }, { @@ -3076,7 +3076,7 @@ "content": 21055, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "颜良将魂" }, { @@ -3086,7 +3086,7 @@ "content": 21062, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "潘璋将魂" }, { @@ -3096,7 +3096,7 @@ "content": 21063, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "凌统将魂" }, { @@ -3106,7 +3106,7 @@ "content": 17047, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "玄龟印" }, { @@ -3116,7 +3116,7 @@ "content": 17048, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "饕餮印" }, { @@ -3126,7 +3126,7 @@ "content": 17049, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "螭虎印" }, { @@ -3136,7 +3136,7 @@ "content": 17050, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "金龙印" }, { @@ -3146,7 +3146,7 @@ "content": 31001, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "铜钱" }, { @@ -3156,7 +3156,7 @@ "content": 17032, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "七品白虎丹" }, { @@ -3166,7 +3166,7 @@ "content": 17033, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "七品玄武丹" }, { @@ -3176,7 +3176,7 @@ "content": 17034, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "七品青龙丹" }, { @@ -3186,7 +3186,7 @@ "content": 17035, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "七品朱雀丹" }, { @@ -3196,7 +3196,7 @@ "content": 17036, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "七品麒麟丹" }, { @@ -3206,7 +3206,7 @@ "content": 31001, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "铜钱" }, { @@ -3216,7 +3216,7 @@ "content": 31002, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "元宝" }, { @@ -3226,7 +3226,7 @@ "content": 11001, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "初级武将经验书" }, { @@ -3236,7 +3236,7 @@ "content": 17030, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "六品朱雀丹" }, { @@ -3246,7 +3246,7 @@ "content": 31001, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "铜钱" }, { @@ -3256,7 +3256,7 @@ "content": 11003, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "高级武将经验书" }, { @@ -3266,7 +3266,7 @@ "content": 11004, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "特级武将经验书" }, { @@ -3276,7 +3276,7 @@ "content": 31002, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "元宝" }, { @@ -3286,7 +3286,7 @@ "content": 11001, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "初级武将经验书" }, { @@ -3296,7 +3296,7 @@ "content": 17030, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "六品朱雀丹" }, { @@ -3306,7 +3306,7 @@ "content": 31001, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "铜钱" }, { @@ -3316,7 +3316,7 @@ "content": 11003, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "高级武将经验书" }, { @@ -3326,7 +3326,7 @@ "content": 11004, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "特级武将经验书" }, { @@ -3336,7 +3336,7 @@ "content": 31002, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "元宝" }, { @@ -3346,7 +3346,7 @@ "content": 11001, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "初级武将经验书" }, { @@ -3356,7 +3356,7 @@ "content": 17030, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "六品朱雀丹" }, { @@ -3366,7 +3366,7 @@ "content": 31001, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "铜钱" }, { @@ -3376,7 +3376,7 @@ "content": 11003, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "高级武将经验书" }, { @@ -3386,7 +3386,7 @@ "content": 11004, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "特级武将经验书" }, { @@ -3396,7 +3396,7 @@ "content": 31002, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "元宝" }, { @@ -3406,7 +3406,7 @@ "content": 11001, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "初级武将经验书" }, { @@ -3416,7 +3416,7 @@ "content": 17030, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "六品朱雀丹" }, { @@ -3426,7 +3426,7 @@ "content": 31001, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "铜钱" }, { @@ -3436,7 +3436,7 @@ "content": 11003, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "高级武将经验书" }, { @@ -3446,7 +3446,7 @@ "content": 11004, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "特级武将经验书" }, { @@ -3456,7 +3456,7 @@ "content": 31002, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "元宝" }, { @@ -3466,7 +3466,7 @@ "content": 11001, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "初级武将经验书" }, { @@ -3476,7 +3476,7 @@ "content": 17030, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "六品朱雀丹" }, { @@ -3486,7 +3486,7 @@ "content": 31001, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "铜钱" }, { @@ -3496,7 +3496,7 @@ "content": 11003, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "高级武将经验书" }, { @@ -3506,7 +3506,7 @@ "content": 11004, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "特级武将经验书" }, { @@ -3516,7 +3516,7 @@ "content": 31002, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "元宝" }, { @@ -3526,7 +3526,7 @@ "content": 11001, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "初级武将经验书" }, { @@ -3536,7 +3536,7 @@ "content": 17030, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "六品朱雀丹" }, { @@ -3546,7 +3546,7 @@ "content": 31001, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "铜钱" }, { @@ -3556,7 +3556,7 @@ "content": 11003, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "高级武将经验书" }, { @@ -3566,7 +3566,7 @@ "content": 11004, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "特级武将经验书" }, { @@ -3576,7 +3576,7 @@ "content": 21001, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "曹操将魂" }, { @@ -3586,7 +3586,7 @@ "content": 21002, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯惇将魂" }, { @@ -3596,7 +3596,7 @@ "content": 21003, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张辽将魂" }, { @@ -3606,7 +3606,7 @@ "content": 21004, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯渊将魂" }, { @@ -3616,7 +3616,7 @@ "content": 21005, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "郭嘉将魂" }, { @@ -3626,7 +3626,7 @@ "content": 21007, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "典韦将魂" }, { @@ -3636,7 +3636,7 @@ "content": 21008, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "庞德将魂" }, { @@ -3646,7 +3646,7 @@ "content": 21010, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "徐晃将魂" }, { @@ -3656,7 +3656,7 @@ "content": 21011, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "曹仁将魂" }, { @@ -3666,7 +3666,7 @@ "content": 21012, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "李典将魂" }, { @@ -3676,7 +3676,7 @@ "content": 21013, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "蔡琰将魂" }, { @@ -3686,7 +3686,7 @@ "content": 21014, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "贾诩将魂" }, { @@ -3696,7 +3696,7 @@ "content": 21015, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "许褚将魂" }, { @@ -3706,7 +3706,7 @@ "content": 21016, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "乐进将魂" }, { @@ -3716,7 +3716,7 @@ "content": 21017, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张飞将魂" }, { @@ -3726,7 +3726,7 @@ "content": 21018, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "关羽将魂" }, { @@ -3736,7 +3736,7 @@ "content": 21019, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "赵云将魂" }, { @@ -3746,7 +3746,7 @@ "content": 21020, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "刘备将魂" }, { @@ -3756,7 +3756,7 @@ "content": 21021, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "黄忠将魂" }, { @@ -3766,7 +3766,7 @@ "content": 21022, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "诸葛亮将魂" }, { @@ -3776,7 +3776,7 @@ "content": 21024, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "魏延将魂" }, { @@ -3786,7 +3786,7 @@ "content": 21025, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "陈到将魂" }, { @@ -3796,7 +3796,7 @@ "content": 21026, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "关银屏将魂" }, { @@ -3806,7 +3806,7 @@ "content": 21027, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "马云禄将魂" }, { @@ -3816,7 +3816,7 @@ "content": 21028, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "马良将魂" }, { @@ -3826,7 +3826,7 @@ "content": 21030, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "王平将魂" }, { @@ -3836,7 +3836,7 @@ "content": 21031, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙乾将魂" }, { @@ -3846,7 +3846,7 @@ "content": 21032, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "周泰将魂" }, { @@ -3856,7 +3856,7 @@ "content": 21033, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙策将魂" }, { @@ -3866,7 +3866,7 @@ "content": 21034, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "周瑜将魂" }, { @@ -3876,7 +3876,7 @@ "content": 21035, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "太史慈将魂" }, { @@ -3886,7 +3886,7 @@ "content": 21036, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙权将魂" }, { @@ -3896,7 +3896,7 @@ "content": 21037, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "甘宁将魂" }, { @@ -3906,7 +3906,7 @@ "content": 21038, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙尚香将魂" }, { @@ -3916,7 +3916,7 @@ "content": 21040, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "小乔将魂" }, { @@ -3926,7 +3926,7 @@ "content": 21041, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "大乔将魂" }, { @@ -3936,7 +3936,7 @@ "content": 21044, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "吕布将魂" }, { @@ -3946,7 +3946,7 @@ "content": 21045, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张任将魂" }, { @@ -3956,7 +3956,7 @@ "content": 21046, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "华佗将魂" }, { @@ -3966,7 +3966,7 @@ "content": 21047, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张角将魂" }, { @@ -3976,7 +3976,7 @@ "content": 21049, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "高顺将魂" }, { @@ -3986,7 +3986,7 @@ "content": 21050, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "麹义将魂" }, { @@ -3996,7 +3996,7 @@ "content": 21051, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "李儒将魂" }, { @@ -4006,7 +4006,7 @@ "content": 21052, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "庞舞将魂" }, { @@ -4016,7 +4016,7 @@ "content": 21053, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯轻衣将魂" }, { @@ -4026,7 +4026,7 @@ "content": 21054, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "文丑将魂" }, { @@ -4036,7 +4036,7 @@ "content": 21055, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "颜良将魂" }, { @@ -4046,7 +4046,7 @@ "content": 21056, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "貂蝉将魂" }, { @@ -4056,7 +4056,7 @@ "content": 21062, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "潘璋将魂" }, { @@ -4066,7 +4066,7 @@ "content": 21063, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "凌统将魂" }, { @@ -4076,7 +4076,7 @@ "content": 21064, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "黄盖将魂" }, { @@ -4086,7 +4086,7 @@ "content": 17001, "count": 99999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "觉醒石" }, { @@ -4096,7 +4096,7 @@ "content": 21042, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "步练师将魂" }, { @@ -4106,7 +4106,7 @@ "content": 21001, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "曹操将魂" }, { @@ -4116,7 +4116,7 @@ "content": 21002, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯惇将魂" }, { @@ -4126,7 +4126,7 @@ "content": 21003, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张辽将魂" }, { @@ -4136,7 +4136,7 @@ "content": 21004, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯渊将魂" }, { @@ -4146,7 +4146,7 @@ "content": 21005, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "郭嘉将魂" }, { @@ -4156,7 +4156,7 @@ "content": 21007, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "典韦将魂" }, { @@ -4166,7 +4166,7 @@ "content": 21008, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "庞德将魂" }, { @@ -4176,7 +4176,7 @@ "content": 21010, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "徐晃将魂" }, { @@ -4186,7 +4186,7 @@ "content": 21011, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "曹仁将魂" }, { @@ -4196,7 +4196,7 @@ "content": 21012, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "李典将魂" }, { @@ -4206,7 +4206,7 @@ "content": 21013, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "蔡琰将魂" }, { @@ -4216,7 +4216,7 @@ "content": 21014, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "贾诩将魂" }, { @@ -4226,7 +4226,7 @@ "content": 21015, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "许褚将魂" }, { @@ -4236,7 +4236,7 @@ "content": 21016, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "乐进将魂" }, { @@ -4246,7 +4246,7 @@ "content": 21017, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张飞将魂" }, { @@ -4256,7 +4256,7 @@ "content": 21018, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "关羽将魂" }, { @@ -4266,7 +4266,7 @@ "content": 21019, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "赵云将魂" }, { @@ -4276,7 +4276,7 @@ "content": 21020, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "刘备将魂" }, { @@ -4286,7 +4286,7 @@ "content": 21021, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "黄忠将魂" }, { @@ -4296,7 +4296,7 @@ "content": 21022, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "诸葛亮将魂" }, { @@ -4306,7 +4306,7 @@ "content": 21024, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "魏延将魂" }, { @@ -4316,7 +4316,7 @@ "content": 21025, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "陈到将魂" }, { @@ -4326,7 +4326,7 @@ "content": 21026, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "关银屏将魂" }, { @@ -4336,7 +4336,7 @@ "content": 21027, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "马云禄将魂" }, { @@ -4346,7 +4346,7 @@ "content": 21028, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "马良将魂" }, { @@ -4356,7 +4356,7 @@ "content": 21030, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "王平将魂" }, { @@ -4366,7 +4366,7 @@ "content": 21031, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙乾将魂" }, { @@ -4376,7 +4376,7 @@ "content": 21032, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "周泰将魂" }, { @@ -4386,7 +4386,7 @@ "content": 21033, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙策将魂" }, { @@ -4396,7 +4396,7 @@ "content": 21034, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "周瑜将魂" }, { @@ -4406,7 +4406,7 @@ "content": 21035, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "太史慈将魂" }, { @@ -4416,7 +4416,7 @@ "content": 21036, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙权将魂" }, { @@ -4426,7 +4426,7 @@ "content": 21037, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "甘宁将魂" }, { @@ -4436,7 +4436,7 @@ "content": 21038, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙尚香将魂" }, { @@ -4446,7 +4446,7 @@ "content": 21040, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "小乔将魂" }, { @@ -4456,7 +4456,7 @@ "content": 21041, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "大乔将魂" }, { @@ -4466,7 +4466,7 @@ "content": 21044, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "吕布将魂" }, { @@ -4476,7 +4476,7 @@ "content": 21045, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张任将魂" }, { @@ -4486,7 +4486,7 @@ "content": 21046, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "华佗将魂" }, { @@ -4496,7 +4496,7 @@ "content": 21047, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张角将魂" }, { @@ -4506,7 +4506,7 @@ "content": 21049, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "高顺将魂" }, { @@ -4516,7 +4516,7 @@ "content": 21050, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "麹义将魂" }, { @@ -4526,7 +4526,7 @@ "content": 21051, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "李儒将魂" }, { @@ -4536,7 +4536,7 @@ "content": 21052, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "庞舞将魂" }, { @@ -4546,7 +4546,7 @@ "content": 21053, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯轻衣将魂" }, { @@ -4556,7 +4556,7 @@ "content": 21054, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "文丑将魂" }, { @@ -4566,7 +4566,7 @@ "content": 21055, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "颜良将魂" }, { @@ -4576,7 +4576,7 @@ "content": 21056, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "貂蝉将魂" }, { @@ -4586,7 +4586,7 @@ "content": 21062, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "潘璋将魂" }, { @@ -4596,7 +4596,7 @@ "content": 21063, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "凌统将魂" }, { @@ -4606,7 +4606,7 @@ "content": 21064, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "黄盖将魂" }, { @@ -4616,7 +4616,7 @@ "content": 21042, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "步练师将魂" }, { @@ -4626,7 +4626,7 @@ "content": 17001, "count": 99999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "觉醒石" }, { @@ -4636,7 +4636,7 @@ "content": 21001, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "曹操将魂" }, { @@ -4646,7 +4646,7 @@ "content": 21002, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯惇将魂" }, { @@ -4656,7 +4656,7 @@ "content": 21003, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张辽将魂" }, { @@ -4666,7 +4666,7 @@ "content": 21004, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯渊将魂" }, { @@ -4676,7 +4676,7 @@ "content": 21005, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "郭嘉将魂" }, { @@ -4686,7 +4686,7 @@ "content": 21007, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "典韦将魂" }, { @@ -4696,7 +4696,7 @@ "content": 21008, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "庞德将魂" }, { @@ -4706,7 +4706,7 @@ "content": 21010, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "徐晃将魂" }, { @@ -4716,7 +4716,7 @@ "content": 21011, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "曹仁将魂" }, { @@ -4726,7 +4726,7 @@ "content": 21012, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "李典将魂" }, { @@ -4736,7 +4736,7 @@ "content": 21013, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "蔡琰将魂" }, { @@ -4746,7 +4746,7 @@ "content": 21014, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "贾诩将魂" }, { @@ -4756,7 +4756,7 @@ "content": 21015, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "许褚将魂" }, { @@ -4766,7 +4766,7 @@ "content": 21016, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "乐进将魂" }, { @@ -4776,7 +4776,7 @@ "content": 21017, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张飞将魂" }, { @@ -4786,7 +4786,7 @@ "content": 21018, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "关羽将魂" }, { @@ -4796,7 +4796,7 @@ "content": 21019, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "赵云将魂" }, { @@ -4806,7 +4806,7 @@ "content": 21020, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "刘备将魂" }, { @@ -4816,7 +4816,7 @@ "content": 21021, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "黄忠将魂" }, { @@ -4826,7 +4826,7 @@ "content": 21022, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "诸葛亮将魂" }, { @@ -4836,7 +4836,7 @@ "content": 21024, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "魏延将魂" }, { @@ -4846,7 +4846,7 @@ "content": 21025, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "陈到将魂" }, { @@ -4856,7 +4856,7 @@ "content": 21026, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "关银屏将魂" }, { @@ -4866,7 +4866,7 @@ "content": 21027, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "马云禄将魂" }, { @@ -4876,7 +4876,7 @@ "content": 21028, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "马良将魂" }, { @@ -4886,7 +4886,7 @@ "content": 21030, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "王平将魂" }, { @@ -4896,7 +4896,7 @@ "content": 21031, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙乾将魂" }, { @@ -4906,7 +4906,7 @@ "content": 21032, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "周泰将魂" }, { @@ -4916,7 +4916,7 @@ "content": 21033, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙策将魂" }, { @@ -4926,7 +4926,7 @@ "content": 21034, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "周瑜将魂" }, { @@ -4936,7 +4936,7 @@ "content": 21035, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "太史慈将魂" }, { @@ -4946,7 +4946,7 @@ "content": 21036, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙权将魂" }, { @@ -4956,7 +4956,7 @@ "content": 21037, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "甘宁将魂" }, { @@ -4966,7 +4966,7 @@ "content": 21038, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙尚香将魂" }, { @@ -4976,7 +4976,7 @@ "content": 21040, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "小乔将魂" }, { @@ -4986,7 +4986,7 @@ "content": 21041, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "大乔将魂" }, { @@ -4996,7 +4996,7 @@ "content": 21044, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "吕布将魂" }, { @@ -5006,7 +5006,7 @@ "content": 21045, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张任将魂" }, { @@ -5016,7 +5016,7 @@ "content": 21046, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "华佗将魂" }, { @@ -5026,7 +5026,7 @@ "content": 21047, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张角将魂" }, { @@ -5036,7 +5036,7 @@ "content": 21049, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "高顺将魂" }, { @@ -5046,7 +5046,7 @@ "content": 21050, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "麹义将魂" }, { @@ -5056,7 +5056,7 @@ "content": 21051, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "李儒将魂" }, { @@ -5066,7 +5066,7 @@ "content": 21052, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "庞舞将魂" }, { @@ -5076,7 +5076,7 @@ "content": 21053, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯轻衣将魂" }, { @@ -5086,7 +5086,7 @@ "content": 21054, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "文丑将魂" }, { @@ -5096,7 +5096,7 @@ "content": 21055, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "颜良将魂" }, { @@ -5106,7 +5106,7 @@ "content": 21056, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "貂蝉将魂" }, { @@ -5116,7 +5116,7 @@ "content": 21062, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "潘璋将魂" }, { @@ -5126,7 +5126,7 @@ "content": 21063, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "凌统将魂" }, { @@ -5136,7 +5136,7 @@ "content": 21064, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "黄盖将魂" }, { @@ -5146,7 +5146,7 @@ "content": 21042, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "步练师将魂" }, { @@ -5156,7 +5156,7 @@ "content": 17001, "count": 99999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "觉醒石" }, { @@ -5166,7 +5166,7 @@ "content": 11001, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "初级武将经验书" }, { @@ -5176,7 +5176,7 @@ "content": 11002, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "中级武将经验书" }, { @@ -5186,7 +5186,7 @@ "content": 11003, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "高级武将经验书" }, { @@ -5196,7 +5196,7 @@ "content": 11004, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "特级武将经验书" }, { @@ -5206,7 +5206,7 @@ "content": 11011, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "美食" }, { @@ -5216,7 +5216,7 @@ "content": 11012, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "兵器" }, { @@ -5226,7 +5226,7 @@ "content": 11013, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "字画" }, { @@ -5236,7 +5236,7 @@ "content": 11014, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "古玩" }, { @@ -5246,7 +5246,7 @@ "content": 11101, "count": 99, "weight": 1, - "floor": "&", + "floor": 0, "备注": "四叶草玉符" }, { @@ -5256,7 +5256,7 @@ "content": 17001, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "觉醒石" }, { @@ -5266,7 +5266,7 @@ "content": 17002, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "一品白虎丹" }, { @@ -5276,7 +5276,7 @@ "content": 17003, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "一品玄武丹" }, { @@ -5286,7 +5286,7 @@ "content": 17004, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "一品青龙丹" }, { @@ -5296,7 +5296,7 @@ "content": 17005, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "一品朱雀丹" }, { @@ -5306,7 +5306,7 @@ "content": 17006, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "一品麒麟丹" }, { @@ -5316,7 +5316,7 @@ "content": 17007, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "二品白虎丹" }, { @@ -5326,7 +5326,7 @@ "content": 17008, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "二品玄武丹" }, { @@ -5336,7 +5336,7 @@ "content": 17009, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "二品青龙丹" }, { @@ -5346,7 +5346,7 @@ "content": 17010, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "二品朱雀丹" }, { @@ -5356,7 +5356,7 @@ "content": 17011, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "二品麒麟丹" }, { @@ -5366,7 +5366,7 @@ "content": 17012, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "三品白虎丹" }, { @@ -5376,7 +5376,7 @@ "content": 17013, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "三品玄武丹" }, { @@ -5386,7 +5386,7 @@ "content": 17014, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "三品青龙丹" }, { @@ -5396,7 +5396,7 @@ "content": 17015, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "三品朱雀丹" }, { @@ -5406,7 +5406,7 @@ "content": 17016, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "三品麒麟丹" }, { @@ -5416,7 +5416,7 @@ "content": 17017, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "四品白虎丹" }, { @@ -5426,7 +5426,7 @@ "content": 17018, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "四品玄武丹" }, { @@ -5436,7 +5436,7 @@ "content": 17019, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "四品青龙丹" }, { @@ -5446,7 +5446,7 @@ "content": 17020, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "四品朱雀丹" }, { @@ -5456,7 +5456,7 @@ "content": 17021, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "四品麒麟丹" }, { @@ -5466,7 +5466,7 @@ "content": 17022, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "五品白虎丹" }, { @@ -5476,7 +5476,7 @@ "content": 17023, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "五品玄武丹" }, { @@ -5486,7 +5486,7 @@ "content": 17024, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "五品青龙丹" }, { @@ -5496,7 +5496,7 @@ "content": 17025, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "五品朱雀丹" }, { @@ -5506,7 +5506,7 @@ "content": 17026, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "五品麒麟丹" }, { @@ -5516,7 +5516,7 @@ "content": 17027, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "六品白虎丹" }, { @@ -5526,7 +5526,7 @@ "content": 17028, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "六品玄武丹" }, { @@ -5536,7 +5536,7 @@ "content": 17029, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "六品青龙丹" }, { @@ -5546,7 +5546,7 @@ "content": 17030, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "六品朱雀丹" }, { @@ -5556,7 +5556,7 @@ "content": 17031, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "六品麒麟丹" }, { @@ -5566,7 +5566,7 @@ "content": 17032, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "七品白虎丹" }, { @@ -5576,7 +5576,7 @@ "content": 17033, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "七品玄武丹" }, { @@ -5586,7 +5586,7 @@ "content": 17034, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "七品青龙丹" }, { @@ -5596,7 +5596,7 @@ "content": 17035, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "七品朱雀丹" }, { @@ -5606,7 +5606,7 @@ "content": 17036, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "七品麒麟丹" }, { @@ -5616,7 +5616,7 @@ "content": 17037, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "八品白虎丹" }, { @@ -5626,7 +5626,7 @@ "content": 17038, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "八品玄武丹" }, { @@ -5636,7 +5636,7 @@ "content": 17039, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "八品青龙丹" }, { @@ -5646,7 +5646,7 @@ "content": 17040, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "八品朱雀丹" }, { @@ -5656,7 +5656,7 @@ "content": 17041, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "八品麒麟丹" }, { @@ -5666,7 +5666,7 @@ "content": 17042, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "虎符" }, { @@ -5676,7 +5676,7 @@ "content": 17044, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "洗炼石" }, { @@ -5686,7 +5686,7 @@ "content": 17045, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "乾坤锁" }, { @@ -5696,7 +5696,7 @@ "content": 17046, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "皇蟒印" }, { @@ -5706,7 +5706,7 @@ "content": 17047, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "玄龟印" }, { @@ -5716,7 +5716,7 @@ "content": 17048, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "饕餮印" }, { @@ -5726,7 +5726,7 @@ "content": 17049, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "螭虎印" }, { @@ -5736,7 +5736,7 @@ "content": 17050, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "金龙印" }, { @@ -5746,7 +5746,7 @@ "content": 17052, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "玉石" }, { @@ -5756,7 +5756,7 @@ "content": 17053, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "玉髓" }, { @@ -5766,7 +5766,7 @@ "content": 17054, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "镔铁" }, { @@ -5776,7 +5776,7 @@ "content": 17055, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天外陨金" }, { @@ -5786,7 +5786,7 @@ "content": 17056, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "息壤" }, { @@ -5796,7 +5796,7 @@ "content": 21001, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "曹操将魂" }, { @@ -5806,7 +5806,7 @@ "content": 21002, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯惇将魂" }, { @@ -5816,7 +5816,7 @@ "content": 21003, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张辽将魂" }, { @@ -5826,7 +5826,7 @@ "content": 21004, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯渊将魂" }, { @@ -5836,7 +5836,7 @@ "content": 21005, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "郭嘉将魂" }, { @@ -5846,7 +5846,7 @@ "content": 21007, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "典韦将魂" }, { @@ -5856,7 +5856,7 @@ "content": 21008, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "庞德将魂" }, { @@ -5866,7 +5866,7 @@ "content": 21010, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "徐晃将魂" }, { @@ -5876,7 +5876,7 @@ "content": 21011, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "曹仁将魂" }, { @@ -5886,7 +5886,7 @@ "content": 21012, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "李典将魂" }, { @@ -5896,7 +5896,7 @@ "content": 21013, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "蔡琰将魂" }, { @@ -5906,7 +5906,7 @@ "content": 21014, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "贾诩将魂" }, { @@ -5916,7 +5916,7 @@ "content": 21015, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "许褚将魂" }, { @@ -5926,7 +5926,7 @@ "content": 21016, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "乐进将魂" }, { @@ -5936,7 +5936,7 @@ "content": 21017, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张飞将魂" }, { @@ -5946,7 +5946,7 @@ "content": 21018, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "关羽将魂" }, { @@ -5956,7 +5956,7 @@ "content": 21019, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "赵云将魂" }, { @@ -5966,7 +5966,7 @@ "content": 21020, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "刘备将魂" }, { @@ -5976,7 +5976,7 @@ "content": 21021, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "黄忠将魂" }, { @@ -5986,7 +5986,7 @@ "content": 21022, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "诸葛亮将魂" }, { @@ -5996,7 +5996,7 @@ "content": 21024, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "魏延将魂" }, { @@ -6006,7 +6006,7 @@ "content": 21025, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "陈到将魂" }, { @@ -6016,7 +6016,7 @@ "content": 21026, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "关银屏将魂" }, { @@ -6026,7 +6026,7 @@ "content": 21027, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "马云禄将魂" }, { @@ -6036,7 +6036,7 @@ "content": 21028, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "马良将魂" }, { @@ -6046,7 +6046,7 @@ "content": 21030, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "王平将魂" }, { @@ -6056,7 +6056,7 @@ "content": 21031, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙乾将魂" }, { @@ -6066,7 +6066,7 @@ "content": 21032, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "周泰将魂" }, { @@ -6076,7 +6076,7 @@ "content": 21033, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙策将魂" }, { @@ -6086,7 +6086,7 @@ "content": 21034, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "周瑜将魂" }, { @@ -6096,7 +6096,7 @@ "content": 21035, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "太史慈将魂" }, { @@ -6106,7 +6106,7 @@ "content": 21036, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙权将魂" }, { @@ -6116,7 +6116,7 @@ "content": 21037, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "甘宁将魂" }, { @@ -6126,7 +6126,7 @@ "content": 21038, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙尚香将魂" }, { @@ -6136,7 +6136,7 @@ "content": 21040, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "小乔将魂" }, { @@ -6146,7 +6146,7 @@ "content": 21041, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "大乔将魂" }, { @@ -6156,7 +6156,7 @@ "content": 21044, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "吕布将魂" }, { @@ -6166,7 +6166,7 @@ "content": 21045, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张任将魂" }, { @@ -6176,7 +6176,7 @@ "content": 21046, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "华佗将魂" }, { @@ -6186,7 +6186,7 @@ "content": 21047, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张角将魂" }, { @@ -6196,7 +6196,7 @@ "content": 21049, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "高顺将魂" }, { @@ -6206,7 +6206,7 @@ "content": 21050, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "麹义将魂" }, { @@ -6216,7 +6216,7 @@ "content": 21051, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "李儒将魂" }, { @@ -6226,7 +6226,7 @@ "content": 21052, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "庞舞将魂" }, { @@ -6236,7 +6236,7 @@ "content": 21053, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯轻衣将魂" }, { @@ -6246,7 +6246,7 @@ "content": 21054, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "文丑将魂" }, { @@ -6256,7 +6256,7 @@ "content": 21055, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "颜良将魂" }, { @@ -6266,7 +6266,7 @@ "content": 21056, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "貂蝉将魂" }, { @@ -6276,7 +6276,7 @@ "content": 21062, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "潘璋将魂" }, { @@ -6286,7 +6286,7 @@ "content": 21063, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "凌统将魂" }, { @@ -6296,7 +6296,7 @@ "content": 21064, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "黄盖将魂" }, { @@ -6306,7 +6306,7 @@ "content": 21065, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "陈宫将魂" }, { @@ -6316,7 +6316,7 @@ "content": 21042, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "步练师将魂" }, { @@ -6326,7 +6326,7 @@ "content": 22001, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "点将令" }, { @@ -6336,7 +6336,7 @@ "content": 22002, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "求贤令" }, { @@ -6346,7 +6346,7 @@ "content": 31001, "count": 9999999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "铜钱" }, { @@ -6356,7 +6356,7 @@ "content": 31002, "count": 9999999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "元宝" }, { @@ -6366,7 +6366,7 @@ "content": 33001, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(一品)藏宝图" }, { @@ -6376,7 +6376,7 @@ "content": 33002, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(二品)藏宝图" }, { @@ -6386,7 +6386,7 @@ "content": 33003, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(三品)藏宝图" }, { @@ -6396,7 +6396,7 @@ "content": 33004, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(四品)藏宝图" }, { @@ -6406,7 +6406,7 @@ "content": 33005, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(五品)藏宝图" }, { @@ -6416,7 +6416,7 @@ "content": 33006, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(六品)藏宝图" }, { @@ -6426,7 +6426,7 @@ "content": 33007, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(七品)藏宝图" }, { @@ -6436,7 +6436,7 @@ "content": 33008, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(八品)藏宝图" }, { @@ -6446,7 +6446,7 @@ "content": 33010, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(一品)藏宝图" }, { @@ -6456,7 +6456,7 @@ "content": 33011, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(二品)藏宝图" }, { @@ -6466,7 +6466,7 @@ "content": 33012, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(三品)藏宝图" }, { @@ -6476,7 +6476,7 @@ "content": 33013, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(四品)藏宝图" }, { @@ -6486,7 +6486,7 @@ "content": 33014, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(五品)藏宝图" }, { @@ -6496,7 +6496,7 @@ "content": 33015, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(六品)藏宝图" }, { @@ -6506,7 +6506,7 @@ "content": 33016, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(七品)藏宝图" }, { @@ -6516,7 +6516,7 @@ "content": 33017, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(八品)藏宝图" }, { @@ -6526,7 +6526,7 @@ "content": 33019, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(一品)藏宝图" }, { @@ -6536,7 +6536,7 @@ "content": 33020, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(二品)藏宝图" }, { @@ -6546,7 +6546,7 @@ "content": 33021, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(三品)藏宝图" }, { @@ -6556,7 +6556,7 @@ "content": 33022, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(四品)藏宝图" }, { @@ -6566,7 +6566,7 @@ "content": 33023, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(五品)藏宝图" }, { @@ -6576,7 +6576,7 @@ "content": 33024, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(六品)藏宝图" }, { @@ -6586,7 +6586,7 @@ "content": 33025, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(七品)藏宝图" }, { @@ -6596,7 +6596,7 @@ "content": 33026, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(八品)藏宝图" }, { @@ -6606,7 +6606,7 @@ "content": 33028, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(一品)藏宝图" }, { @@ -6616,7 +6616,7 @@ "content": 33029, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(二品)藏宝图" }, { @@ -6626,7 +6626,7 @@ "content": 33030, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(三品)藏宝图" }, { @@ -6636,7 +6636,7 @@ "content": 33031, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(四品)藏宝图" }, { @@ -6646,7 +6646,7 @@ "content": 33032, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(五品)藏宝图" }, { @@ -6656,7 +6656,7 @@ "content": 33033, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(六品)藏宝图" }, { @@ -6666,7 +6666,7 @@ "content": 33034, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(七品)藏宝图" }, { @@ -6676,7 +6676,7 @@ "content": 33035, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(八品)藏宝图" }, { @@ -6686,7 +6686,7 @@ "content": 60001, "count": 99999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·破(一品)" }, { @@ -6696,7 +6696,7 @@ "content": 60002, "count": 99999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·破(二品)" }, { @@ -6706,7 +6706,7 @@ "content": 60003, "count": 99999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·破(三品)" }, { @@ -6716,7 +6716,7 @@ "content": 60011, "count": 99999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·护(一品)" }, { @@ -6726,7 +6726,7 @@ "content": 60012, "count": 99999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·护(二品)" }, { @@ -6736,7 +6736,7 @@ "content": 60013, "count": 99999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·护(三品)" }, { @@ -6746,7 +6746,7 @@ "content": 60021, "count": 99999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·御(一品)" }, { @@ -6756,7 +6756,7 @@ "content": 60022, "count": 99999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·御(二品)" }, { @@ -6766,7 +6766,7 @@ "content": 60023, "count": 99999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·御(三品)" }, { @@ -6776,7 +6776,7 @@ "content": 60031, "count": 99999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·命(一品)" }, { @@ -6786,7 +6786,7 @@ "content": 60032, "count": 99999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·命(二品)" }, { @@ -6796,7 +6796,7 @@ "content": 60033, "count": 99999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·命(三品)" }, { @@ -6806,7 +6806,7 @@ "content": 72001, "count": 9999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "烧肉" }, { @@ -6816,7 +6816,7 @@ "content": 80001, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(一品)" }, { @@ -6826,7 +6826,7 @@ "content": 80002, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(二品)" }, { @@ -6836,7 +6836,7 @@ "content": 80003, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(三品)" }, { @@ -6846,7 +6846,7 @@ "content": 80004, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(四品)" }, { @@ -6856,7 +6856,7 @@ "content": 80005, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(五品)" }, { @@ -6866,7 +6866,7 @@ "content": 80006, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(六品)" }, { @@ -6876,7 +6876,7 @@ "content": 80007, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(七品)" }, { @@ -6886,7 +6886,7 @@ "content": 80008, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(八品)" }, { @@ -6896,7 +6896,7 @@ "content": 80009, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(九品)" }, { @@ -6906,7 +6906,7 @@ "content": 80011, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(一品)" }, { @@ -6916,7 +6916,7 @@ "content": 80012, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(二品)" }, { @@ -6926,7 +6926,7 @@ "content": 80013, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(三品)" }, { @@ -6936,7 +6936,7 @@ "content": 80014, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(四品)" }, { @@ -6946,7 +6946,7 @@ "content": 80015, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(五品)" }, { @@ -6956,7 +6956,7 @@ "content": 80016, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(六品)" }, { @@ -6966,7 +6966,7 @@ "content": 80017, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(七品)" }, { @@ -6976,7 +6976,7 @@ "content": 80018, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(八品)" }, { @@ -6986,7 +6986,7 @@ "content": 80019, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(九品)" }, { @@ -6996,7 +6996,7 @@ "content": 80021, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(一品)" }, { @@ -7006,7 +7006,7 @@ "content": 80022, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(二品)" }, { @@ -7016,7 +7016,7 @@ "content": 80023, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(三品)" }, { @@ -7026,7 +7026,7 @@ "content": 80024, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(四品)" }, { @@ -7036,7 +7036,7 @@ "content": 80025, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(五品)" }, { @@ -7046,7 +7046,7 @@ "content": 80026, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(六品)" }, { @@ -7056,7 +7056,7 @@ "content": 80027, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(七品)" }, { @@ -7066,7 +7066,7 @@ "content": 80028, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(八品)" }, { @@ -7076,7 +7076,7 @@ "content": 80029, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(九品)" }, { @@ -7086,7 +7086,7 @@ "content": 80031, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(一品)" }, { @@ -7096,7 +7096,7 @@ "content": 80032, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(二品)" }, { @@ -7106,7 +7106,7 @@ "content": 80033, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(三品)" }, { @@ -7116,7 +7116,7 @@ "content": 80034, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(四品)" }, { @@ -7126,7 +7126,7 @@ "content": 80035, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(五品)" }, { @@ -7136,7 +7136,7 @@ "content": 80036, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(六品)" }, { @@ -7146,7 +7146,7 @@ "content": 80037, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(七品)" }, { @@ -7156,7 +7156,7 @@ "content": 80038, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(八品)" }, { @@ -7166,7 +7166,7 @@ "content": 80039, "count": 6, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(九品)" }, { @@ -7176,7 +7176,7 @@ "content": 50001, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "下品装备设计图" }, { @@ -7186,7 +7186,7 @@ "content": 50002, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "中品装备设计图" }, { @@ -7196,7 +7196,7 @@ "content": 50003, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "上品装备设计图" }, { @@ -7206,7 +7206,7 @@ "content": 50004, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "极品装备设计图" }, { @@ -7216,7 +7216,7 @@ "content": 50005, "count": 999, "weight": 1, - "floor": "&", + "floor": 0, "备注": "圣品装备设计图" }, { @@ -7226,7 +7226,7 @@ "content": 21001, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "曹操将魂" }, { @@ -7236,7 +7236,7 @@ "content": 21002, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯惇将魂" }, { @@ -7246,7 +7246,7 @@ "content": 21003, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张辽将魂" }, { @@ -7256,7 +7256,7 @@ "content": 21004, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯渊将魂" }, { @@ -7266,7 +7266,7 @@ "content": 21005, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "郭嘉将魂" }, { @@ -7276,7 +7276,7 @@ "content": 21007, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "典韦将魂" }, { @@ -7286,7 +7286,7 @@ "content": 21017, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张飞将魂" }, { @@ -7296,7 +7296,7 @@ "content": 21018, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "关羽将魂" }, { @@ -7306,7 +7306,7 @@ "content": 21020, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "刘备将魂" }, { @@ -7316,7 +7316,7 @@ "content": 21021, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "黄忠将魂" }, { @@ -7326,7 +7326,7 @@ "content": 21022, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "诸葛亮将魂" }, { @@ -7336,7 +7336,7 @@ "content": 21024, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "魏延将魂" }, { @@ -7346,7 +7346,7 @@ "content": 21032, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "周泰将魂" }, { @@ -7356,7 +7356,7 @@ "content": 21033, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙策将魂" }, { @@ -7366,7 +7366,7 @@ "content": 21034, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "周瑜将魂" }, { @@ -7376,7 +7376,7 @@ "content": 21035, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "太史慈将魂" }, { @@ -7386,7 +7386,7 @@ "content": 21038, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙尚香将魂" }, { @@ -7396,7 +7396,7 @@ "content": 21040, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "小乔将魂" }, { @@ -7406,7 +7406,7 @@ "content": 21041, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "大乔将魂" }, { @@ -7416,7 +7416,7 @@ "content": 21044, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "吕布将魂" }, { @@ -7426,7 +7426,7 @@ "content": 21045, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张任将魂" }, { @@ -7436,7 +7436,7 @@ "content": 21046, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "华佗将魂" }, { @@ -7446,7 +7446,7 @@ "content": 21047, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张角将魂" }, { @@ -7456,7 +7456,7 @@ "content": 21049, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "高顺将魂" }, { @@ -7466,7 +7466,7 @@ "content": 21056, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "貂蝉将魂" }, { @@ -7476,7 +7476,7 @@ "content": 21065, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "陈宫将魂" }, { @@ -7486,7 +7486,7 @@ "content": 21042, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "步练师将魂" }, { @@ -7496,7 +7496,7 @@ "content": 60001, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·破(一品)" }, { @@ -7506,7 +7506,7 @@ "content": 60011, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·护(一品)" }, { @@ -7516,7 +7516,7 @@ "content": 60021, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·御(一品)" }, { @@ -7526,7 +7526,7 @@ "content": 60031, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·命(一品)" }, { @@ -7536,7 +7536,7 @@ "content": 21001, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "曹操将魂" }, { @@ -7546,7 +7546,7 @@ "content": 21002, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯惇将魂" }, { @@ -7556,7 +7556,7 @@ "content": 21003, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张辽将魂" }, { @@ -7566,7 +7566,7 @@ "content": 21004, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯渊将魂" }, { @@ -7576,7 +7576,7 @@ "content": 21005, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "郭嘉将魂" }, { @@ -7586,7 +7586,7 @@ "content": 21007, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "典韦将魂" }, { @@ -7596,7 +7596,7 @@ "content": 21015, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "许褚将魂" }, { @@ -7606,7 +7606,7 @@ "content": 21017, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张飞将魂" }, { @@ -7616,7 +7616,7 @@ "content": 21018, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "关羽将魂" }, { @@ -7626,7 +7626,7 @@ "content": 21020, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "刘备将魂" }, { @@ -7636,7 +7636,7 @@ "content": 21021, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "黄忠将魂" }, { @@ -7646,7 +7646,7 @@ "content": 21022, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "诸葛亮将魂" }, { @@ -7656,7 +7656,7 @@ "content": 21024, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "魏延将魂" }, { @@ -7666,7 +7666,7 @@ "content": 21032, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "周泰将魂" }, { @@ -7676,7 +7676,7 @@ "content": 21033, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙策将魂" }, { @@ -7686,7 +7686,7 @@ "content": 21034, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "周瑜将魂" }, { @@ -7696,7 +7696,7 @@ "content": 21035, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "太史慈将魂" }, { @@ -7706,7 +7706,7 @@ "content": 21038, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙尚香将魂" }, { @@ -7716,7 +7716,7 @@ "content": 21040, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "小乔将魂" }, { @@ -7726,7 +7726,7 @@ "content": 21041, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "大乔将魂" }, { @@ -7736,7 +7736,7 @@ "content": 21044, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "吕布将魂" }, { @@ -7746,7 +7746,7 @@ "content": 21045, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张任将魂" }, { @@ -7756,7 +7756,7 @@ "content": 21046, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "华佗将魂" }, { @@ -7766,7 +7766,7 @@ "content": 21047, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张角将魂" }, { @@ -7776,7 +7776,7 @@ "content": 21049, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "高顺将魂" }, { @@ -7786,7 +7786,7 @@ "content": 21056, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "貂蝉将魂" }, { @@ -7796,7 +7796,7 @@ "content": 21065, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "陈宫将魂" }, { @@ -7806,7 +7806,7 @@ "content": 21042, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "步练师将魂" }, { @@ -7816,7 +7816,7 @@ "content": 21001, "count": 120, "weight": 1, - "floor": "&", + "floor": 0, "备注": "曹操将魂" }, { @@ -7826,7 +7826,7 @@ "content": 21002, "count": 120, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯惇将魂" }, { @@ -7836,7 +7836,7 @@ "content": 21003, "count": 120, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张辽将魂" }, { @@ -7846,7 +7846,7 @@ "content": 21004, "count": 120, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯渊将魂" }, { @@ -7856,7 +7856,7 @@ "content": 21005, "count": 120, "weight": 1, - "floor": "&", + "floor": 0, "备注": "郭嘉将魂" }, { @@ -7866,7 +7866,7 @@ "content": 21007, "count": 120, "weight": 1, - "floor": "&", + "floor": 0, "备注": "典韦将魂" }, { @@ -7876,7 +7876,7 @@ "content": 21015, "count": 120, "weight": 1, - "floor": "&", + "floor": 0, "备注": "许褚将魂" }, { @@ -7886,7 +7886,7 @@ "content": 21017, "count": 120, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张飞将魂" }, { @@ -7896,7 +7896,7 @@ "content": 21018, "count": 120, "weight": 1, - "floor": "&", + "floor": 0, "备注": "关羽将魂" }, { @@ -7906,7 +7906,7 @@ "content": 21020, "count": 120, "weight": 1, - "floor": "&", + "floor": 0, "备注": "刘备将魂" }, { @@ -7916,7 +7916,7 @@ "content": 21021, "count": 120, "weight": 1, - "floor": "&", + "floor": 0, "备注": "黄忠将魂" }, { @@ -7926,7 +7926,7 @@ "content": 21022, "count": 120, "weight": 1, - "floor": "&", + "floor": 0, "备注": "诸葛亮将魂" }, { @@ -7936,7 +7936,7 @@ "content": 21024, "count": 120, "weight": 1, - "floor": "&", + "floor": 0, "备注": "魏延将魂" }, { @@ -7946,7 +7946,7 @@ "content": 21032, "count": 120, "weight": 1, - "floor": "&", + "floor": 0, "备注": "周泰将魂" }, { @@ -7956,7 +7956,7 @@ "content": 21033, "count": 120, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙策将魂" }, { @@ -7966,7 +7966,7 @@ "content": 21034, "count": 120, "weight": 1, - "floor": "&", + "floor": 0, "备注": "周瑜将魂" }, { @@ -7976,7 +7976,7 @@ "content": 21035, "count": 120, "weight": 1, - "floor": "&", + "floor": 0, "备注": "太史慈将魂" }, { @@ -7986,7 +7986,7 @@ "content": 21038, "count": 120, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙尚香将魂" }, { @@ -7996,7 +7996,7 @@ "content": 21040, "count": 120, "weight": 1, - "floor": "&", + "floor": 0, "备注": "小乔将魂" }, { @@ -8006,7 +8006,7 @@ "content": 21041, "count": 120, "weight": 1, - "floor": "&", + "floor": 0, "备注": "大乔将魂" }, { @@ -8016,7 +8016,7 @@ "content": 21044, "count": 120, "weight": 1, - "floor": "&", + "floor": 0, "备注": "吕布将魂" }, { @@ -8026,7 +8026,7 @@ "content": 21045, "count": 120, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张任将魂" }, { @@ -8036,7 +8036,7 @@ "content": 21046, "count": 120, "weight": 1, - "floor": "&", + "floor": 0, "备注": "华佗将魂" }, { @@ -8046,7 +8046,7 @@ "content": 21047, "count": 120, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张角将魂" }, { @@ -8056,7 +8056,7 @@ "content": 21049, "count": 120, "weight": 1, - "floor": "&", + "floor": 0, "备注": "高顺将魂" }, { @@ -8066,7 +8066,7 @@ "content": 21056, "count": 120, "weight": 1, - "floor": "&", + "floor": 0, "备注": "貂蝉将魂" }, { @@ -8076,7 +8076,7 @@ "content": 21065, "count": 120, "weight": 1, - "floor": "&", + "floor": 0, "备注": "陈宫将魂" }, { @@ -8086,7 +8086,7 @@ "content": 21042, "count": 120, "weight": 1, - "floor": "&", + "floor": 0, "备注": "步练师将魂" }, { @@ -8096,7 +8096,7 @@ "content": 21001, "count": 240, "weight": 1, - "floor": "&", + "floor": 0, "备注": "曹操将魂" }, { @@ -8106,7 +8106,7 @@ "content": 21002, "count": 240, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯惇将魂" }, { @@ -8116,7 +8116,7 @@ "content": 21003, "count": 240, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张辽将魂" }, { @@ -8126,7 +8126,7 @@ "content": 21004, "count": 240, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯渊将魂" }, { @@ -8136,7 +8136,7 @@ "content": 21005, "count": 240, "weight": 1, - "floor": "&", + "floor": 0, "备注": "郭嘉将魂" }, { @@ -8146,7 +8146,7 @@ "content": 21007, "count": 240, "weight": 1, - "floor": "&", + "floor": 0, "备注": "典韦将魂" }, { @@ -8156,7 +8156,7 @@ "content": 21015, "count": 240, "weight": 1, - "floor": "&", + "floor": 0, "备注": "许褚将魂" }, { @@ -8166,7 +8166,7 @@ "content": 21017, "count": 240, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张飞将魂" }, { @@ -8176,7 +8176,7 @@ "content": 21018, "count": 240, "weight": 1, - "floor": "&", + "floor": 0, "备注": "关羽将魂" }, { @@ -8186,7 +8186,7 @@ "content": 21019, "count": 240, "weight": 1, - "floor": "&", + "floor": 0, "备注": "赵云将魂" }, { @@ -8196,7 +8196,7 @@ "content": 21020, "count": 240, "weight": 1, - "floor": "&", + "floor": 0, "备注": "刘备将魂" }, { @@ -8206,7 +8206,7 @@ "content": 21021, "count": 240, "weight": 1, - "floor": "&", + "floor": 0, "备注": "黄忠将魂" }, { @@ -8216,7 +8216,7 @@ "content": 21022, "count": 240, "weight": 1, - "floor": "&", + "floor": 0, "备注": "诸葛亮将魂" }, { @@ -8226,7 +8226,7 @@ "content": 21024, "count": 240, "weight": 1, - "floor": "&", + "floor": 0, "备注": "魏延将魂" }, { @@ -8236,7 +8236,7 @@ "content": 21032, "count": 240, "weight": 1, - "floor": "&", + "floor": 0, "备注": "周泰将魂" }, { @@ -8246,7 +8246,7 @@ "content": 21033, "count": 240, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙策将魂" }, { @@ -8256,7 +8256,7 @@ "content": 21034, "count": 240, "weight": 1, - "floor": "&", + "floor": 0, "备注": "周瑜将魂" }, { @@ -8266,7 +8266,7 @@ "content": 21035, "count": 240, "weight": 1, - "floor": "&", + "floor": 0, "备注": "太史慈将魂" }, { @@ -8276,7 +8276,7 @@ "content": 21040, "count": 240, "weight": 1, - "floor": "&", + "floor": 0, "备注": "小乔将魂" }, { @@ -8286,7 +8286,7 @@ "content": 21041, "count": 240, "weight": 1, - "floor": "&", + "floor": 0, "备注": "大乔将魂" }, { @@ -8296,7 +8296,7 @@ "content": 21044, "count": 240, "weight": 1, - "floor": "&", + "floor": 0, "备注": "吕布将魂" }, { @@ -8306,7 +8306,7 @@ "content": 21045, "count": 240, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张任将魂" }, { @@ -8316,7 +8316,7 @@ "content": 21046, "count": 240, "weight": 1, - "floor": "&", + "floor": 0, "备注": "华佗将魂" }, { @@ -8326,7 +8326,7 @@ "content": 21047, "count": 240, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张角将魂" }, { @@ -8336,7 +8336,7 @@ "content": 21049, "count": 240, "weight": 1, - "floor": "&", + "floor": 0, "备注": "高顺将魂" }, { @@ -8346,7 +8346,7 @@ "content": 21056, "count": 240, "weight": 1, - "floor": "&", + "floor": 0, "备注": "貂蝉将魂" }, { @@ -8356,7 +8356,7 @@ "content": 21065, "count": 240, "weight": 1, - "floor": "&", + "floor": 0, "备注": "陈宫将魂" }, { @@ -8366,7 +8366,7 @@ "content": 21042, "count": 240, "weight": 1, - "floor": "&", + "floor": 0, "备注": "步练师将魂" }, { @@ -8376,7 +8376,7 @@ "content": 17042, "count": 16, "weight": 1, - "floor": "&", + "floor": 0, "备注": "虎符" }, { @@ -8386,7 +8386,7 @@ "content": 17055, "count": 16, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天外陨金" }, { @@ -8396,7 +8396,7 @@ "content": 17045, "count": 40, "weight": 1, - "floor": "&", + "floor": 0, "备注": "乾坤锁" }, { @@ -8406,7 +8406,7 @@ "content": 21001, "count": 40, "weight": 1, - "floor": "&", + "floor": 0, "备注": "曹操将魂" }, { @@ -8416,7 +8416,7 @@ "content": 21002, "count": 40, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯惇将魂" }, { @@ -8426,7 +8426,7 @@ "content": 21003, "count": 40, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张辽将魂" }, { @@ -8436,7 +8436,7 @@ "content": 21004, "count": 40, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯渊将魂" }, { @@ -8446,7 +8446,7 @@ "content": 21005, "count": 40, "weight": 1, - "floor": "&", + "floor": 0, "备注": "郭嘉将魂" }, { @@ -8456,7 +8456,7 @@ "content": 21007, "count": 40, "weight": 1, - "floor": "&", + "floor": 0, "备注": "典韦将魂" }, { @@ -8466,7 +8466,7 @@ "content": 21015, "count": 40, "weight": 1, - "floor": "&", + "floor": 0, "备注": "许褚将魂" }, { @@ -8476,7 +8476,7 @@ "content": 21017, "count": 40, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张飞将魂" }, { @@ -8486,7 +8486,7 @@ "content": 21018, "count": 40, "weight": 1, - "floor": "&", + "floor": 0, "备注": "关羽将魂" }, { @@ -8496,7 +8496,7 @@ "content": 21020, "count": 40, "weight": 1, - "floor": "&", + "floor": 0, "备注": "刘备将魂" }, { @@ -8506,7 +8506,7 @@ "content": 21021, "count": 40, "weight": 1, - "floor": "&", + "floor": 0, "备注": "黄忠将魂" }, { @@ -8516,7 +8516,7 @@ "content": 21022, "count": 40, "weight": 1, - "floor": "&", + "floor": 0, "备注": "诸葛亮将魂" }, { @@ -8526,7 +8526,7 @@ "content": 21024, "count": 40, "weight": 1, - "floor": "&", + "floor": 0, "备注": "魏延将魂" }, { @@ -8536,7 +8536,7 @@ "content": 21032, "count": 40, "weight": 1, - "floor": "&", + "floor": 0, "备注": "周泰将魂" }, { @@ -8546,7 +8546,7 @@ "content": 21033, "count": 40, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙策将魂" }, { @@ -8556,7 +8556,7 @@ "content": 21034, "count": 40, "weight": 1, - "floor": "&", + "floor": 0, "备注": "周瑜将魂" }, { @@ -8566,7 +8566,7 @@ "content": 21035, "count": 40, "weight": 1, - "floor": "&", + "floor": 0, "备注": "太史慈将魂" }, { @@ -8576,7 +8576,7 @@ "content": 21038, "count": 40, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙尚香将魂" }, { @@ -8586,7 +8586,7 @@ "content": 21040, "count": 40, "weight": 1, - "floor": "&", + "floor": 0, "备注": "小乔将魂" }, { @@ -8596,7 +8596,7 @@ "content": 21041, "count": 40, "weight": 1, - "floor": "&", + "floor": 0, "备注": "大乔将魂" }, { @@ -8606,7 +8606,7 @@ "content": 21044, "count": 40, "weight": 1, - "floor": "&", + "floor": 0, "备注": "吕布将魂" }, { @@ -8616,7 +8616,7 @@ "content": 21045, "count": 40, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张任将魂" }, { @@ -8626,7 +8626,7 @@ "content": 21046, "count": 40, "weight": 1, - "floor": "&", + "floor": 0, "备注": "华佗将魂" }, { @@ -8636,7 +8636,7 @@ "content": 21047, "count": 40, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张角将魂" }, { @@ -8646,7 +8646,7 @@ "content": 21049, "count": 40, "weight": 1, - "floor": "&", + "floor": 0, "备注": "高顺将魂" }, { @@ -8656,7 +8656,7 @@ "content": 21056, "count": 40, "weight": 1, - "floor": "&", + "floor": 0, "备注": "貂蝉将魂" }, { @@ -8666,7 +8666,7 @@ "content": 21065, "count": 40, "weight": 1, - "floor": "&", + "floor": 0, "备注": "陈宫将魂" }, { @@ -8676,7 +8676,7 @@ "content": 21042, "count": 40, "weight": 1, - "floor": "&", + "floor": 0, "备注": "步练师将魂" }, { @@ -8686,7 +8686,7 @@ "content": 21001, "count": 160, "weight": 1, - "floor": "&", + "floor": 0, "备注": "曹操将魂" }, { @@ -8696,7 +8696,7 @@ "content": 21002, "count": 160, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯惇将魂" }, { @@ -8706,7 +8706,7 @@ "content": 21003, "count": 160, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张辽将魂" }, { @@ -8716,7 +8716,7 @@ "content": 21004, "count": 160, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯渊将魂" }, { @@ -8726,7 +8726,7 @@ "content": 21005, "count": 160, "weight": 1, - "floor": "&", + "floor": 0, "备注": "郭嘉将魂" }, { @@ -8736,7 +8736,7 @@ "content": 21007, "count": 160, "weight": 1, - "floor": "&", + "floor": 0, "备注": "典韦将魂" }, { @@ -8746,7 +8746,7 @@ "content": 21015, "count": 160, "weight": 1, - "floor": "&", + "floor": 0, "备注": "许褚将魂" }, { @@ -8756,7 +8756,7 @@ "content": 21017, "count": 160, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张飞将魂" }, { @@ -8766,7 +8766,7 @@ "content": 21018, "count": 160, "weight": 1, - "floor": "&", + "floor": 0, "备注": "关羽将魂" }, { @@ -8776,7 +8776,7 @@ "content": 21020, "count": 160, "weight": 1, - "floor": "&", + "floor": 0, "备注": "刘备将魂" }, { @@ -8786,7 +8786,7 @@ "content": 21021, "count": 160, "weight": 1, - "floor": "&", + "floor": 0, "备注": "黄忠将魂" }, { @@ -8796,7 +8796,7 @@ "content": 21022, "count": 160, "weight": 1, - "floor": "&", + "floor": 0, "备注": "诸葛亮将魂" }, { @@ -8806,7 +8806,7 @@ "content": 21024, "count": 160, "weight": 1, - "floor": "&", + "floor": 0, "备注": "魏延将魂" }, { @@ -8816,7 +8816,7 @@ "content": 21032, "count": 160, "weight": 1, - "floor": "&", + "floor": 0, "备注": "周泰将魂" }, { @@ -8826,7 +8826,7 @@ "content": 21033, "count": 160, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙策将魂" }, { @@ -8836,7 +8836,7 @@ "content": 21034, "count": 160, "weight": 1, - "floor": "&", + "floor": 0, "备注": "周瑜将魂" }, { @@ -8846,7 +8846,7 @@ "content": 21035, "count": 160, "weight": 1, - "floor": "&", + "floor": 0, "备注": "太史慈将魂" }, { @@ -8856,7 +8856,7 @@ "content": 21038, "count": 160, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙尚香将魂" }, { @@ -8866,7 +8866,7 @@ "content": 21040, "count": 160, "weight": 1, - "floor": "&", + "floor": 0, "备注": "小乔将魂" }, { @@ -8876,7 +8876,7 @@ "content": 21041, "count": 160, "weight": 1, - "floor": "&", + "floor": 0, "备注": "大乔将魂" }, { @@ -8886,7 +8886,7 @@ "content": 21044, "count": 160, "weight": 1, - "floor": "&", + "floor": 0, "备注": "吕布将魂" }, { @@ -8896,7 +8896,7 @@ "content": 21045, "count": 160, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张任将魂" }, { @@ -8906,7 +8906,7 @@ "content": 21046, "count": 160, "weight": 1, - "floor": "&", + "floor": 0, "备注": "华佗将魂" }, { @@ -8916,7 +8916,7 @@ "content": 21047, "count": 160, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张角将魂" }, { @@ -8926,7 +8926,7 @@ "content": 21049, "count": 160, "weight": 1, - "floor": "&", + "floor": 0, "备注": "高顺将魂" }, { @@ -8936,7 +8936,7 @@ "content": 21056, "count": 160, "weight": 1, - "floor": "&", + "floor": 0, "备注": "貂蝉将魂" }, { @@ -8946,7 +8946,7 @@ "content": 21065, "count": 160, "weight": 1, - "floor": "&", + "floor": 0, "备注": "陈宫将魂" }, { @@ -8956,7 +8956,7 @@ "content": 21042, "count": 160, "weight": 1, - "floor": "&", + "floor": 0, "备注": "步练师将魂" }, { @@ -8966,7 +8966,7 @@ "content": 21001, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "曹操将魂" }, { @@ -8976,7 +8976,7 @@ "content": 21002, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯惇将魂" }, { @@ -8986,7 +8986,7 @@ "content": 21003, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张辽将魂" }, { @@ -8996,7 +8996,7 @@ "content": 21004, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯渊将魂" }, { @@ -9006,7 +9006,7 @@ "content": 21005, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "郭嘉将魂" }, { @@ -9016,7 +9016,7 @@ "content": 21007, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "典韦将魂" }, { @@ -9026,7 +9026,7 @@ "content": 21015, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "许褚将魂" }, { @@ -9036,7 +9036,7 @@ "content": 21017, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张飞将魂" }, { @@ -9046,7 +9046,7 @@ "content": 21018, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "关羽将魂" }, { @@ -9056,7 +9056,7 @@ "content": 21020, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "刘备将魂" }, { @@ -9066,7 +9066,7 @@ "content": 21021, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "黄忠将魂" }, { @@ -9076,7 +9076,7 @@ "content": 21022, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "诸葛亮将魂" }, { @@ -9086,7 +9086,7 @@ "content": 21024, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "魏延将魂" }, { @@ -9096,7 +9096,7 @@ "content": 21032, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "周泰将魂" }, { @@ -9106,7 +9106,7 @@ "content": 21033, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙策将魂" }, { @@ -9116,7 +9116,7 @@ "content": 21034, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "周瑜将魂" }, { @@ -9126,7 +9126,7 @@ "content": 21035, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "太史慈将魂" }, { @@ -9136,7 +9136,7 @@ "content": 21038, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙尚香将魂" }, { @@ -9146,7 +9146,7 @@ "content": 21040, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "小乔将魂" }, { @@ -9156,7 +9156,7 @@ "content": 21041, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "大乔将魂" }, { @@ -9166,7 +9166,7 @@ "content": 21044, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "吕布将魂" }, { @@ -9176,7 +9176,7 @@ "content": 21045, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张任将魂" }, { @@ -9186,7 +9186,7 @@ "content": 21046, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "华佗将魂" }, { @@ -9196,7 +9196,7 @@ "content": 21047, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张角将魂" }, { @@ -9206,7 +9206,7 @@ "content": 21049, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "高顺将魂" }, { @@ -9216,7 +9216,7 @@ "content": 21056, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "貂蝉将魂" }, { @@ -9226,7 +9226,7 @@ "content": 21065, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "陈宫将魂" }, { @@ -9236,7 +9236,7 @@ "content": 21042, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "步练师将魂" }, { @@ -9246,7 +9246,7 @@ "content": 21001, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "曹操将魂" }, { @@ -9256,7 +9256,7 @@ "content": 21002, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯惇将魂" }, { @@ -9266,7 +9266,7 @@ "content": 21003, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张辽将魂" }, { @@ -9276,7 +9276,7 @@ "content": 21004, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯渊将魂" }, { @@ -9286,7 +9286,7 @@ "content": 21005, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "郭嘉将魂" }, { @@ -9296,7 +9296,7 @@ "content": 21007, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "典韦将魂" }, { @@ -9306,7 +9306,7 @@ "content": 21015, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "许褚将魂" }, { @@ -9316,7 +9316,7 @@ "content": 21017, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张飞将魂" }, { @@ -9326,7 +9326,7 @@ "content": 21018, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "关羽将魂" }, { @@ -9336,7 +9336,7 @@ "content": 21020, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "刘备将魂" }, { @@ -9346,7 +9346,7 @@ "content": 21021, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "黄忠将魂" }, { @@ -9356,7 +9356,7 @@ "content": 21022, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "诸葛亮将魂" }, { @@ -9366,7 +9366,7 @@ "content": 21024, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "魏延将魂" }, { @@ -9376,7 +9376,7 @@ "content": 21032, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "周泰将魂" }, { @@ -9386,7 +9386,7 @@ "content": 21033, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙策将魂" }, { @@ -9396,7 +9396,7 @@ "content": 21034, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "周瑜将魂" }, { @@ -9406,7 +9406,7 @@ "content": 21035, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "太史慈将魂" }, { @@ -9416,7 +9416,7 @@ "content": 21038, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙尚香将魂" }, { @@ -9426,7 +9426,7 @@ "content": 21040, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "小乔将魂" }, { @@ -9436,7 +9436,7 @@ "content": 21041, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "大乔将魂" }, { @@ -9446,7 +9446,7 @@ "content": 21044, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "吕布将魂" }, { @@ -9456,7 +9456,7 @@ "content": 21045, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张任将魂" }, { @@ -9466,7 +9466,7 @@ "content": 21046, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "华佗将魂" }, { @@ -9476,7 +9476,7 @@ "content": 21047, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张角将魂" }, { @@ -9486,7 +9486,7 @@ "content": 21049, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "高顺将魂" }, { @@ -9496,7 +9496,7 @@ "content": 21056, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "貂蝉将魂" }, { @@ -9506,7 +9506,7 @@ "content": 21065, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "陈宫将魂" }, { @@ -9516,7 +9516,7 @@ "content": 21042, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "步练师将魂" }, { @@ -9526,7 +9526,7 @@ "content": 50001, "count": 16, "weight": 1, - "floor": "&", + "floor": 0, "备注": "下品装备设计图" }, { @@ -9536,7 +9536,7 @@ "content": 50002, "count": 8, "weight": 1, - "floor": "&", + "floor": 0, "备注": "中品装备设计图" }, { @@ -9546,7 +9546,7 @@ "content": 31001, "count": 50000, "weight": 1, - "floor": "&", + "floor": 0, "备注": "铜钱" }, { @@ -9556,7 +9556,7 @@ "content": 11003, "count": 40, "weight": 1, - "floor": "&", + "floor": 0, "备注": "高级武将经验书" }, { @@ -9566,7 +9566,7 @@ "content": 17044, "count": 50, "weight": 1, - "floor": "&", + "floor": 0, "备注": "洗炼石" }, { @@ -9576,7 +9576,7 @@ "content": 17054, "count": 300, "weight": 1, - "floor": "&", + "floor": 0, "备注": "镔铁" }, { @@ -9586,7 +9586,7 @@ "content": 17055, "count": 3, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天外陨金" }, { @@ -9596,7 +9596,7 @@ "content": 31002, "count": 1980, "weight": 1, - "floor": "&", + "floor": 0, "备注": "元宝" }, { @@ -9606,7 +9606,7 @@ "content": 60004, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·破(四品)" }, { @@ -9616,7 +9616,7 @@ "content": 22001, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "点将令" }, { @@ -9626,7 +9626,7 @@ "content": 71011, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "传奇武将将魂任选宝箱II" }, { @@ -9636,7 +9636,7 @@ "content": 17001, "count": 3, "weight": 1, - "floor": "&", + "floor": 0, "备注": "觉醒石" }, { @@ -9646,7 +9646,7 @@ "content": 31002, "count": 3280, "weight": 1, - "floor": "&", + "floor": 0, "备注": "元宝" }, { @@ -9656,7 +9656,7 @@ "content": 71012, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "传奇武将将魂任选宝箱III" }, { @@ -9666,7 +9666,7 @@ "content": 22001, "count": 30, "weight": 1, - "floor": "&", + "floor": 0, "备注": "点将令" }, { @@ -9676,7 +9676,7 @@ "content": 31002, "count": 6480, "weight": 1, - "floor": "&", + "floor": 0, "备注": "元宝" }, { @@ -9686,7 +9686,7 @@ "content": 71013, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "传奇武将将魂任选宝箱V" }, { @@ -9696,7 +9696,7 @@ "content": 17001, "count": 5, "weight": 1, - "floor": "&", + "floor": 0, "备注": "觉醒石" }, { @@ -9706,7 +9706,7 @@ "content": 22001, "count": 60, "weight": 1, - "floor": "&", + "floor": 0, "备注": "点将令" }, { @@ -9716,7 +9716,7 @@ "content": 31001, "count": 50000, "weight": 1, - "floor": "&", + "floor": 0, "备注": "铜钱" }, { @@ -9726,7 +9726,7 @@ "content": 11003, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "高级武将经验书" }, { @@ -9736,7 +9736,7 @@ "content": 21001, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "曹操将魂" }, { @@ -9746,7 +9746,7 @@ "content": 21002, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯惇将魂" }, { @@ -9756,7 +9756,7 @@ "content": 21003, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张辽将魂" }, { @@ -9766,7 +9766,7 @@ "content": 21004, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯渊将魂" }, { @@ -9776,7 +9776,7 @@ "content": 21005, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "郭嘉将魂" }, { @@ -9786,7 +9786,7 @@ "content": 21007, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "典韦将魂" }, { @@ -9796,7 +9796,7 @@ "content": 21015, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "许褚将魂" }, { @@ -9806,7 +9806,7 @@ "content": 21017, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张飞将魂" }, { @@ -9816,7 +9816,7 @@ "content": 21018, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "关羽将魂" }, { @@ -9826,7 +9826,7 @@ "content": 21020, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "刘备将魂" }, { @@ -9836,7 +9836,7 @@ "content": 21021, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "黄忠将魂" }, { @@ -9846,7 +9846,7 @@ "content": 21022, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "诸葛亮将魂" }, { @@ -9856,7 +9856,7 @@ "content": 21024, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "魏延将魂" }, { @@ -9866,7 +9866,7 @@ "content": 21032, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "周泰将魂" }, { @@ -9876,7 +9876,7 @@ "content": 21033, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙策将魂" }, { @@ -9886,7 +9886,7 @@ "content": 21034, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "周瑜将魂" }, { @@ -9896,7 +9896,7 @@ "content": 21035, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "太史慈将魂" }, { @@ -9906,7 +9906,7 @@ "content": 21038, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙尚香将魂" }, { @@ -9916,7 +9916,7 @@ "content": 21040, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "小乔将魂" }, { @@ -9926,7 +9926,7 @@ "content": 21041, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "大乔将魂" }, { @@ -9936,7 +9936,7 @@ "content": 21044, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "吕布将魂" }, { @@ -9946,7 +9946,7 @@ "content": 21045, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张任将魂" }, { @@ -9956,7 +9956,7 @@ "content": 21046, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "华佗将魂" }, { @@ -9966,7 +9966,7 @@ "content": 21047, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张角将魂" }, { @@ -9976,7 +9976,7 @@ "content": 21049, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "高顺将魂" }, { @@ -9986,7 +9986,7 @@ "content": 21056, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "貂蝉将魂" }, { @@ -9996,7 +9996,7 @@ "content": 21065, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "陈宫将魂" }, { @@ -10006,7 +10006,7 @@ "content": 21042, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "步练师将魂" }, { @@ -10016,7 +10016,7 @@ "content": 80005, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(五品)" }, { @@ -10026,7 +10026,7 @@ "content": 80015, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(五品)" }, { @@ -10036,7 +10036,7 @@ "content": 80025, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(五品)" }, { @@ -10046,7 +10046,7 @@ "content": 80035, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(五品)" }, { @@ -10056,7 +10056,7 @@ "content": 80004, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(四品)" }, { @@ -10066,7 +10066,7 @@ "content": 80014, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(四品)" }, { @@ -10076,7 +10076,7 @@ "content": 80024, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(四品)" }, { @@ -10086,7 +10086,7 @@ "content": 80034, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(四品)" }, { @@ -10096,7 +10096,7 @@ "content": 80003, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(三品)" }, { @@ -10106,7 +10106,7 @@ "content": 80013, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(三品)" }, { @@ -10116,7 +10116,7 @@ "content": 80023, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(三品)" }, { @@ -10126,7 +10126,7 @@ "content": 80033, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(三品)" }, { @@ -10136,7 +10136,7 @@ "content": 60004, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·破(四品)" }, { @@ -10146,7 +10146,7 @@ "content": 60014, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·护(四品)" }, { @@ -10156,7 +10156,7 @@ "content": 60024, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·御(四品)" }, { @@ -10166,7 +10166,7 @@ "content": 60034, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·命(四品)" }, { @@ -10176,7 +10176,7 @@ "content": 60005, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·破(五品)" }, { @@ -10186,7 +10186,7 @@ "content": 60015, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·护(五品)" }, { @@ -10196,7 +10196,7 @@ "content": 60025, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·御(五品)" }, { @@ -10206,7 +10206,7 @@ "content": 60035, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "地玉·命(五品)" }, { @@ -10216,7 +10216,7 @@ "content": 21047, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张角将魂" }, { @@ -10226,7 +10226,7 @@ "content": 21005, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "郭嘉将魂" }, { @@ -10236,7 +10236,7 @@ "content": 21022, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "诸葛亮将魂" }, { @@ -10246,7 +10246,7 @@ "content": 21034, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "周瑜将魂" }, { @@ -10256,7 +10256,7 @@ "content": 17052, "count": 450, "weight": 1, - "floor": "&", + "floor": 0, "备注": "玉石" }, { @@ -10266,7 +10266,7 @@ "content": 17053, "count": 60, "weight": 1, - "floor": "&", + "floor": 0, "备注": "玉髓" }, { @@ -10276,7 +10276,7 @@ "content": 21001, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "曹操将魂" }, { @@ -10286,7 +10286,7 @@ "content": 21002, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯惇将魂" }, { @@ -10296,7 +10296,7 @@ "content": 21003, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张辽将魂" }, { @@ -10306,7 +10306,7 @@ "content": 21004, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "夏侯渊将魂" }, { @@ -10316,7 +10316,7 @@ "content": 21005, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "郭嘉将魂" }, { @@ -10326,7 +10326,7 @@ "content": 21007, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "典韦将魂" }, { @@ -10336,7 +10336,7 @@ "content": 21015, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "许褚将魂" }, { @@ -10346,7 +10346,7 @@ "content": 21017, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张飞将魂" }, { @@ -10356,7 +10356,7 @@ "content": 21018, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "关羽将魂" }, { @@ -10366,7 +10366,7 @@ "content": 21020, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "刘备将魂" }, { @@ -10376,7 +10376,7 @@ "content": 21021, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "黄忠将魂" }, { @@ -10386,7 +10386,7 @@ "content": 21022, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "诸葛亮将魂" }, { @@ -10396,7 +10396,7 @@ "content": 21024, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "魏延将魂" }, { @@ -10406,7 +10406,7 @@ "content": 21032, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "周泰将魂" }, { @@ -10416,7 +10416,7 @@ "content": 21033, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙策将魂" }, { @@ -10426,7 +10426,7 @@ "content": 21034, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "周瑜将魂" }, { @@ -10436,7 +10436,7 @@ "content": 21035, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "太史慈将魂" }, { @@ -10446,7 +10446,7 @@ "content": 21038, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "孙尚香将魂" }, { @@ -10456,7 +10456,7 @@ "content": 21040, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "小乔将魂" }, { @@ -10466,7 +10466,7 @@ "content": 21041, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "大乔将魂" }, { @@ -10476,7 +10476,7 @@ "content": 21044, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "吕布将魂" }, { @@ -10486,7 +10486,7 @@ "content": 21045, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张任将魂" }, { @@ -10496,7 +10496,7 @@ "content": 21046, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "华佗将魂" }, { @@ -10506,7 +10506,7 @@ "content": 21047, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "张角将魂" }, { @@ -10516,7 +10516,7 @@ "content": 21049, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "高顺将魂" }, { @@ -10526,7 +10526,7 @@ "content": 21056, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "貂蝉将魂" }, { @@ -10536,7 +10536,7 @@ "content": 21065, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "陈宫将魂" }, { @@ -10546,7 +10546,7 @@ "content": 21042, "count": 80, "weight": 1, - "floor": "&", + "floor": 0, "备注": "步练师将魂" }, { @@ -10556,7 +10556,7 @@ "content": 22002, "count": 10, "weight": 1, - "floor": "&", + "floor": 0, "备注": "求贤令" }, { @@ -10566,7 +10566,7 @@ "content": 31002, "count": 980, "weight": 1, - "floor": "&", + "floor": 0, "备注": "元宝" }, { @@ -10576,7 +10576,7 @@ "content": 22002, "count": 20, "weight": 1, - "floor": "&", + "floor": 0, "备注": "求贤令" }, { @@ -10586,7 +10586,7 @@ "content": 31002, "count": 2000, "weight": 1, - "floor": "&", + "floor": 0, "备注": "元宝" }, { @@ -10596,7 +10596,7 @@ "content": 22002, "count": 30, "weight": 1, - "floor": "&", + "floor": 0, "备注": "求贤令" }, { @@ -10606,7 +10606,7 @@ "content": 31002, "count": 3280, "weight": 1, - "floor": "&", + "floor": 0, "备注": "元宝" }, { @@ -10616,7 +10616,7 @@ "content": 17001, "count": 9, "weight": 1, - "floor": "&", + "floor": 0, "备注": "觉醒石" }, { @@ -10626,7 +10626,7 @@ "content": 31002, "count": 6480, "weight": 1, - "floor": "&", + "floor": 0, "备注": "元宝" }, { @@ -10636,7 +10636,7 @@ "content": 80006, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(六品)" }, { @@ -10646,7 +10646,7 @@ "content": 80016, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(六品)" }, { @@ -10656,7 +10656,7 @@ "content": 80026, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(六品)" }, { @@ -10666,7 +10666,7 @@ "content": 80036, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(六品)" }, { @@ -10676,7 +10676,7 @@ "content": 80007, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(七品)" }, { @@ -10686,7 +10686,7 @@ "content": 80017, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(七品)" }, { @@ -10696,7 +10696,7 @@ "content": 80027, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(七品)" }, { @@ -10706,7 +10706,7 @@ "content": 80037, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(七品)" }, { @@ -10716,7 +10716,7 @@ "content": 80008, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·破(八品)" }, { @@ -10726,7 +10726,7 @@ "content": 80018, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·护(八品)" }, { @@ -10736,7 +10736,7 @@ "content": 80028, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·御(八品)" }, { @@ -10746,7 +10746,7 @@ "content": 80038, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "天晶·命(八品)" }, { @@ -10756,7 +10756,7 @@ "content": 82101, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "尚方剑" }, { @@ -10766,7 +10766,7 @@ "content": 82102, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "尚方剑" }, { @@ -10776,7 +10776,7 @@ "content": 82103, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "尚方剑" }, { @@ -10786,7 +10786,7 @@ "content": 82121, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "握奇经" }, { @@ -10796,7 +10796,7 @@ "content": 82122, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "握奇经" }, { @@ -10806,7 +10806,7 @@ "content": 82123, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "握奇经" }, { @@ -10816,7 +10816,7 @@ "content": 82201, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "黄钺斧" }, { @@ -10826,7 +10826,7 @@ "content": 82202, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "黄钺斧" }, { @@ -10836,7 +10836,7 @@ "content": 82203, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "黄钺斧" }, { @@ -10846,7 +10846,7 @@ "content": 82221, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "断魂枪" }, { @@ -10856,7 +10856,7 @@ "content": 82222, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "断魂枪" }, { @@ -10866,7 +10866,7 @@ "content": 82223, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "断魂枪" }, { @@ -10876,7 +10876,7 @@ "content": 82301, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "穿龙槊" }, { @@ -10886,7 +10886,7 @@ "content": 82302, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "穿龙槊" }, { @@ -10896,7 +10896,7 @@ "content": 82303, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "穿龙槊" }, { @@ -10906,7 +10906,7 @@ "content": 82321, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "铁甲马" }, { @@ -10916,7 +10916,7 @@ "content": 82322, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "铁甲马" }, { @@ -10926,7 +10926,7 @@ "content": 82323, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "铁甲马" }, { @@ -10936,7 +10936,7 @@ "content": 82401, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "龙雀刀" }, { @@ -10946,7 +10946,7 @@ "content": 82402, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "龙雀刀" }, { @@ -10956,7 +10956,7 @@ "content": 82403, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "龙雀刀" }, { @@ -10966,7 +10966,7 @@ "content": 82421, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "吞云盾" }, { @@ -10976,7 +10976,7 @@ "content": 82422, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "吞云盾" }, { @@ -10986,7 +10986,7 @@ "content": 82423, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "吞云盾" }, { @@ -10996,7 +10996,7 @@ "content": 82501, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "神臂弓" }, { @@ -11006,7 +11006,7 @@ "content": 82502, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "神臂弓" }, { @@ -11016,7 +11016,7 @@ "content": 82503, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "神臂弓" }, { @@ -11026,7 +11026,7 @@ "content": 82521, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "镇天箭" }, { @@ -11036,7 +11036,7 @@ "content": 82522, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "镇天箭" }, { @@ -11046,7 +11046,7 @@ "content": 82523, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "镇天箭" }, { @@ -11056,7 +11056,7 @@ "content": 82601, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "博浪锥" }, { @@ -11066,7 +11066,7 @@ "content": 82602, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "博浪锥" }, { @@ -11076,7 +11076,7 @@ "content": 82603, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "博浪锥" }, { @@ -11086,7 +11086,7 @@ "content": 82621, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "鱼肠剑" }, { @@ -11096,7 +11096,7 @@ "content": 82622, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "鱼肠剑" }, { @@ -11106,7 +11106,7 @@ "content": 82623, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "鱼肠剑" }, { @@ -11116,7 +11116,7 @@ "content": 82701, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "神木鼎" }, { @@ -11126,7 +11126,7 @@ "content": 82702, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "神木鼎" }, { @@ -11136,7 +11136,7 @@ "content": 82703, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "神木鼎" }, { @@ -11146,7 +11146,7 @@ "content": 82721, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "太平要术" }, { @@ -11156,7 +11156,7 @@ "content": 82722, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "太平要术" }, { @@ -11166,7 +11166,7 @@ "content": 82723, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "太平要术" }, { @@ -11176,7 +11176,7 @@ "content": 83201, "count": 1, "weight": 140, - "floor": "40&1", + "floor": 1, "备注": "凤尾琴" }, { @@ -11186,7 +11186,7 @@ "content": 82101, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "尚方剑" }, { @@ -11196,7 +11196,7 @@ "content": 82102, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "尚方剑" }, { @@ -11206,7 +11206,7 @@ "content": 82103, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "尚方剑" }, { @@ -11216,7 +11216,7 @@ "content": 82121, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "握奇经" }, { @@ -11226,7 +11226,7 @@ "content": 82122, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "握奇经" }, { @@ -11236,7 +11236,7 @@ "content": 82123, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "握奇经" }, { @@ -11246,7 +11246,7 @@ "content": 82201, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "黄钺斧" }, { @@ -11256,7 +11256,7 @@ "content": 82202, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "黄钺斧" }, { @@ -11266,7 +11266,7 @@ "content": 82203, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "黄钺斧" }, { @@ -11276,7 +11276,7 @@ "content": 82221, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "断魂枪" }, { @@ -11286,7 +11286,7 @@ "content": 82222, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "断魂枪" }, { @@ -11296,7 +11296,7 @@ "content": 82223, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "断魂枪" }, { @@ -11306,7 +11306,7 @@ "content": 82301, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "穿龙槊" }, { @@ -11316,7 +11316,7 @@ "content": 82302, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "穿龙槊" }, { @@ -11326,7 +11326,7 @@ "content": 82303, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "穿龙槊" }, { @@ -11336,7 +11336,7 @@ "content": 82321, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "铁甲马" }, { @@ -11346,7 +11346,7 @@ "content": 82322, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "铁甲马" }, { @@ -11356,7 +11356,7 @@ "content": 82323, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "铁甲马" }, { @@ -11366,7 +11366,7 @@ "content": 82401, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "龙雀刀" }, { @@ -11376,7 +11376,7 @@ "content": 82402, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "龙雀刀" }, { @@ -11386,7 +11386,7 @@ "content": 82403, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "龙雀刀" }, { @@ -11396,7 +11396,7 @@ "content": 82421, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "吞云盾" }, { @@ -11406,7 +11406,7 @@ "content": 82422, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "吞云盾" }, { @@ -11416,7 +11416,7 @@ "content": 82423, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "吞云盾" }, { @@ -11426,7 +11426,7 @@ "content": 82501, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "神臂弓" }, { @@ -11436,7 +11436,7 @@ "content": 82502, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "神臂弓" }, { @@ -11446,7 +11446,7 @@ "content": 82503, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "神臂弓" }, { @@ -11456,7 +11456,7 @@ "content": 82521, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "镇天箭" }, { @@ -11466,7 +11466,7 @@ "content": 82522, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "镇天箭" }, { @@ -11476,7 +11476,7 @@ "content": 82523, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "镇天箭" }, { @@ -11486,7 +11486,7 @@ "content": 82601, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "博浪锥" }, { @@ -11496,7 +11496,7 @@ "content": 82602, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "博浪锥" }, { @@ -11506,7 +11506,7 @@ "content": 82603, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "博浪锥" }, { @@ -11516,7 +11516,7 @@ "content": 82621, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "鱼肠剑" }, { @@ -11526,7 +11526,7 @@ "content": 82622, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "鱼肠剑" }, { @@ -11536,7 +11536,7 @@ "content": 82623, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "鱼肠剑" }, { @@ -11546,7 +11546,7 @@ "content": 82701, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "神木鼎" }, { @@ -11556,7 +11556,7 @@ "content": 82702, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "神木鼎" }, { @@ -11566,7 +11566,7 @@ "content": 82703, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "神木鼎" }, { @@ -11576,7 +11576,7 @@ "content": 82721, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "太平要术" }, { @@ -11586,7 +11586,7 @@ "content": 82722, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "太平要术" }, { @@ -11596,7 +11596,7 @@ "content": 82723, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "太平要术" }, { @@ -11606,7 +11606,7 @@ "content": 83101, "count": 1, "weight": 140, - "floor": "40&1", + "floor": 1, "备注": "杜康樽" }, { @@ -11616,7 +11616,7 @@ "content": 82101, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "尚方剑" }, { @@ -11626,7 +11626,7 @@ "content": 82102, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "尚方剑" }, { @@ -11636,7 +11636,7 @@ "content": 82103, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "尚方剑" }, { @@ -11646,7 +11646,7 @@ "content": 82121, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "握奇经" }, { @@ -11656,7 +11656,7 @@ "content": 82122, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "握奇经" }, { @@ -11666,7 +11666,7 @@ "content": 82123, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "握奇经" }, { @@ -11676,7 +11676,7 @@ "content": 82201, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "黄钺斧" }, { @@ -11686,7 +11686,7 @@ "content": 82202, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "黄钺斧" }, { @@ -11696,7 +11696,7 @@ "content": 82203, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "黄钺斧" }, { @@ -11706,7 +11706,7 @@ "content": 82221, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "断魂枪" }, { @@ -11716,7 +11716,7 @@ "content": 82222, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "断魂枪" }, { @@ -11726,7 +11726,7 @@ "content": 82223, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "断魂枪" }, { @@ -11736,7 +11736,7 @@ "content": 82301, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "穿龙槊" }, { @@ -11746,7 +11746,7 @@ "content": 82302, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "穿龙槊" }, { @@ -11756,7 +11756,7 @@ "content": 82303, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "穿龙槊" }, { @@ -11766,7 +11766,7 @@ "content": 82321, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "铁甲马" }, { @@ -11776,7 +11776,7 @@ "content": 82322, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "铁甲马" }, { @@ -11786,7 +11786,7 @@ "content": 82323, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "铁甲马" }, { @@ -11796,7 +11796,7 @@ "content": 82401, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "龙雀刀" }, { @@ -11806,7 +11806,7 @@ "content": 82402, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "龙雀刀" }, { @@ -11816,7 +11816,7 @@ "content": 82403, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "龙雀刀" }, { @@ -11826,7 +11826,7 @@ "content": 82421, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "吞云盾" }, { @@ -11836,7 +11836,7 @@ "content": 82422, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "吞云盾" }, { @@ -11846,7 +11846,7 @@ "content": 82423, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "吞云盾" }, { @@ -11856,7 +11856,7 @@ "content": 82501, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "神臂弓" }, { @@ -11866,7 +11866,7 @@ "content": 82502, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "神臂弓" }, { @@ -11876,7 +11876,7 @@ "content": 82503, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "神臂弓" }, { @@ -11886,7 +11886,7 @@ "content": 82521, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "镇天箭" }, { @@ -11896,7 +11896,7 @@ "content": 82522, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "镇天箭" }, { @@ -11906,7 +11906,7 @@ "content": 82523, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "镇天箭" }, { @@ -11916,7 +11916,7 @@ "content": 82601, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "博浪锥" }, { @@ -11926,7 +11926,7 @@ "content": 82602, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "博浪锥" }, { @@ -11936,7 +11936,7 @@ "content": 82603, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "博浪锥" }, { @@ -11946,7 +11946,7 @@ "content": 82621, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "鱼肠剑" }, { @@ -11956,7 +11956,7 @@ "content": 82622, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "鱼肠剑" }, { @@ -11966,7 +11966,7 @@ "content": 82623, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "鱼肠剑" }, { @@ -11976,7 +11976,7 @@ "content": 82701, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "神木鼎" }, { @@ -11986,7 +11986,7 @@ "content": 82702, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "神木鼎" }, { @@ -11996,7 +11996,7 @@ "content": 82703, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "神木鼎" }, { @@ -12006,7 +12006,7 @@ "content": 82721, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "太平要术" }, { @@ -12016,7 +12016,7 @@ "content": 82722, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "太平要术" }, { @@ -12026,7 +12026,7 @@ "content": 82723, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "太平要术" }, { @@ -12036,7 +12036,7 @@ "content": 83002, "count": 1, "weight": 140, - "floor": "40&1", + "floor": 1, "备注": "兵法廿四篇+1" }, { @@ -12046,7 +12046,7 @@ "content": 82101, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "尚方剑" }, { @@ -12056,7 +12056,7 @@ "content": 82102, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "尚方剑" }, { @@ -12066,7 +12066,7 @@ "content": 82103, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "尚方剑" }, { @@ -12076,7 +12076,7 @@ "content": 82106, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "尚方剑" }, { @@ -12086,7 +12086,7 @@ "content": 82121, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "握奇经" }, { @@ -12096,7 +12096,7 @@ "content": 82122, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "握奇经" }, { @@ -12106,7 +12106,7 @@ "content": 82123, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "握奇经" }, { @@ -12116,7 +12116,7 @@ "content": 82126, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "握奇经" }, { @@ -12126,7 +12126,7 @@ "content": 82201, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "黄钺斧" }, { @@ -12136,7 +12136,7 @@ "content": 82202, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "黄钺斧" }, { @@ -12146,7 +12146,7 @@ "content": 82203, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "黄钺斧" }, { @@ -12156,7 +12156,7 @@ "content": 82206, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "黄钺斧" }, { @@ -12166,7 +12166,7 @@ "content": 82221, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "断魂枪" }, { @@ -12176,7 +12176,7 @@ "content": 82222, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "断魂枪" }, { @@ -12186,7 +12186,7 @@ "content": 82223, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "断魂枪" }, { @@ -12196,7 +12196,7 @@ "content": 82226, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "断魂枪" }, { @@ -12206,7 +12206,7 @@ "content": 82301, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "穿龙槊" }, { @@ -12216,7 +12216,7 @@ "content": 82302, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "穿龙槊" }, { @@ -12226,7 +12226,7 @@ "content": 82303, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "穿龙槊" }, { @@ -12236,7 +12236,7 @@ "content": 82306, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "穿龙槊" }, { @@ -12246,7 +12246,7 @@ "content": 82321, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "铁甲马" }, { @@ -12256,7 +12256,7 @@ "content": 82322, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "铁甲马" }, { @@ -12266,7 +12266,7 @@ "content": 82323, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "铁甲马" }, { @@ -12276,7 +12276,7 @@ "content": 82326, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "铁甲马" }, { @@ -12286,7 +12286,7 @@ "content": 82401, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "龙雀刀" }, { @@ -12296,7 +12296,7 @@ "content": 82402, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "龙雀刀" }, { @@ -12306,7 +12306,7 @@ "content": 82403, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "龙雀刀" }, { @@ -12316,7 +12316,7 @@ "content": 82406, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "龙雀刀" }, { @@ -12326,7 +12326,7 @@ "content": 82421, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "吞云盾" }, { @@ -12336,7 +12336,7 @@ "content": 82422, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "吞云盾" }, { @@ -12346,7 +12346,7 @@ "content": 82423, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "吞云盾" }, { @@ -12356,7 +12356,7 @@ "content": 82426, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "吞云盾" }, { @@ -12366,7 +12366,7 @@ "content": 82501, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "神臂弓" }, { @@ -12376,7 +12376,7 @@ "content": 82502, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "神臂弓" }, { @@ -12386,7 +12386,7 @@ "content": 82503, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "神臂弓" }, { @@ -12396,7 +12396,7 @@ "content": 82506, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "神臂弓" }, { @@ -12406,7 +12406,7 @@ "content": 82521, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "镇天箭" }, { @@ -12416,7 +12416,7 @@ "content": 82522, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "镇天箭" }, { @@ -12426,7 +12426,7 @@ "content": 82523, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "镇天箭" }, { @@ -12436,7 +12436,7 @@ "content": 82526, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "镇天箭" }, { @@ -12446,7 +12446,7 @@ "content": 82601, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "博浪锥" }, { @@ -12456,7 +12456,7 @@ "content": 82602, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "博浪锥" }, { @@ -12466,7 +12466,7 @@ "content": 82603, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "博浪锥" }, { @@ -12476,7 +12476,7 @@ "content": 82606, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "博浪锥" }, { @@ -12486,7 +12486,7 @@ "content": 82621, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "鱼肠剑" }, { @@ -12496,7 +12496,7 @@ "content": 82622, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "鱼肠剑" }, { @@ -12506,7 +12506,7 @@ "content": 82623, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "鱼肠剑" }, { @@ -12516,7 +12516,7 @@ "content": 82626, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "鱼肠剑" }, { @@ -12526,7 +12526,7 @@ "content": 82701, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "神木鼎" }, { @@ -12536,7 +12536,7 @@ "content": 82702, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "神木鼎" }, { @@ -12546,7 +12546,7 @@ "content": 82703, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "神木鼎" }, { @@ -12556,7 +12556,7 @@ "content": 82706, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "神木鼎" }, { @@ -12566,7 +12566,7 @@ "content": 82721, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "太平要术" }, { @@ -12576,7 +12576,7 @@ "content": 82722, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "太平要术" }, { @@ -12586,7 +12586,7 @@ "content": 82723, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "太平要术" }, { @@ -12596,7 +12596,7 @@ "content": 82726, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "太平要术" }, { @@ -12606,7 +12606,7 @@ "content": 83501, "count": 1, "weight": 1, - "floor": "&", + "floor": 1, "备注": "恶来铁戟" }, { @@ -12616,7 +12616,7 @@ "content": 83601, "count": 1, "weight": 1, - "floor": "&", + "floor": 1, "备注": "青龙偃月刀" }, { @@ -12626,7 +12626,7 @@ "content": 83701, "count": 1, "weight": 1, - "floor": "&", + "floor": 1, "备注": "霸王枪" }, { @@ -12636,7 +12636,7 @@ "content": 83001, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "兵法廿四篇" }, { @@ -12646,7 +12646,7 @@ "content": 83101, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "杜康樽" }, { @@ -12656,7 +12656,7 @@ "content": 83201, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "凤尾琴" }, { @@ -12666,7 +12666,7 @@ "content": 82101, "count": 1, "weight": 165, - "floor": "&", + "floor": 0, "备注": "蓝色尚方剑" }, { @@ -12676,7 +12676,7 @@ "content": 82121, "count": 1, "weight": 165, - "floor": "&", + "floor": 0, "备注": "蓝色握奇经" }, { @@ -12686,7 +12686,7 @@ "content": 82201, "count": 1, "weight": 165, - "floor": "&", + "floor": 0, "备注": "蓝色黄钺斧" }, { @@ -12696,7 +12696,7 @@ "content": 82221, "count": 1, "weight": 165, - "floor": "&", + "floor": 0, "备注": "蓝色断魂枪" }, { @@ -12706,7 +12706,7 @@ "content": 82301, "count": 1, "weight": 165, - "floor": "&", + "floor": 0, "备注": "蓝色穿龙槊" }, { @@ -12716,7 +12716,7 @@ "content": 82321, "count": 1, "weight": 165, - "floor": "&", + "floor": 0, "备注": "蓝色铁甲马" }, { @@ -12726,7 +12726,7 @@ "content": 82401, "count": 1, "weight": 165, - "floor": "&", + "floor": 0, "备注": "蓝色龙雀刀" }, { @@ -12736,7 +12736,7 @@ "content": 82421, "count": 1, "weight": 165, - "floor": "&", + "floor": 0, "备注": "蓝色吞云盾" }, { @@ -12746,7 +12746,7 @@ "content": 82501, "count": 1, "weight": 165, - "floor": "&", + "floor": 0, "备注": "蓝色神臂弓" }, { @@ -12756,7 +12756,7 @@ "content": 82521, "count": 1, "weight": 165, - "floor": "&", + "floor": 0, "备注": "蓝色镇天箭" }, { @@ -12766,7 +12766,7 @@ "content": 82601, "count": 1, "weight": 165, - "floor": "&", + "floor": 0, "备注": "蓝色博浪锥" }, { @@ -12776,7 +12776,7 @@ "content": 82621, "count": 1, "weight": 165, - "floor": "&", + "floor": 0, "备注": "蓝色鱼肠剑" }, { @@ -12786,7 +12786,7 @@ "content": 82701, "count": 1, "weight": 165, - "floor": "&", + "floor": 0, "备注": "蓝色神木鼎" }, { @@ -12796,7 +12796,7 @@ "content": 82721, "count": 1, "weight": 165, - "floor": "&", + "floor": 0, "备注": "蓝色太平要术" }, { @@ -12806,7 +12806,7 @@ "content": 82102, "count": 1, "weight": 123, - "floor": "&", + "floor": 0, "备注": "紫色尚方剑" }, { @@ -12816,7 +12816,7 @@ "content": 82122, "count": 1, "weight": 123, - "floor": "&", + "floor": 0, "备注": "紫色握奇经" }, { @@ -12826,7 +12826,7 @@ "content": 82202, "count": 1, "weight": 123, - "floor": "&", + "floor": 0, "备注": "紫色黄钺斧" }, { @@ -12836,7 +12836,7 @@ "content": 82222, "count": 1, "weight": 123, - "floor": "&", + "floor": 0, "备注": "紫色断魂枪" }, { @@ -12846,7 +12846,7 @@ "content": 82302, "count": 1, "weight": 123, - "floor": "&", + "floor": 0, "备注": "紫色穿龙槊" }, { @@ -12856,7 +12856,7 @@ "content": 82322, "count": 1, "weight": 123, - "floor": "&", + "floor": 0, "备注": "紫色铁甲马" }, { @@ -12866,7 +12866,7 @@ "content": 82402, "count": 1, "weight": 123, - "floor": "&", + "floor": 0, "备注": "紫色龙雀刀" }, { @@ -12876,7 +12876,7 @@ "content": 82422, "count": 1, "weight": 123, - "floor": "&", + "floor": 0, "备注": "紫色吞云盾" }, { @@ -12886,7 +12886,7 @@ "content": 82502, "count": 1, "weight": 123, - "floor": "&", + "floor": 0, "备注": "紫色神臂弓" }, { @@ -12896,7 +12896,7 @@ "content": 82522, "count": 1, "weight": 123, - "floor": "&", + "floor": 0, "备注": "紫色镇天箭" }, { @@ -12906,7 +12906,7 @@ "content": 82602, "count": 1, "weight": 123, - "floor": "&", + "floor": 0, "备注": "紫色博浪锥" }, { @@ -12916,7 +12916,7 @@ "content": 82622, "count": 1, "weight": 123, - "floor": "&", + "floor": 0, "备注": "紫色鱼肠剑" }, { @@ -12926,7 +12926,7 @@ "content": 82702, "count": 1, "weight": 123, - "floor": "&", + "floor": 0, "备注": "紫色神木鼎" }, { @@ -12936,7 +12936,7 @@ "content": 82722, "count": 1, "weight": 123, - "floor": "&", + "floor": 0, "备注": "紫色太平要术" }, { @@ -12946,7 +12946,7 @@ "content": 82103, "count": 1, "weight": 9, - "floor": "&", + "floor": 0, "备注": "橙色尚方剑" }, { @@ -12956,7 +12956,7 @@ "content": 82123, "count": 1, "weight": 9, - "floor": "&", + "floor": 0, "备注": "橙色握奇经" }, { @@ -12966,7 +12966,7 @@ "content": 82203, "count": 1, "weight": 9, - "floor": "&", + "floor": 0, "备注": "橙色黄钺斧" }, { @@ -12976,7 +12976,7 @@ "content": 82223, "count": 1, "weight": 9, - "floor": "&", + "floor": 0, "备注": "橙色断魂枪" }, { @@ -12986,7 +12986,7 @@ "content": 82303, "count": 1, "weight": 9, - "floor": "&", + "floor": 0, "备注": "橙色穿龙槊" }, { @@ -12996,7 +12996,7 @@ "content": 82323, "count": 1, "weight": 9, - "floor": "&", + "floor": 0, "备注": "橙色铁甲马" }, { @@ -13006,7 +13006,7 @@ "content": 82403, "count": 1, "weight": 9, - "floor": "&", + "floor": 0, "备注": "橙色龙雀刀" }, { @@ -13016,7 +13016,7 @@ "content": 82423, "count": 1, "weight": 9, - "floor": "&", + "floor": 0, "备注": "橙色吞云盾" }, { @@ -13026,7 +13026,7 @@ "content": 82503, "count": 1, "weight": 9, - "floor": "&", + "floor": 0, "备注": "橙色神臂弓" }, { @@ -13036,7 +13036,7 @@ "content": 82523, "count": 1, "weight": 9, - "floor": "&", + "floor": 0, "备注": "橙色镇天箭" }, { @@ -13046,7 +13046,7 @@ "content": 82603, "count": 1, "weight": 9, - "floor": "&", + "floor": 0, "备注": "橙色博浪锥" }, { @@ -13056,7 +13056,7 @@ "content": 82623, "count": 1, "weight": 9, - "floor": "&", + "floor": 0, "备注": "橙色鱼肠剑" }, { @@ -13066,7 +13066,7 @@ "content": 82703, "count": 1, "weight": 9, - "floor": "&", + "floor": 0, "备注": "橙色神木鼎" }, { @@ -13076,7 +13076,7 @@ "content": 82723, "count": 1, "weight": 9, - "floor": "&", + "floor": 0, "备注": "橙色太平要术" }, { @@ -13086,7 +13086,7 @@ "content": 83001, "count": 1, "weight": 14, - "floor": "&", + "floor": 1, "备注": "兵法廿四篇" }, { @@ -13096,7 +13096,7 @@ "content": 83101, "count": 1, "weight": 14, - "floor": "&", + "floor": 1, "备注": "杜康樽" }, { @@ -13106,7 +13106,7 @@ "content": 83201, "count": 1, "weight": 14, - "floor": "&", + "floor": 1, "备注": "凤尾琴" }, { @@ -13116,7 +13116,7 @@ "content": 82101, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "尚方剑" }, { @@ -13126,7 +13126,7 @@ "content": 82102, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "尚方剑" }, { @@ -13136,7 +13136,7 @@ "content": 82103, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "尚方剑" }, { @@ -13146,7 +13146,7 @@ "content": 82121, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "握奇经" }, { @@ -13156,7 +13156,7 @@ "content": 82122, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "握奇经" }, { @@ -13166,7 +13166,7 @@ "content": 82123, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "握奇经" }, { @@ -13176,7 +13176,7 @@ "content": 82201, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "黄钺斧" }, { @@ -13186,7 +13186,7 @@ "content": 82202, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "黄钺斧" }, { @@ -13196,7 +13196,7 @@ "content": 82203, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "黄钺斧" }, { @@ -13206,7 +13206,7 @@ "content": 82221, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "断魂枪" }, { @@ -13216,7 +13216,7 @@ "content": 82222, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "断魂枪" }, { @@ -13226,7 +13226,7 @@ "content": 82223, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "断魂枪" }, { @@ -13236,7 +13236,7 @@ "content": 82301, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "穿龙槊" }, { @@ -13246,7 +13246,7 @@ "content": 82302, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "穿龙槊" }, { @@ -13256,7 +13256,7 @@ "content": 82303, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "穿龙槊" }, { @@ -13266,7 +13266,7 @@ "content": 82321, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "铁甲马" }, { @@ -13276,7 +13276,7 @@ "content": 82322, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "铁甲马" }, { @@ -13286,7 +13286,7 @@ "content": 82323, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "铁甲马" }, { @@ -13296,7 +13296,7 @@ "content": 82401, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "龙雀刀" }, { @@ -13306,7 +13306,7 @@ "content": 82402, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "龙雀刀" }, { @@ -13316,7 +13316,7 @@ "content": 82403, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "龙雀刀" }, { @@ -13326,7 +13326,7 @@ "content": 82421, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "吞云盾" }, { @@ -13336,7 +13336,7 @@ "content": 82422, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "吞云盾" }, { @@ -13346,7 +13346,7 @@ "content": 82423, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "吞云盾" }, { @@ -13356,7 +13356,7 @@ "content": 82501, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "神臂弓" }, { @@ -13366,7 +13366,7 @@ "content": 82502, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "神臂弓" }, { @@ -13376,7 +13376,7 @@ "content": 82503, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "神臂弓" }, { @@ -13386,7 +13386,7 @@ "content": 82521, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "镇天箭" }, { @@ -13396,7 +13396,7 @@ "content": 82522, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "镇天箭" }, { @@ -13406,7 +13406,7 @@ "content": 82523, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "镇天箭" }, { @@ -13416,7 +13416,7 @@ "content": 82601, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "博浪锥" }, { @@ -13426,7 +13426,7 @@ "content": 82602, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "博浪锥" }, { @@ -13436,7 +13436,7 @@ "content": 82603, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "博浪锥" }, { @@ -13446,7 +13446,7 @@ "content": 82621, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "鱼肠剑" }, { @@ -13456,7 +13456,7 @@ "content": 82622, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "鱼肠剑" }, { @@ -13466,7 +13466,7 @@ "content": 82623, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "鱼肠剑" }, { @@ -13476,7 +13476,7 @@ "content": 82701, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "神木鼎" }, { @@ -13486,7 +13486,7 @@ "content": 82702, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "神木鼎" }, { @@ -13496,7 +13496,7 @@ "content": 82703, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "神木鼎" }, { @@ -13506,7 +13506,7 @@ "content": 82721, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "太平要术" }, { @@ -13516,7 +13516,7 @@ "content": 82722, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "太平要术" }, { @@ -13526,7 +13526,7 @@ "content": 82723, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "太平要术" }, { @@ -13536,7 +13536,7 @@ "content": 83601, "count": 1, "weight": 140, - "floor": "40&1", + "floor": 1, "备注": "青龙偃月刀" }, { @@ -13546,7 +13546,7 @@ "content": 82101, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "尚方剑" }, { @@ -13556,7 +13556,7 @@ "content": 82102, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "尚方剑" }, { @@ -13566,7 +13566,7 @@ "content": 82103, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "尚方剑" }, { @@ -13576,7 +13576,7 @@ "content": 82121, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "握奇经" }, { @@ -13586,7 +13586,7 @@ "content": 82122, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "握奇经" }, { @@ -13596,7 +13596,7 @@ "content": 82123, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "握奇经" }, { @@ -13606,7 +13606,7 @@ "content": 82201, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "黄钺斧" }, { @@ -13616,7 +13616,7 @@ "content": 82202, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "黄钺斧" }, { @@ -13626,7 +13626,7 @@ "content": 82203, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "黄钺斧" }, { @@ -13636,7 +13636,7 @@ "content": 82221, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "断魂枪" }, { @@ -13646,7 +13646,7 @@ "content": 82222, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "断魂枪" }, { @@ -13656,7 +13656,7 @@ "content": 82223, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "断魂枪" }, { @@ -13666,7 +13666,7 @@ "content": 82301, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "穿龙槊" }, { @@ -13676,7 +13676,7 @@ "content": 82302, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "穿龙槊" }, { @@ -13686,7 +13686,7 @@ "content": 82303, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "穿龙槊" }, { @@ -13696,7 +13696,7 @@ "content": 82321, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "铁甲马" }, { @@ -13706,7 +13706,7 @@ "content": 82322, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "铁甲马" }, { @@ -13716,7 +13716,7 @@ "content": 82323, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "铁甲马" }, { @@ -13726,7 +13726,7 @@ "content": 82401, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "龙雀刀" }, { @@ -13736,7 +13736,7 @@ "content": 82402, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "龙雀刀" }, { @@ -13746,7 +13746,7 @@ "content": 82403, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "龙雀刀" }, { @@ -13756,7 +13756,7 @@ "content": 82421, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "吞云盾" }, { @@ -13766,7 +13766,7 @@ "content": 82422, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "吞云盾" }, { @@ -13776,7 +13776,7 @@ "content": 82423, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "吞云盾" }, { @@ -13786,7 +13786,7 @@ "content": 82501, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "神臂弓" }, { @@ -13796,7 +13796,7 @@ "content": 82502, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "神臂弓" }, { @@ -13806,7 +13806,7 @@ "content": 82503, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "神臂弓" }, { @@ -13816,7 +13816,7 @@ "content": 82521, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "镇天箭" }, { @@ -13826,7 +13826,7 @@ "content": 82522, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "镇天箭" }, { @@ -13836,7 +13836,7 @@ "content": 82523, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "镇天箭" }, { @@ -13846,7 +13846,7 @@ "content": 82601, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "博浪锥" }, { @@ -13856,7 +13856,7 @@ "content": 82602, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "博浪锥" }, { @@ -13866,7 +13866,7 @@ "content": 82603, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "博浪锥" }, { @@ -13876,7 +13876,7 @@ "content": 82621, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "鱼肠剑" }, { @@ -13886,7 +13886,7 @@ "content": 82622, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "鱼肠剑" }, { @@ -13896,7 +13896,7 @@ "content": 82623, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "鱼肠剑" }, { @@ -13906,7 +13906,7 @@ "content": 82701, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "神木鼎" }, { @@ -13916,7 +13916,7 @@ "content": 82702, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "神木鼎" }, { @@ -13926,7 +13926,7 @@ "content": 82703, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "神木鼎" }, { @@ -13936,7 +13936,7 @@ "content": 82721, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "太平要术" }, { @@ -13946,7 +13946,7 @@ "content": 82722, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "太平要术" }, { @@ -13956,7 +13956,7 @@ "content": 82723, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "太平要术" }, { @@ -13966,7 +13966,7 @@ "content": 83501, "count": 1, "weight": 140, - "floor": "40&1", + "floor": 1, "备注": "恶来铁戟" }, { @@ -13976,7 +13976,7 @@ "content": 82101, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "尚方剑" }, { @@ -13986,7 +13986,7 @@ "content": 82102, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "尚方剑" }, { @@ -13996,7 +13996,7 @@ "content": 82103, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "尚方剑" }, { @@ -14006,7 +14006,7 @@ "content": 82121, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "握奇经" }, { @@ -14016,7 +14016,7 @@ "content": 82122, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "握奇经" }, { @@ -14026,7 +14026,7 @@ "content": 82123, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "握奇经" }, { @@ -14036,7 +14036,7 @@ "content": 82201, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "黄钺斧" }, { @@ -14046,7 +14046,7 @@ "content": 82202, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "黄钺斧" }, { @@ -14056,7 +14056,7 @@ "content": 82203, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "黄钺斧" }, { @@ -14066,7 +14066,7 @@ "content": 82221, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "断魂枪" }, { @@ -14076,7 +14076,7 @@ "content": 82222, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "断魂枪" }, { @@ -14086,7 +14086,7 @@ "content": 82223, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "断魂枪" }, { @@ -14096,7 +14096,7 @@ "content": 82301, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "穿龙槊" }, { @@ -14106,7 +14106,7 @@ "content": 82302, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "穿龙槊" }, { @@ -14116,7 +14116,7 @@ "content": 82303, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "穿龙槊" }, { @@ -14126,7 +14126,7 @@ "content": 82321, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "铁甲马" }, { @@ -14136,7 +14136,7 @@ "content": 82322, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "铁甲马" }, { @@ -14146,7 +14146,7 @@ "content": 82323, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "铁甲马" }, { @@ -14156,7 +14156,7 @@ "content": 82401, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "龙雀刀" }, { @@ -14166,7 +14166,7 @@ "content": 82402, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "龙雀刀" }, { @@ -14176,7 +14176,7 @@ "content": 82403, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "龙雀刀" }, { @@ -14186,7 +14186,7 @@ "content": 82421, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "吞云盾" }, { @@ -14196,7 +14196,7 @@ "content": 82422, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "吞云盾" }, { @@ -14206,7 +14206,7 @@ "content": 82423, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "吞云盾" }, { @@ -14216,7 +14216,7 @@ "content": 82501, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "神臂弓" }, { @@ -14226,7 +14226,7 @@ "content": 82502, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "神臂弓" }, { @@ -14236,7 +14236,7 @@ "content": 82503, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "神臂弓" }, { @@ -14246,7 +14246,7 @@ "content": 82521, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "镇天箭" }, { @@ -14256,7 +14256,7 @@ "content": 82522, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "镇天箭" }, { @@ -14266,7 +14266,7 @@ "content": 82523, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "镇天箭" }, { @@ -14276,7 +14276,7 @@ "content": 82601, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "博浪锥" }, { @@ -14286,7 +14286,7 @@ "content": 82602, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "博浪锥" }, { @@ -14296,7 +14296,7 @@ "content": 82603, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "博浪锥" }, { @@ -14306,7 +14306,7 @@ "content": 82621, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "鱼肠剑" }, { @@ -14316,7 +14316,7 @@ "content": 82622, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "鱼肠剑" }, { @@ -14326,7 +14326,7 @@ "content": 82623, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "鱼肠剑" }, { @@ -14336,7 +14336,7 @@ "content": 82701, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "神木鼎" }, { @@ -14346,7 +14346,7 @@ "content": 82702, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "神木鼎" }, { @@ -14356,7 +14356,7 @@ "content": 82703, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "神木鼎" }, { @@ -14366,7 +14366,7 @@ "content": 82721, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "太平要术" }, { @@ -14376,7 +14376,7 @@ "content": 82722, "count": 1, "weight": 30, - "floor": "&", + "floor": 0, "备注": "太平要术" }, { @@ -14386,7 +14386,7 @@ "content": 82723, "count": 1, "weight": 20, - "floor": "&", + "floor": 0, "备注": "太平要术" }, { @@ -14396,7 +14396,7 @@ "content": 83701, "count": 1, "weight": 140, - "floor": "40&1", + "floor": 1, "备注": "霸王枪" }, { @@ -14406,7 +14406,7 @@ "content": 82101, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "蓝色尚方剑" }, { @@ -14416,7 +14416,7 @@ "content": 82121, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "蓝色握奇经" }, { @@ -14426,7 +14426,7 @@ "content": 82201, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "蓝色黄钺斧" }, { @@ -14436,7 +14436,7 @@ "content": 82221, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "蓝色断魂枪" }, { @@ -14446,7 +14446,7 @@ "content": 82301, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "蓝色穿龙槊" }, { @@ -14456,7 +14456,7 @@ "content": 82321, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "蓝色铁甲马" }, { @@ -14466,7 +14466,7 @@ "content": 82401, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "蓝色龙雀刀" }, { @@ -14476,7 +14476,7 @@ "content": 82421, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "蓝色吞云盾" }, { @@ -14486,7 +14486,7 @@ "content": 82501, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "蓝色神臂弓" }, { @@ -14496,7 +14496,7 @@ "content": 82521, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "蓝色镇天箭" }, { @@ -14506,7 +14506,7 @@ "content": 82601, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "蓝色博浪锥" }, { @@ -14516,7 +14516,7 @@ "content": 82621, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "蓝色鱼肠剑" }, { @@ -14526,7 +14526,7 @@ "content": 82701, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "蓝色神木鼎" }, { @@ -14536,7 +14536,7 @@ "content": 82721, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "蓝色太平要术" }, { @@ -14546,7 +14546,7 @@ "content": 82102, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "紫色尚方剑" }, { @@ -14556,7 +14556,7 @@ "content": 82122, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "紫色握奇经" }, { @@ -14566,7 +14566,7 @@ "content": 82202, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "紫色黄钺斧" }, { @@ -14576,7 +14576,7 @@ "content": 82222, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "紫色断魂枪" }, { @@ -14586,7 +14586,7 @@ "content": 82302, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "紫色穿龙槊" }, { @@ -14596,7 +14596,7 @@ "content": 82322, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "紫色铁甲马" }, { @@ -14606,7 +14606,7 @@ "content": 82402, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "紫色龙雀刀" }, { @@ -14616,7 +14616,7 @@ "content": 82422, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "紫色吞云盾" }, { @@ -14626,7 +14626,7 @@ "content": 82502, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "紫色神臂弓" }, { @@ -14636,7 +14636,7 @@ "content": 82522, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "紫色镇天箭" }, { @@ -14646,7 +14646,7 @@ "content": 82602, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "紫色博浪锥" }, { @@ -14656,7 +14656,7 @@ "content": 82622, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "紫色鱼肠剑" }, { @@ -14666,7 +14666,7 @@ "content": 82702, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "紫色神木鼎" }, { @@ -14676,7 +14676,7 @@ "content": 82722, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "紫色太平要术" }, { @@ -14686,7 +14686,7 @@ "content": 82103, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "橙色尚方剑" }, { @@ -14696,7 +14696,7 @@ "content": 82123, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "橙色握奇经" }, { @@ -14706,7 +14706,7 @@ "content": 82203, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "橙色黄钺斧" }, { @@ -14716,7 +14716,7 @@ "content": 82223, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "橙色断魂枪" }, { @@ -14726,7 +14726,7 @@ "content": 82303, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "橙色穿龙槊" }, { @@ -14736,7 +14736,7 @@ "content": 82323, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "橙色铁甲马" }, { @@ -14746,7 +14746,7 @@ "content": 82403, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "橙色龙雀刀" }, { @@ -14756,7 +14756,7 @@ "content": 82423, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "橙色吞云盾" }, { @@ -14766,7 +14766,7 @@ "content": 82503, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "橙色神臂弓" }, { @@ -14776,7 +14776,7 @@ "content": 82523, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "橙色镇天箭" }, { @@ -14786,7 +14786,7 @@ "content": 82603, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "橙色博浪锥" }, { @@ -14796,7 +14796,7 @@ "content": 82623, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "橙色鱼肠剑" }, { @@ -14806,7 +14806,7 @@ "content": 82703, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "橙色神木鼎" }, { @@ -14816,7 +14816,7 @@ "content": 82723, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "橙色太平要术" }, { @@ -14826,7 +14826,7 @@ "content": 82106, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "红色尚方剑" }, { @@ -14836,7 +14836,7 @@ "content": 82126, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "红色握奇经" }, { @@ -14846,7 +14846,7 @@ "content": 82206, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "红色黄钺斧" }, { @@ -14856,7 +14856,7 @@ "content": 82226, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "红色断魂枪" }, { @@ -14866,7 +14866,7 @@ "content": 82306, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "红色穿龙槊" }, { @@ -14876,7 +14876,7 @@ "content": 82326, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "红色铁甲马" }, { @@ -14886,7 +14886,7 @@ "content": 82406, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "红色龙雀刀" }, { @@ -14896,7 +14896,7 @@ "content": 82426, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "红色吞云盾" }, { @@ -14906,7 +14906,7 @@ "content": 82506, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "红色神臂弓" }, { @@ -14916,7 +14916,7 @@ "content": 82526, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "红色镇天箭" }, { @@ -14926,7 +14926,7 @@ "content": 82606, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "红色博浪锥" }, { @@ -14936,7 +14936,7 @@ "content": 82626, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "红色鱼肠剑" }, { @@ -14946,7 +14946,7 @@ "content": 82706, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "红色神木鼎" }, { @@ -14956,7 +14956,7 @@ "content": 82726, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "红色太平要术" }, { @@ -14966,7 +14966,7 @@ "content": 82101, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色尚方剑" }, { @@ -14976,7 +14976,7 @@ "content": 82121, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色握奇经" }, { @@ -14986,7 +14986,7 @@ "content": 82201, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色黄钺斧" }, { @@ -14996,7 +14996,7 @@ "content": 82221, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色断魂枪" }, { @@ -15006,7 +15006,7 @@ "content": 82301, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色穿龙槊" }, { @@ -15016,7 +15016,7 @@ "content": 82321, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色铁甲马" }, { @@ -15026,7 +15026,7 @@ "content": 82401, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色龙雀刀" }, { @@ -15036,7 +15036,7 @@ "content": 82421, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色吞云盾" }, { @@ -15046,7 +15046,7 @@ "content": 82501, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色神臂弓" }, { @@ -15056,7 +15056,7 @@ "content": 82521, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色镇天箭" }, { @@ -15066,7 +15066,7 @@ "content": 82601, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色博浪锥" }, { @@ -15076,7 +15076,7 @@ "content": 82621, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色鱼肠剑" }, { @@ -15086,7 +15086,7 @@ "content": 82701, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色神木鼎" }, { @@ -15096,7 +15096,7 @@ "content": 82721, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色太平要术" }, { @@ -15106,7 +15106,7 @@ "content": 82102, "count": 1, "weight": 41, - "floor": "&", + "floor": 0, "备注": "紫色尚方剑" }, { @@ -15116,7 +15116,7 @@ "content": 82122, "count": 1, "weight": 41, - "floor": "&", + "floor": 0, "备注": "紫色握奇经" }, { @@ -15126,7 +15126,7 @@ "content": 82202, "count": 1, "weight": 41, - "floor": "&", + "floor": 0, "备注": "紫色黄钺斧" }, { @@ -15136,7 +15136,7 @@ "content": 82222, "count": 1, "weight": 41, - "floor": "&", + "floor": 0, "备注": "紫色断魂枪" }, { @@ -15146,7 +15146,7 @@ "content": 82302, "count": 1, "weight": 41, - "floor": "&", + "floor": 0, "备注": "紫色穿龙槊" }, { @@ -15156,7 +15156,7 @@ "content": 82322, "count": 1, "weight": 41, - "floor": "&", + "floor": 0, "备注": "紫色铁甲马" }, { @@ -15166,7 +15166,7 @@ "content": 82402, "count": 1, "weight": 41, - "floor": "&", + "floor": 0, "备注": "紫色龙雀刀" }, { @@ -15176,7 +15176,7 @@ "content": 82422, "count": 1, "weight": 41, - "floor": "&", + "floor": 0, "备注": "紫色吞云盾" }, { @@ -15186,7 +15186,7 @@ "content": 82502, "count": 1, "weight": 41, - "floor": "&", + "floor": 0, "备注": "紫色神臂弓" }, { @@ -15196,7 +15196,7 @@ "content": 82522, "count": 1, "weight": 41, - "floor": "&", + "floor": 0, "备注": "紫色镇天箭" }, { @@ -15206,7 +15206,7 @@ "content": 82602, "count": 1, "weight": 41, - "floor": "&", + "floor": 0, "备注": "紫色博浪锥" }, { @@ -15216,7 +15216,7 @@ "content": 82622, "count": 1, "weight": 41, - "floor": "&", + "floor": 0, "备注": "紫色鱼肠剑" }, { @@ -15226,7 +15226,7 @@ "content": 82702, "count": 1, "weight": 41, - "floor": "&", + "floor": 0, "备注": "紫色神木鼎" }, { @@ -15236,7 +15236,7 @@ "content": 82722, "count": 1, "weight": 41, - "floor": "&", + "floor": 0, "备注": "紫色太平要术" }, { @@ -15246,7 +15246,7 @@ "content": 82103, "count": 1, "weight": 4, - "floor": "&", + "floor": 1, "备注": "橙色尚方剑" }, { @@ -15256,7 +15256,7 @@ "content": 82123, "count": 1, "weight": 4, - "floor": "&", + "floor": 1, "备注": "橙色握奇经" }, { @@ -15266,7 +15266,7 @@ "content": 82203, "count": 1, "weight": 4, - "floor": "&", + "floor": 1, "备注": "橙色黄钺斧" }, { @@ -15276,7 +15276,7 @@ "content": 82223, "count": 1, "weight": 4, - "floor": "&", + "floor": 1, "备注": "橙色断魂枪" }, { @@ -15286,7 +15286,7 @@ "content": 82303, "count": 1, "weight": 4, - "floor": "&", + "floor": 1, "备注": "橙色穿龙槊" }, { @@ -15296,7 +15296,7 @@ "content": 82323, "count": 1, "weight": 4, - "floor": "&", + "floor": 1, "备注": "橙色铁甲马" }, { @@ -15306,7 +15306,7 @@ "content": 82403, "count": 1, "weight": 4, - "floor": "&", + "floor": 1, "备注": "橙色龙雀刀" }, { @@ -15316,7 +15316,7 @@ "content": 82423, "count": 1, "weight": 4, - "floor": "&", + "floor": 1, "备注": "橙色吞云盾" }, { @@ -15326,7 +15326,7 @@ "content": 82503, "count": 1, "weight": 4, - "floor": "&", + "floor": 1, "备注": "橙色神臂弓" }, { @@ -15336,7 +15336,7 @@ "content": 82523, "count": 1, "weight": 4, - "floor": "&", + "floor": 1, "备注": "橙色镇天箭" }, { @@ -15346,7 +15346,7 @@ "content": 82603, "count": 1, "weight": 4, - "floor": "&", + "floor": 1, "备注": "橙色博浪锥" }, { @@ -15356,7 +15356,7 @@ "content": 82623, "count": 1, "weight": 4, - "floor": "&", + "floor": 1, "备注": "橙色鱼肠剑" }, { @@ -15366,7 +15366,7 @@ "content": 82703, "count": 1, "weight": 4, - "floor": "&", + "floor": 1, "备注": "橙色神木鼎" }, { @@ -15376,7 +15376,7 @@ "content": 82723, "count": 1, "weight": 4, - "floor": "&", + "floor": 1, "备注": "橙色太平要术" }, { @@ -15386,7 +15386,7 @@ "content": 82101, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色尚方剑" }, { @@ -15396,7 +15396,7 @@ "content": 82121, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色握奇经" }, { @@ -15406,7 +15406,7 @@ "content": 82201, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色黄钺斧" }, { @@ -15416,7 +15416,7 @@ "content": 82221, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色断魂枪" }, { @@ -15426,7 +15426,7 @@ "content": 82301, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色穿龙槊" }, { @@ -15436,7 +15436,7 @@ "content": 82321, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色铁甲马" }, { @@ -15446,7 +15446,7 @@ "content": 82401, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色龙雀刀" }, { @@ -15456,7 +15456,7 @@ "content": 82421, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色吞云盾" }, { @@ -15466,7 +15466,7 @@ "content": 82501, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色神臂弓" }, { @@ -15476,7 +15476,7 @@ "content": 82521, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色镇天箭" }, { @@ -15486,7 +15486,7 @@ "content": 82601, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色博浪锥" }, { @@ -15496,7 +15496,7 @@ "content": 82621, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色鱼肠剑" }, { @@ -15506,7 +15506,7 @@ "content": 82701, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色神木鼎" }, { @@ -15516,7 +15516,7 @@ "content": 82721, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色太平要术" }, { @@ -15526,7 +15526,7 @@ "content": 82102, "count": 1, "weight": 41, - "floor": "&", + "floor": 0, "备注": "紫色尚方剑" }, { @@ -15536,7 +15536,7 @@ "content": 82122, "count": 1, "weight": 41, - "floor": "&", + "floor": 0, "备注": "紫色握奇经" }, { @@ -15546,7 +15546,7 @@ "content": 82202, "count": 1, "weight": 41, - "floor": "&", + "floor": 0, "备注": "紫色黄钺斧" }, { @@ -15556,7 +15556,7 @@ "content": 82222, "count": 1, "weight": 41, - "floor": "&", + "floor": 0, "备注": "紫色断魂枪" }, { @@ -15566,7 +15566,7 @@ "content": 82302, "count": 1, "weight": 41, - "floor": "&", + "floor": 0, "备注": "紫色穿龙槊" }, { @@ -15576,7 +15576,7 @@ "content": 82322, "count": 1, "weight": 41, - "floor": "&", + "floor": 0, "备注": "紫色铁甲马" }, { @@ -15586,7 +15586,7 @@ "content": 82402, "count": 1, "weight": 41, - "floor": "&", + "floor": 0, "备注": "紫色龙雀刀" }, { @@ -15596,7 +15596,7 @@ "content": 82422, "count": 1, "weight": 41, - "floor": "&", + "floor": 0, "备注": "紫色吞云盾" }, { @@ -15606,7 +15606,7 @@ "content": 82502, "count": 1, "weight": 41, - "floor": "&", + "floor": 0, "备注": "紫色神臂弓" }, { @@ -15616,7 +15616,7 @@ "content": 82522, "count": 1, "weight": 41, - "floor": "&", + "floor": 0, "备注": "紫色镇天箭" }, { @@ -15626,7 +15626,7 @@ "content": 82602, "count": 1, "weight": 41, - "floor": "&", + "floor": 0, "备注": "紫色博浪锥" }, { @@ -15636,7 +15636,7 @@ "content": 82622, "count": 1, "weight": 41, - "floor": "&", + "floor": 0, "备注": "紫色鱼肠剑" }, { @@ -15646,7 +15646,7 @@ "content": 82702, "count": 1, "weight": 41, - "floor": "&", + "floor": 0, "备注": "紫色神木鼎" }, { @@ -15656,7 +15656,7 @@ "content": 82722, "count": 1, "weight": 41, - "floor": "&", + "floor": 0, "备注": "紫色太平要术" }, { @@ -15666,7 +15666,7 @@ "content": 82103, "count": 1, "weight": 3, - "floor": "&", + "floor": 1, "备注": "橙色尚方剑" }, { @@ -15676,7 +15676,7 @@ "content": 82123, "count": 1, "weight": 3, - "floor": "&", + "floor": 1, "备注": "橙色握奇经" }, { @@ -15686,7 +15686,7 @@ "content": 82203, "count": 1, "weight": 3, - "floor": "&", + "floor": 1, "备注": "橙色黄钺斧" }, { @@ -15696,7 +15696,7 @@ "content": 82223, "count": 1, "weight": 3, - "floor": "&", + "floor": 1, "备注": "橙色断魂枪" }, { @@ -15706,7 +15706,7 @@ "content": 82303, "count": 1, "weight": 3, - "floor": "&", + "floor": 1, "备注": "橙色穿龙槊" }, { @@ -15716,7 +15716,7 @@ "content": 82323, "count": 1, "weight": 3, - "floor": "&", + "floor": 1, "备注": "橙色铁甲马" }, { @@ -15726,7 +15726,7 @@ "content": 82403, "count": 1, "weight": 3, - "floor": "&", + "floor": 1, "备注": "橙色龙雀刀" }, { @@ -15736,7 +15736,7 @@ "content": 82423, "count": 1, "weight": 3, - "floor": "&", + "floor": 1, "备注": "橙色吞云盾" }, { @@ -15746,7 +15746,7 @@ "content": 82503, "count": 1, "weight": 3, - "floor": "&", + "floor": 1, "备注": "橙色神臂弓" }, { @@ -15756,7 +15756,7 @@ "content": 82523, "count": 1, "weight": 3, - "floor": "&", + "floor": 1, "备注": "橙色镇天箭" }, { @@ -15766,7 +15766,7 @@ "content": 82603, "count": 1, "weight": 3, - "floor": "&", + "floor": 1, "备注": "橙色博浪锥" }, { @@ -15776,7 +15776,7 @@ "content": 82623, "count": 1, "weight": 3, - "floor": "&", + "floor": 1, "备注": "橙色鱼肠剑" }, { @@ -15786,7 +15786,7 @@ "content": 82703, "count": 1, "weight": 3, - "floor": "&", + "floor": 1, "备注": "橙色神木鼎" }, { @@ -15796,7 +15796,7 @@ "content": 82723, "count": 1, "weight": 3, - "floor": "&", + "floor": 1, "备注": "橙色太平要术" }, { @@ -15806,7 +15806,7 @@ "content": 71060, "count": 1, "weight": 14, - "floor": "&", + "floor": 1, "备注": "郭嘉/诸葛亮/周瑜专属宝物自选箱" }, { @@ -15816,7 +15816,7 @@ "content": 82103, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "橙色尚方剑" }, { @@ -15826,7 +15826,7 @@ "content": 82123, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "橙色握奇经" }, { @@ -15836,7 +15836,7 @@ "content": 82203, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "橙色黄钺斧" }, { @@ -15846,7 +15846,7 @@ "content": 82223, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "橙色断魂枪" }, { @@ -15856,7 +15856,7 @@ "content": 82303, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "橙色穿龙槊" }, { @@ -15866,7 +15866,7 @@ "content": 82323, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "橙色铁甲马" }, { @@ -15876,7 +15876,7 @@ "content": 82403, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "橙色龙雀刀" }, { @@ -15886,7 +15886,7 @@ "content": 82423, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "橙色吞云盾" }, { @@ -15896,7 +15896,7 @@ "content": 82503, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "橙色神臂弓" }, { @@ -15906,7 +15906,7 @@ "content": 82523, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "橙色镇天箭" }, { @@ -15916,7 +15916,7 @@ "content": 82603, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "橙色博浪锥" }, { @@ -15926,7 +15926,7 @@ "content": 82623, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "橙色鱼肠剑" }, { @@ -15936,7 +15936,7 @@ "content": 82703, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "橙色神木鼎" }, { @@ -15946,7 +15946,7 @@ "content": 82723, "count": 1, "weight": 1, - "floor": "&", + "floor": 0, "备注": "橙色太平要术" }, { @@ -15956,7 +15956,7 @@ "content": 82101, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色尚方剑" }, { @@ -15966,7 +15966,7 @@ "content": 82121, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色握奇经" }, { @@ -15976,7 +15976,7 @@ "content": 82201, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色黄钺斧" }, { @@ -15986,7 +15986,7 @@ "content": 82221, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色断魂枪" }, { @@ -15996,7 +15996,7 @@ "content": 82301, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色穿龙槊" }, { @@ -16006,7 +16006,7 @@ "content": 82321, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色铁甲马" }, { @@ -16016,7 +16016,7 @@ "content": 82401, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色龙雀刀" }, { @@ -16026,7 +16026,7 @@ "content": 82421, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色吞云盾" }, { @@ -16036,7 +16036,7 @@ "content": 82501, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色神臂弓" }, { @@ -16046,7 +16046,7 @@ "content": 82521, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色镇天箭" }, { @@ -16056,7 +16056,7 @@ "content": 82601, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色博浪锥" }, { @@ -16066,7 +16066,7 @@ "content": 82621, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色鱼肠剑" }, { @@ -16076,7 +16076,7 @@ "content": 82701, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色神木鼎" }, { @@ -16086,7 +16086,7 @@ "content": 82721, "count": 1, "weight": 55, - "floor": "&", + "floor": 0, "备注": "蓝色太平要术" }, { @@ -16096,7 +16096,7 @@ "content": 82102, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "紫色尚方剑" }, { @@ -16106,7 +16106,7 @@ "content": 82122, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "紫色握奇经" }, { @@ -16116,7 +16116,7 @@ "content": 82202, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "紫色黄钺斧" }, { @@ -16126,7 +16126,7 @@ "content": 82222, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "紫色断魂枪" }, { @@ -16136,7 +16136,7 @@ "content": 82302, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "紫色穿龙槊" }, { @@ -16146,7 +16146,7 @@ "content": 82322, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "紫色铁甲马" }, { @@ -16156,7 +16156,7 @@ "content": 82402, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "紫色龙雀刀" }, { @@ -16166,7 +16166,7 @@ "content": 82422, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "紫色吞云盾" }, { @@ -16176,7 +16176,7 @@ "content": 82502, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "紫色神臂弓" }, { @@ -16186,7 +16186,7 @@ "content": 82522, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "紫色镇天箭" }, { @@ -16196,7 +16196,7 @@ "content": 82602, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "紫色博浪锥" }, { @@ -16206,7 +16206,7 @@ "content": 82622, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "紫色鱼肠剑" }, { @@ -16216,7 +16216,7 @@ "content": 82702, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "紫色神木鼎" }, { @@ -16226,7 +16226,7 @@ "content": 82722, "count": 1, "weight": 40, - "floor": "&", + "floor": 0, "备注": "紫色太平要术" }, { @@ -16236,7 +16236,7 @@ "content": 82103, "count": 1, "weight": 4, - "floor": "&", + "floor": 1, "备注": "橙色尚方剑" }, { @@ -16246,7 +16246,7 @@ "content": 82123, "count": 1, "weight": 4, - "floor": "&", + "floor": 1, "备注": "橙色握奇经" }, { @@ -16256,7 +16256,7 @@ "content": 82203, "count": 1, "weight": 4, - "floor": "&", + "floor": 1, "备注": "橙色黄钺斧" }, { @@ -16266,7 +16266,7 @@ "content": 82223, "count": 1, "weight": 4, - "floor": "&", + "floor": 1, "备注": "橙色断魂枪" }, { @@ -16276,7 +16276,7 @@ "content": 82303, "count": 1, "weight": 4, - "floor": "&", + "floor": 1, "备注": "橙色穿龙槊" }, { @@ -16286,7 +16286,7 @@ "content": 82323, "count": 1, "weight": 4, - "floor": "&", + "floor": 1, "备注": "橙色铁甲马" }, { @@ -16296,7 +16296,7 @@ "content": 82403, "count": 1, "weight": 4, - "floor": "&", + "floor": 1, "备注": "橙色龙雀刀" }, { @@ -16306,7 +16306,7 @@ "content": 82423, "count": 1, "weight": 4, - "floor": "&", + "floor": 1, "备注": "橙色吞云盾" }, { @@ -16316,7 +16316,7 @@ "content": 82503, "count": 1, "weight": 4, - "floor": "&", + "floor": 1, "备注": "橙色神臂弓" }, { @@ -16326,7 +16326,7 @@ "content": 82523, "count": 1, "weight": 4, - "floor": "&", + "floor": 1, "备注": "橙色镇天箭" }, { @@ -16336,7 +16336,7 @@ "content": 82603, "count": 1, "weight": 4, - "floor": "&", + "floor": 1, "备注": "橙色博浪锥" }, { @@ -16346,7 +16346,7 @@ "content": 82623, "count": 1, "weight": 4, - "floor": "&", + "floor": 1, "备注": "橙色鱼肠剑" }, { @@ -16356,7 +16356,7 @@ "content": 82703, "count": 1, "weight": 4, - "floor": "&", + "floor": 1, "备注": "橙色神木鼎" }, { @@ -16366,7 +16366,7 @@ "content": 82723, "count": 1, "weight": 4, - "floor": "&", + "floor": 1, "备注": "橙色太平要术" }, { @@ -16376,7 +16376,7 @@ "content": 82106, "count": 1, "weight": 1, - "floor": "&", + "floor": 2, "备注": "红色尚方剑" }, { @@ -16386,7 +16386,7 @@ "content": 82126, "count": 1, "weight": 1, - "floor": "&", + "floor": 2, "备注": "红色握奇经" }, { @@ -16396,7 +16396,7 @@ "content": 82206, "count": 1, "weight": 1, - "floor": "&", + "floor": 2, "备注": "红色黄钺斧" }, { @@ -16406,7 +16406,7 @@ "content": 82226, "count": 1, "weight": 1, - "floor": "&", + "floor": 2, "备注": "红色断魂枪" }, { @@ -16416,7 +16416,7 @@ "content": 82306, "count": 1, "weight": 1, - "floor": "&", + "floor": 2, "备注": "红色穿龙槊" }, { @@ -16426,7 +16426,7 @@ "content": 82326, "count": 1, "weight": 1, - "floor": "&", + "floor": 2, "备注": "红色铁甲马" }, { @@ -16436,7 +16436,7 @@ "content": 82406, "count": 1, "weight": 1, - "floor": "&", + "floor": 2, "备注": "红色龙雀刀" }, { @@ -16446,7 +16446,7 @@ "content": 82426, "count": 1, "weight": 1, - "floor": "&", + "floor": 2, "备注": "红色吞云盾" }, { @@ -16456,7 +16456,7 @@ "content": 82506, "count": 1, "weight": 1, - "floor": "&", + "floor": 2, "备注": "红色神臂弓" }, { @@ -16466,7 +16466,7 @@ "content": 82526, "count": 1, "weight": 1, - "floor": "&", + "floor": 2, "备注": "红色镇天箭" }, { @@ -16476,7 +16476,7 @@ "content": 82606, "count": 1, "weight": 1, - "floor": "&", + "floor": 2, "备注": "红色博浪锥" }, { @@ -16486,7 +16486,7 @@ "content": 82626, "count": 1, "weight": 1, - "floor": "&", + "floor": 2, "备注": "红色鱼肠剑" }, { @@ -16496,7 +16496,7 @@ "content": 82706, "count": 1, "weight": 1, - "floor": "&", + "floor": 2, "备注": "红色神木鼎" }, { @@ -16506,7 +16506,7 @@ "content": 82726, "count": 1, "weight": 1, - "floor": "&", + "floor": 2, "备注": "红色太平要术" } ] \ No newline at end of file