diff --git a/game-server/app/servers/battle/handler/comBattleHandler.ts b/game-server/app/servers/battle/handler/comBattleHandler.ts index fadbe72ec..e7185d979 100644 --- a/game-server/app/servers/battle/handler/comBattleHandler.ts +++ b/game-server/app/servers/battle/handler/comBattleHandler.ts @@ -22,7 +22,8 @@ import { roleLevelup } from '../../../services/normalBattleService'; import { addUserToChannel } from '../../../services/roleService'; import { ChannelUser } from '../../../domain/ChannelUser'; import { pushComBtlTeamMsg, pushNormalEquipMsg, pushTeamInviteMsg } from '../../../services/chatService'; -import { FIGURE } from '../../../pubUtils/dicParam'; +import { EXTERIOR } from '../../../pubUtils/dicParam'; + export default function(app: Application) { return new ComBattleHandler(app); } @@ -173,7 +174,7 @@ export class ComBattleHandler { if (!teamStatus || teamStatus.status !== COM_TEAM_STATUS.DEFAULT) return resResult(STATUS.COM_BATTLE_TEAM_INVALID); if (teamIsFullToStart(teamStatus)) return resResult(STATUS.COM_BATTLE_MEMBER_LIMIT); if (teamStatus.roleIds.indexOf(roleId) !== -1) return resResult(STATUS.COM_BATTLE_DUP_ENTER); - let { lv = 1, head = FIGURE.DEFAULT_HEAD, topLineupCe = 0, frame = FIGURE.DEFAULT_FRAME, spine = FIGURE.DEFAULT_SPINE } = await Role.findByRoleId(roleId, null, true); + let { lv = 1, head = EXTERIOR.EXTERIOR_FACE, topLineupCe = 0, frame = EXTERIOR.EXTERIOR_FACECASE, spine = EXTERIOR.EXTERIOR_APPEARANCE } = await Role.findByRoleId(roleId, null, true); let { quality } = getGoodById(teamStatus.blueprtId); if (lv < COM_BTL_CONST.ENABLE_LV) { diff --git a/game-server/app/servers/connector/handler/entryHandler.ts b/game-server/app/servers/connector/handler/entryHandler.ts index 6ca204e6a..09aa0acbf 100644 --- a/game-server/app/servers/connector/handler/entryHandler.ts +++ b/game-server/app/servers/connector/handler/entryHandler.ts @@ -110,7 +110,10 @@ export class EntryHandler { let apJson = await getAp(Date.now(), role.roleId); role['apJson'] = apJson; role['mails'] = mails; - if(!role['showLineup']) role['showLineup'] = role.topLineup.map(cur => cur.hid); + if(!role.showLineup) role.showLineup = role.topLineup.map(cur => cur.hid); + role.heads = role.heads.filter(cur => cur.status); + role.frames = role.frames.filter(cur => cur.status); + role.spines = role.spines.filter(cur => cur.status); const recentPrivateChats = await recentPrivateChatInfos(role.roleId, role.roleName); if (recentPrivateChats) { diff --git a/game-server/app/servers/role/handler/roleHandler.ts b/game-server/app/servers/role/handler/roleHandler.ts index 886c9edd7..9d8fd89be 100644 --- a/game-server/app/servers/role/handler/roleHandler.ts +++ b/game-server/app/servers/role/handler/roleHandler.ts @@ -5,7 +5,7 @@ import { resResult, decodeIdCntArrayStr, parseGoodStr } from '../../../pubUtils/ import {Application, BackendSession, pinus} from 'pinus'; import { handleCost } from '../../../services/rewardService'; import { getTitle, getTeraph, gameData, getScollByStar, getFriendLvByExp } from '../../../pubUtils/data'; -import { SCHOOL, SCROLL, FIGURE } from '../../../pubUtils/dicParam'; +import { SCHOOL, SCROLL, EXTERIOR } from '../../../pubUtils/dicParam'; import { getAtrrNameById } from '../../../consts/constModules/abilityConst' import { findIndex } from 'underscore'; import { SclResultInter, SclPosInter } from '../../../pubUtils/interface'; @@ -73,7 +73,7 @@ export class RoleHandler { async getRoleInfo(msg: {targetRoleId: string}, session: BackendSession) { let { targetRoleId } = msg; - let { roleId, roleName, head = FIGURE.DEFAULT_HEAD, frame = FIGURE.DEFAULT_FRAME, spine = FIGURE.DEFAULT_SPINE, ce = 0, topLineup, topLineupCe = 0 } = await RoleModel.findByRoleId(targetRoleId); + let { roleId, roleName, head = EXTERIOR.EXTERIOR_FACE, frame = EXTERIOR.EXTERIOR_FACECASE, spine = EXTERIOR.EXTERIOR_APPEARANCE, ce = 0, topLineup, topLineupCe = 0 } = await RoleModel.findByRoleId(targetRoleId); return resResult(STATUS.SUCCESS, { roleId, roleName, head, frame, spine, ce, topLineup, topLineupCe }); } diff --git a/game-server/app/services/comBattleService.ts b/game-server/app/services/comBattleService.ts index b6eb3dd4a..82b8515ce 100644 --- a/game-server/app/services/comBattleService.ts +++ b/game-server/app/services/comBattleService.ts @@ -14,7 +14,7 @@ import { getRandEelm, getRandValue, resResult, ratioReward, getRandValueByMinMax import { getRandRobot, transBossHpArr } from "./battleService"; import { difference, omit } from 'underscore'; import { Channel, ChannelService } from 'pinus'; -import { TREASURE, FIGURE } from '../pubUtils/dicParam'; +import { TREASURE, EXTERIOR } from '../pubUtils/dicParam'; import { decreaseItems } from './rewardService'; import { getFriendLvAdd } from './friendService'; import { getRoleIds } from '../pubUtils/friendUtil'; @@ -58,7 +58,7 @@ export function getRandComBtlRobots(topLineupCe: number, ceLimit: number, lv: nu const robotLv = getRandValue(lv, COM_BTL_CONST.ROBOT_CE_RATIO, 0); // const imgHid = robot[Math.floor(Math.random() * robot.length)]; const { robotRoleId, robotRoleName } = robotInfos[idx]; - let robotStatus = new RoleStatus(robotRoleId, robotRoleName, false, false, FIGURE.DEFAULT_HEAD, FIGURE.DEFAULT_FRAME, FIGURE.DEFAULT_SPINE, robotCe, robotLv, robot, true); + let robotStatus = new RoleStatus(robotRoleId, robotRoleName, false, false, EXTERIOR.EXTERIOR_FACE, EXTERIOR.EXTERIOR_FACECASE, EXTERIOR.EXTERIOR_APPEARANCE, robotCe, robotLv, robot, true); robotStArr.push(robotStatus); robotIdArr.push(robotRoleId); }); @@ -490,7 +490,7 @@ async function teammateValid(roleInfo: Partial, roleId: string, roleId */ export async function getValidTeammateRoleSt(roleId: string, roleIds: string[], ceLimit: number, quality: number) { let roleInfo = await RoleModel.findByRoleId(roleId, null, true); - let { roleName, head = FIGURE.DEFAULT_HEAD, frame = FIGURE.DEFAULT_FRAME, spine = FIGURE.DEFAULT_SPINE, topLineupCe, lv } = roleInfo; + let { roleName, head = EXTERIOR.EXTERIOR_FACE, frame = EXTERIOR.EXTERIOR_FACECASE, spine = EXTERIOR.EXTERIOR_APPEARANCE, topLineupCe, lv } = roleInfo; const valid = await teammateValid(roleInfo, roleId, roleIds, ceLimit); if (!valid) return null; @@ -574,7 +574,7 @@ export async function hasEnoughBlueprt(roleId: string, blueprtId: number) { * @param {boolean} isFrd */ export function addRoleToTeam(comTeam: MemComBtlTeam, roleInfo: RoleType, isCap: boolean, isFrd: boolean) { - const { roleId, roleName, head = FIGURE.DEFAULT_HEAD, frame = FIGURE.DEFAULT_FRAME, spine = FIGURE.DEFAULT_SPINE, lv } = roleInfo; + const { roleId, roleName, head = EXTERIOR.EXTERIOR_FACE, frame = EXTERIOR.EXTERIOR_FACECASE, spine = EXTERIOR.EXTERIOR_APPEARANCE, lv } = roleInfo; let { topLineupCe = 1000 } = roleInfo; const roleSt = new RoleStatus(roleId, roleName, isCap, isFrd, head, frame, spine, topLineupCe, lv); addRoleStToTeam(comTeam, roleSt); diff --git a/game-server/app/services/rewardService.ts b/game-server/app/services/rewardService.ts index e815f939a..7c864dee6 100644 --- a/game-server/app/services/rewardService.ts +++ b/game-server/app/services/rewardService.ts @@ -108,8 +108,9 @@ export async function addItems(roleId: string, roleName: string, sid: string, go let equips: Array = []; let bags: Array = []; let skins: Array = []; + let figures: Array = []; let uids = [{uid: roleId, sid}]; - sortItems(goods, bags, skins, currencysMap, equips, showItems); + sortItems(goods, bags, skins, figures, currencysMap, equips, showItems); let equipInfos = []; for (let equip of equips) { let equipInfo = await addEquips(roleId, roleName, equip); @@ -162,7 +163,7 @@ export async function addItems(roleId: string, roleName: string, sid: string, go return showItems; } -function sortItems (goods: Array, bags: Array, skins: Array, currencysMap: any, equips: Array, showItems: Array) { +function sortItems (goods: Array, bags: Array, skins: Array, figures: Array, currencysMap: any, equips: Array, showItems: Array) { for (let good of goods) { let goodInfo = gameData.goods.get(good.id); // 道具不存在时先跳过 @@ -205,6 +206,13 @@ function sortItems (goods: Array, bags: Array, skins: Array } currencysMap[curname] = (currencysMap[curname]||0 )+ good.count; } + } else { + if (type == CONSUME_TYPE.SKIN) { + let index = indexOf(figures, good.id); + if (index == -1) { + figures.push(good.id); + } + } } } } diff --git a/game-server/app/services/roleService.ts b/game-server/app/services/roleService.ts index 86719a3fb..0ae4b2e2a 100644 --- a/game-server/app/services/roleService.ts +++ b/game-server/app/services/roleService.ts @@ -90,73 +90,3 @@ export function addUserToChannel(channel: Channel, user: ChannelUser) { channel.add(uid, sid); } } - -/** - * 解锁头像/相框 - * @param type 解锁类型(获得武将/好感达到) - * @param num 参数(武将id/好感等级) - */ -export async function unlockFigure(roleId: string, type: number, num: number, role?: RoleType) { - if(!role || !role.heads || !role.frames) { - role = await RoleModel.findByRoleId(roleId, ROLE_SELECT.GET_HEADS); - } - let { heads, frames, spines } = role; - let canUnLockList = gameData.figureCondition.get(type); - if(canUnLockList) { - for(let {id, param} of canUnLockList) { - let flag = false; // 是否达成条件 - if(type == FIGURE_UNLOCK_CONDITION.GET_HERO) { - if(num == param) flag = true; - } else if (type == FIGURE_UNLOCK_CONDITION.HERO_FAVOR) { - if(num >= param) flag = true; - } - if(!flag) continue; - - let dicGood = gameData.goods.get(id); - if(!dicGood) continue; - let dicItid = ITID.get(dicGood.itid); - if(!dicItid) continue; - - if(dicItid.type == CONSUME_TYPE.HEAD) { - unlockSingleFigure(heads, id, type); - } else if (dicItid.type == CONSUME_TYPE.FRAME) { - unlockSingleFigure(frames, id, type); - } else if (dicItid.type == CONSUME_TYPE.SPINE) { - unlockSingleFigure(spines, id, type); - } else { - continue; - } - - } - - role = await RoleModel.updateRoleInfo(roleId, { heads, frames, spines }); - } -} - -function unlockSingleFigure(dbFigures: Figure[], id: number, type: number) { - let figure = dbFigures.find(cur => cur.id == id); - if(!figure) { - figure = new Figure(id, false); - dbFigures.push(figure); - } - if(figure.unlocked) return; // 已解锁过 - if(figure.unlockedType.includes(type)) return; - - figure.unlockedType.push(type); - let dicGoods = gameData.goods.get(id); - - let hasUnlockedAll = true; - for(let {type} of dicGoods.condition) { - if(!figure.unlockedType.includes(type)) { - hasUnlockedAll = false; break; - } - } - if(hasUnlockedAll) { - figure.unlocked = true; - - if(dicGoods.timeLimit) { - figure.time = getBeforeDaySeconds(-1 * dicGoods.timeLimit); // timeLimit天以后 - } - } - -} \ No newline at end of file diff --git a/shared/consts/constModules/itemConst.ts b/shared/consts/constModules/itemConst.ts index 220f452f4..4ba63c380 100644 --- a/shared/consts/constModules/itemConst.ts +++ b/shared/consts/constModules/itemConst.ts @@ -131,9 +131,9 @@ const itid_array = [ { id: 47, name: '典籍宝石', table: 'item', type: CONSUME_TYPE.JEWEL }, { id: 48, name: '灵玄石', table: 'item', type: CONSUME_TYPE.JEWEL }, { id: 49, name: '玩家好感道具', table: 'item', type: CONSUME_TYPE.FRIEND_FAVOUR }, - { id: 50, name: '形象', table: 'hero', type: CONSUME_TYPE.FRIEND_FAVOUR }, - { id: 51, name: '相框', table: 'hero', type: CONSUME_TYPE.FRIEND_FAVOUR }, - { id: 52, name: '玩家形象', table: 'hero', type: CONSUME_TYPE.FRIEND_FAVOUR } + { id: 50, name: '形象', table: 'role', type: CONSUME_TYPE.HEAD }, + { id: 51, name: '相框', table: 'role', type: CONSUME_TYPE.FRAME }, + { id: 52, name: '玩家形象', table: 'role', type: CONSUME_TYPE.SPINE } ]; export const ITID = new Map(); @@ -248,4 +248,5 @@ export function getDropItems() { export enum FIGURE_UNLOCK_CONDITION { GET_HERO = 1, // 获取武将 HERO_FAVOR = 2, // 武将好感度达到 + GET_SKIN = 3, // 获得时装 } \ No newline at end of file diff --git a/shared/db/ComBattleTeam.ts b/shared/db/ComBattleTeam.ts index 662c083e7..d9538556a 100644 --- a/shared/db/ComBattleTeam.ts +++ b/shared/db/ComBattleTeam.ts @@ -1,6 +1,6 @@ import BaseModel from './BaseModel'; import { index, getModelForClass, prop, DocumentType } from '@typegoose/typegoose'; -import { FIGURE } from '../pubUtils/dicParam'; +import { EXTERIOR } from '../pubUtils/dicParam'; export class RoleStatus { @prop({ required: true }) @@ -27,13 +27,13 @@ export class RoleStatus { @prop({ required: false, default: false }) isFrd: boolean; // 头像 - @prop({ required: true, default: FIGURE.DEFAULT_HEAD }) + @prop({ required: true, default: EXTERIOR.EXTERIOR_FACE }) head: number; // 相框 - @prop({ required: true, default: FIGURE.DEFAULT_FRAME }) + @prop({ required: true, default: EXTERIOR.EXTERIOR_FACECASE }) frame: number; // 形象 - @prop({ required: true, default: FIGURE.DEFAULT_SPINE }) + @prop({ required: true, default: EXTERIOR.EXTERIOR_APPEARANCE }) spine: number; // 前五战力 @prop({ required: true, default: 0 }) diff --git a/shared/db/PvpHistoryOpp.ts b/shared/db/PvpHistoryOpp.ts index 78837c998..def33f196 100644 --- a/shared/db/PvpHistoryOpp.ts +++ b/shared/db/PvpHistoryOpp.ts @@ -2,7 +2,7 @@ import BaseModel from './BaseModel'; import { index, getModelForClass, prop, DocumentType } from '@typegoose/typegoose'; import { PvpEnemies, PvpOtherHeroes } from '../domain/dbGeneral'; -import { FIGURE } from '../pubUtils/dicParam'; +import { EXTERIOR } from '../pubUtils/dicParam'; export class HeroScores { @prop({ required: true }) @@ -21,11 +21,11 @@ export default class PvpHistoryOpp extends BaseModel { oppRoleId: string; // 对手角色 id @prop({ required: true }) roleName: string; // 角色名称 - @prop({ required: true, default: FIGURE.DEFAULT_HEAD }) + @prop({ required: true, default: EXTERIOR.EXTERIOR_FACE }) head: number; // 对手头像 - @prop({ required: true, default: FIGURE.DEFAULT_FRAME }) + @prop({ required: true, default: EXTERIOR.EXTERIOR_FACECASE }) frame: number; // 对手相框 - @prop({ required: true, default: FIGURE.DEFAULT_SPINE }) + @prop({ required: true, default: EXTERIOR.EXTERIOR_APPEARANCE }) spine: number; // 对手形象 @prop({ required: true, default: 0 }) score: number; // 对手军功 diff --git a/shared/db/PvpRecord.ts b/shared/db/PvpRecord.ts index 8593739f7..c0ecf8ee8 100644 --- a/shared/db/PvpRecord.ts +++ b/shared/db/PvpRecord.ts @@ -3,7 +3,7 @@ import { index, getModelForClass, prop, DocumentType } from '@typegoose/typegoos import { getBeforeDayDate } from '../pubUtils/timeUtil'; import { genCode } from '../pubUtils/util'; import { PvpHeroInfo } from '../domain/dbGeneral'; -import { FIGURE } from '../pubUtils/dicParam'; +import { EXTERIOR } from '../pubUtils/dicParam'; export class HeroesRecord { @prop({ required: true, default: 0 }) @@ -42,11 +42,11 @@ export class PlayerInfo { roleName: string; // 角色 名 @prop({ required: true, default: 0 }) lv: number; // 等级 - @prop({ required: true, default: FIGURE.DEFAULT_HEAD }) + @prop({ required: true, default: EXTERIOR.EXTERIOR_FACE }) head: number; // 头像 - @prop({ required: true, default: FIGURE.DEFAULT_FRAME }) + @prop({ required: true, default: EXTERIOR.EXTERIOR_FACECASE }) frame: number; // 相框 - @prop({ required: true, default: FIGURE.DEFAULT_SPINE }) + @prop({ required: true, default: EXTERIOR.EXTERIOR_APPEARANCE }) spine: number; // 形象 @prop({ required: true, default: 0 }) title: number; // 爵位 diff --git a/shared/db/Role.ts b/shared/db/Role.ts index f055f07ce..d6e25d912 100644 --- a/shared/db/Role.ts +++ b/shared/db/Role.ts @@ -6,7 +6,7 @@ import { shouldRefresh, reduceCe } from '../pubUtils/util'; import { initRoleAtrr } from '../pubUtils/playerCe'; import { nowSeconds } from '../pubUtils/timeUtil'; import { Figure } from '../domain/dbGeneral'; -import { FIGURE } from '../pubUtils/dicParam'; +import { EXTERIOR } from '../pubUtils/dicParam'; import Hero from './Hero'; // role表属性格式 @@ -124,26 +124,26 @@ export default class Role extends BaseModel { @prop({ required: true, type: Number }) showLineup: number[]; // 展示阵容 - @prop({ required: true, type: Figure, default: [], _id: false }) + @prop({ required: true, type: Figure, default: getDefualtFigure('head'), _id: false }) heads: Figure[]; // 拥有头像列表 - @prop({ required: true, type: Figure, default: [], _id: false }) + @prop({ required: true, type: Figure, default: getDefualtFigure('frame'), _id: false }) frames: Figure[]; // 拥有相框列表 - @prop({ required: true, type: Figure, default: [], _id: false }) + @prop({ required: true, type: Figure, default: getDefualtFigure('spine'), _id: false }) spines: Figure[]; // 拥有的形象 public get head () { // 虚拟字段head 当前头像 let curHead = this.heads?.find(cur => cur.enable && cur.time > nowSeconds()); - return curHead?curHead.id: FIGURE.DEFAULT_HEAD; + return curHead?curHead.id: EXTERIOR.EXTERIOR_FACE; } public get frame () { // 虚拟字段frame 当前相框 let curFrame = this.frames?.find(cur => cur.enable && cur.time > nowSeconds()); - return curFrame?curFrame.id: FIGURE.DEFAULT_FRAME; + return curFrame?curFrame.id: EXTERIOR.EXTERIOR_FACECASE; } public get spine () { // 虚拟字段spine 当前形象 let curSpine = this.spines?.find(cur => cur.enable && cur.time > nowSeconds()); - return curSpine?curSpine.id: FIGURE.DEFAULT_SPINE; + return curSpine?curSpine.id: EXTERIOR.EXTERIOR_APPEARANCE; } @prop({ required: true, default: 0 }) @@ -551,6 +551,10 @@ export default class Role extends BaseModel { return result; } + public static async addFigure(roleId: string, id: number, figure: Figure) { + const result = await RoleModel.findOneAndUpdate({roleId}, { $pull: { heads: { id: id }, $push: { heads: figure } }}, {new: true}).lean(); + return result + } } export const RoleModel = getModelForClass(Role); @@ -567,3 +571,18 @@ function getInitialTeraph() { } return teraphs; } + +function getDefualtFigure(type: string) { + let figures = new Array
(); + if(type == 'head') { + let figure = new Figure(EXTERIOR.EXTERIOR_FACE, true, null, true); + figures.push(figure); + } else if (type == 'frame') { + let figure = new Figure(EXTERIOR.EXTERIOR_FACECASE, true, null, true); + figures.push(figure); + } else if (type == 'spine') { + let figure = new Figure(EXTERIOR.EXTERIOR_APPEARANCE, true, null, true); + figures.push(figure); + } + return figures; +} \ No newline at end of file diff --git a/shared/domain/battleField/guild.ts b/shared/domain/battleField/guild.ts index db961ea95..dcb7d8d35 100644 --- a/shared/domain/battleField/guild.ts +++ b/shared/domain/battleField/guild.ts @@ -3,7 +3,7 @@ import { GuildType } from "../../db/Guild"; import { RoleType } from "../../db/Role"; import { WAR_TYPE } from "../../consts/consts"; import { gameData } from "../../pubUtils/data"; -import { FIGURE } from "../../pubUtils/dicParam"; +import { EXTERIOR } from "../../pubUtils/dicParam"; export class PlayerDetailHero { actorId: number; @@ -50,9 +50,9 @@ export class PlayerDetail { roleName: string; lv: number; title?: number = 1; - head?: number = FIGURE.DEFAULT_HEAD; - frame?: number = FIGURE.DEFAULT_FRAME; - spine?: number = FIGURE.DEFAULT_SPINE; + head?: number = EXTERIOR.EXTERIOR_FACE; + frame?: number = EXTERIOR.EXTERIOR_FACECASE; + spine?: number = EXTERIOR.EXTERIOR_APPEARANCE; score?: number = 0; pLv?: number = 1; diff --git a/shared/domain/dbGeneral.ts b/shared/domain/dbGeneral.ts index b1de0acae..c2a1ce312 100644 --- a/shared/domain/dbGeneral.ts +++ b/shared/domain/dbGeneral.ts @@ -2,8 +2,7 @@ import { prop, mongoose, Ref } from '@typegoose/typegoose'; import { DicWarJson } from '../pubUtils/dictionary/DicWarJson'; import { Attribute } from './roleField/attribute'; import Hero, { HeroType } from '../db/Hero'; -import { gameData } from '../pubUtils/data'; -import { nowSeconds, getBeforeDaySeconds } from '../pubUtils/timeUtil'; +import { nowSeconds } from '../pubUtils/timeUtil'; // 从玩家数据中覆盖warjson的部分字段 export class PvpHeroInfo { @@ -210,7 +209,7 @@ export class Figure { enable: boolean = false; // 是否启用 @prop({ required: false }) time?: number; // 到期时间 - @prop({ required: true, default: [] }) + @prop({ required: true, default: [], type: Number }) unlockedType: number[] = []; // 当前已经解锁了的type @prop({ required: true, default: false }) unlocked: boolean = false; // 是否已解锁 diff --git a/shared/domain/gameField/serverlist.ts b/shared/domain/gameField/serverlist.ts index b2ddde656..6abd1b354 100644 --- a/shared/domain/gameField/serverlist.ts +++ b/shared/domain/gameField/serverlist.ts @@ -55,6 +55,9 @@ export class ServerParamWithRole extends ServerParam { lv: number; // 等级 updatedAt: Date; + headHid: number = 19; // TODO,等客户端完成后删除这个字段 + sHid: number = 19; + constructor(role: RoleType, server: ServerInfo) { super(server); this.groupId = server.groupId; diff --git a/shared/domain/rank.ts b/shared/domain/rank.ts index 7d114cba7..d492f62ad 100644 --- a/shared/domain/rank.ts +++ b/shared/domain/rank.ts @@ -1,4 +1,4 @@ -import { FIGURE } from "../pubUtils/dicParam"; +import { EXTERIOR } from "../pubUtils/dicParam"; // 排行榜返回玩家值 export class RankParam { @@ -6,9 +6,9 @@ export class RankParam { lv: number; vLv: number; guildName: string = ""; - head: number = FIGURE.DEFAULT_HEAD; - frame: number = FIGURE.DEFAULT_FRAME; - spine: number = FIGURE.DEFAULT_SPINE; + head: number = EXTERIOR.EXTERIOR_FACE; + frame: number = EXTERIOR.EXTERIOR_FACECASE; + spine: number = EXTERIOR.EXTERIOR_APPEARANCE; title: number; headHid: number = 19; // TODO 等客户端接完将这些删除 diff --git a/shared/pubUtils/dicParam.ts b/shared/pubUtils/dicParam.ts index 9910c725c..5b26df372 100644 --- a/shared/pubUtils/dicParam.ts +++ b/shared/pubUtils/dicParam.ts @@ -60,15 +60,18 @@ export const FRIEND = { FRIEND_CLOSEPOINT_ADD: 5, // 每赠送/领取一次增加的亲密度 FRIEND_FRIENDPOINT_ADD: 1, // 每领取一次爱心会增加的情谊值 FRIEND_RECONMMEND_LEVEL: 5, // 系统推荐玩家等级要求浮动 - FRIEND_RECONMMEND_ACTIVETIME: 1000, // 系统推荐玩家活跃时间要求(小时) + FRIEND_RECONMMEND_ACTIVETIME: 24, // 系统推荐玩家活跃时间要求(小时) FRIEND_BLACKLIST_MAX: 100, // 黑名单人数上限 FRIEND_MANAGE_APPLICATION: 50, // 好友显示收到的申请条数上限 FRIEND_RECEIVE_SINGLE: 1, // 向单个好友每日最多赠送多少爱心 FRIEND_RECONMMEND_NUM: 8, // 同一批推荐好友数量 FRIEND_RECONMMEND_SERVICE: 4, // 同一批推荐本服的好友数量 }; -export const FIGURE = { - DEFAULT_HEAD: 11201, // 默认头像 - DEFAULT_FRAME: 11301, // 默认相框 - DEFAULT_SPINE: 11401, // 默认形象 -}; \ No newline at end of file +export const LOGIN = { + LOGIN_PUBLIC_LABLE: '1&zi_remen|2&zi_zuixin|3&zi_zhiding', // 公告中对应的标签图片 +}; +export const EXTERIOR = { + EXTERIOR_FACE: 11219, // 默认头像id + EXTERIOR_FACECASE: 11301, // 默认头像框id + EXTERIOR_APPEARANCE: 11419, // 默认形象id +}; diff --git a/shared/pubUtils/itemUtils.ts b/shared/pubUtils/itemUtils.ts index c4436cf8f..9637425ee 100644 --- a/shared/pubUtils/itemUtils.ts +++ b/shared/pubUtils/itemUtils.ts @@ -5,10 +5,13 @@ import { ItemModel } from '../db/Item'; import { EquipModel, RandSe, Holes } from './../db/Equip'; import { BagInter, EquipInter } from './interface'; import { gameData } from './data'; -import { RANDOM_SE_COUNT, FIX_ATTRIBUTES_RAN, ITID, CURRENCY_BY_TYPE, CURRENCY_TYPE } from '../consts'; +import { RANDOM_SE_COUNT, FIX_ATTRIBUTES_RAN, ITID, CURRENCY_BY_TYPE, CURRENCY_TYPE, ROLE_SELECT, FIGURE_UNLOCK_CONDITION, CONSUME_TYPE } from '../consts'; import { getRandValueByMinMax, getRandEelm } from './util'; import { findWhere } from 'underscore'; +import { RoleModel, RoleType } from '../db/Role'; +import { Figure } from '../domain/dbGeneral'; +import { getBeforeDaySeconds } from './timeUtil'; export async function addSkins(roleId: string, id: number) { let skinInfo = gameData.fashion.get(id); @@ -74,4 +77,83 @@ export function getGoldObject(count: number) { */ export function getFriendPointObject(count: number) { return { id: CURRENCY_BY_TYPE.get(CURRENCY_TYPE.FRIEND_POINT), count}; +} + + +/** + * 解锁头像/相框 + * @param type 解锁类型(获得武将/好感达到) + * @param num 参数(武将id/好感等级) + */ +export async function unlockFigure(roleId: string, conditions: {type: number, num: number}[], role?: RoleType) { + if(!role || !role.heads || !role.frames) { + role = await RoleModel.findByRoleId(roleId, ROLE_SELECT.GET_HEADS); + } + let { heads, frames, spines } = role; + for(let {type, num} of conditions) { + let canUnLockList = gameData.figureCondition.get(type); + if(canUnLockList) { + for(let {id, param} of canUnLockList) { + let flag = false; // 是否达成条件 + if(type == FIGURE_UNLOCK_CONDITION.GET_HERO) { + if(num == param) flag = true; + } else if (type == FIGURE_UNLOCK_CONDITION.HERO_FAVOR) { + if(num >= param) flag = true; + } + if(!flag) continue; + let dicGood = gameData.goods.get(id); + if(!dicGood) continue; + let dicItid = ITID.get(dicGood.itid); + if(!dicItid) continue; + + if(dicItid.type == CONSUME_TYPE.HEAD) { + unlockSingleFigure(heads, id, type); + } else if (dicItid.type == CONSUME_TYPE.FRAME) { + unlockSingleFigure(frames, id, type); + } else if (dicItid.type == CONSUME_TYPE.SPINE) { + unlockSingleFigure(spines, id, type); + } else { + continue; + } + + } + + } + } + role = await RoleModel.updateRoleInfo(roleId, { heads, frames, spines }); +} + +function unlockSingleFigure(dbFigures: Figure[], id: number, type: number) { + let figure = dbFigures.find(cur => cur.id == id); + if(!figure) { + figure = new Figure(id, false); + dbFigures.push(figure); + } + if(figure.unlocked) return; // 已解锁过 + if(figure.unlockedType.includes(type)) return; + + figure.unlockedType.push(type); + let dicGoods = gameData.goods.get(id); + + let hasUnlockedAll = true; + for(let {type} of dicGoods.condition) { + if(!figure.unlockedType.includes(type)) { + hasUnlockedAll = false; break; + } + } + if(hasUnlockedAll) { + figure.unlocked = true; + + if(dicGoods.timeLimit) { + figure.time = getBeforeDaySeconds(-1 * dicGoods.timeLimit); // timeLimit天以后 + } + } + +} + +// 直接获得形象/相框 +export async function addFigure(roleId: string, id: number) { + let figure = new Figure(id, true, null, false); + let role = await RoleModel.addFigure(roleId, id, figure); + return role; } \ No newline at end of file diff --git a/shared/resource/jsons/dic_goods.json b/shared/resource/jsons/dic_goods.json index 3457f51e9..a3d8242c9 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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -55,7 +55,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -96,7 +96,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -137,7 +137,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -178,7 +178,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -219,7 +219,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -260,7 +260,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -301,7 +301,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -342,7 +342,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -383,7 +383,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -424,7 +424,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -465,7 +465,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -506,7 +506,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -547,7 +547,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -588,7 +588,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -629,7 +629,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -670,7 +670,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -711,7 +711,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -752,7 +752,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -793,7 +793,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -834,7 +834,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -875,7 +875,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -916,7 +916,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -957,7 +957,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -998,7 +998,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -1039,7 +1039,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -1080,7 +1080,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -1121,7 +1121,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -1162,7 +1162,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -1203,7 +1203,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -1244,7 +1244,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -1285,7 +1285,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -1326,7 +1326,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 353, "atk": 273, @@ -1367,7 +1367,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 353, "atk": 273, @@ -1408,7 +1408,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -1449,7 +1449,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -1490,7 +1490,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 353, "atk": 273, @@ -1531,7 +1531,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 353, "atk": 273, @@ -1572,7 +1572,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -1613,7 +1613,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -1654,7 +1654,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 353, "atk": 273, @@ -1695,7 +1695,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 353, "atk": 273, @@ -1736,7 +1736,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -1777,7 +1777,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -1818,7 +1818,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 353, "atk": 273, @@ -1859,7 +1859,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 353, "atk": 273, @@ -1900,7 +1900,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -1941,7 +1941,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -1982,7 +1982,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 353, "atk": 273, @@ -2023,7 +2023,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 353, "atk": 273, @@ -2064,7 +2064,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -2105,7 +2105,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 17, "atk": 13, @@ -2146,7 +2146,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 353, "atk": 273, @@ -2187,7 +2187,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 353, "atk": 273, @@ -2228,7 +2228,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 353, "atk": 273, @@ -2269,7 +2269,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 353, "atk": 273, @@ -2310,7 +2310,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 353, "atk": 273, @@ -2351,7 +2351,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 353, "atk": 273, @@ -2392,7 +2392,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 353, "atk": 273, @@ -2433,7 +2433,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 353, "atk": 273, @@ -2474,7 +2474,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -2515,7 +2515,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -2556,7 +2556,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -2597,7 +2597,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -2638,7 +2638,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -2679,7 +2679,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -2720,7 +2720,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -2761,7 +2761,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -2802,7 +2802,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -2843,7 +2843,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -2884,7 +2884,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -2925,7 +2925,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -2966,7 +2966,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -3007,7 +3007,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -3048,7 +3048,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -3089,7 +3089,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -3130,7 +3130,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -3171,7 +3171,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -3212,7 +3212,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -3253,7 +3253,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -3294,7 +3294,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -3335,7 +3335,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -3376,7 +3376,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -3417,7 +3417,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -3458,7 +3458,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -3499,7 +3499,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -3540,7 +3540,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -3581,7 +3581,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -3622,7 +3622,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -3663,7 +3663,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -3704,7 +3704,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -3745,7 +3745,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -3786,7 +3786,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 338, "atk": 307, @@ -3827,7 +3827,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 338, "atk": 307, @@ -3868,7 +3868,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -3909,7 +3909,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -3950,7 +3950,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 338, "atk": 307, @@ -3991,7 +3991,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 338, "atk": 307, @@ -4032,7 +4032,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -4073,7 +4073,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -4114,7 +4114,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 338, "atk": 307, @@ -4155,7 +4155,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 338, "atk": 307, @@ -4196,7 +4196,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -4237,7 +4237,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -4278,7 +4278,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 338, "atk": 307, @@ -4319,7 +4319,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 338, "atk": 307, @@ -4360,7 +4360,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -4401,7 +4401,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -4442,7 +4442,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 338, "atk": 307, @@ -4483,7 +4483,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 338, "atk": 307, @@ -4524,7 +4524,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -4565,7 +4565,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 16, "atk": 15, @@ -4606,7 +4606,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 338, "atk": 307, @@ -4647,7 +4647,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 338, "atk": 307, @@ -4688,7 +4688,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 338, "atk": 307, @@ -4729,7 +4729,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 338, "atk": 307, @@ -4770,7 +4770,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 338, "atk": 307, @@ -4811,7 +4811,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 338, "atk": 307, @@ -4852,7 +4852,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 338, "atk": 307, @@ -4893,7 +4893,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 338, "atk": 307, @@ -4934,7 +4934,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -4975,7 +4975,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -5016,7 +5016,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -5057,7 +5057,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -5098,7 +5098,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -5139,7 +5139,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -5180,7 +5180,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -5221,7 +5221,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -5262,7 +5262,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -5303,7 +5303,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -5344,7 +5344,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -5385,7 +5385,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -5426,7 +5426,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -5467,7 +5467,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -5508,7 +5508,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -5549,7 +5549,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -5590,7 +5590,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -5631,7 +5631,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -5672,7 +5672,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -5713,7 +5713,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -5754,7 +5754,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -5795,7 +5795,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -5836,7 +5836,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -5877,7 +5877,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -5918,7 +5918,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -5959,7 +5959,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -6000,7 +6000,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -6041,7 +6041,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -6082,7 +6082,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -6123,7 +6123,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -6164,7 +6164,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -6205,7 +6205,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -6246,7 +6246,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 294, "atk": 341, @@ -6287,7 +6287,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 294, "atk": 341, @@ -6328,7 +6328,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -6369,7 +6369,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -6410,7 +6410,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 294, "atk": 341, @@ -6451,7 +6451,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 294, "atk": 341, @@ -6492,7 +6492,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -6533,7 +6533,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -6574,7 +6574,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 294, "atk": 341, @@ -6615,7 +6615,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 294, "atk": 341, @@ -6656,7 +6656,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -6697,7 +6697,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -6738,7 +6738,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 294, "atk": 341, @@ -6779,7 +6779,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 294, "atk": 341, @@ -6820,7 +6820,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -6861,7 +6861,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -6902,7 +6902,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 294, "atk": 341, @@ -6943,7 +6943,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 294, "atk": 341, @@ -6984,7 +6984,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -7025,7 +7025,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 16, @@ -7066,7 +7066,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 294, "atk": 341, @@ -7107,7 +7107,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 294, "atk": 341, @@ -7148,7 +7148,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 294, "atk": 341, @@ -7189,7 +7189,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 294, "atk": 341, @@ -7230,7 +7230,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 294, "atk": 341, @@ -7271,7 +7271,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 294, "atk": 341, @@ -7312,7 +7312,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 294, "atk": 341, @@ -7353,7 +7353,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 294, "atk": 341, @@ -7394,7 +7394,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -7435,7 +7435,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -7476,7 +7476,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -7517,7 +7517,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -7558,7 +7558,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -7599,7 +7599,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -7640,7 +7640,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -7681,7 +7681,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -7722,7 +7722,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -7763,7 +7763,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -7804,7 +7804,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -7845,7 +7845,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -7886,7 +7886,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -7927,7 +7927,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -7968,7 +7968,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -8009,7 +8009,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -8050,7 +8050,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -8091,7 +8091,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -8132,7 +8132,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -8173,7 +8173,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -8214,7 +8214,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -8255,7 +8255,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -8296,7 +8296,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -8337,7 +8337,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -8378,7 +8378,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 276, "atk": 382, @@ -8419,7 +8419,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 276, "atk": 382, @@ -8460,7 +8460,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 276, "atk": 382, @@ -8501,7 +8501,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 276, "atk": 382, @@ -8542,7 +8542,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 276, "atk": 382, @@ -8583,7 +8583,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 276, "atk": 382, @@ -8624,7 +8624,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 276, "atk": 382, @@ -8665,7 +8665,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 276, "atk": 382, @@ -8706,7 +8706,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -8747,7 +8747,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -8788,7 +8788,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 276, "atk": 382, @@ -8829,7 +8829,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 276, "atk": 382, @@ -8870,7 +8870,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -8911,7 +8911,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -8952,7 +8952,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 276, "atk": 382, @@ -8993,7 +8993,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 276, "atk": 382, @@ -9034,7 +9034,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -9075,7 +9075,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -9116,7 +9116,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 276, "atk": 382, @@ -9157,7 +9157,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 276, "atk": 382, @@ -9198,7 +9198,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -9239,7 +9239,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -9280,7 +9280,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 276, "atk": 382, @@ -9321,7 +9321,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 276, "atk": 382, @@ -9362,7 +9362,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -9403,7 +9403,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -9444,7 +9444,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 276, "atk": 382, @@ -9485,7 +9485,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 276, "atk": 382, @@ -9526,7 +9526,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -9567,7 +9567,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -9608,7 +9608,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -9649,7 +9649,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -9690,7 +9690,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -9731,7 +9731,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -9772,7 +9772,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -9813,7 +9813,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 18, @@ -9854,7 +9854,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -9895,7 +9895,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -9936,7 +9936,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 610, "atk": 0, @@ -9977,7 +9977,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 610, "atk": 0, @@ -10018,7 +10018,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -10059,7 +10059,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -10100,7 +10100,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 610, "atk": 0, @@ -10141,7 +10141,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 610, "atk": 0, @@ -10182,7 +10182,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -10223,7 +10223,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -10264,7 +10264,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 610, "atk": 0, @@ -10305,7 +10305,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 610, "atk": 0, @@ -10346,7 +10346,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -10387,7 +10387,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -10428,7 +10428,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 610, "atk": 0, @@ -10469,7 +10469,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 610, "atk": 0, @@ -10510,7 +10510,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -10551,7 +10551,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -10592,7 +10592,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 610, "atk": 0, @@ -10633,7 +10633,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 610, "atk": 0, @@ -10674,7 +10674,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -10715,7 +10715,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -10756,7 +10756,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 610, "atk": 0, @@ -10797,7 +10797,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 610, "atk": 0, @@ -10838,7 +10838,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 610, "atk": 0, @@ -10879,7 +10879,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 610, "atk": 0, @@ -10920,7 +10920,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 610, "atk": 0, @@ -10961,7 +10961,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 610, "atk": 0, @@ -11002,7 +11002,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 610, "atk": 0, @@ -11043,7 +11043,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 610, "atk": 0, @@ -11084,7 +11084,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -11125,7 +11125,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -11166,7 +11166,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -11207,7 +11207,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -11248,7 +11248,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -11289,7 +11289,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -11330,7 +11330,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -11371,7 +11371,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -11412,7 +11412,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -11453,7 +11453,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -11494,7 +11494,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -11535,7 +11535,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -11576,7 +11576,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -11617,7 +11617,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -11658,7 +11658,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -11699,7 +11699,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -11740,7 +11740,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -11781,7 +11781,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -11822,7 +11822,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -11863,7 +11863,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -11904,7 +11904,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -11945,7 +11945,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -11986,7 +11986,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -12027,7 +12027,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -12068,7 +12068,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -12109,7 +12109,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -12150,7 +12150,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -12191,7 +12191,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -12232,7 +12232,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -12273,7 +12273,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -12314,7 +12314,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -12355,7 +12355,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -12396,7 +12396,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 597, "atk": 0, @@ -12437,7 +12437,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 597, "atk": 0, @@ -12478,7 +12478,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -12519,7 +12519,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -12560,7 +12560,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 597, "atk": 0, @@ -12601,7 +12601,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 597, "atk": 0, @@ -12642,7 +12642,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -12683,7 +12683,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -12724,7 +12724,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 597, "atk": 0, @@ -12765,7 +12765,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 597, "atk": 0, @@ -12806,7 +12806,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -12847,7 +12847,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -12888,7 +12888,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 597, "atk": 0, @@ -12929,7 +12929,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 597, "atk": 0, @@ -12970,7 +12970,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -13011,7 +13011,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -13052,7 +13052,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 597, "atk": 0, @@ -13093,7 +13093,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 597, "atk": 0, @@ -13134,7 +13134,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -13175,7 +13175,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 28, "atk": 0, @@ -13216,7 +13216,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 597, "atk": 0, @@ -13257,7 +13257,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 597, "atk": 0, @@ -13298,7 +13298,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 597, "atk": 0, @@ -13339,7 +13339,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 597, "atk": 0, @@ -13380,7 +13380,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 597, "atk": 0, @@ -13421,7 +13421,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 597, "atk": 0, @@ -13462,7 +13462,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 597, "atk": 0, @@ -13503,7 +13503,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 597, "atk": 0, @@ -13544,7 +13544,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -13585,7 +13585,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -13626,7 +13626,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -13667,7 +13667,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -13708,7 +13708,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -13749,7 +13749,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -13790,7 +13790,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -13831,7 +13831,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -13872,7 +13872,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -13913,7 +13913,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -13954,7 +13954,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -13995,7 +13995,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -14036,7 +14036,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -14077,7 +14077,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -14118,7 +14118,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -14159,7 +14159,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -14200,7 +14200,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -14241,7 +14241,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -14282,7 +14282,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -14323,7 +14323,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -14364,7 +14364,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -14405,7 +14405,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -14446,7 +14446,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -14487,7 +14487,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -14528,7 +14528,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -14569,7 +14569,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -14610,7 +14610,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -14651,7 +14651,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -14692,7 +14692,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -14733,7 +14733,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -14774,7 +14774,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -14815,7 +14815,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -14856,7 +14856,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 368, "atk": 300, @@ -14897,7 +14897,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 368, "atk": 300, @@ -14938,7 +14938,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -14979,7 +14979,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -15020,7 +15020,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 368, "atk": 300, @@ -15061,7 +15061,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 368, "atk": 300, @@ -15102,7 +15102,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -15143,7 +15143,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -15184,7 +15184,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 368, "atk": 300, @@ -15225,7 +15225,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 368, "atk": 300, @@ -15266,7 +15266,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -15307,7 +15307,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -15348,7 +15348,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 368, "atk": 300, @@ -15389,7 +15389,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 368, "atk": 300, @@ -15430,7 +15430,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -15471,7 +15471,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -15512,7 +15512,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 368, "atk": 300, @@ -15553,7 +15553,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 368, "atk": 300, @@ -15594,7 +15594,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -15635,7 +15635,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 18, "atk": 14, @@ -15676,7 +15676,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 368, "atk": 300, @@ -15717,7 +15717,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 368, "atk": 300, @@ -15758,7 +15758,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 368, "atk": 300, @@ -15799,7 +15799,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 368, "atk": 300, @@ -15840,7 +15840,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 368, "atk": 300, @@ -15881,7 +15881,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 368, "atk": 300, @@ -15922,7 +15922,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 368, "atk": 300, @@ -15963,7 +15963,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 368, "atk": 300, @@ -16004,7 +16004,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -16045,7 +16045,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -16086,7 +16086,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -16127,7 +16127,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -16168,7 +16168,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -16209,7 +16209,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -16250,7 +16250,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -16291,7 +16291,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -16332,7 +16332,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -16373,7 +16373,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -16414,7 +16414,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -16455,7 +16455,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -16496,7 +16496,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -16537,7 +16537,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -16578,7 +16578,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -16619,7 +16619,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -16660,7 +16660,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -16701,7 +16701,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -16742,7 +16742,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -16783,7 +16783,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -16824,7 +16824,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -16865,7 +16865,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -16906,7 +16906,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -16947,7 +16947,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -16988,7 +16988,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -17029,7 +17029,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -17070,7 +17070,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -17111,7 +17111,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -17152,7 +17152,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -17193,7 +17193,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -17234,7 +17234,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -17275,7 +17275,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -17316,7 +17316,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 276, "atk": 0, @@ -17357,7 +17357,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 276, "atk": 0, @@ -17398,7 +17398,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -17439,7 +17439,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -17480,7 +17480,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 276, "atk": 0, @@ -17521,7 +17521,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 276, "atk": 0, @@ -17562,7 +17562,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -17603,7 +17603,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -17644,7 +17644,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 276, "atk": 0, @@ -17685,7 +17685,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 276, "atk": 0, @@ -17726,7 +17726,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -17767,7 +17767,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -17808,7 +17808,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 276, "atk": 0, @@ -17849,7 +17849,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 276, "atk": 0, @@ -17890,7 +17890,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -17931,7 +17931,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -17972,7 +17972,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 276, "atk": 0, @@ -18013,7 +18013,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 276, "atk": 0, @@ -18054,7 +18054,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -18095,7 +18095,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -18136,7 +18136,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 276, "atk": 0, @@ -18177,7 +18177,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 276, "atk": 0, @@ -18218,7 +18218,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 276, "atk": 0, @@ -18259,7 +18259,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 276, "atk": 0, @@ -18300,7 +18300,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 276, "atk": 0, @@ -18341,7 +18341,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 276, "atk": 0, @@ -18382,7 +18382,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 276, "atk": 0, @@ -18423,7 +18423,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 276, "atk": 0, @@ -18464,7 +18464,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -18505,7 +18505,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -18546,7 +18546,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -18587,7 +18587,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -18628,7 +18628,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -18669,7 +18669,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -18710,7 +18710,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -18751,7 +18751,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -18792,7 +18792,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -18833,7 +18833,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -18874,7 +18874,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -18915,7 +18915,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -18956,7 +18956,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -18997,7 +18997,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -19038,7 +19038,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -19079,7 +19079,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -19120,7 +19120,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -19161,7 +19161,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -19202,7 +19202,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -19243,7 +19243,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -19284,7 +19284,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -19325,7 +19325,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -19366,7 +19366,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -19407,7 +19407,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -19448,7 +19448,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -19489,7 +19489,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -19530,7 +19530,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -19571,7 +19571,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -19612,7 +19612,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -19653,7 +19653,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -19694,7 +19694,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -19735,7 +19735,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -19776,7 +19776,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 294, "atk": 0, @@ -19817,7 +19817,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 294, "atk": 0, @@ -19858,7 +19858,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -19899,7 +19899,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -19940,7 +19940,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 294, "atk": 0, @@ -19981,7 +19981,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 294, "atk": 0, @@ -20022,7 +20022,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -20063,7 +20063,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -20104,7 +20104,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 294, "atk": 0, @@ -20145,7 +20145,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 294, "atk": 0, @@ -20186,7 +20186,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -20227,7 +20227,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -20268,7 +20268,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 294, "atk": 0, @@ -20309,7 +20309,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 294, "atk": 0, @@ -20350,7 +20350,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -20391,7 +20391,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -20432,7 +20432,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 294, "atk": 0, @@ -20473,7 +20473,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 294, "atk": 0, @@ -20514,7 +20514,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -20555,7 +20555,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 14, "atk": 0, @@ -20596,7 +20596,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 294, "atk": 0, @@ -20637,7 +20637,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 294, "atk": 0, @@ -20678,7 +20678,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 294, "atk": 0, @@ -20719,7 +20719,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 294, "atk": 0, @@ -20760,7 +20760,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 294, "atk": 0, @@ -20801,7 +20801,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 294, "atk": 0, @@ -20842,7 +20842,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 294, "atk": 0, @@ -20883,7 +20883,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 294, "atk": 0, @@ -20924,7 +20924,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -20965,7 +20965,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -21006,7 +21006,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -21047,7 +21047,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -21088,7 +21088,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -21129,7 +21129,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -21170,7 +21170,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -21211,7 +21211,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -21252,7 +21252,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -21293,7 +21293,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -21334,7 +21334,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -21375,7 +21375,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -21416,7 +21416,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -21457,7 +21457,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -21498,7 +21498,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -21539,7 +21539,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -21580,7 +21580,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -21621,7 +21621,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -21662,7 +21662,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -21703,7 +21703,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -21744,7 +21744,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -21785,7 +21785,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -21826,7 +21826,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -21867,7 +21867,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -21908,7 +21908,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -21949,7 +21949,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -21990,7 +21990,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -22031,7 +22031,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -22072,7 +22072,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -22113,7 +22113,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -22154,7 +22154,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -22195,7 +22195,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -22236,7 +22236,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 265, "atk": 0, @@ -22277,7 +22277,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 265, "atk": 0, @@ -22318,7 +22318,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -22359,7 +22359,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -22400,7 +22400,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 265, "atk": 0, @@ -22441,7 +22441,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 265, "atk": 0, @@ -22482,7 +22482,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -22523,7 +22523,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -22564,7 +22564,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 265, "atk": 0, @@ -22605,7 +22605,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 265, "atk": 0, @@ -22646,7 +22646,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -22687,7 +22687,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -22728,7 +22728,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 265, "atk": 0, @@ -22769,7 +22769,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 265, "atk": 0, @@ -22810,7 +22810,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -22851,7 +22851,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -22892,7 +22892,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 265, "atk": 0, @@ -22933,7 +22933,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 265, "atk": 0, @@ -22974,7 +22974,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -23015,7 +23015,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 13, "atk": 0, @@ -23056,7 +23056,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 265, "atk": 0, @@ -23097,7 +23097,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 265, "atk": 0, @@ -23138,7 +23138,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 265, "atk": 0, @@ -23179,7 +23179,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 265, "atk": 0, @@ -23220,7 +23220,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 265, "atk": 0, @@ -23261,7 +23261,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 265, "atk": 0, @@ -23302,7 +23302,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 265, "atk": 0, @@ -23343,7 +23343,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 265, "atk": 0, @@ -23384,7 +23384,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -23425,7 +23425,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -23466,7 +23466,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -23507,7 +23507,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -23548,7 +23548,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -23589,7 +23589,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -23630,7 +23630,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -23671,7 +23671,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -23712,7 +23712,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -23753,7 +23753,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -23794,7 +23794,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -23835,7 +23835,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -23876,7 +23876,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -23917,7 +23917,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -23958,7 +23958,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -23999,7 +23999,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -24040,7 +24040,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -24081,7 +24081,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -24122,7 +24122,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -24163,7 +24163,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -24204,7 +24204,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -24245,7 +24245,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -24286,7 +24286,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -24327,7 +24327,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -24368,7 +24368,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -24409,7 +24409,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -24450,7 +24450,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -24491,7 +24491,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -24532,7 +24532,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -24573,7 +24573,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 29, "atk": 0, @@ -24614,7 +24614,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -24655,7 +24655,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -24696,7 +24696,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -24737,7 +24737,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -24778,7 +24778,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -24819,7 +24819,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -24860,7 +24860,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -24901,7 +24901,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -24942,7 +24942,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -24983,7 +24983,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -25024,7 +25024,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -25065,7 +25065,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -25106,7 +25106,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -25147,7 +25147,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -25188,7 +25188,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -25229,7 +25229,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -25270,7 +25270,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -25311,7 +25311,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -25352,7 +25352,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -25393,7 +25393,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -25434,7 +25434,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -25475,7 +25475,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -25516,7 +25516,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -25557,7 +25557,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -25598,7 +25598,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -25639,7 +25639,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -25680,7 +25680,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -25721,7 +25721,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -25762,7 +25762,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -25803,7 +25803,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -25844,7 +25844,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -25885,7 +25885,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -25926,7 +25926,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -25967,7 +25967,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -26008,7 +26008,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -26049,7 +26049,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -26090,7 +26090,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -26131,7 +26131,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -26172,7 +26172,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -26213,7 +26213,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -26254,7 +26254,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -26295,7 +26295,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -26336,7 +26336,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -26377,7 +26377,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -26418,7 +26418,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -26500,7 +26500,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -26541,7 +26541,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -26582,7 +26582,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -26623,7 +26623,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -26664,7 +26664,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -26705,7 +26705,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -26746,7 +26746,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -26787,7 +26787,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -26828,7 +26828,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -26869,7 +26869,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -26910,7 +26910,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -26951,7 +26951,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -26992,7 +26992,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -27033,7 +27033,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -27074,7 +27074,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -27115,7 +27115,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -27156,7 +27156,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -27197,7 +27197,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -27238,7 +27238,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -27279,7 +27279,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -27320,7 +27320,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -27361,7 +27361,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -27402,7 +27402,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -27443,7 +27443,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -27484,7 +27484,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -27525,7 +27525,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -27566,7 +27566,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -27607,7 +27607,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -27648,7 +27648,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -27689,7 +27689,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -27730,7 +27730,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -27771,7 +27771,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -27812,7 +27812,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -27853,7 +27853,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -27894,7 +27894,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -27935,7 +27935,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -27976,7 +27976,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -28017,7 +28017,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -28058,7 +28058,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -28099,7 +28099,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -28140,7 +28140,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -28181,7 +28181,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -28222,7 +28222,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -28263,7 +28263,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&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20", "hid": 0, "hp": 25, "atk": 0, @@ -91559,7 +91559,7 @@ "quality": 1, "image_id": 11201, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -91600,7 +91600,7 @@ "quality": 1, "image_id": 11202, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -91641,7 +91641,7 @@ "quality": 1, "image_id": 11203, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -91682,7 +91682,7 @@ "quality": 1, "image_id": 11204, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -91723,7 +91723,7 @@ "quality": 1, "image_id": 11205, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -91764,7 +91764,7 @@ "quality": 1, "image_id": 11206, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -91805,7 +91805,7 @@ "quality": 1, "image_id": 11207, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -91846,7 +91846,7 @@ "quality": 1, "image_id": 11208, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -91887,7 +91887,7 @@ "quality": 1, "image_id": 11209, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -91928,7 +91928,7 @@ "quality": 1, "image_id": 11210, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -91969,7 +91969,7 @@ "quality": 1, "image_id": 11211, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -92010,7 +92010,7 @@ "quality": 1, "image_id": 11212, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -92051,7 +92051,7 @@ "quality": 1, "image_id": 11213, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -92092,7 +92092,7 @@ "quality": 1, "image_id": 11214, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -92133,7 +92133,7 @@ "quality": 1, "image_id": 11215, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -92174,7 +92174,7 @@ "quality": 1, "image_id": 11216, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -92215,7 +92215,7 @@ "quality": 1, "image_id": 11217, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -92256,7 +92256,7 @@ "quality": 1, "image_id": 11218, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -92297,7 +92297,7 @@ "quality": 1, "image_id": 11219, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -92338,7 +92338,7 @@ "quality": 1, "image_id": 11220, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -92379,7 +92379,7 @@ "quality": 1, "image_id": 11221, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -92420,7 +92420,7 @@ "quality": 1, "image_id": 11222, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -92461,7 +92461,7 @@ "quality": 1, "image_id": 11223, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -92502,7 +92502,7 @@ "quality": 1, "image_id": 11224, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -92543,7 +92543,7 @@ "quality": 1, "image_id": 11225, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -92584,7 +92584,7 @@ "quality": 1, "image_id": 11226, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -92625,7 +92625,7 @@ "quality": 1, "image_id": 11227, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -92666,7 +92666,7 @@ "quality": 1, "image_id": 11228, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -92707,7 +92707,7 @@ "quality": 1, "image_id": 11229, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -92748,7 +92748,7 @@ "quality": 1, "image_id": 11230, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -92789,7 +92789,7 @@ "quality": 1, "image_id": 11231, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -92830,7 +92830,7 @@ "quality": 1, "image_id": 11232, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -92871,7 +92871,7 @@ "quality": 1, "image_id": 11233, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -92912,7 +92912,7 @@ "quality": 1, "image_id": 11234, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -92953,7 +92953,7 @@ "quality": 1, "image_id": 11235, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -92994,7 +92994,7 @@ "quality": 1, "image_id": 11236, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -93035,7 +93035,7 @@ "quality": 1, "image_id": 11237, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -93076,7 +93076,7 @@ "quality": 1, "image_id": 11238, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -93117,7 +93117,7 @@ "quality": 1, "image_id": 11239, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -93158,7 +93158,7 @@ "quality": 1, "image_id": 11240, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -93199,7 +93199,7 @@ "quality": 1, "image_id": 11241, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -93240,7 +93240,7 @@ "quality": 1, "image_id": 11242, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -93281,7 +93281,7 @@ "quality": 1, "image_id": 11243, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -93322,7 +93322,7 @@ "quality": 1, "image_id": 11244, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -93363,7 +93363,7 @@ "quality": 1, "image_id": 11245, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -93404,7 +93404,7 @@ "quality": 1, "image_id": 11246, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -93445,7 +93445,7 @@ "quality": 1, "image_id": 11247, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -93486,7 +93486,7 @@ "quality": 1, "image_id": 11248, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -93527,7 +93527,7 @@ "quality": 1, "image_id": 11249, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -93568,7 +93568,7 @@ "quality": 1, "image_id": 11250, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -93609,7 +93609,7 @@ "quality": 1, "image_id": 11251, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -93650,7 +93650,7 @@ "quality": 1, "image_id": 11252, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -93691,7 +93691,7 @@ "quality": 1, "image_id": 11253, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -93732,7 +93732,7 @@ "quality": 1, "image_id": 11254, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -93773,7 +93773,7 @@ "quality": 1, "image_id": 11255, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -93814,7 +93814,7 @@ "quality": 1, "image_id": 11256, "itid": 50, - "goodType": 9, + "goodType": 6, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -93853,9 +93853,9 @@ "name": "青铜头像框", "lvLimited": 1, "quality": 1, - "image_id": 12530, + "image_id": 11301, "itid": 51, - "goodType": 10, + "goodType": 7, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -93894,9 +93894,9 @@ "name": "白银头像框", "lvLimited": 1, "quality": 1, - "image_id": 12531, + "image_id": 11302, "itid": 51, - "goodType": 10, + "goodType": 7, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -93935,9 +93935,9 @@ "name": "黄金头像框", "lvLimited": 1, "quality": 1, - "image_id": 12532, + "image_id": 11303, "itid": 51, - "goodType": 10, + "goodType": 7, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -93976,9 +93976,9 @@ "name": "紫金头像框", "lvLimited": 1, "quality": 1, - "image_id": 12533, + "image_id": 11304, "itid": 51, - "goodType": 10, + "goodType": 7, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -94017,9 +94017,9 @@ "name": "钻石头像框", "lvLimited": 1, "quality": 1, - "image_id": 12530, + "image_id": 11305, "itid": 51, - "goodType": 10, + "goodType": 7, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -94058,9 +94058,9 @@ "name": "星辰头像框", "lvLimited": 1, "quality": 1, - "image_id": 12531, + "image_id": 11306, "itid": 51, - "goodType": 10, + "goodType": 7, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -94099,9 +94099,9 @@ "name": "天下无双头像框", "lvLimited": 1, "quality": 1, - "image_id": 12532, + "image_id": 11307, "itid": 51, - "goodType": 10, + "goodType": 7, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -94140,9 +94140,9 @@ "name": "万军莫敌头像框", "lvLimited": 1, "quality": 1, - "image_id": 12533, + "image_id": 11308, "itid": 51, - "goodType": 10, + "goodType": 7, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -94181,9 +94181,9 @@ "name": "威震华夏头像框", "lvLimited": 1, "quality": 1, - "image_id": 12530, + "image_id": 11309, "itid": 51, - "goodType": 10, + "goodType": 7, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -94222,9 +94222,9 @@ "name": "独断九州头像框", "lvLimited": 1, "quality": 1, - "image_id": 12531, + "image_id": 11310, "itid": 51, - "goodType": 10, + "goodType": 7, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -94263,9 +94263,9 @@ "name": "荷塘月色头像框", "lvLimited": 1, "quality": 1, - "image_id": 12532, + "image_id": 11311, "itid": 51, - "goodType": 10, + "goodType": 7, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -94304,9 +94304,9 @@ "name": "青青子衿头像框", "lvLimited": 1, "quality": 1, - "image_id": 12533, + "image_id": 11312, "itid": 51, - "goodType": 10, + "goodType": 7, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -94345,9 +94345,9 @@ "name": "杨柳依依头像框", "lvLimited": 1, "quality": 1, - "image_id": 12530, + "image_id": 11313, "itid": 51, - "goodType": 10, + "goodType": 7, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -94386,9 +94386,9 @@ "name": "冬雪飘飘头像框", "lvLimited": 1, "quality": 1, - "image_id": 12531, + "image_id": 11314, "itid": 51, - "goodType": 10, + "goodType": 7, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -94427,9 +94427,9 @@ "name": "新年大吉头像框", "lvLimited": 1, "quality": 1, - "image_id": 12532, + "image_id": 11315, "itid": 51, - "goodType": 10, + "goodType": 7, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -94468,9 +94468,9 @@ "name": "周年庆头像框", "lvLimited": 1, "quality": 1, - "image_id": 12533, + "image_id": 11316, "itid": 51, - "goodType": 10, + "goodType": 7, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -94509,9 +94509,9 @@ "name": "圣诞老人头像框", "lvLimited": 1, "quality": 1, - "image_id": 12530, + "image_id": 11317, "itid": 51, - "goodType": 10, + "goodType": 7, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -94550,9 +94550,9 @@ "name": "演武冠军头像框", "lvLimited": 1, "quality": 1, - "image_id": 12531, + "image_id": 11318, "itid": 51, - "goodType": 10, + "goodType": 7, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -94591,9 +94591,9 @@ "name": "演武亚军头像框", "lvLimited": 1, "quality": 1, - "image_id": 12532, + "image_id": 11319, "itid": 51, - "goodType": 10, + "goodType": 7, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -94632,9 +94632,9 @@ "name": "演武季军头像框", "lvLimited": 1, "quality": 1, - "image_id": 12533, + "image_id": 11320, "itid": 51, - "goodType": 10, + "goodType": 7, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -94675,7 +94675,7 @@ "quality": 1, "image_id": 11401, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -94716,7 +94716,7 @@ "quality": 1, "image_id": 11402, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -94757,7 +94757,7 @@ "quality": 1, "image_id": 11403, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -94798,7 +94798,7 @@ "quality": 1, "image_id": 11404, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -94839,7 +94839,7 @@ "quality": 1, "image_id": 11405, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -94880,7 +94880,7 @@ "quality": 1, "image_id": 11406, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -94921,7 +94921,7 @@ "quality": 1, "image_id": 11407, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -94962,7 +94962,7 @@ "quality": 1, "image_id": 11408, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -95003,7 +95003,7 @@ "quality": 1, "image_id": 11409, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -95044,7 +95044,7 @@ "quality": 1, "image_id": 11410, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -95085,7 +95085,7 @@ "quality": 1, "image_id": 11411, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -95126,7 +95126,7 @@ "quality": 1, "image_id": 11412, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -95167,7 +95167,7 @@ "quality": 1, "image_id": 11413, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -95208,7 +95208,7 @@ "quality": 1, "image_id": 11414, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -95249,7 +95249,7 @@ "quality": 1, "image_id": 11415, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -95290,7 +95290,7 @@ "quality": 1, "image_id": 11416, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -95331,7 +95331,7 @@ "quality": 1, "image_id": 11417, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -95372,7 +95372,7 @@ "quality": 1, "image_id": 11418, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -95413,7 +95413,7 @@ "quality": 1, "image_id": 11419, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -95454,7 +95454,7 @@ "quality": 1, "image_id": 11420, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -95495,7 +95495,7 @@ "quality": 1, "image_id": 11421, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -95536,7 +95536,7 @@ "quality": 1, "image_id": 11422, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -95577,7 +95577,7 @@ "quality": 1, "image_id": 11423, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -95618,7 +95618,7 @@ "quality": 1, "image_id": 11424, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -95659,7 +95659,7 @@ "quality": 1, "image_id": 11425, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -95700,7 +95700,7 @@ "quality": 1, "image_id": 11426, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -95741,7 +95741,7 @@ "quality": 1, "image_id": 11427, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -95782,7 +95782,7 @@ "quality": 1, "image_id": 11428, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -95823,7 +95823,7 @@ "quality": 1, "image_id": 11429, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -95864,7 +95864,7 @@ "quality": 1, "image_id": 11430, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -95905,7 +95905,7 @@ "quality": 1, "image_id": 11431, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -95946,7 +95946,7 @@ "quality": 1, "image_id": 11432, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -95987,7 +95987,7 @@ "quality": 1, "image_id": 11433, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -96028,7 +96028,7 @@ "quality": 1, "image_id": 11434, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -96069,7 +96069,7 @@ "quality": 1, "image_id": 11435, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -96110,7 +96110,7 @@ "quality": 1, "image_id": 11436, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -96151,7 +96151,7 @@ "quality": 1, "image_id": 11437, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -96192,7 +96192,7 @@ "quality": 1, "image_id": 11438, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -96233,7 +96233,7 @@ "quality": 1, "image_id": 11439, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -96274,7 +96274,7 @@ "quality": 1, "image_id": 11440, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -96315,7 +96315,7 @@ "quality": 1, "image_id": 11441, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -96356,7 +96356,7 @@ "quality": 1, "image_id": 11442, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -96397,7 +96397,7 @@ "quality": 1, "image_id": 11443, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -96438,7 +96438,7 @@ "quality": 1, "image_id": 11444, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -96479,7 +96479,7 @@ "quality": 1, "image_id": 11445, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -96520,7 +96520,7 @@ "quality": 1, "image_id": 11446, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -96561,7 +96561,7 @@ "quality": 1, "image_id": 11447, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -96602,7 +96602,7 @@ "quality": 1, "image_id": 11448, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -96643,7 +96643,7 @@ "quality": 1, "image_id": 11449, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -96684,7 +96684,7 @@ "quality": 1, "image_id": 11450, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -96725,7 +96725,7 @@ "quality": 1, "image_id": 11451, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -96766,7 +96766,7 @@ "quality": 1, "image_id": 11452, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -96807,7 +96807,7 @@ "quality": 1, "image_id": 11453, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -96848,7 +96848,7 @@ "quality": 1, "image_id": 11454, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -96889,7 +96889,7 @@ "quality": 1, "image_id": 11455, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", @@ -96930,7 +96930,7 @@ "quality": 1, "image_id": 11456, "itid": 52, - "goodType": 11, + "goodType": 8, "pieces": 0, "pieceId": 0, "composeMaterial": "&", diff --git a/web-server/app/service/Auth.ts b/web-server/app/service/Auth.ts index 7fa12400c..809727796 100644 --- a/web-server/app/service/Auth.ts +++ b/web-server/app/service/Auth.ts @@ -1,4 +1,5 @@ -import { COUNTER, HERO_SYSTEM_TYPE, DEFAULT_LV, DEFAULT_ITEMS, ITID, DEFAULT_GOLD, DEFAULT_HERO_LV, DEFAULT_EQUIPS, DEFAULT_COIN, ADULT_AGE, GUEST_MAX_TIME } from '@consts'; + +import { COUNTER, HERO_SYSTEM_TYPE, DEFAULT_LV, DEFAULT_ITEMS, ITID, DEFAULT_GOLD, DEFAULT_HERO_LV, DEFAULT_EQUIPS, DEFAULT_COIN, ADULT_AGE, GUEST_MAX_TIME, GUEST_DAY, FIGURE_UNLOCK_CONDITION } from '@consts'; import { DEFAULT_HEROES } from '@consts'; import { HeroModel } from '@db/Hero'; import { RoleModel } from '@db/Role'; @@ -308,6 +309,8 @@ export default class Auth extends Service { const role = await RoleModel.createRole(uid, serverId, { roleId, code, roleName, seqId, lv: DEFAULT_LV, exp: (getExpByLv(DEFAULT_LV - 1) || { sum: 0 }).sum || 0 }); if (role) { let skinIds = new Array(); + let conditions = new Array<{type: number, num: number}>() + for (let hid of DEFAULT_HEROES) { let hero = await HeroModel.findByHidAndRole(hid, roleId); if (hero) { @@ -325,9 +328,15 @@ export default class Auth extends Service { skins: [{ id: initialSkin, enable: true }], lv: DEFAULT_HERO_LV, exp: getHeroExpByLv(DEFAULT_HERO_LV - 1) || 0 }); skinIds.push(initialSkin); + conditions.push({type: FIGURE_UNLOCK_CONDITION.GET_HERO, num: hid}); + conditions.push({type: FIGURE_UNLOCK_CONDITION.GET_SKIN, num: initialSkin}); + await calPlayerCeAndSave(HERO_SYSTEM_TYPE.INIT, roleId, hero, {}); } + // 解锁形象 + await ctx.service.utils.unlockFigure(roleId, conditions, role); + await reCalAllHeroCe(HERO_SYSTEM_TYPE.ADD_SKIN, roleId, {}, skinIds) for (let { id, count } of DEFAULT_ITEMS) { diff --git a/web-server/app/service/Utils.ts b/web-server/app/service/Utils.ts index 241d4ae30..51c9110f0 100644 --- a/web-server/app/service/Utils.ts +++ b/web-server/app/service/Utils.ts @@ -1,7 +1,8 @@ import { Service } from 'egg'; import { resResult as pubResult } from '../pubUtils/util'; -import { addSkins, addBags, addEquips } from 'app/pubUtils/itemUtils'; +import { addSkins, addBags, addEquips, unlockFigure } from 'app/pubUtils/itemUtils'; import { BagInter, EquipInter } from 'app/pubUtils/interface'; +import { RoleType } from '@db/Role'; const csprng = require('csprng'); /** * Utils Service @@ -53,4 +54,8 @@ export default class Utils extends Service { public addEquips(roleId: string, roleName: string, weapon: EquipInter) { return addEquips(roleId, roleName, weapon); } + + public unlockFigure(roleId: string, conditions: {type: number, num: number}[], role?: RoleType) { + return unlockFigure(roleId, conditions, role); + } }