diff --git a/game-server/app/servers/role/handler/equipHandler.ts b/game-server/app/servers/role/handler/equipHandler.ts index fb57bb683..6d34b2f6d 100644 --- a/game-server/app/servers/role/handler/equipHandler.ts +++ b/game-server/app/servers/role/handler/equipHandler.ts @@ -10,7 +10,7 @@ import Role from "../../../db/Role"; import { calPlayerCeAndSave } from "../../../services/playerCeService"; import { getHeroJob, getGoodById, gameData, getHeroEquipByClassId } from "../../../pubUtils/data"; import { EQUIP } from "../../../pubUtils/dicParam"; -import { ITID, SPEICAL_ITEM, QUALITY_TYPE, equipTypeToSortAttr } from "../../../consts/constModules/itemConst"; +import { ITID, SPEICAL_ITEM, QUALITY_TYPE, equipTypeToSortAttr, IT_TYPE } from "../../../consts/constModules/itemConst"; import { changeEquip, dressEquip, checkMaterialEnough, takeOffEquipAndCalPlayerCe } from "../../../services/equipService"; import { indexOf, findIndex } from 'underscore'; @@ -43,7 +43,7 @@ export class EquipHandler { let roleId: string = session.get('roleId'); let roleName: string = session.get('roleName'); let sid: string = session.get('sid'); - const serverId = session.get('serverId'); + const serverId: number = session.get('serverId'); // 消耗材料 // 获得装备 let { gid, originalEquip } = msg; @@ -52,16 +52,21 @@ export class EquipHandler { let targetGood = gameData.goods.get(gid); if (!targetGood) return resResult(STATUS.DIC_DATA_NOT_FOUND); - let cost = new Array(); + let cost: ItemInter[] = []; + let jewels: ItemInter[] = []; // 需要返还的镶嵌在装备上的宝石 if (targetGood.suitId > 0) { // 套装 cost = cost.concat(targetGood.composeMaterial); let specialMaterial = targetGood.specialMaterial; let costCount = 0; let equips = await EquipModel.getEquips(originalEquip); - for (let { id, seqId } of equips) { + for (let equip of equips) { + let { id, seqId, holes } = equip; if (specialMaterial.ids.includes(id)) { costCount++; cost.push({ id, seqId, count: 1 }); + for(let { jewel } of holes) { + if(jewel > 0) jewels.push({ id: jewel, count: 1}); + } } } if (specialMaterial.count > costCount) { @@ -77,6 +82,7 @@ export class EquipHandler { let result = await handleCost(roleId, sid, cost); if (!result) return resResult(STATUS.ROLE_MATERIAL_NOT_ENOUGH); + await addItems(roleId, roleName, sid, jewels); // 宝石返还 let items = [{ id: gid, count: 1 }]; let goods = await addItems(roleId, roleName, sid, items); if (targetGood.suitId) { @@ -462,17 +468,24 @@ export class EquipHandler { if (equips.length < originalEquip.length) return resResult(STATUS.EQUIP_NOT_FIND); let goods: Array<{ id: number, count: number }> = []; + let jewels: ItemInter[] = []; // 宝石返还 for (let equip of equips) { if (!!equip.hid) return resResult(STATUS.EQUIP_IS_EQUIPED_NOT_DECOMPOSE); let goodInfo = getGoodById(equip.id); if (!goodInfo) return resResult(STATUS.EQUIP_NOT_FIND); + + let holes = equip.holes||[]; + for(let { jewel } of holes) { + jewels.push({ id: jewel, count: 1 }); + } goods = goods.concat(goodInfo.decomposeItem); } let uids = [{ uid: roleId, sid }]; await EquipModel.deleteEquips(originalEquip); this.app.get('channelService').pushMessageByUids('onEquipDel', resResult(STATUS.SUCCESS, { equips: originalEquip }), uids); + await addItems(roleId, roleName, sid, jewels); // 把原本镶嵌在装备上的宝石返还了 let result = await addItems(roleId, roleName, sid, goods); return resResult(STATUS.SUCCESS, { goods: result }); } @@ -854,4 +867,69 @@ export class EquipHandler { return resResult(STATUS.SUCCESS, { goods: [{ id: jewel, count }] }); } } + + + /** + * @description 藏宝图合成 + * @param {{target: number, original: Array<{id: number, count: number}>}} msg + * @param {BackendSession} session + * @returns + * @memberof ComBattleHandler + */ + async composeBlueprt(msg: { target: number, original: Array<{id: number, count: number}>}, session: BackendSession) { + const roleId = session.get('roleId'); + const roleName = session.get('roleName'); + const sid = session.get('sid'); + const serverId = session.get('serverId'); + const funcs: number[] = session.get('funcs'); + + const { target, original } = msg; + + // 原材料检查 + let originalQuality: number, originalSum: number = 0; + for(let {id, count} of original) { + const goodInfo = gameData.goods.get(id); + if(!originalQuality) originalQuality = goodInfo.quality; + if(originalQuality != goodInfo.quality) { + return resResult(STATUS.COM_BLUEPRT_QUALITY_ERROR); + } + + if(goodInfo.itid == IT_TYPE.BLUEPRT) { + originalSum += count; + } + } + + + const dicCompose = gameData.blurprtCompose.get(originalQuality); + if(!dicCompose) { + return resResult(STATUS.COM_BLUEPRT_QUALITY_CANNOT_COMPOSE); + } + if(originalSum != dicCompose.blueprtNum) { + return resResult(STATUS.COM_BLUEPRT_COUNT_ERROR); + } + + let dicTargetInfo = gameData.goods.get(target); + if(!dicTargetInfo) return resResult(STATUS.WRONG_PARMS); + if(dicTargetInfo.quality != dicCompose.targetQuality) return resResult(STATUS.COM_BLUEPRT_QUALITY_ERROR); + + // 添加寻宝币 + original.push({ + id: CURRENCY_BY_TYPE.get(CURRENCY_TYPE.TREASURE_POINT), + count: dicCompose.coinNum + }); + // 消耗藏宝图和寻宝币 + + let costResult = await handleCost(roleId, sid, original); + if(!costResult) return resResult(STATUS.ROLE_MATERIAL_NOT_ENOUGH); + + const reward = [{id: target, count: 1}]; + const goods = await addItems(roleId, roleName, sid, reward); + if (dicCompose.targetQuality >= QUALITY_TYPE.ORANGE) { + const { name } = gameData.goods.get(target); + pushNormalItemMsg(roleId, roleName, serverId, MSG_SOURCE.ORANGE_BLUEPRT_COMPOSE, target, name); + } + await checkTask(roleId, sid, funcs, TASK_TYPE.COM_BATTLE_BLUEPRT, 1, true, { quality: dicCompose.targetQuality }); + + return resResult(STATUS.SUCCESS, { goods, costGold: 0 }); + } } \ No newline at end of file diff --git a/shared/resource/jsons/dic_goods.json b/shared/resource/jsons/dic_goods.json index 7f14a9c63..5d9ce6e95 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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "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": "1&2&3&4", "hid": 0, "hp": 25, "atk": 0, diff --git a/shared/resource/jsons/dic_zyz_randomEffectPool.json b/shared/resource/jsons/dic_zyz_randomEffectPool.json index 69c1d1b45..cfb1dfbf1 100644 --- a/shared/resource/jsons/dic_zyz_randomEffectPool.json +++ b/shared/resource/jsons/dic_zyz_randomEffectPool.json @@ -1,11 +1,11 @@ [ { "id": 1, - "type": 102, - "gainValue": "2&0", + "type": 200, + "gainValue": "2&20&1000", "index": 2, - "Min": 5, - "Max": 10, + "Min": 20, + "Max": 40, "info": "物攻提高", "__EMPTY": 0, "__EMPTY_1": 0, @@ -14,11 +14,11 @@ }, { "id": 2, - "type": 102, - "gainValue": "1&0", + "type": 200, + "gainValue": "1&20&1000", "index": 2, - "Min": 5, - "Max": 10, + "Min": 20, + "Max": 40, "info": "生命值提高", "__EMPTY": 0, "__EMPTY_1": 0, @@ -27,24 +27,11 @@ }, { "id": 3, - "type": 102, - "gainValue": "3&0", + "type": 200, + "gainValue": "4&20&1000", "index": 2, - "Min": 5, - "Max": 10, - "info": "策攻提高", - "__EMPTY": 0, - "__EMPTY_1": 0, - "__EMPTY_2": 0, - "__EMPTY_3": 0 - }, - { - "id": 4, - "type": 102, - "gainValue": "4&0", - "index": 2, - "Min": 5, - "Max": 10, + "Min": 20, + "Max": 40, "info": "物防提高", "__EMPTY": 0, "__EMPTY_1": 0, @@ -52,12 +39,12 @@ "__EMPTY_3": 0 }, { - "id": 5, - "type": 102, - "gainValue": "5&0", + "id": 4, + "type": 200, + "gainValue": "5&20&1000", "index": 2, - "Min": 5, - "Max": 10, + "Min": 20, + "Max": 40, "info": "策防提高", "__EMPTY": 0, "__EMPTY_1": 0, @@ -65,8 +52,8 @@ "__EMPTY_3": 0 }, { - "id": 6, - "type": 102, + "id": 5, + "type": 200, "gainValue": "6&0", "index": 2, "Min": 5, @@ -78,8 +65,8 @@ "__EMPTY_3": 0 }, { - "id": 7, - "type": 102, + "id": 6, + "type": 200, "gainValue": "7&0", "index": 2, "Min": 5, @@ -91,8 +78,8 @@ "__EMPTY_3": 0 }, { - "id": 8, - "type": 101, + "id": 7, + "type": 200, "gainValue": "2&0", "index": 2, "Min": 200, @@ -104,8 +91,8 @@ "__EMPTY_3": 0 }, { - "id": 9, - "type": 101, + "id": 8, + "type": 200, "gainValue": "1&0", "index": 2, "Min": 200, @@ -117,8 +104,8 @@ "__EMPTY_3": 0 }, { - "id": 10, - "type": 101, + "id": 9, + "type": 200, "gainValue": "3&0", "index": 2, "Min": 200, @@ -130,8 +117,8 @@ "__EMPTY_3": 0 }, { - "id": 11, - "type": 101, + "id": 10, + "type": 200, "gainValue": "4&0", "index": 2, "Min": 200, @@ -143,8 +130,8 @@ "__EMPTY_3": 0 }, { - "id": 12, - "type": 101, + "id": 11, + "type": 200, "gainValue": "5&0", "index": 2, "Min": 200, @@ -156,8 +143,8 @@ "__EMPTY_3": 0 }, { - "id": 13, - "type": 101, + "id": 12, + "type": 200, "gainValue": "6&0", "index": 2, "Min": 200, @@ -169,8 +156,8 @@ "__EMPTY_3": 0 }, { - "id": 14, - "type": 101, + "id": 13, + "type": 200, "gainValue": "7&0", "index": 2, "Min": 5000, @@ -182,8 +169,8 @@ "__EMPTY_3": 0 }, { - "id": 15, - "type": 101, + "id": 14, + "type": 200, "gainValue": "8&0", "index": 2, "Min": 1, @@ -195,8 +182,8 @@ "__EMPTY_3": 0 }, { - "id": 16, - "type": 101, + "id": 15, + "type": 200, "gainValue": "9&0", "index": 2, "Min": 5000, @@ -208,8 +195,8 @@ "__EMPTY_3": 0 }, { - "id": 17, - "type": 101, + "id": 16, + "type": 200, "gainValue": "10&0", "index": 2, "Min": 5000, @@ -221,8 +208,8 @@ "__EMPTY_3": 0 }, { - "id": 18, - "type": 101, + "id": 17, + "type": 200, "gainValue": "11&0", "index": 2, "Min": 5000, @@ -234,8 +221,8 @@ "__EMPTY_3": 0 }, { - "id": 19, - "type": 101, + "id": 18, + "type": 200, "gainValue": "12&0", "index": 2, "Min": 5000, @@ -247,8 +234,8 @@ "__EMPTY_3": 0 }, { - "id": 20, - "type": 101, + "id": 19, + "type": 200, "gainValue": "13&0", "index": 2, "Min": 5000, @@ -260,8 +247,8 @@ "__EMPTY_3": 0 }, { - "id": 21, - "type": 101, + "id": 20, + "type": 200, "gainValue": "14&0", "index": 2, "Min": 5000, @@ -273,8 +260,8 @@ "__EMPTY_3": 0 }, { - "id": 22, - "type": 101, + "id": 21, + "type": 200, "gainValue": "15&0", "index": 2, "Min": 5000, @@ -286,8 +273,8 @@ "__EMPTY_3": 0 }, { - "id": 23, - "type": 101, + "id": 22, + "type": 200, "gainValue": "16&0", "index": 2, "Min": 5000, @@ -299,8 +286,8 @@ "__EMPTY_3": 0 }, { - "id": 24, - "type": 101, + "id": 23, + "type": 200, "gainValue": "1&10", "index": 0, "Min": 0, @@ -312,8 +299,8 @@ "__EMPTY_3": 0 }, { - "id": 25, - "type": 101, + "id": 24, + "type": 200, "gainValue": "2&20", "index": 0, "Min": 0, @@ -325,8 +312,8 @@ "__EMPTY_3": 0 }, { - "id": 26, - "type": 101, + "id": 25, + "type": 200, "gainValue": "10&50000", "index": 0, "Min": 0, @@ -338,7 +325,7 @@ "__EMPTY_3": 0 }, { - "id": 27, + "id": 26, "type": 301, "gainValue": "0&2", "index": 1, @@ -351,7 +338,7 @@ "__EMPTY_3": 0 }, { - "id": 28, + "id": 27, "type": 301, "gainValue": "0&2", "index": 1, @@ -364,7 +351,7 @@ "__EMPTY_3": 0 }, { - "id": 29, + "id": 28, "type": 314, "gainValue": "0&2&10", "index": 1, @@ -377,7 +364,7 @@ "__EMPTY_3": 0 }, { - "id": 30, + "id": 29, "type": 314, "gainValue": "0&2&10", "index": 1, @@ -389,24 +376,24 @@ "__EMPTY_2": 0, "__EMPTY_3": 0 }, + { + "id": 30, + "type": 401, + "gainValue": "0&132", + "index": 1, + "Min": 50, + "Max": 70, + "info": "攻击或法术时%d概率给对方添加debuff致残", + "__EMPTY": 0, + "__EMPTY_1": 0, + "__EMPTY_2": 0, + "__EMPTY_3": 0 + }, { "id": 31, "type": 401, "gainValue": "0&132", "index": 1, - "Min": 50, - "Max": 70, - "info": "攻击或法术时%d概率给对方添加debuff致残", - "__EMPTY": 0, - "__EMPTY_1": 0, - "__EMPTY_2": 0, - "__EMPTY_3": 0 - }, - { - "id": 32, - "type": 401, - "gainValue": "0&132", - "index": 1, "Min": 20, "Max": 50, "info": "攻击或法术时%d概率给对方添加debuff致残", @@ -416,7 +403,7 @@ "__EMPTY_3": 0 }, { - "id": 33, + "id": 32, "type": 314, "gainValue": "0&2&10", "index": 1, @@ -429,7 +416,7 @@ "__EMPTY_3": 0 }, { - "id": 34, + "id": 33, "type": 425, "gainValue": "50&0", "index": 2, @@ -442,7 +429,7 @@ "__EMPTY_3": 0 }, { - "id": 35, + "id": 34, "type": 425, "gainValue": "50&0", "index": 2, @@ -455,7 +442,7 @@ "__EMPTY_3": 0 }, { - "id": 36, + "id": 35, "type": 504, "gainValue": "0&", "index": 1, @@ -468,7 +455,7 @@ "__EMPTY_3": 0 }, { - "id": 37, + "id": 36, "type": 504, "gainValue": "0&", "index": 1, @@ -481,7 +468,7 @@ "__EMPTY_3": 0 }, { - "id": 38, + "id": 37, "type": 504, "gainValue": "0&", "index": 1, @@ -494,7 +481,7 @@ "__EMPTY_3": 0 }, { - "id": 39, + "id": 38, "type": 314, "gainValue": "0&2&10", "index": 1, @@ -507,7 +494,7 @@ "__EMPTY_3": 0 }, { - "id": 40, + "id": 39, "type": 314, "gainValue": "0&2&10", "index": 1,