From 5dba5632c2e984b13b3dae1d18ce3724f0ab1ff3 Mon Sep 17 00:00:00 2001 From: luying Date: Fri, 16 Jul 2021 16:09:50 +0800 Subject: [PATCH 1/6] =?UTF-8?q?=E5=90=8E=E5=8F=B0=EF=BC=9A=E8=AE=BE?= =?UTF-8?q?=E7=BD=AE=E6=AD=A6=E5=B0=86=E6=98=9F=E7=BA=A7=E5=92=8C=E8=81=8C?= =?UTF-8?q?=E4=B8=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gm-server/app/controller/users.ts | 12 ++++++++ gm-server/app/router.ts | 2 ++ gm-server/app/service/users.ts | 48 +++++++++++++++++++++++++++++++ 3 files changed, 62 insertions(+) diff --git a/gm-server/app/controller/users.ts b/gm-server/app/controller/users.ts index 1085b3f32..9470353c4 100644 --- a/gm-server/app/controller/users.ts +++ b/gm-server/app/controller/users.ts @@ -86,6 +86,18 @@ export default class UserController extends Controller { ctx.body = await ctx.service.users.setHeroLv(roleIdAndHids, lv); } + public async setHeroParam() { + const { ctx } = this; + const { selectedRowKeys: roleIdAndHids, star, colorStar, quality } = ctx.request.body; + ctx.body = await ctx.service.users.setHeroParam(roleIdAndHids, star, colorStar, quality); + } + + public async setHeroJob() { + const { ctx } = this; + const { selectedRowKeys: roleIdAndHids, job } = ctx.request.body; + ctx.body = await ctx.service.users.setHeroJob(roleIdAndHids, job); + } + public async saveHeroToDefense() { const { ctx } = this; const { roleId, roleName, hid } = ctx.request.body; diff --git a/gm-server/app/router.ts b/gm-server/app/router.ts index 13a7a1b4c..4403fc434 100644 --- a/gm-server/app/router.ts +++ b/gm-server/app/router.ts @@ -35,6 +35,8 @@ export default (app: Application) => { router.post('/api/users/getherolist',tokenParser, controller.users.getHeroList); router.post('/api/users/deletehero', tokenParser, controller.users.deleteHero); router.post('/api/users/setherolv', tokenParser, controller.users.setHeroLv); + router.post('/api/users/setheroparam', controller.users.setHeroParam); + router.post('/api/users/setherojob', controller.users.setHeroJob); router.post('/api/users/saveherotodefense',tokenParser, controller.users.saveHeroToDefense); router.post('/api/users/removeherofromdefense',tokenParser, controller.users.removeHeroFromDefense); router.post('/api/users/getequiplist', tokenParser, controller.users.getEquipList); diff --git a/gm-server/app/service/users.ts b/gm-server/app/service/users.ts index 161efe115..e38c53ca0 100644 --- a/gm-server/app/service/users.ts +++ b/gm-server/app/service/users.ts @@ -35,6 +35,7 @@ import { FriendRelationModel } from '@db/FriendRelation'; import { createHero as pubCreateHero, addSkin } from '@pubUtils/itemUtils'; import { GiftCodeModel } from '@db/GiftCode'; import { GiftCodeDetailModel } from '@db/GiftCodeDetail'; +// import { resResult } from '@pubUtils/util'; // import * as fs from 'fs'; @@ -627,6 +628,53 @@ export default class GMUsers extends Service { } } + public async setHeroParam(roleIdAndHids: string[], star: number, colorStar: number, quality: number) { + try { + const ctx = this.ctx; + if (typeof star != 'number'||typeof colorStar != 'number'||typeof quality != 'number') return ctx.service.utils.resResult(STATUS.WRONG_PARMS); + + for (let roleIdAndHid of roleIdAndHids) { + let [roleId, hidStr] = roleIdAndHid.split('|'); + if (isNaN(parseInt(hidStr))) return ctx.service.utils.resResult(STATUS.WRONG_PARMS); + + let hid = parseInt(hidStr); + + let hero = await HeroModel.findByHidAndRole(hid, roleId); + console.log(hid, roleId, !!hero); + if (!hero) continue; + await calPlayerCeAndSave(HERO_SYSTEM_TYPE.LVUP, roleId, hero, { star, colorStar, quality }); + } + + return ctx.service.utils.resResult(STATUS.SUCCESS); + } catch (e) { + console.error(e.stack) + } + } + + + public async setHeroJob(roleIdAndHids: string[], job: number) { + try { + const ctx = this.ctx; + if(!gameData.job.has(job)) return ctx.service.utils.resResult(STATUS.WRONG_PARMS); + + for (let roleIdAndHid of roleIdAndHids) { + let [roleId, hidStr] = roleIdAndHid.split('|'); + if (isNaN(parseInt(hidStr))) return ctx.service.utils.resResult(STATUS.WRONG_PARMS); + + let hid = parseInt(hidStr); + + let hero = await HeroModel.findByHidAndRole(hid, roleId); + console.log(hid, roleId, !!hero); + if (!hero) continue; + await calPlayerCeAndSave(HERO_SYSTEM_TYPE.STAGEUP, roleId, hero, { job }); + } + + return ctx.service.utils.resResult(STATUS.SUCCESS); + } catch (e) { + console.error(e.stack) + } + } + /** * 根据类型等搜索装备 */ From d780f8e5b40a3fe0fec57a468509e81627ef28d8 Mon Sep 17 00:00:00 2001 From: luying Date: Fri, 16 Jul 2021 17:36:16 +0800 Subject: [PATCH 2/6] =?UTF-8?q?=E5=90=8E=E5=8F=B0=EF=BC=9A=E5=81=9C?= =?UTF-8?q?=E6=AD=A2=E7=BB=B4=E6=8A=A4=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- game-server/app/servers/gm/handler/gmHandler.ts | 2 +- game-server/app/services/gmService.ts | 13 +++++++++++-- gm-server/app/controller/game.ts | 1 - gm-server/app/service/Game.ts | 2 +- 4 files changed, 13 insertions(+), 5 deletions(-) diff --git a/game-server/app/servers/gm/handler/gmHandler.ts b/game-server/app/servers/gm/handler/gmHandler.ts index 2dd350bdc..94c244887 100644 --- a/game-server/app/servers/gm/handler/gmHandler.ts +++ b/game-server/app/servers/gm/handler/gmHandler.ts @@ -203,7 +203,7 @@ export class GmHandler { const uid = session.get('uid'); const maintenance = await MaintenanceModel.updateStatusByCode(code, false, uid); if(!maintenance) return resResult(STATUS.WRONG_PARMS); - await stopMaintenance(maintenance); + await stopMaintenance(maintenance, uid); return resResult(STATUS.SUCCESS,); } diff --git a/game-server/app/services/gmService.ts b/game-server/app/services/gmService.ts index 2a17473dd..6c11f4020 100644 --- a/game-server/app/services/gmService.ts +++ b/game-server/app/services/gmService.ts @@ -9,6 +9,8 @@ import { pinus } from "pinus"; import { getWorldChannelSid } from "./chatChannelService"; import { ServerlistModel } from "../db/Serverlist"; import { NoticeModel, NoticeType } from "../db/Notice"; +import { SendMailFun } from "./mailService"; +import { GMMailType } from '../db/GMMail'; // —————————————— 跑马灯 —————————————— // // 初始 @@ -146,8 +148,8 @@ async function startMaintenance(maintenance: MaintenanceType, startJob?: Job) { } // 停止维护 -export async function stopMaintenance(maintenance: MaintenanceType) { - let { serverIds, notice, marquee } = maintenance; +export async function stopMaintenance(maintenance: MaintenanceType, uid: number) { + let { serverIds, notice, marquee, mail } = maintenance; // 更新serverlist上的status await ServerlistModel.updateByServerIds(serverIds, { serverStatus: SERVER_STATUS.HOT }); // 更新notice的isEnable @@ -164,4 +166,11 @@ export async function stopMaintenance(maintenance: MaintenanceType) { if(marquee) { await cancelMarquee((marquee).code); } + console.log('*****', JSON.stringify(mail)); + if(mail) { + let f = new SendMailFun(); + await f.setWithGmMail((mail)._id); + await f.sendToServer(serverIds); + await f.saveRecord(uid); + } } \ No newline at end of file diff --git a/gm-server/app/controller/game.ts b/gm-server/app/controller/game.ts index b3767f336..ece2331ea 100644 --- a/gm-server/app/controller/game.ts +++ b/gm-server/app/controller/game.ts @@ -42,7 +42,6 @@ export default class GameController extends Controller { ctx.body = ctx.service.utils.resResult(STATUS.GM_JSON_FORMAT_ERR); return } - console.log(goods) ctx.body = await ctx.service.game.updateMaintenance( {...values, startTime: new Date(values.startTime)}, diff --git a/gm-server/app/service/Game.ts b/gm-server/app/service/Game.ts index 691e2bb41..1282422a3 100644 --- a/gm-server/app/service/Game.ts +++ b/gm-server/app/service/Game.ts @@ -81,7 +81,7 @@ export default class Game extends Service { let curEnv = serverEnv.find(cur => cur.env == this.app.config.env); let marqueeResult = await MarqueeModel.createData({ ...marquee, serverIds: values.serverIds, type: MARQUEE_TYPE.SCHEDULE, isRunning: false }, ctx.user?.uid); - let noticeResult = await NoticeModel.updateNotice('new', { ...notice, type: 1, sort: 1000, serverType: curEnv?.serverType, isEnable: true }, ctx.user?.uid); + let noticeResult = await NoticeModel.updateNotice('new', { ...notice, type: 1, sort: 1000, serverType: curEnv?.serverType, isEnable: false }, ctx.user?.uid); let mailResult = await GMMailModel.addMail({ ...mail, useTempTime: true }, ctx.user?.uid); await MaintenanceModel.createData(values, marqueeResult, noticeResult, mailResult); } else { From eacca4ff9fbe642019bf1c4aa2d162649e726f5a Mon Sep 17 00:00:00 2001 From: luying Date: Fri, 16 Jul 2021 17:53:45 +0800 Subject: [PATCH 3/6] =?UTF-8?q?=E8=B5=84=E6=BA=90=EF=BC=9A=E6=9B=B4?= =?UTF-8?q?=E6=96=B0=E7=89=A9=E5=93=81=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shared/resource/jsons/dic_goods.json | 2154 +++++++++----------------- 1 file changed, 690 insertions(+), 1464 deletions(-) diff --git a/shared/resource/jsons/dic_goods.json b/shared/resource/jsons/dic_goods.json index ff0f253e9..87d0a3a54 100644 --- a/shared/resource/jsons/dic_goods.json +++ b/shared/resource/jsons/dic_goods.json @@ -14,7 +14,7 @@ "suitId": 0, "decomposeItem": "17047&1", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -57,7 +57,7 @@ "suitId": 0, "decomposeItem": "17047&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -100,7 +100,7 @@ "suitId": 0, "decomposeItem": "17047&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -143,7 +143,7 @@ "suitId": 0, "decomposeItem": "17047&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -186,7 +186,7 @@ "suitId": 0, "decomposeItem": "17047&2", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -229,7 +229,7 @@ "suitId": 0, "decomposeItem": "17047&6", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -272,7 +272,7 @@ "suitId": 0, "decomposeItem": "17047&18", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -315,7 +315,7 @@ "suitId": 0, "decomposeItem": "17047&54", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -358,7 +358,7 @@ "suitId": 0, "decomposeItem": "17047&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -401,7 +401,7 @@ "suitId": 0, "decomposeItem": "17047&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -444,7 +444,7 @@ "suitId": 0, "decomposeItem": "17047&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -487,7 +487,7 @@ "suitId": 0, "decomposeItem": "17047&81", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -530,7 +530,7 @@ "suitId": 0, "decomposeItem": "17047&4", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -573,7 +573,7 @@ "suitId": 0, "decomposeItem": "17047&12", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -616,7 +616,7 @@ "suitId": 0, "decomposeItem": "17047&36", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -659,7 +659,7 @@ "suitId": 0, "decomposeItem": "17047&108", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -702,7 +702,7 @@ "suitId": 0, "decomposeItem": "17047&5", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -745,7 +745,7 @@ "suitId": 0, "decomposeItem": "17047&15", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -788,7 +788,7 @@ "suitId": 0, "decomposeItem": "17047&45", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -831,7 +831,7 @@ "suitId": 0, "decomposeItem": "17047&135", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -874,7 +874,7 @@ "suitId": 0, "decomposeItem": "17047&8", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -917,7 +917,7 @@ "suitId": 0, "decomposeItem": "17047&24", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -960,7 +960,7 @@ "suitId": 0, "decomposeItem": "17047&72", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -1003,7 +1003,7 @@ "suitId": 0, "decomposeItem": "17047&216", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -1046,7 +1046,7 @@ "suitId": 1, "decomposeItem": "17047&81", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -1089,7 +1089,7 @@ "suitId": 4, "decomposeItem": "17047&162", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -1132,7 +1132,7 @@ "suitId": 7, "decomposeItem": "17047&243", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -1175,7 +1175,7 @@ "suitId": 10, "decomposeItem": "17047&324", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -1218,7 +1218,7 @@ "suitId": 13, "decomposeItem": "17047&405", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -1261,7 +1261,7 @@ "suitId": 16, "decomposeItem": "17047&648", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -1304,7 +1304,7 @@ "suitId": 0, "decomposeItem": "17047&1", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -1347,7 +1347,7 @@ "suitId": 0, "decomposeItem": "17047&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -1390,7 +1390,7 @@ "suitId": 0, "decomposeItem": "17047&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 353, "atk": 273, @@ -1433,7 +1433,7 @@ "suitId": 0, "decomposeItem": "17047&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 353, "atk": 273, @@ -1476,7 +1476,7 @@ "suitId": 0, "decomposeItem": "17047&2", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -1519,7 +1519,7 @@ "suitId": 0, "decomposeItem": "17047&6", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -1562,7 +1562,7 @@ "suitId": 0, "decomposeItem": "17047&18", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 353, "atk": 273, @@ -1605,7 +1605,7 @@ "suitId": 0, "decomposeItem": "17047&54", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 353, "atk": 273, @@ -1648,7 +1648,7 @@ "suitId": 0, "decomposeItem": "17047&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -1691,7 +1691,7 @@ "suitId": 0, "decomposeItem": "17047&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -1734,7 +1734,7 @@ "suitId": 0, "decomposeItem": "17047&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 353, "atk": 273, @@ -1777,7 +1777,7 @@ "suitId": 0, "decomposeItem": "17047&81", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 353, "atk": 273, @@ -1820,7 +1820,7 @@ "suitId": 0, "decomposeItem": "17047&4", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -1863,7 +1863,7 @@ "suitId": 0, "decomposeItem": "17047&12", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -1906,7 +1906,7 @@ "suitId": 0, "decomposeItem": "17047&36", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 353, "atk": 273, @@ -1949,7 +1949,7 @@ "suitId": 0, "decomposeItem": "17047&108", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 353, "atk": 273, @@ -1992,7 +1992,7 @@ "suitId": 0, "decomposeItem": "17047&5", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -2035,7 +2035,7 @@ "suitId": 0, "decomposeItem": "17047&15", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -2078,7 +2078,7 @@ "suitId": 0, "decomposeItem": "17047&45", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 353, "atk": 273, @@ -2121,7 +2121,7 @@ "suitId": 0, "decomposeItem": "17047&135", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 353, "atk": 273, @@ -2164,7 +2164,7 @@ "suitId": 0, "decomposeItem": "17047&8", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -2207,7 +2207,7 @@ "suitId": 0, "decomposeItem": "17047&24", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 17, "atk": 13, @@ -2250,7 +2250,7 @@ "suitId": 0, "decomposeItem": "17047&72", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 353, "atk": 273, @@ -2293,7 +2293,7 @@ "suitId": 0, "decomposeItem": "17047&216", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 353, "atk": 273, @@ -2336,7 +2336,7 @@ "suitId": 2, "decomposeItem": "17047&81", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 353, "atk": 273, @@ -2379,7 +2379,7 @@ "suitId": 5, "decomposeItem": "17047&162", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 353, "atk": 273, @@ -2422,7 +2422,7 @@ "suitId": 8, "decomposeItem": "17047&243", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 353, "atk": 273, @@ -2465,7 +2465,7 @@ "suitId": 11, "decomposeItem": "17047&324", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 353, "atk": 273, @@ -2508,7 +2508,7 @@ "suitId": 14, "decomposeItem": "17047&405", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 353, "atk": 273, @@ -2551,7 +2551,7 @@ "suitId": 17, "decomposeItem": "17047&648", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 353, "atk": 273, @@ -2594,7 +2594,7 @@ "suitId": 0, "decomposeItem": "17047&1", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -2637,7 +2637,7 @@ "suitId": 0, "decomposeItem": "17047&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -2680,7 +2680,7 @@ "suitId": 0, "decomposeItem": "17047&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -2723,7 +2723,7 @@ "suitId": 0, "decomposeItem": "17047&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -2766,7 +2766,7 @@ "suitId": 0, "decomposeItem": "17047&2", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -2809,7 +2809,7 @@ "suitId": 0, "decomposeItem": "17047&6", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -2852,7 +2852,7 @@ "suitId": 0, "decomposeItem": "17047&18", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -2895,7 +2895,7 @@ "suitId": 0, "decomposeItem": "17047&54", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -2938,7 +2938,7 @@ "suitId": 0, "decomposeItem": "17047&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -2981,7 +2981,7 @@ "suitId": 0, "decomposeItem": "17047&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -3024,7 +3024,7 @@ "suitId": 0, "decomposeItem": "17047&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -3067,7 +3067,7 @@ "suitId": 0, "decomposeItem": "17047&81", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -3110,7 +3110,7 @@ "suitId": 0, "decomposeItem": "17047&4", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -3153,7 +3153,7 @@ "suitId": 0, "decomposeItem": "17047&12", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -3196,7 +3196,7 @@ "suitId": 0, "decomposeItem": "17047&36", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -3239,7 +3239,7 @@ "suitId": 0, "decomposeItem": "17047&108", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -3282,7 +3282,7 @@ "suitId": 0, "decomposeItem": "17047&5", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -3325,7 +3325,7 @@ "suitId": 0, "decomposeItem": "17047&15", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -3368,7 +3368,7 @@ "suitId": 0, "decomposeItem": "17047&45", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -3411,7 +3411,7 @@ "suitId": 0, "decomposeItem": "17047&135", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -3454,7 +3454,7 @@ "suitId": 0, "decomposeItem": "17047&8", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -3497,7 +3497,7 @@ "suitId": 0, "decomposeItem": "17047&24", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -3540,7 +3540,7 @@ "suitId": 0, "decomposeItem": "17047&72", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -3583,7 +3583,7 @@ "suitId": 0, "decomposeItem": "17047&216", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -3626,7 +3626,7 @@ "suitId": 1, "decomposeItem": "17047&81", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -3669,7 +3669,7 @@ "suitId": 4, "decomposeItem": "17047&162", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -3712,7 +3712,7 @@ "suitId": 7, "decomposeItem": "17047&243", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -3755,7 +3755,7 @@ "suitId": 10, "decomposeItem": "17047&324", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -3798,7 +3798,7 @@ "suitId": 13, "decomposeItem": "17047&405", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -3841,7 +3841,7 @@ "suitId": 19, "decomposeItem": "17047&648", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -3884,7 +3884,7 @@ "suitId": 0, "decomposeItem": "17047&1", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -3927,7 +3927,7 @@ "suitId": 0, "decomposeItem": "17047&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -3970,7 +3970,7 @@ "suitId": 0, "decomposeItem": "17047&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 338, "atk": 307, @@ -4013,7 +4013,7 @@ "suitId": 0, "decomposeItem": "17047&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 338, "atk": 307, @@ -4056,7 +4056,7 @@ "suitId": 0, "decomposeItem": "17047&2", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -4099,7 +4099,7 @@ "suitId": 0, "decomposeItem": "17047&6", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -4142,7 +4142,7 @@ "suitId": 0, "decomposeItem": "17047&18", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 338, "atk": 307, @@ -4185,7 +4185,7 @@ "suitId": 0, "decomposeItem": "17047&54", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 338, "atk": 307, @@ -4228,7 +4228,7 @@ "suitId": 0, "decomposeItem": "17047&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -4271,7 +4271,7 @@ "suitId": 0, "decomposeItem": "17047&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -4314,7 +4314,7 @@ "suitId": 0, "decomposeItem": "17047&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 338, "atk": 307, @@ -4357,7 +4357,7 @@ "suitId": 0, "decomposeItem": "17047&81", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 338, "atk": 307, @@ -4400,7 +4400,7 @@ "suitId": 0, "decomposeItem": "17047&4", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -4443,7 +4443,7 @@ "suitId": 0, "decomposeItem": "17047&12", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -4486,7 +4486,7 @@ "suitId": 0, "decomposeItem": "17047&36", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 338, "atk": 307, @@ -4529,7 +4529,7 @@ "suitId": 0, "decomposeItem": "17047&108", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 338, "atk": 307, @@ -4572,7 +4572,7 @@ "suitId": 0, "decomposeItem": "17047&5", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -4615,7 +4615,7 @@ "suitId": 0, "decomposeItem": "17047&15", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -4658,7 +4658,7 @@ "suitId": 0, "decomposeItem": "17047&45", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 338, "atk": 307, @@ -4701,7 +4701,7 @@ "suitId": 0, "decomposeItem": "17047&135", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 338, "atk": 307, @@ -4744,7 +4744,7 @@ "suitId": 0, "decomposeItem": "17047&8", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -4787,7 +4787,7 @@ "suitId": 0, "decomposeItem": "17047&24", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 16, "atk": 15, @@ -4830,7 +4830,7 @@ "suitId": 0, "decomposeItem": "17047&72", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 338, "atk": 307, @@ -4873,7 +4873,7 @@ "suitId": 0, "decomposeItem": "17047&216", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 338, "atk": 307, @@ -4916,7 +4916,7 @@ "suitId": 2, "decomposeItem": "17047&81", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 338, "atk": 307, @@ -4959,7 +4959,7 @@ "suitId": 5, "decomposeItem": "17047&162", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 338, "atk": 307, @@ -5002,7 +5002,7 @@ "suitId": 8, "decomposeItem": "17047&243", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 338, "atk": 307, @@ -5045,7 +5045,7 @@ "suitId": 11, "decomposeItem": "17047&324", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 338, "atk": 307, @@ -5088,7 +5088,7 @@ "suitId": 14, "decomposeItem": "17047&405", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 338, "atk": 307, @@ -5131,7 +5131,7 @@ "suitId": 18, "decomposeItem": "17047&648", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 338, "atk": 307, @@ -5174,7 +5174,7 @@ "suitId": 0, "decomposeItem": "17047&1", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -5217,7 +5217,7 @@ "suitId": 0, "decomposeItem": "17047&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -5260,7 +5260,7 @@ "suitId": 0, "decomposeItem": "17047&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -5303,7 +5303,7 @@ "suitId": 0, "decomposeItem": "17047&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -5346,7 +5346,7 @@ "suitId": 0, "decomposeItem": "17047&2", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -5389,7 +5389,7 @@ "suitId": 0, "decomposeItem": "17047&6", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -5432,7 +5432,7 @@ "suitId": 0, "decomposeItem": "17047&18", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -5475,7 +5475,7 @@ "suitId": 0, "decomposeItem": "17047&54", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -5518,7 +5518,7 @@ "suitId": 0, "decomposeItem": "17047&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -5561,7 +5561,7 @@ "suitId": 0, "decomposeItem": "17047&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -5604,7 +5604,7 @@ "suitId": 0, "decomposeItem": "17047&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -5647,7 +5647,7 @@ "suitId": 0, "decomposeItem": "17047&81", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -5690,7 +5690,7 @@ "suitId": 0, "decomposeItem": "17047&4", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -5733,7 +5733,7 @@ "suitId": 0, "decomposeItem": "17047&12", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -5776,7 +5776,7 @@ "suitId": 0, "decomposeItem": "17047&36", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -5819,7 +5819,7 @@ "suitId": 0, "decomposeItem": "17047&108", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -5862,7 +5862,7 @@ "suitId": 0, "decomposeItem": "17047&5", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -5905,7 +5905,7 @@ "suitId": 0, "decomposeItem": "17047&15", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -5948,7 +5948,7 @@ "suitId": 0, "decomposeItem": "17047&45", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -5991,7 +5991,7 @@ "suitId": 0, "decomposeItem": "17047&135", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -6034,7 +6034,7 @@ "suitId": 0, "decomposeItem": "17047&8", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -6077,7 +6077,7 @@ "suitId": 0, "decomposeItem": "17047&24", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -6120,7 +6120,7 @@ "suitId": 0, "decomposeItem": "17047&72", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -6163,7 +6163,7 @@ "suitId": 0, "decomposeItem": "17047&216", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -6206,7 +6206,7 @@ "suitId": 2, "decomposeItem": "17047&81", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -6249,7 +6249,7 @@ "suitId": 5, "decomposeItem": "17047&162", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -6292,7 +6292,7 @@ "suitId": 8, "decomposeItem": "17047&243", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -6335,7 +6335,7 @@ "suitId": 11, "decomposeItem": "17047&324", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -6378,7 +6378,7 @@ "suitId": 14, "decomposeItem": "17047&405", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -6421,7 +6421,7 @@ "suitId": 22, "decomposeItem": "17047&648", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -6464,7 +6464,7 @@ "suitId": 0, "decomposeItem": "17047&1", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -6507,7 +6507,7 @@ "suitId": 0, "decomposeItem": "17047&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -6550,7 +6550,7 @@ "suitId": 0, "decomposeItem": "17047&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 294, "atk": 341, @@ -6593,7 +6593,7 @@ "suitId": 0, "decomposeItem": "17047&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 294, "atk": 341, @@ -6636,7 +6636,7 @@ "suitId": 0, "decomposeItem": "17047&2", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -6679,7 +6679,7 @@ "suitId": 0, "decomposeItem": "17047&6", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -6722,7 +6722,7 @@ "suitId": 0, "decomposeItem": "17047&18", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 294, "atk": 341, @@ -6765,7 +6765,7 @@ "suitId": 0, "decomposeItem": "17047&54", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 294, "atk": 341, @@ -6808,7 +6808,7 @@ "suitId": 0, "decomposeItem": "17047&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -6851,7 +6851,7 @@ "suitId": 0, "decomposeItem": "17047&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -6894,7 +6894,7 @@ "suitId": 0, "decomposeItem": "17047&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 294, "atk": 341, @@ -6937,7 +6937,7 @@ "suitId": 0, "decomposeItem": "17047&81", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 294, "atk": 341, @@ -6980,7 +6980,7 @@ "suitId": 0, "decomposeItem": "17047&4", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -7023,7 +7023,7 @@ "suitId": 0, "decomposeItem": "17047&12", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -7066,7 +7066,7 @@ "suitId": 0, "decomposeItem": "17047&36", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 294, "atk": 341, @@ -7109,7 +7109,7 @@ "suitId": 0, "decomposeItem": "17047&108", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 294, "atk": 341, @@ -7152,7 +7152,7 @@ "suitId": 0, "decomposeItem": "17047&5", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -7195,7 +7195,7 @@ "suitId": 0, "decomposeItem": "17047&15", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -7238,7 +7238,7 @@ "suitId": 0, "decomposeItem": "17047&45", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 294, "atk": 341, @@ -7281,7 +7281,7 @@ "suitId": 0, "decomposeItem": "17047&135", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 294, "atk": 341, @@ -7324,7 +7324,7 @@ "suitId": 0, "decomposeItem": "17047&8", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -7367,7 +7367,7 @@ "suitId": 0, "decomposeItem": "17047&24", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 16, @@ -7410,7 +7410,7 @@ "suitId": 0, "decomposeItem": "17047&72", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 294, "atk": 341, @@ -7453,7 +7453,7 @@ "suitId": 0, "decomposeItem": "17047&216", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 294, "atk": 341, @@ -7496,7 +7496,7 @@ "suitId": 3, "decomposeItem": "17047&81", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 294, "atk": 341, @@ -7539,7 +7539,7 @@ "suitId": 6, "decomposeItem": "17047&162", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 294, "atk": 341, @@ -7582,7 +7582,7 @@ "suitId": 9, "decomposeItem": "17047&243", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 294, "atk": 341, @@ -7625,7 +7625,7 @@ "suitId": 12, "decomposeItem": "17047&324", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 294, "atk": 341, @@ -7668,7 +7668,7 @@ "suitId": 15, "decomposeItem": "17047&405", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 294, "atk": 341, @@ -7711,7 +7711,7 @@ "suitId": 21, "decomposeItem": "17047&648", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 294, "atk": 341, @@ -7754,7 +7754,7 @@ "suitId": 0, "decomposeItem": "17047&1", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -7797,7 +7797,7 @@ "suitId": 0, "decomposeItem": "17047&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -7840,7 +7840,7 @@ "suitId": 0, "decomposeItem": "17047&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -7883,7 +7883,7 @@ "suitId": 0, "decomposeItem": "17047&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -7926,7 +7926,7 @@ "suitId": 0, "decomposeItem": "17047&2", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -7969,7 +7969,7 @@ "suitId": 0, "decomposeItem": "17047&6", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -8012,7 +8012,7 @@ "suitId": 0, "decomposeItem": "17047&18", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -8055,7 +8055,7 @@ "suitId": 0, "decomposeItem": "17047&54", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -8098,7 +8098,7 @@ "suitId": 0, "decomposeItem": "17047&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -8141,7 +8141,7 @@ "suitId": 0, "decomposeItem": "17047&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -8184,7 +8184,7 @@ "suitId": 0, "decomposeItem": "17047&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -8227,7 +8227,7 @@ "suitId": 0, "decomposeItem": "17047&81", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -8270,7 +8270,7 @@ "suitId": 0, "decomposeItem": "17047&4", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -8313,7 +8313,7 @@ "suitId": 0, "decomposeItem": "17047&12", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -8356,7 +8356,7 @@ "suitId": 0, "decomposeItem": "17047&36", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -8399,7 +8399,7 @@ "suitId": 0, "decomposeItem": "17047&108", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -8442,7 +8442,7 @@ "suitId": 0, "decomposeItem": "17047&5", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -8485,7 +8485,7 @@ "suitId": 0, "decomposeItem": "17047&15", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -8528,7 +8528,7 @@ "suitId": 0, "decomposeItem": "17047&45", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -8571,7 +8571,7 @@ "suitId": 0, "decomposeItem": "17047&135", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -8614,7 +8614,7 @@ "suitId": 0, "decomposeItem": "17047&8", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -8657,7 +8657,7 @@ "suitId": 0, "decomposeItem": "17047&24", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -8700,7 +8700,7 @@ "suitId": 0, "decomposeItem": "17047&72", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -8743,7 +8743,7 @@ "suitId": 0, "decomposeItem": "17047&216", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -8786,7 +8786,7 @@ "suitId": 1, "decomposeItem": "17047&81", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 276, "atk": 382, @@ -8829,7 +8829,7 @@ "suitId": 4, "decomposeItem": "17047&162", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 276, "atk": 382, @@ -8872,7 +8872,7 @@ "suitId": 7, "decomposeItem": "17047&243", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 276, "atk": 382, @@ -8915,7 +8915,7 @@ "suitId": 10, "decomposeItem": "17047&324", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 276, "atk": 382, @@ -8958,7 +8958,7 @@ "suitId": 13, "decomposeItem": "17047&405", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 276, "atk": 382, @@ -9001,7 +9001,7 @@ "suitId": 20, "decomposeItem": "17047&648", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 276, "atk": 382, @@ -9044,7 +9044,7 @@ "suitId": 0, "decomposeItem": "17047&1", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 276, "atk": 382, @@ -9087,7 +9087,7 @@ "suitId": 0, "decomposeItem": "17047&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 276, "atk": 382, @@ -9130,7 +9130,7 @@ "suitId": 0, "decomposeItem": "17047&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -9173,7 +9173,7 @@ "suitId": 0, "decomposeItem": "17047&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -9216,7 +9216,7 @@ "suitId": 0, "decomposeItem": "17047&2", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 276, "atk": 382, @@ -9259,7 +9259,7 @@ "suitId": 0, "decomposeItem": "17047&6", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 276, "atk": 382, @@ -9302,7 +9302,7 @@ "suitId": 0, "decomposeItem": "17047&18", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -9345,7 +9345,7 @@ "suitId": 0, "decomposeItem": "17047&54", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -9388,7 +9388,7 @@ "suitId": 0, "decomposeItem": "17047&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 276, "atk": 382, @@ -9431,7 +9431,7 @@ "suitId": 0, "decomposeItem": "17047&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 276, "atk": 382, @@ -9474,7 +9474,7 @@ "suitId": 0, "decomposeItem": "17047&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -9517,7 +9517,7 @@ "suitId": 0, "decomposeItem": "17047&81", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -9560,7 +9560,7 @@ "suitId": 0, "decomposeItem": "17047&4", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 276, "atk": 382, @@ -9603,7 +9603,7 @@ "suitId": 0, "decomposeItem": "17047&12", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 276, "atk": 382, @@ -9646,7 +9646,7 @@ "suitId": 0, "decomposeItem": "17047&36", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -9689,7 +9689,7 @@ "suitId": 0, "decomposeItem": "17047&108", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -9732,7 +9732,7 @@ "suitId": 0, "decomposeItem": "17047&5", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 276, "atk": 382, @@ -9775,7 +9775,7 @@ "suitId": 0, "decomposeItem": "17047&15", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 276, "atk": 382, @@ -9818,7 +9818,7 @@ "suitId": 0, "decomposeItem": "17047&45", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -9861,7 +9861,7 @@ "suitId": 0, "decomposeItem": "17047&135", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -9904,7 +9904,7 @@ "suitId": 0, "decomposeItem": "17047&8", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 276, "atk": 382, @@ -9947,7 +9947,7 @@ "suitId": 0, "decomposeItem": "17047&24", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 276, "atk": 382, @@ -9990,7 +9990,7 @@ "suitId": 0, "decomposeItem": "17047&72", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -10033,7 +10033,7 @@ "suitId": 0, "decomposeItem": "17047&216", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -10076,7 +10076,7 @@ "suitId": 3, "decomposeItem": "17047&81", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -10119,7 +10119,7 @@ "suitId": 6, "decomposeItem": "17047&162", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -10162,7 +10162,7 @@ "suitId": 9, "decomposeItem": "17047&243", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -10205,7 +10205,7 @@ "suitId": 12, "decomposeItem": "17047&324", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -10248,7 +10248,7 @@ "suitId": 15, "decomposeItem": "17047&405", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -10291,7 +10291,7 @@ "suitId": 23, "decomposeItem": "17047&648", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 18, @@ -10334,7 +10334,7 @@ "suitId": 0, "decomposeItem": "17049&1", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -10377,7 +10377,7 @@ "suitId": 0, "decomposeItem": "17049&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -10420,7 +10420,7 @@ "suitId": 0, "decomposeItem": "17049&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 610, "atk": 0, @@ -10463,7 +10463,7 @@ "suitId": 0, "decomposeItem": "17049&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 610, "atk": 0, @@ -10506,7 +10506,7 @@ "suitId": 0, "decomposeItem": "17049&2", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -10549,7 +10549,7 @@ "suitId": 0, "decomposeItem": "17049&6", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -10592,7 +10592,7 @@ "suitId": 0, "decomposeItem": "17049&18", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 610, "atk": 0, @@ -10635,7 +10635,7 @@ "suitId": 0, "decomposeItem": "17049&54", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 610, "atk": 0, @@ -10678,7 +10678,7 @@ "suitId": 0, "decomposeItem": "17049&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -10721,7 +10721,7 @@ "suitId": 0, "decomposeItem": "17049&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -10764,7 +10764,7 @@ "suitId": 0, "decomposeItem": "17049&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 610, "atk": 0, @@ -10807,7 +10807,7 @@ "suitId": 0, "decomposeItem": "17049&81", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 610, "atk": 0, @@ -10850,7 +10850,7 @@ "suitId": 0, "decomposeItem": "17049&4", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -10893,7 +10893,7 @@ "suitId": 0, "decomposeItem": "17049&12", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -10936,7 +10936,7 @@ "suitId": 0, "decomposeItem": "17049&36", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 610, "atk": 0, @@ -10979,7 +10979,7 @@ "suitId": 0, "decomposeItem": "17049&108", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 610, "atk": 0, @@ -11022,7 +11022,7 @@ "suitId": 0, "decomposeItem": "17049&5", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -11065,7 +11065,7 @@ "suitId": 0, "decomposeItem": "17049&15", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -11108,7 +11108,7 @@ "suitId": 0, "decomposeItem": "17049&45", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 610, "atk": 0, @@ -11151,7 +11151,7 @@ "suitId": 0, "decomposeItem": "17049&135", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 610, "atk": 0, @@ -11194,7 +11194,7 @@ "suitId": 0, "decomposeItem": "17049&8", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -11237,7 +11237,7 @@ "suitId": 0, "decomposeItem": "17049&24", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -11280,7 +11280,7 @@ "suitId": 0, "decomposeItem": "17049&72", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 610, "atk": 0, @@ -11323,7 +11323,7 @@ "suitId": 0, "decomposeItem": "17049&216", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 610, "atk": 0, @@ -11366,7 +11366,7 @@ "suitId": 1, "decomposeItem": "17049&81", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 610, "atk": 0, @@ -11409,7 +11409,7 @@ "suitId": 4, "decomposeItem": "17049&162", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 610, "atk": 0, @@ -11452,7 +11452,7 @@ "suitId": 7, "decomposeItem": "17049&243", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 610, "atk": 0, @@ -11495,7 +11495,7 @@ "suitId": 10, "decomposeItem": "17049&324", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 610, "atk": 0, @@ -11538,7 +11538,7 @@ "suitId": 13, "decomposeItem": "17049&405", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 610, "atk": 0, @@ -11581,7 +11581,7 @@ "suitId": 16, "decomposeItem": "17049&648", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 610, "atk": 0, @@ -11624,7 +11624,7 @@ "suitId": 0, "decomposeItem": "17049&1", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -11667,7 +11667,7 @@ "suitId": 0, "decomposeItem": "17049&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -11710,7 +11710,7 @@ "suitId": 0, "decomposeItem": "17049&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -11753,7 +11753,7 @@ "suitId": 0, "decomposeItem": "17049&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -11796,7 +11796,7 @@ "suitId": 0, "decomposeItem": "17049&2", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -11839,7 +11839,7 @@ "suitId": 0, "decomposeItem": "17049&6", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -11882,7 +11882,7 @@ "suitId": 0, "decomposeItem": "17049&18", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -11925,7 +11925,7 @@ "suitId": 0, "decomposeItem": "17049&54", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -11968,7 +11968,7 @@ "suitId": 0, "decomposeItem": "17049&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -12011,7 +12011,7 @@ "suitId": 0, "decomposeItem": "17049&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -12054,7 +12054,7 @@ "suitId": 0, "decomposeItem": "17049&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -12097,7 +12097,7 @@ "suitId": 0, "decomposeItem": "17049&81", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -12140,7 +12140,7 @@ "suitId": 0, "decomposeItem": "17049&4", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -12183,7 +12183,7 @@ "suitId": 0, "decomposeItem": "17049&12", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -12226,7 +12226,7 @@ "suitId": 0, "decomposeItem": "17049&36", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -12269,7 +12269,7 @@ "suitId": 0, "decomposeItem": "17049&108", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -12312,7 +12312,7 @@ "suitId": 0, "decomposeItem": "17049&5", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -12355,7 +12355,7 @@ "suitId": 0, "decomposeItem": "17049&15", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -12398,7 +12398,7 @@ "suitId": 0, "decomposeItem": "17049&45", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -12441,7 +12441,7 @@ "suitId": 0, "decomposeItem": "17049&135", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -12484,7 +12484,7 @@ "suitId": 0, "decomposeItem": "17049&8", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -12527,7 +12527,7 @@ "suitId": 0, "decomposeItem": "17049&24", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -12570,7 +12570,7 @@ "suitId": 0, "decomposeItem": "17049&72", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -12613,7 +12613,7 @@ "suitId": 0, "decomposeItem": "17049&216", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -12656,7 +12656,7 @@ "suitId": 2, "decomposeItem": "17049&81", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -12699,7 +12699,7 @@ "suitId": 5, "decomposeItem": "17049&162", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -12742,7 +12742,7 @@ "suitId": 8, "decomposeItem": "17049&243", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -12785,7 +12785,7 @@ "suitId": 11, "decomposeItem": "17049&324", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -12828,7 +12828,7 @@ "suitId": 14, "decomposeItem": "17049&405", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -12871,7 +12871,7 @@ "suitId": 17, "decomposeItem": "17049&648", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -12914,7 +12914,7 @@ "suitId": 0, "decomposeItem": "17049&1", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -12957,7 +12957,7 @@ "suitId": 0, "decomposeItem": "17049&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -13000,7 +13000,7 @@ "suitId": 0, "decomposeItem": "17049&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 597, "atk": 0, @@ -13043,7 +13043,7 @@ "suitId": 0, "decomposeItem": "17049&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 597, "atk": 0, @@ -13086,7 +13086,7 @@ "suitId": 0, "decomposeItem": "17049&2", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -13129,7 +13129,7 @@ "suitId": 0, "decomposeItem": "17049&6", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -13172,7 +13172,7 @@ "suitId": 0, "decomposeItem": "17049&18", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 597, "atk": 0, @@ -13215,7 +13215,7 @@ "suitId": 0, "decomposeItem": "17049&54", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 597, "atk": 0, @@ -13258,7 +13258,7 @@ "suitId": 0, "decomposeItem": "17049&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -13301,7 +13301,7 @@ "suitId": 0, "decomposeItem": "17049&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -13344,7 +13344,7 @@ "suitId": 0, "decomposeItem": "17049&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 597, "atk": 0, @@ -13387,7 +13387,7 @@ "suitId": 0, "decomposeItem": "17049&81", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 597, "atk": 0, @@ -13430,7 +13430,7 @@ "suitId": 0, "decomposeItem": "17049&4", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -13473,7 +13473,7 @@ "suitId": 0, "decomposeItem": "17049&12", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -13516,7 +13516,7 @@ "suitId": 0, "decomposeItem": "17049&36", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 597, "atk": 0, @@ -13559,7 +13559,7 @@ "suitId": 0, "decomposeItem": "17049&108", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 597, "atk": 0, @@ -13602,7 +13602,7 @@ "suitId": 0, "decomposeItem": "17049&5", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -13645,7 +13645,7 @@ "suitId": 0, "decomposeItem": "17049&15", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -13688,7 +13688,7 @@ "suitId": 0, "decomposeItem": "17049&45", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 597, "atk": 0, @@ -13731,7 +13731,7 @@ "suitId": 0, "decomposeItem": "17049&135", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 597, "atk": 0, @@ -13774,7 +13774,7 @@ "suitId": 0, "decomposeItem": "17049&8", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -13817,7 +13817,7 @@ "suitId": 0, "decomposeItem": "17049&24", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 28, "atk": 0, @@ -13860,7 +13860,7 @@ "suitId": 0, "decomposeItem": "17049&72", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 597, "atk": 0, @@ -13903,7 +13903,7 @@ "suitId": 0, "decomposeItem": "17049&216", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 597, "atk": 0, @@ -13946,7 +13946,7 @@ "suitId": 3, "decomposeItem": "17049&81", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 597, "atk": 0, @@ -13989,7 +13989,7 @@ "suitId": 6, "decomposeItem": "17049&162", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 597, "atk": 0, @@ -14032,7 +14032,7 @@ "suitId": 9, "decomposeItem": "17049&243", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 597, "atk": 0, @@ -14075,7 +14075,7 @@ "suitId": 12, "decomposeItem": "17049&324", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 597, "atk": 0, @@ -14118,7 +14118,7 @@ "suitId": 15, "decomposeItem": "17049&405", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 597, "atk": 0, @@ -14161,7 +14161,7 @@ "suitId": 18, "decomposeItem": "17049&648", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 597, "atk": 0, @@ -14204,7 +14204,7 @@ "suitId": 0, "decomposeItem": "17048&1", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -14247,7 +14247,7 @@ "suitId": 0, "decomposeItem": "17048&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -14290,7 +14290,7 @@ "suitId": 0, "decomposeItem": "17048&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -14333,7 +14333,7 @@ "suitId": 0, "decomposeItem": "17048&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -14376,7 +14376,7 @@ "suitId": 0, "decomposeItem": "17048&2", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -14419,7 +14419,7 @@ "suitId": 0, "decomposeItem": "17048&6", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -14462,7 +14462,7 @@ "suitId": 0, "decomposeItem": "17048&18", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -14505,7 +14505,7 @@ "suitId": 0, "decomposeItem": "17048&54", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -14548,7 +14548,7 @@ "suitId": 0, "decomposeItem": "17048&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -14591,7 +14591,7 @@ "suitId": 0, "decomposeItem": "17048&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -14634,7 +14634,7 @@ "suitId": 0, "decomposeItem": "17048&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -14677,7 +14677,7 @@ "suitId": 0, "decomposeItem": "17048&81", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -14720,7 +14720,7 @@ "suitId": 0, "decomposeItem": "17048&4", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -14763,7 +14763,7 @@ "suitId": 0, "decomposeItem": "17048&12", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -14806,7 +14806,7 @@ "suitId": 0, "decomposeItem": "17048&36", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -14849,7 +14849,7 @@ "suitId": 0, "decomposeItem": "17048&108", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -14892,7 +14892,7 @@ "suitId": 0, "decomposeItem": "17048&5", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -14935,7 +14935,7 @@ "suitId": 0, "decomposeItem": "17048&15", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -14978,7 +14978,7 @@ "suitId": 0, "decomposeItem": "17048&45", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -15021,7 +15021,7 @@ "suitId": 0, "decomposeItem": "17048&135", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -15064,7 +15064,7 @@ "suitId": 0, "decomposeItem": "17048&8", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -15107,7 +15107,7 @@ "suitId": 0, "decomposeItem": "17048&24", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -15150,7 +15150,7 @@ "suitId": 0, "decomposeItem": "17048&72", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -15193,7 +15193,7 @@ "suitId": 0, "decomposeItem": "17048&216", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -15236,7 +15236,7 @@ "suitId": 1, "decomposeItem": "17048&81", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -15279,7 +15279,7 @@ "suitId": 4, "decomposeItem": "17048&162", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -15322,7 +15322,7 @@ "suitId": 7, "decomposeItem": "17048&243", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -15365,7 +15365,7 @@ "suitId": 10, "decomposeItem": "17048&324", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -15408,7 +15408,7 @@ "suitId": 13, "decomposeItem": "17048&405", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -15451,7 +15451,7 @@ "suitId": 16, "decomposeItem": "17048&648", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -15494,7 +15494,7 @@ "suitId": 0, "decomposeItem": "17048&1", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -15537,7 +15537,7 @@ "suitId": 0, "decomposeItem": "17048&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -15580,7 +15580,7 @@ "suitId": 0, "decomposeItem": "17048&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 368, "atk": 300, @@ -15623,7 +15623,7 @@ "suitId": 0, "decomposeItem": "17048&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 368, "atk": 300, @@ -15666,7 +15666,7 @@ "suitId": 0, "decomposeItem": "17048&2", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -15709,7 +15709,7 @@ "suitId": 0, "decomposeItem": "17048&6", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -15752,7 +15752,7 @@ "suitId": 0, "decomposeItem": "17048&18", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 368, "atk": 300, @@ -15795,7 +15795,7 @@ "suitId": 0, "decomposeItem": "17048&54", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 368, "atk": 300, @@ -15838,7 +15838,7 @@ "suitId": 0, "decomposeItem": "17048&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -15881,7 +15881,7 @@ "suitId": 0, "decomposeItem": "17048&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -15924,7 +15924,7 @@ "suitId": 0, "decomposeItem": "17048&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 368, "atk": 300, @@ -15967,7 +15967,7 @@ "suitId": 0, "decomposeItem": "17048&81", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 368, "atk": 300, @@ -16010,7 +16010,7 @@ "suitId": 0, "decomposeItem": "17048&4", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -16053,7 +16053,7 @@ "suitId": 0, "decomposeItem": "17048&12", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -16096,7 +16096,7 @@ "suitId": 0, "decomposeItem": "17048&36", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 368, "atk": 300, @@ -16139,7 +16139,7 @@ "suitId": 0, "decomposeItem": "17048&108", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 368, "atk": 300, @@ -16182,7 +16182,7 @@ "suitId": 0, "decomposeItem": "17048&5", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -16225,7 +16225,7 @@ "suitId": 0, "decomposeItem": "17048&15", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -16268,7 +16268,7 @@ "suitId": 0, "decomposeItem": "17048&45", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 368, "atk": 300, @@ -16311,7 +16311,7 @@ "suitId": 0, "decomposeItem": "17048&135", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 368, "atk": 300, @@ -16354,7 +16354,7 @@ "suitId": 0, "decomposeItem": "17048&8", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -16397,7 +16397,7 @@ "suitId": 0, "decomposeItem": "17048&24", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 18, "atk": 14, @@ -16440,7 +16440,7 @@ "suitId": 0, "decomposeItem": "17048&72", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 368, "atk": 300, @@ -16483,7 +16483,7 @@ "suitId": 0, "decomposeItem": "17048&216", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 368, "atk": 300, @@ -16526,7 +16526,7 @@ "suitId": 2, "decomposeItem": "17048&81", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 368, "atk": 300, @@ -16569,7 +16569,7 @@ "suitId": 5, "decomposeItem": "17048&162", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 368, "atk": 300, @@ -16612,7 +16612,7 @@ "suitId": 8, "decomposeItem": "17048&243", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 368, "atk": 300, @@ -16655,7 +16655,7 @@ "suitId": 11, "decomposeItem": "17048&324", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 368, "atk": 300, @@ -16698,7 +16698,7 @@ "suitId": 14, "decomposeItem": "17048&405", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 368, "atk": 300, @@ -16741,7 +16741,7 @@ "suitId": 17, "decomposeItem": "17048&648", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 368, "atk": 300, @@ -16784,7 +16784,7 @@ "suitId": 0, "decomposeItem": "17048&1", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -16827,7 +16827,7 @@ "suitId": 0, "decomposeItem": "17048&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -16870,7 +16870,7 @@ "suitId": 0, "decomposeItem": "17048&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -16913,7 +16913,7 @@ "suitId": 0, "decomposeItem": "17048&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -16956,7 +16956,7 @@ "suitId": 0, "decomposeItem": "17048&2", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -16999,7 +16999,7 @@ "suitId": 0, "decomposeItem": "17048&6", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -17042,7 +17042,7 @@ "suitId": 0, "decomposeItem": "17048&18", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -17085,7 +17085,7 @@ "suitId": 0, "decomposeItem": "17048&54", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -17128,7 +17128,7 @@ "suitId": 0, "decomposeItem": "17048&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -17171,7 +17171,7 @@ "suitId": 0, "decomposeItem": "17048&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -17214,7 +17214,7 @@ "suitId": 0, "decomposeItem": "17048&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -17257,7 +17257,7 @@ "suitId": 0, "decomposeItem": "17048&81", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -17300,7 +17300,7 @@ "suitId": 0, "decomposeItem": "17048&4", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -17343,7 +17343,7 @@ "suitId": 0, "decomposeItem": "17048&12", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -17386,7 +17386,7 @@ "suitId": 0, "decomposeItem": "17048&36", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -17429,7 +17429,7 @@ "suitId": 0, "decomposeItem": "17048&108", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -17472,7 +17472,7 @@ "suitId": 0, "decomposeItem": "17048&5", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -17515,7 +17515,7 @@ "suitId": 0, "decomposeItem": "17048&15", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -17558,7 +17558,7 @@ "suitId": 0, "decomposeItem": "17048&45", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -17601,7 +17601,7 @@ "suitId": 0, "decomposeItem": "17048&135", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -17644,7 +17644,7 @@ "suitId": 0, "decomposeItem": "17048&8", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -17687,7 +17687,7 @@ "suitId": 0, "decomposeItem": "17048&24", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -17730,7 +17730,7 @@ "suitId": 0, "decomposeItem": "17048&72", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -17773,7 +17773,7 @@ "suitId": 0, "decomposeItem": "17048&216", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -17816,7 +17816,7 @@ "suitId": 3, "decomposeItem": "17048&81", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -17859,7 +17859,7 @@ "suitId": 6, "decomposeItem": "17048&162", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -17902,7 +17902,7 @@ "suitId": 9, "decomposeItem": "17048&243", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -17945,7 +17945,7 @@ "suitId": 12, "decomposeItem": "17048&324", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -17988,7 +17988,7 @@ "suitId": 15, "decomposeItem": "17048&405", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -18031,7 +18031,7 @@ "suitId": 18, "decomposeItem": "17048&648", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -18074,7 +18074,7 @@ "suitId": 0, "decomposeItem": "17052&1", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -18117,7 +18117,7 @@ "suitId": 0, "decomposeItem": "17052&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -18160,7 +18160,7 @@ "suitId": 0, "decomposeItem": "17052&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 276, "atk": 0, @@ -18203,7 +18203,7 @@ "suitId": 0, "decomposeItem": "17052&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 276, "atk": 0, @@ -18246,7 +18246,7 @@ "suitId": 0, "decomposeItem": "17052&2", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -18289,7 +18289,7 @@ "suitId": 0, "decomposeItem": "17052&6", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -18332,7 +18332,7 @@ "suitId": 0, "decomposeItem": "17052&18", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 276, "atk": 0, @@ -18375,7 +18375,7 @@ "suitId": 0, "decomposeItem": "17052&54", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 276, "atk": 0, @@ -18418,7 +18418,7 @@ "suitId": 0, "decomposeItem": "17052&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -18461,7 +18461,7 @@ "suitId": 0, "decomposeItem": "17052&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -18504,7 +18504,7 @@ "suitId": 0, "decomposeItem": "17052&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 276, "atk": 0, @@ -18547,7 +18547,7 @@ "suitId": 0, "decomposeItem": "17052&81", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 276, "atk": 0, @@ -18590,7 +18590,7 @@ "suitId": 0, "decomposeItem": "17052&4", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -18633,7 +18633,7 @@ "suitId": 0, "decomposeItem": "17052&12", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -18676,7 +18676,7 @@ "suitId": 0, "decomposeItem": "17052&36", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 276, "atk": 0, @@ -18719,7 +18719,7 @@ "suitId": 0, "decomposeItem": "17052&108", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 276, "atk": 0, @@ -18762,7 +18762,7 @@ "suitId": 0, "decomposeItem": "17052&5", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -18805,7 +18805,7 @@ "suitId": 0, "decomposeItem": "17052&15", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -18848,7 +18848,7 @@ "suitId": 0, "decomposeItem": "17052&45", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 276, "atk": 0, @@ -18891,7 +18891,7 @@ "suitId": 0, "decomposeItem": "17052&135", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 276, "atk": 0, @@ -18934,7 +18934,7 @@ "suitId": 0, "decomposeItem": "17052&8", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -18977,7 +18977,7 @@ "suitId": 0, "decomposeItem": "17052&24", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -19020,7 +19020,7 @@ "suitId": 0, "decomposeItem": "17052&72", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 276, "atk": 0, @@ -19063,7 +19063,7 @@ "suitId": 0, "decomposeItem": "17052&216", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 276, "atk": 0, @@ -19106,7 +19106,7 @@ "suitId": 1, "decomposeItem": "17052&81", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 276, "atk": 0, @@ -19149,7 +19149,7 @@ "suitId": 4, "decomposeItem": "17052&162", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 276, "atk": 0, @@ -19192,7 +19192,7 @@ "suitId": 7, "decomposeItem": "17052&243", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 276, "atk": 0, @@ -19235,7 +19235,7 @@ "suitId": 10, "decomposeItem": "17052&324", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 276, "atk": 0, @@ -19278,7 +19278,7 @@ "suitId": 13, "decomposeItem": "17052&405", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 276, "atk": 0, @@ -19321,7 +19321,7 @@ "suitId": 16, "decomposeItem": "17052&648", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 276, "atk": 0, @@ -19364,7 +19364,7 @@ "suitId": 0, "decomposeItem": "17052&1", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -19407,7 +19407,7 @@ "suitId": 0, "decomposeItem": "17052&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -19450,7 +19450,7 @@ "suitId": 0, "decomposeItem": "17052&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -19493,7 +19493,7 @@ "suitId": 0, "decomposeItem": "17052&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -19536,7 +19536,7 @@ "suitId": 0, "decomposeItem": "17052&2", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -19579,7 +19579,7 @@ "suitId": 0, "decomposeItem": "17052&6", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -19622,7 +19622,7 @@ "suitId": 0, "decomposeItem": "17052&18", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -19665,7 +19665,7 @@ "suitId": 0, "decomposeItem": "17052&54", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -19708,7 +19708,7 @@ "suitId": 0, "decomposeItem": "17052&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -19751,7 +19751,7 @@ "suitId": 0, "decomposeItem": "17052&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -19794,7 +19794,7 @@ "suitId": 0, "decomposeItem": "17052&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -19837,7 +19837,7 @@ "suitId": 0, "decomposeItem": "17052&81", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -19880,7 +19880,7 @@ "suitId": 0, "decomposeItem": "17052&4", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -19923,7 +19923,7 @@ "suitId": 0, "decomposeItem": "17052&12", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -19966,7 +19966,7 @@ "suitId": 0, "decomposeItem": "17052&36", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -20009,7 +20009,7 @@ "suitId": 0, "decomposeItem": "17052&108", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -20052,7 +20052,7 @@ "suitId": 0, "decomposeItem": "17052&5", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -20095,7 +20095,7 @@ "suitId": 0, "decomposeItem": "17052&15", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -20138,7 +20138,7 @@ "suitId": 0, "decomposeItem": "17052&45", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -20181,7 +20181,7 @@ "suitId": 0, "decomposeItem": "17052&135", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -20224,7 +20224,7 @@ "suitId": 0, "decomposeItem": "17052&8", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -20267,7 +20267,7 @@ "suitId": 0, "decomposeItem": "17052&24", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -20310,7 +20310,7 @@ "suitId": 0, "decomposeItem": "17052&72", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -20353,7 +20353,7 @@ "suitId": 0, "decomposeItem": "17052&216", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -20396,7 +20396,7 @@ "suitId": 2, "decomposeItem": "17052&81", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -20439,7 +20439,7 @@ "suitId": 5, "decomposeItem": "17052&162", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -20482,7 +20482,7 @@ "suitId": 8, "decomposeItem": "17052&243", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -20525,7 +20525,7 @@ "suitId": 11, "decomposeItem": "17052&324", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -20568,7 +20568,7 @@ "suitId": 14, "decomposeItem": "17052&405", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -20611,7 +20611,7 @@ "suitId": 17, "decomposeItem": "17052&648", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -20654,7 +20654,7 @@ "suitId": 0, "decomposeItem": "17052&1", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -20697,7 +20697,7 @@ "suitId": 0, "decomposeItem": "17052&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -20740,7 +20740,7 @@ "suitId": 0, "decomposeItem": "17052&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 294, "atk": 0, @@ -20783,7 +20783,7 @@ "suitId": 0, "decomposeItem": "17052&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 294, "atk": 0, @@ -20826,7 +20826,7 @@ "suitId": 0, "decomposeItem": "17052&2", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -20869,7 +20869,7 @@ "suitId": 0, "decomposeItem": "17052&6", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -20912,7 +20912,7 @@ "suitId": 0, "decomposeItem": "17052&18", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 294, "atk": 0, @@ -20955,7 +20955,7 @@ "suitId": 0, "decomposeItem": "17052&54", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 294, "atk": 0, @@ -20998,7 +20998,7 @@ "suitId": 0, "decomposeItem": "17052&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -21041,7 +21041,7 @@ "suitId": 0, "decomposeItem": "17052&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -21084,7 +21084,7 @@ "suitId": 0, "decomposeItem": "17052&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 294, "atk": 0, @@ -21127,7 +21127,7 @@ "suitId": 0, "decomposeItem": "17052&81", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 294, "atk": 0, @@ -21170,7 +21170,7 @@ "suitId": 0, "decomposeItem": "17052&4", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -21213,7 +21213,7 @@ "suitId": 0, "decomposeItem": "17052&12", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -21256,7 +21256,7 @@ "suitId": 0, "decomposeItem": "17052&36", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 294, "atk": 0, @@ -21299,7 +21299,7 @@ "suitId": 0, "decomposeItem": "17052&108", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 294, "atk": 0, @@ -21342,7 +21342,7 @@ "suitId": 0, "decomposeItem": "17052&5", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -21385,7 +21385,7 @@ "suitId": 0, "decomposeItem": "17052&15", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -21428,7 +21428,7 @@ "suitId": 0, "decomposeItem": "17052&45", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 294, "atk": 0, @@ -21471,7 +21471,7 @@ "suitId": 0, "decomposeItem": "17052&135", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 294, "atk": 0, @@ -21514,7 +21514,7 @@ "suitId": 0, "decomposeItem": "17052&8", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -21557,7 +21557,7 @@ "suitId": 0, "decomposeItem": "17052&24", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 14, "atk": 0, @@ -21600,7 +21600,7 @@ "suitId": 0, "decomposeItem": "17052&72", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 294, "atk": 0, @@ -21643,7 +21643,7 @@ "suitId": 0, "decomposeItem": "17052&216", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 294, "atk": 0, @@ -21686,7 +21686,7 @@ "suitId": 3, "decomposeItem": "17052&81", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 294, "atk": 0, @@ -21729,7 +21729,7 @@ "suitId": 6, "decomposeItem": "17052&162", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 294, "atk": 0, @@ -21772,7 +21772,7 @@ "suitId": 9, "decomposeItem": "17052&243", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 294, "atk": 0, @@ -21815,7 +21815,7 @@ "suitId": 12, "decomposeItem": "17052&324", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 294, "atk": 0, @@ -21858,7 +21858,7 @@ "suitId": 15, "decomposeItem": "17052&405", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 294, "atk": 0, @@ -21901,7 +21901,7 @@ "suitId": 18, "decomposeItem": "17052&648", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 294, "atk": 0, @@ -21944,7 +21944,7 @@ "suitId": 0, "decomposeItem": "17050&1", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -21987,7 +21987,7 @@ "suitId": 0, "decomposeItem": "17050&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -22030,7 +22030,7 @@ "suitId": 0, "decomposeItem": "17050&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -22073,7 +22073,7 @@ "suitId": 0, "decomposeItem": "17050&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -22116,7 +22116,7 @@ "suitId": 0, "decomposeItem": "17050&2", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -22159,7 +22159,7 @@ "suitId": 0, "decomposeItem": "17050&6", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -22202,7 +22202,7 @@ "suitId": 0, "decomposeItem": "17050&18", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -22245,7 +22245,7 @@ "suitId": 0, "decomposeItem": "17050&54", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -22288,7 +22288,7 @@ "suitId": 0, "decomposeItem": "17050&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -22331,7 +22331,7 @@ "suitId": 0, "decomposeItem": "17050&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -22374,7 +22374,7 @@ "suitId": 0, "decomposeItem": "17050&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -22417,7 +22417,7 @@ "suitId": 0, "decomposeItem": "17050&81", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -22460,7 +22460,7 @@ "suitId": 0, "decomposeItem": "17050&4", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -22503,7 +22503,7 @@ "suitId": 0, "decomposeItem": "17050&12", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -22546,7 +22546,7 @@ "suitId": 0, "decomposeItem": "17050&36", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -22589,7 +22589,7 @@ "suitId": 0, "decomposeItem": "17050&108", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -22632,7 +22632,7 @@ "suitId": 0, "decomposeItem": "17050&5", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -22675,7 +22675,7 @@ "suitId": 0, "decomposeItem": "17050&15", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -22718,7 +22718,7 @@ "suitId": 0, "decomposeItem": "17050&45", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -22761,7 +22761,7 @@ "suitId": 0, "decomposeItem": "17050&135", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -22804,7 +22804,7 @@ "suitId": 0, "decomposeItem": "17050&8", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -22847,7 +22847,7 @@ "suitId": 0, "decomposeItem": "17050&24", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -22890,7 +22890,7 @@ "suitId": 0, "decomposeItem": "17050&72", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -22933,7 +22933,7 @@ "suitId": 0, "decomposeItem": "17050&216", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -22976,7 +22976,7 @@ "suitId": 1, "decomposeItem": "17050&81", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -23019,7 +23019,7 @@ "suitId": 4, "decomposeItem": "17050&162", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -23062,7 +23062,7 @@ "suitId": 7, "decomposeItem": "17050&243", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -23105,7 +23105,7 @@ "suitId": 10, "decomposeItem": "17050&324", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -23148,7 +23148,7 @@ "suitId": 13, "decomposeItem": "17050&405", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -23191,7 +23191,7 @@ "suitId": 16, "decomposeItem": "17050&648", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -23234,7 +23234,7 @@ "suitId": 0, "decomposeItem": "17050&1", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -23277,7 +23277,7 @@ "suitId": 0, "decomposeItem": "17050&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -23320,7 +23320,7 @@ "suitId": 0, "decomposeItem": "17050&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 265, "atk": 0, @@ -23363,7 +23363,7 @@ "suitId": 0, "decomposeItem": "17050&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 265, "atk": 0, @@ -23406,7 +23406,7 @@ "suitId": 0, "decomposeItem": "17050&2", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -23449,7 +23449,7 @@ "suitId": 0, "decomposeItem": "17050&6", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -23492,7 +23492,7 @@ "suitId": 0, "decomposeItem": "17050&18", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 265, "atk": 0, @@ -23535,7 +23535,7 @@ "suitId": 0, "decomposeItem": "17050&54", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 265, "atk": 0, @@ -23578,7 +23578,7 @@ "suitId": 0, "decomposeItem": "17050&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -23621,7 +23621,7 @@ "suitId": 0, "decomposeItem": "17050&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -23664,7 +23664,7 @@ "suitId": 0, "decomposeItem": "17050&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 265, "atk": 0, @@ -23707,7 +23707,7 @@ "suitId": 0, "decomposeItem": "17050&81", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 265, "atk": 0, @@ -23750,7 +23750,7 @@ "suitId": 0, "decomposeItem": "17050&4", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -23793,7 +23793,7 @@ "suitId": 0, "decomposeItem": "17050&12", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -23836,7 +23836,7 @@ "suitId": 0, "decomposeItem": "17050&36", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 265, "atk": 0, @@ -23879,7 +23879,7 @@ "suitId": 0, "decomposeItem": "17050&108", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 265, "atk": 0, @@ -23922,7 +23922,7 @@ "suitId": 0, "decomposeItem": "17050&5", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -23965,7 +23965,7 @@ "suitId": 0, "decomposeItem": "17050&15", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -24008,7 +24008,7 @@ "suitId": 0, "decomposeItem": "17050&45", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 265, "atk": 0, @@ -24051,7 +24051,7 @@ "suitId": 0, "decomposeItem": "17050&135", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 265, "atk": 0, @@ -24094,7 +24094,7 @@ "suitId": 0, "decomposeItem": "17050&8", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -24137,7 +24137,7 @@ "suitId": 0, "decomposeItem": "17050&24", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 13, "atk": 0, @@ -24180,7 +24180,7 @@ "suitId": 0, "decomposeItem": "17050&72", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 265, "atk": 0, @@ -24223,7 +24223,7 @@ "suitId": 0, "decomposeItem": "17050&216", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 265, "atk": 0, @@ -24266,7 +24266,7 @@ "suitId": 2, "decomposeItem": "17050&81", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 265, "atk": 0, @@ -24309,7 +24309,7 @@ "suitId": 5, "decomposeItem": "17050&162", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 265, "atk": 0, @@ -24352,7 +24352,7 @@ "suitId": 8, "decomposeItem": "17050&243", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 265, "atk": 0, @@ -24395,7 +24395,7 @@ "suitId": 11, "decomposeItem": "17050&324", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 265, "atk": 0, @@ -24438,7 +24438,7 @@ "suitId": 14, "decomposeItem": "17050&405", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 265, "atk": 0, @@ -24481,7 +24481,7 @@ "suitId": 17, "decomposeItem": "17050&648", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 265, "atk": 0, @@ -24524,7 +24524,7 @@ "suitId": 0, "decomposeItem": "17050&1", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -24567,7 +24567,7 @@ "suitId": 0, "decomposeItem": "17050&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -24610,7 +24610,7 @@ "suitId": 0, "decomposeItem": "17050&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -24653,7 +24653,7 @@ "suitId": 0, "decomposeItem": "17050&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -24696,7 +24696,7 @@ "suitId": 0, "decomposeItem": "17050&2", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -24739,7 +24739,7 @@ "suitId": 0, "decomposeItem": "17050&6", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -24782,7 +24782,7 @@ "suitId": 0, "decomposeItem": "17050&18", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -24825,7 +24825,7 @@ "suitId": 0, "decomposeItem": "17050&54", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -24868,7 +24868,7 @@ "suitId": 0, "decomposeItem": "17050&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -24911,7 +24911,7 @@ "suitId": 0, "decomposeItem": "17050&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -24954,7 +24954,7 @@ "suitId": 0, "decomposeItem": "17050&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -24997,7 +24997,7 @@ "suitId": 0, "decomposeItem": "17050&81", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -25040,7 +25040,7 @@ "suitId": 0, "decomposeItem": "17050&4", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -25083,7 +25083,7 @@ "suitId": 0, "decomposeItem": "17050&12", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -25126,7 +25126,7 @@ "suitId": 0, "decomposeItem": "17050&36", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -25169,7 +25169,7 @@ "suitId": 0, "decomposeItem": "17050&108", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -25212,7 +25212,7 @@ "suitId": 0, "decomposeItem": "17050&5", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -25255,7 +25255,7 @@ "suitId": 0, "decomposeItem": "17050&15", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -25298,7 +25298,7 @@ "suitId": 0, "decomposeItem": "17050&45", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -25341,7 +25341,7 @@ "suitId": 0, "decomposeItem": "17050&135", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -25384,7 +25384,7 @@ "suitId": 0, "decomposeItem": "17050&8", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -25427,7 +25427,7 @@ "suitId": 0, "decomposeItem": "17050&24", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -25470,7 +25470,7 @@ "suitId": 0, "decomposeItem": "17050&72", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -25513,7 +25513,7 @@ "suitId": 0, "decomposeItem": "17050&216", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -25556,7 +25556,7 @@ "suitId": 3, "decomposeItem": "17050&81", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -25599,7 +25599,7 @@ "suitId": 6, "decomposeItem": "17050&162", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -25642,7 +25642,7 @@ "suitId": 9, "decomposeItem": "17050&243", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -25685,7 +25685,7 @@ "suitId": 12, "decomposeItem": "17050&324", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -25728,7 +25728,7 @@ "suitId": 15, "decomposeItem": "17050&405", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -25771,7 +25771,7 @@ "suitId": 18, "decomposeItem": "17050&648", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 29, "atk": 0, @@ -25814,7 +25814,7 @@ "suitId": 0, "decomposeItem": "17051&1", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -25857,7 +25857,7 @@ "suitId": 0, "decomposeItem": "17051&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -25900,7 +25900,7 @@ "suitId": 0, "decomposeItem": "17051&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -25943,7 +25943,7 @@ "suitId": 0, "decomposeItem": "17051&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -25986,7 +25986,7 @@ "suitId": 0, "decomposeItem": "17051&2", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -26029,7 +26029,7 @@ "suitId": 0, "decomposeItem": "17051&6", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -26072,7 +26072,7 @@ "suitId": 0, "decomposeItem": "17051&18", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -26115,7 +26115,7 @@ "suitId": 0, "decomposeItem": "17051&54", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -26158,7 +26158,7 @@ "suitId": 0, "decomposeItem": "17051&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -26201,7 +26201,7 @@ "suitId": 0, "decomposeItem": "17051&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -26244,7 +26244,7 @@ "suitId": 0, "decomposeItem": "17051&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -26287,7 +26287,7 @@ "suitId": 0, "decomposeItem": "17051&81", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -26330,7 +26330,7 @@ "suitId": 0, "decomposeItem": "17051&4", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -26373,7 +26373,7 @@ "suitId": 0, "decomposeItem": "17051&12", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -26416,7 +26416,7 @@ "suitId": 0, "decomposeItem": "17051&36", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -26459,7 +26459,7 @@ "suitId": 0, "decomposeItem": "17051&108", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -26502,7 +26502,7 @@ "suitId": 0, "decomposeItem": "17051&5", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -26545,7 +26545,7 @@ "suitId": 0, "decomposeItem": "17051&15", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -26588,7 +26588,7 @@ "suitId": 0, "decomposeItem": "17051&45", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -26631,7 +26631,7 @@ "suitId": 0, "decomposeItem": "17051&135", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -26674,7 +26674,7 @@ "suitId": 0, "decomposeItem": "17051&8", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -26717,7 +26717,7 @@ "suitId": 0, "decomposeItem": "17051&24", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -26760,7 +26760,7 @@ "suitId": 0, "decomposeItem": "17051&72", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -26803,7 +26803,7 @@ "suitId": 0, "decomposeItem": "17051&216", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -26846,7 +26846,7 @@ "suitId": 1, "decomposeItem": "17051&81", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -26889,7 +26889,7 @@ "suitId": 4, "decomposeItem": "17051&162", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -26932,7 +26932,7 @@ "suitId": 7, "decomposeItem": "17051&243", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -26975,7 +26975,7 @@ "suitId": 10, "decomposeItem": "17051&324", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -27018,7 +27018,7 @@ "suitId": 13, "decomposeItem": "17051&405", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -27061,7 +27061,7 @@ "suitId": 16, "decomposeItem": "17051&648", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -27104,7 +27104,7 @@ "suitId": 0, "decomposeItem": "17051&1", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -27147,7 +27147,7 @@ "suitId": 0, "decomposeItem": "17051&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -27190,7 +27190,7 @@ "suitId": 0, "decomposeItem": "17051&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -27233,7 +27233,7 @@ "suitId": 0, "decomposeItem": "17051&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -27276,7 +27276,7 @@ "suitId": 0, "decomposeItem": "17051&2", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -27319,7 +27319,7 @@ "suitId": 0, "decomposeItem": "17051&6", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -27362,7 +27362,7 @@ "suitId": 0, "decomposeItem": "17051&18", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -27405,7 +27405,7 @@ "suitId": 0, "decomposeItem": "17051&54", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -27448,7 +27448,7 @@ "suitId": 0, "decomposeItem": "17051&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -27491,7 +27491,7 @@ "suitId": 0, "decomposeItem": "17051&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -27534,7 +27534,7 @@ "suitId": 0, "decomposeItem": "17051&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -27577,7 +27577,7 @@ "suitId": 0, "decomposeItem": "17051&81", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -27620,7 +27620,7 @@ "suitId": 0, "decomposeItem": "17051&4", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -27663,7 +27663,7 @@ "suitId": 0, "decomposeItem": "17051&12", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -27706,7 +27706,7 @@ "suitId": 0, "decomposeItem": "17051&36", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -27749,7 +27749,7 @@ "suitId": 0, "decomposeItem": "17051&108", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -27792,7 +27792,7 @@ "suitId": 0, "decomposeItem": "17051&5", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -27835,7 +27835,7 @@ "suitId": 0, "decomposeItem": "17051&15", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -27878,7 +27878,7 @@ "suitId": 0, "decomposeItem": "17051&45", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -27921,7 +27921,7 @@ "suitId": 0, "decomposeItem": "17051&135", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -27964,7 +27964,7 @@ "suitId": 0, "decomposeItem": "17051&8", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -28007,7 +28007,7 @@ "suitId": 0, "decomposeItem": "17051&24", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -28050,7 +28050,7 @@ "suitId": 0, "decomposeItem": "17051&72", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -28093,7 +28093,7 @@ "suitId": 0, "decomposeItem": "17051&216", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -28136,7 +28136,7 @@ "suitId": 2, "decomposeItem": "17051&81", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -28179,7 +28179,7 @@ "suitId": 5, "decomposeItem": "17051&162", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -28222,7 +28222,7 @@ "suitId": 8, "decomposeItem": "17051&243", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -28265,7 +28265,7 @@ "suitId": 11, "decomposeItem": "17051&324", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -28308,7 +28308,7 @@ "suitId": 14, "decomposeItem": "17051&405", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -28351,7 +28351,7 @@ "suitId": 17, "decomposeItem": "17051&648", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -28394,7 +28394,7 @@ "suitId": 0, "decomposeItem": "17051&1", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -28437,7 +28437,7 @@ "suitId": 0, "decomposeItem": "17051&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -28480,7 +28480,7 @@ "suitId": 0, "decomposeItem": "17051&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -28523,7 +28523,7 @@ "suitId": 0, "decomposeItem": "17051&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -28566,7 +28566,7 @@ "suitId": 0, "decomposeItem": "17051&2", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -28609,7 +28609,7 @@ "suitId": 0, "decomposeItem": "17051&6", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -28652,7 +28652,7 @@ "suitId": 0, "decomposeItem": "17051&18", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -28695,7 +28695,7 @@ "suitId": 0, "decomposeItem": "17051&54", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -28738,7 +28738,7 @@ "suitId": 0, "decomposeItem": "17051&3", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -28781,7 +28781,7 @@ "suitId": 0, "decomposeItem": "17051&9", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -28824,7 +28824,7 @@ "suitId": 0, "decomposeItem": "17051&27", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -28867,7 +28867,7 @@ "suitId": 0, "decomposeItem": "17051&81", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -28910,7 +28910,7 @@ "suitId": 0, "decomposeItem": "17051&4", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -28953,7 +28953,7 @@ "suitId": 0, "decomposeItem": "17051&12", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -28996,7 +28996,7 @@ "suitId": 0, "decomposeItem": "17051&36", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -29039,7 +29039,7 @@ "suitId": 0, "decomposeItem": "17051&108", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -29082,7 +29082,7 @@ "suitId": 0, "decomposeItem": "17051&5", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -29125,7 +29125,7 @@ "suitId": 0, "decomposeItem": "17051&15", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -29168,7 +29168,7 @@ "suitId": 0, "decomposeItem": "17051&45", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -29211,7 +29211,7 @@ "suitId": 0, "decomposeItem": "17051&135", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -29254,7 +29254,7 @@ "suitId": 0, "decomposeItem": "17051&8", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -29297,7 +29297,7 @@ "suitId": 0, "decomposeItem": "17051&24", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -29340,7 +29340,7 @@ "suitId": 0, "decomposeItem": "17051&72", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -29383,7 +29383,7 @@ "suitId": 0, "decomposeItem": "17051&216", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -29426,7 +29426,7 @@ "suitId": 3, "decomposeItem": "17051&81", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -29469,7 +29469,7 @@ "suitId": 6, "decomposeItem": "17051&162", "hole": 1, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -29512,7 +29512,7 @@ "suitId": 9, "decomposeItem": "17051&243", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -29555,7 +29555,7 @@ "suitId": 12, "decomposeItem": "17051&324", "hole": 2, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -29598,7 +29598,7 @@ "suitId": 15, "decomposeItem": "17051&405", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -29641,7 +29641,7 @@ "suitId": 18, "decomposeItem": "17051&648", "hole": 3, - "randomEffect": "27&28&29&30&31&32&33&34&35&36&37&38&39&40", + "randomEffect": "&", "hid": 0, "hp": 25, "atk": 0, @@ -96749,49 +96749,6 @@ "gift": 0, "info": "郭嘉头像的介绍" }, - { - "good_id": 11206, - "name": "司马懿头像", - "lvLimited": 1, - "quality": 1, - "image_id": 41007, - "itid": 50, - "goodType": 9, - "pieces": 0, - "pieceId": 0, - "composeMaterial": "&", - "specialMaterial": "&", - "suitId": 0, - "decomposeItem": "&", - "hole": 0, - "randomEffect": "&", - "hid": 0, - "hp": 0, - "atk": 0, - "matk": 0, - "def": 0, - "mdef": 0, - "agi": 0, - "luk": 0, - "hp_up": 0, - "atk_up": 0, - "matk_up": 0, - "def_up": 0, - "mdef_up": 0, - "agi_up": 0, - "luk_up": 0, - "damageIncrease": 0, - "damageDecrease": 0, - "specialAttr": "&", - "suitId_1": 0, - "getWays": "1&0", - "useWays": 0, - "value": 0, - "condition": "1&6", - "timelimit": 0, - "gift": 0, - "info": "司马懿头像的介绍" - }, { "good_id": 11207, "name": "典韦头像", @@ -96878,49 +96835,6 @@ "gift": 0, "info": "庞德头像的介绍" }, - { - "good_id": 11209, - "name": "邓艾头像", - "lvLimited": 1, - "quality": 1, - "image_id": 41010, - "itid": 50, - "goodType": 9, - "pieces": 0, - "pieceId": 0, - "composeMaterial": "&", - "specialMaterial": "&", - "suitId": 0, - "decomposeItem": "&", - "hole": 0, - "randomEffect": "&", - "hid": 0, - "hp": 0, - "atk": 0, - "matk": 0, - "def": 0, - "mdef": 0, - "agi": 0, - "luk": 0, - "hp_up": 0, - "atk_up": 0, - "matk_up": 0, - "def_up": 0, - "mdef_up": 0, - "agi_up": 0, - "luk_up": 0, - "damageIncrease": 0, - "damageDecrease": 0, - "specialAttr": "&", - "suitId_1": 0, - "getWays": "1&0", - "useWays": 0, - "value": 0, - "condition": "1&9", - "timelimit": 0, - "gift": 0, - "info": "邓艾头像的介绍" - }, { "good_id": 11210, "name": "徐晃头像", @@ -97136,49 +97050,6 @@ "gift": 0, "info": "贾诩头像的介绍" }, - { - "good_id": 11215, - "name": "许褚头像", - "lvLimited": 1, - "quality": 1, - "image_id": 41016, - "itid": 50, - "goodType": 9, - "pieces": 0, - "pieceId": 0, - "composeMaterial": "&", - "specialMaterial": "&", - "suitId": 0, - "decomposeItem": "&", - "hole": 0, - "randomEffect": "&", - "hid": 0, - "hp": 0, - "atk": 0, - "matk": 0, - "def": 0, - "mdef": 0, - "agi": 0, - "luk": 0, - "hp_up": 0, - "atk_up": 0, - "matk_up": 0, - "def_up": 0, - "mdef_up": 0, - "agi_up": 0, - "luk_up": 0, - "damageIncrease": 0, - "damageDecrease": 0, - "specialAttr": "&", - "suitId_1": 0, - "getWays": "1&0", - "useWays": 0, - "value": 0, - "condition": "1&15", - "timelimit": 0, - "gift": 0, - "info": "许褚头像的介绍" - }, { "good_id": 11216, "name": "乐进头像", @@ -97480,49 +97351,6 @@ "gift": 0, "info": "诸葛亮头像的介绍" }, - { - "good_id": 11223, - "name": "庞统头像", - "lvLimited": 1, - "quality": 1, - "image_id": 41024, - "itid": 50, - "goodType": 9, - "pieces": 0, - "pieceId": 0, - "composeMaterial": "&", - "specialMaterial": "&", - "suitId": 0, - "decomposeItem": "&", - "hole": 0, - "randomEffect": "&", - "hid": 0, - "hp": 0, - "atk": 0, - "matk": 0, - "def": 0, - "mdef": 0, - "agi": 0, - "luk": 0, - "hp_up": 0, - "atk_up": 0, - "matk_up": 0, - "def_up": 0, - "mdef_up": 0, - "agi_up": 0, - "luk_up": 0, - "damageIncrease": 0, - "damageDecrease": 0, - "specialAttr": "&", - "suitId_1": 0, - "getWays": "1&0", - "useWays": 0, - "value": 0, - "condition": "1&23", - "timelimit": 0, - "gift": 0, - "info": "庞统头像的介绍" - }, { "good_id": 11224, "name": "魏延头像", @@ -97738,49 +97566,6 @@ "gift": 0, "info": "马良头像的介绍" }, - { - "good_id": 11229, - "name": "黄月英头像", - "lvLimited": 1, - "quality": 1, - "image_id": 41030, - "itid": 50, - "goodType": 9, - "pieces": 0, - "pieceId": 0, - "composeMaterial": "&", - "specialMaterial": "&", - "suitId": 0, - "decomposeItem": "&", - "hole": 0, - "randomEffect": "&", - "hid": 0, - "hp": 0, - "atk": 0, - "matk": 0, - "def": 0, - "mdef": 0, - "agi": 0, - "luk": 0, - "hp_up": 0, - "atk_up": 0, - "matk_up": 0, - "def_up": 0, - "mdef_up": 0, - "agi_up": 0, - "luk_up": 0, - "damageIncrease": 0, - "damageDecrease": 0, - "specialAttr": "&", - "suitId_1": 0, - "getWays": "1&0", - "useWays": 0, - "value": 0, - "condition": "1&29", - "timelimit": 0, - "gift": 0, - "info": "黄月英头像的介绍" - }, { "good_id": 11230, "name": "王平头像", @@ -98168,49 +97953,6 @@ "gift": 0, "info": "孙尚香头像的介绍" }, - { - "good_id": 11239, - "name": "陆逊头像", - "lvLimited": 1, - "quality": 1, - "image_id": 41040, - "itid": 50, - "goodType": 9, - "pieces": 0, - "pieceId": 0, - "composeMaterial": "&", - "specialMaterial": "&", - "suitId": 0, - "decomposeItem": "&", - "hole": 0, - "randomEffect": "&", - "hid": 0, - "hp": 0, - "atk": 0, - "matk": 0, - "def": 0, - "mdef": 0, - "agi": 0, - "luk": 0, - "hp_up": 0, - "atk_up": 0, - "matk_up": 0, - "def_up": 0, - "mdef_up": 0, - "agi_up": 0, - "luk_up": 0, - "damageIncrease": 0, - "damageDecrease": 0, - "specialAttr": "&", - "suitId_1": 0, - "getWays": "1&0", - "useWays": 0, - "value": 0, - "condition": "1&39", - "timelimit": 0, - "gift": 0, - "info": "陆逊头像的介绍" - }, { "good_id": 11240, "name": "小乔头像", @@ -98297,92 +98039,6 @@ "gift": 0, "info": "大乔头像的介绍" }, - { - "good_id": 11242, - "name": "步练师头像", - "lvLimited": 1, - "quality": 1, - "image_id": 41043, - "itid": 50, - "goodType": 9, - "pieces": 0, - "pieceId": 0, - "composeMaterial": "&", - "specialMaterial": "&", - "suitId": 0, - "decomposeItem": "&", - "hole": 0, - "randomEffect": "&", - "hid": 0, - "hp": 0, - "atk": 0, - "matk": 0, - "def": 0, - "mdef": 0, - "agi": 0, - "luk": 0, - "hp_up": 0, - "atk_up": 0, - "matk_up": 0, - "def_up": 0, - "mdef_up": 0, - "agi_up": 0, - "luk_up": 0, - "damageIncrease": 0, - "damageDecrease": 0, - "specialAttr": "&", - "suitId_1": 0, - "getWays": "1&0", - "useWays": 0, - "value": 0, - "condition": "1&42", - "timelimit": 0, - "gift": 0, - "info": "步练师头像的介绍" - }, - { - "good_id": 11243, - "name": "左慈头像", - "lvLimited": 1, - "quality": 1, - "image_id": 41044, - "itid": 50, - "goodType": 9, - "pieces": 0, - "pieceId": 0, - "composeMaterial": "&", - "specialMaterial": "&", - "suitId": 0, - "decomposeItem": "&", - "hole": 0, - "randomEffect": "&", - "hid": 0, - "hp": 0, - "atk": 0, - "matk": 0, - "def": 0, - "mdef": 0, - "agi": 0, - "luk": 0, - "hp_up": 0, - "atk_up": 0, - "matk_up": 0, - "def_up": 0, - "mdef_up": 0, - "agi_up": 0, - "luk_up": 0, - "damageIncrease": 0, - "damageDecrease": 0, - "specialAttr": "&", - "suitId_1": 0, - "getWays": "1&0", - "useWays": 0, - "value": 0, - "condition": "1&43", - "timelimit": 0, - "gift": 0, - "info": "左慈头像的介绍" - }, { "good_id": 11244, "name": "吕布头像", @@ -98555,49 +98211,6 @@ "gift": 0, "info": "张角头像的介绍" }, - { - "good_id": 11248, - "name": "南华头像", - "lvLimited": 1, - "quality": 1, - "image_id": 41049, - "itid": 50, - "goodType": 9, - "pieces": 0, - "pieceId": 0, - "composeMaterial": "&", - "specialMaterial": "&", - "suitId": 0, - "decomposeItem": "&", - "hole": 0, - "randomEffect": "&", - "hid": 0, - "hp": 0, - "atk": 0, - "matk": 0, - "def": 0, - "mdef": 0, - "agi": 0, - "luk": 0, - "hp_up": 0, - "atk_up": 0, - "matk_up": 0, - "def_up": 0, - "mdef_up": 0, - "agi_up": 0, - "luk_up": 0, - "damageIncrease": 0, - "damageDecrease": 0, - "specialAttr": "&", - "suitId_1": 0, - "getWays": "1&0", - "useWays": 0, - "value": 0, - "condition": "1&48", - "timelimit": 0, - "gift": 0, - "info": "南华头像的介绍" - }, { "good_id": 11249, "name": "高顺头像", @@ -100146,49 +99759,6 @@ "gift": 0, "info": "郭嘉形象的介绍" }, - { - "good_id": 11406, - "name": "司马懿形象", - "lvLimited": 1, - "quality": 1, - "image_id": 41007, - "itid": 52, - "goodType": 11, - "pieces": 0, - "pieceId": 0, - "composeMaterial": "&", - "specialMaterial": "&", - "suitId": 0, - "decomposeItem": "&", - "hole": 0, - "randomEffect": "&", - "hid": 0, - "hp": 0, - "atk": 0, - "matk": 0, - "def": 0, - "mdef": 0, - "agi": 0, - "luk": 0, - "hp_up": 0, - "atk_up": 0, - "matk_up": 0, - "def_up": 0, - "mdef_up": 0, - "agi_up": 0, - "luk_up": 0, - "damageIncrease": 0, - "damageDecrease": 0, - "specialAttr": "&", - "suitId_1": 0, - "getWays": "1&0", - "useWays": 0, - "value": 0, - "condition": "1&6", - "timelimit": 0, - "gift": 0, - "info": "司马懿形象的介绍" - }, { "good_id": 11407, "name": "典韦形象", @@ -100275,49 +99845,6 @@ "gift": 0, "info": "庞德形象的介绍" }, - { - "good_id": 11409, - "name": "邓艾形象", - "lvLimited": 1, - "quality": 1, - "image_id": 41010, - "itid": 52, - "goodType": 11, - "pieces": 0, - "pieceId": 0, - "composeMaterial": "&", - "specialMaterial": "&", - "suitId": 0, - "decomposeItem": "&", - "hole": 0, - "randomEffect": "&", - "hid": 0, - "hp": 0, - "atk": 0, - "matk": 0, - "def": 0, - "mdef": 0, - "agi": 0, - "luk": 0, - "hp_up": 0, - "atk_up": 0, - "matk_up": 0, - "def_up": 0, - "mdef_up": 0, - "agi_up": 0, - "luk_up": 0, - "damageIncrease": 0, - "damageDecrease": 0, - "specialAttr": "&", - "suitId_1": 0, - "getWays": "1&0", - "useWays": 0, - "value": 0, - "condition": "1&9", - "timelimit": 0, - "gift": 0, - "info": "邓艾形象的介绍" - }, { "good_id": 11410, "name": "徐晃形象", @@ -100533,49 +100060,6 @@ "gift": 0, "info": "贾诩形象的介绍" }, - { - "good_id": 11415, - "name": "许褚形象", - "lvLimited": 1, - "quality": 1, - "image_id": 41016, - "itid": 52, - "goodType": 11, - "pieces": 0, - "pieceId": 0, - "composeMaterial": "&", - "specialMaterial": "&", - "suitId": 0, - "decomposeItem": "&", - "hole": 0, - "randomEffect": "&", - "hid": 0, - "hp": 0, - "atk": 0, - "matk": 0, - "def": 0, - "mdef": 0, - "agi": 0, - "luk": 0, - "hp_up": 0, - "atk_up": 0, - "matk_up": 0, - "def_up": 0, - "mdef_up": 0, - "agi_up": 0, - "luk_up": 0, - "damageIncrease": 0, - "damageDecrease": 0, - "specialAttr": "&", - "suitId_1": 0, - "getWays": "1&0", - "useWays": 0, - "value": 0, - "condition": "1&15", - "timelimit": 0, - "gift": 0, - "info": "许褚形象的介绍" - }, { "good_id": 11416, "name": "乐进形象", @@ -100877,49 +100361,6 @@ "gift": 0, "info": "诸葛亮形象的介绍" }, - { - "good_id": 11423, - "name": "庞统形象", - "lvLimited": 1, - "quality": 1, - "image_id": 41024, - "itid": 52, - "goodType": 11, - "pieces": 0, - "pieceId": 0, - "composeMaterial": "&", - "specialMaterial": "&", - "suitId": 0, - "decomposeItem": "&", - "hole": 0, - "randomEffect": "&", - "hid": 0, - "hp": 0, - "atk": 0, - "matk": 0, - "def": 0, - "mdef": 0, - "agi": 0, - "luk": 0, - "hp_up": 0, - "atk_up": 0, - "matk_up": 0, - "def_up": 0, - "mdef_up": 0, - "agi_up": 0, - "luk_up": 0, - "damageIncrease": 0, - "damageDecrease": 0, - "specialAttr": "&", - "suitId_1": 0, - "getWays": "1&0", - "useWays": 0, - "value": 0, - "condition": "1&23", - "timelimit": 0, - "gift": 0, - "info": "庞统形象的介绍" - }, { "good_id": 11424, "name": "魏延形象", @@ -101135,49 +100576,6 @@ "gift": 0, "info": "马良形象的介绍" }, - { - "good_id": 11429, - "name": "黄月英形象", - "lvLimited": 1, - "quality": 1, - "image_id": 41030, - "itid": 52, - "goodType": 11, - "pieces": 0, - "pieceId": 0, - "composeMaterial": "&", - "specialMaterial": "&", - "suitId": 0, - "decomposeItem": "&", - "hole": 0, - "randomEffect": "&", - "hid": 0, - "hp": 0, - "atk": 0, - "matk": 0, - "def": 0, - "mdef": 0, - "agi": 0, - "luk": 0, - "hp_up": 0, - "atk_up": 0, - "matk_up": 0, - "def_up": 0, - "mdef_up": 0, - "agi_up": 0, - "luk_up": 0, - "damageIncrease": 0, - "damageDecrease": 0, - "specialAttr": "&", - "suitId_1": 0, - "getWays": "1&0", - "useWays": 0, - "value": 0, - "condition": "1&29", - "timelimit": 0, - "gift": 0, - "info": "黄月英形象的介绍" - }, { "good_id": 11430, "name": "王平形象", @@ -101565,49 +100963,6 @@ "gift": 0, "info": "孙尚香形象的介绍" }, - { - "good_id": 11439, - "name": "陆逊形象", - "lvLimited": 1, - "quality": 1, - "image_id": 41040, - "itid": 52, - "goodType": 11, - "pieces": 0, - "pieceId": 0, - "composeMaterial": "&", - "specialMaterial": "&", - "suitId": 0, - "decomposeItem": "&", - "hole": 0, - "randomEffect": "&", - "hid": 0, - "hp": 0, - "atk": 0, - "matk": 0, - "def": 0, - "mdef": 0, - "agi": 0, - "luk": 0, - "hp_up": 0, - "atk_up": 0, - "matk_up": 0, - "def_up": 0, - "mdef_up": 0, - "agi_up": 0, - "luk_up": 0, - "damageIncrease": 0, - "damageDecrease": 0, - "specialAttr": "&", - "suitId_1": 0, - "getWays": "1&0", - "useWays": 0, - "value": 0, - "condition": "1&39", - "timelimit": 0, - "gift": 0, - "info": "陆逊形象的介绍" - }, { "good_id": 11440, "name": "小乔形象", @@ -101694,92 +101049,6 @@ "gift": 0, "info": "大乔形象的介绍" }, - { - "good_id": 11442, - "name": "步练师形象", - "lvLimited": 1, - "quality": 1, - "image_id": 41043, - "itid": 52, - "goodType": 11, - "pieces": 0, - "pieceId": 0, - "composeMaterial": "&", - "specialMaterial": "&", - "suitId": 0, - "decomposeItem": "&", - "hole": 0, - "randomEffect": "&", - "hid": 0, - "hp": 0, - "atk": 0, - "matk": 0, - "def": 0, - "mdef": 0, - "agi": 0, - "luk": 0, - "hp_up": 0, - "atk_up": 0, - "matk_up": 0, - "def_up": 0, - "mdef_up": 0, - "agi_up": 0, - "luk_up": 0, - "damageIncrease": 0, - "damageDecrease": 0, - "specialAttr": "&", - "suitId_1": 0, - "getWays": "1&0", - "useWays": 0, - "value": 0, - "condition": "1&42", - "timelimit": 0, - "gift": 0, - "info": "步练师形象的介绍" - }, - { - "good_id": 11443, - "name": "左慈形象", - "lvLimited": 1, - "quality": 1, - "image_id": 41044, - "itid": 52, - "goodType": 11, - "pieces": 0, - "pieceId": 0, - "composeMaterial": "&", - "specialMaterial": "&", - "suitId": 0, - "decomposeItem": "&", - "hole": 0, - "randomEffect": "&", - "hid": 0, - "hp": 0, - "atk": 0, - "matk": 0, - "def": 0, - "mdef": 0, - "agi": 0, - "luk": 0, - "hp_up": 0, - "atk_up": 0, - "matk_up": 0, - "def_up": 0, - "mdef_up": 0, - "agi_up": 0, - "luk_up": 0, - "damageIncrease": 0, - "damageDecrease": 0, - "specialAttr": "&", - "suitId_1": 0, - "getWays": "1&0", - "useWays": 0, - "value": 0, - "condition": "1&43", - "timelimit": 0, - "gift": 0, - "info": "左慈形象的介绍" - }, { "good_id": 11444, "name": "吕布形象", @@ -101952,49 +101221,6 @@ "gift": 0, "info": "张角形象的介绍" }, - { - "good_id": 11448, - "name": "南华形象", - "lvLimited": 1, - "quality": 1, - "image_id": 41049, - "itid": 52, - "goodType": 11, - "pieces": 0, - "pieceId": 0, - "composeMaterial": "&", - "specialMaterial": "&", - "suitId": 0, - "decomposeItem": "&", - "hole": 0, - "randomEffect": "&", - "hid": 0, - "hp": 0, - "atk": 0, - "matk": 0, - "def": 0, - "mdef": 0, - "agi": 0, - "luk": 0, - "hp_up": 0, - "atk_up": 0, - "matk_up": 0, - "def_up": 0, - "mdef_up": 0, - "agi_up": 0, - "luk_up": 0, - "damageIncrease": 0, - "damageDecrease": 0, - "specialAttr": "&", - "suitId_1": 0, - "getWays": "1&0", - "useWays": 0, - "value": 0, - "condition": "1&48", - "timelimit": 0, - "gift": 0, - "info": "南华形象的介绍" - }, { "good_id": 11449, "name": "高顺形象", From 90b90844885312e0d3dd1e08c78c4027f1976d89 Mon Sep 17 00:00:00 2001 From: luying Date: Fri, 16 Jul 2021 17:54:11 +0800 Subject: [PATCH 4/6] =?UTF-8?q?=E5=85=B3=E5=8D=A1=EF=BC=9A=E5=A4=B1?= =?UTF-8?q?=E8=B4=A5=E6=97=B6=E4=B8=8D=E6=89=A3=E9=99=A4=E4=BD=93=E5=8A=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../app/servers/battle/handler/expeditionBattleHandler.ts | 2 +- game-server/app/servers/battle/handler/normalBattleHandler.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/game-server/app/servers/battle/handler/expeditionBattleHandler.ts b/game-server/app/servers/battle/handler/expeditionBattleHandler.ts index 3dfe5405f..59b46df42 100644 --- a/game-server/app/servers/battle/handler/expeditionBattleHandler.ts +++ b/game-server/app/servers/battle/handler/expeditionBattleHandler.ts @@ -205,7 +205,7 @@ export class ExpeditionBattleHandler { } let role = await RoleModel.findByRoleId(roleId, 'lv'); - let apJson = await setAp(roleId, role.lv, -1 * warInfo.cost, sid, funcs); // 扣除体力 + let apJson = await setAp(roleId, role.lv, isSuccess?-1 * warInfo.cost: 0, sid, funcs); // 扣除体力 if (!apJson) { return resResult(STATUS.BATTLE_ACTION_POINT_LACK); } diff --git a/game-server/app/servers/battle/handler/normalBattleHandler.ts b/game-server/app/servers/battle/handler/normalBattleHandler.ts index a87715028..645ba3634 100644 --- a/game-server/app/servers/battle/handler/normalBattleHandler.ts +++ b/game-server/app/servers/battle/handler/normalBattleHandler.ts @@ -156,7 +156,7 @@ export class NormalBattleHandler { } let role = await RoleModel.findByRoleId(roleId, 'lv'); - let apJson = await setAp(roleId, role.lv, -1 * warInfo.cost, sid, funcs); // 扣除体力 + let apJson = await setAp(roleId, role.lv, isSuccess? -1 * warInfo.cost: 0, sid, funcs); // 扣除体力 if (!apJson) { return resResult(STATUS.BATTLE_ACTION_POINT_LACK); } From b55c1e8ccc63a16f3980a86abd4b4fe4d0f8549b Mon Sep 17 00:00:00 2001 From: qiaoxin Date: Fri, 16 Jul 2021 18:24:58 +0800 Subject: [PATCH 5/6] =?UTF-8?q?=E6=B5=8B=E8=AF=95=EF=BC=9A=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E6=B5=8B=E8=AF=95=E7=94=A8=E4=BE=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- game-server/test/activity.test.ts | 4 ++-- web-server/app/controller/game.ts | 7 ++++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/game-server/test/activity.test.ts b/game-server/test/activity.test.ts index 08ee9e82e..a764d77bd 100644 --- a/game-server/test/activity.test.ts +++ b/game-server/test/activity.test.ts @@ -156,10 +156,10 @@ describe('活动测试', function () { it('大富翁-移动', function (done) { if (activityId) { - requestActivity(pinusClient, 'role.heroHandler.addItem', { id: CURRENCY_BY_TYPE.get(CURRENCY_TYPE.SPECIAL_DICE), count: 1 }) + requestActivity(pinusClient, 'role.heroHandler.addItem', { id: CURRENCY_BY_TYPE.get(CURRENCY_TYPE.NORMAL_DICE), count: 1 }) .then((data: any) => { checkSuccessResponse(data); - return requestActivity(pinusClient, 'activity.activityMonopolyHandler.move', { activityId: activityId, step: 1 }) + return requestActivity(pinusClient, 'activity.activityMonopolyHandler.move', { activityId: activityId, step: 0 }) }) .then((data: any) => { checkSuccessResponse(data); diff --git a/web-server/app/controller/game.ts b/web-server/app/controller/game.ts index b98940984..a30ee76a8 100644 --- a/web-server/app/controller/game.ts +++ b/web-server/app/controller/game.ts @@ -12,11 +12,12 @@ export default class GameController extends Controller { public async checkVersion() { const { ctx } = this; const { version } = ctx.request.body; - if (version < CLIENT_VERSION) {//版本号太低 - ctx.body = ctx.service.utils.resResult(STATUS.VERSION_ERR, { version: CLIENT_VERSION }); + if (version >= CLIENT_VERSION) { + ctx.body = ctx.service.utils.resResult(STATUS.SUCCESS); return; } - ctx.body = ctx.service.utils.resResult(STATUS.SUCCESS); + //版本号太低 + ctx.body = ctx.service.utils.resResult(STATUS.VERSION_ERR, { version: CLIENT_VERSION }); return; } From 62959a06f2998ff0919203107c12447119547f38 Mon Sep 17 00:00:00 2001 From: qiaoxin Date: Fri, 16 Jul 2021 18:36:25 +0800 Subject: [PATCH 6/6] =?UTF-8?q?=E6=B5=8B=E8=AF=95=EF=BC=9A=E4=BF=AE?= =?UTF-8?q?=E6=94=B9bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- game-server/test/chat.test.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/game-server/test/chat.test.ts b/game-server/test/chat.test.ts index 5e3f62104..394b3e4a1 100644 --- a/game-server/test/chat.test.ts +++ b/game-server/test/chat.test.ts @@ -255,8 +255,6 @@ describe('聊天测试', function () { pinusClient.request('role.heroHandler.starUp', { hid: XIAHOUQINGYI_HID, star: i, starStage: j }, (starUpRes) => { if (starUpRes.code === STATUS.ROLE_STAR_REACH_MAX.code) { expect(msgReceiveCnt).to.be.equal(2); - pinusClientT.off(ON_GROUP_MSG_ROUTE); - pinusClient.off(ON_GROUP_MSG_ROUTE); done(); } else { checkSuccessResponse(starUpRes); @@ -299,8 +297,6 @@ describe('聊天测试', function () { checkSuccessResponse(qualityUpRes); setTimeout(() => { expect(msgReceiveCnt).to.be.equal(2); - pinusClientT.off(ON_GROUP_MSG_ROUTE); - pinusClient.off(ON_GROUP_MSG_ROUTE); done(); }, 1000); });