From 04904c0947aa62855c9beaca4989349e6f71fb0d Mon Sep 17 00:00:00 2001 From: Atemo Date: Fri, 26 Jan 2024 15:00:36 +0100 Subject: [PATCH 01/44] Corrected Shrink Stuns target (#8075) Fixed #8072 Thanks to @LadyNanuia --- src/map/battle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/map/battle.cpp b/src/map/battle.cpp index c5758c1775..35d15caae5 100644 --- a/src/map/battle.cpp +++ b/src/map/battle.cpp @@ -1383,7 +1383,7 @@ bool battle_status_block_damage(struct block_list *src, struct block_list *targe unit_set_walkdelay(target, gettick(), delay, 1); #ifdef RENEWAL if (sc->getSCE(SC_SHRINK)) - sc_start(src, target, SC_STUN, 50, skill_lv, skill_get_time2(skill_id, skill_lv)); + sc_start(target, src, SC_STUN, 50, skill_lv, skill_get_time2(skill_id, skill_lv)); #else if (sc->getSCE(SC_SHRINK) && rnd() % 100 < 5 * sce->val1) skill_blown(target, src, skill_get_blewcount(CR_SHRINK, 1), -1, BLOWN_NONE); From e965e2794b96dc2fdd4364e457ef85ea5be6557e Mon Sep 17 00:00:00 2001 From: Atemo Date: Fri, 26 Jan 2024 15:02:51 +0100 Subject: [PATCH 02/44] Added null pointer checks in map_delblock (#7930) --- src/map/map.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/map/map.cpp b/src/map/map.cpp index 7b58c490a0..d2afef12cb 100644 --- a/src/map/map.cpp +++ b/src/map/map.cpp @@ -349,7 +349,7 @@ int map_addblock(struct block_list* bl) struct map_data *mapdata = map_getmapdata(m); - if (mapdata->cell == nullptr) // Player warped to a freed map. Stop them! + if (mapdata == nullptr || mapdata->cell == nullptr) // Player warped to a freed map. Stop them! return 1; if( x < 0 || x >= mapdata->xs || y < 0 || y >= mapdata->ys ) @@ -402,6 +402,8 @@ int map_delblock(struct block_list* bl) struct map_data *mapdata = map_getmapdata(bl->m); + nullpo_ret(mapdata); + pos = bl->x/BLOCK_SIZE+(bl->y/BLOCK_SIZE)*mapdata->bxs; if (bl->next) @@ -409,8 +411,10 @@ int map_delblock(struct block_list* bl) if (bl->prev == &bl_head) { //Since the head of the list, update the block_list map of [] if (bl->type == BL_MOB) { + nullpo_ret(mapdata->block_mob); mapdata->block_mob[pos] = bl->next; } else { + nullpo_ret(mapdata->block); mapdata->block[pos] = bl->next; } } else { @@ -434,6 +438,8 @@ int map_delblock(struct block_list* bl) */ int map_moveblock(struct block_list *bl, int x1, int y1, t_tick tick) { + nullpo_ret(bl); + int x0 = bl->x, y0 = bl->y; status_change *sc = NULL; int moveblock = ( x0/BLOCK_SIZE != x1/BLOCK_SIZE || y0/BLOCK_SIZE != y1/BLOCK_SIZE); From c43f7b369e797e8f765fef89d082eed1a3eb1b24 Mon Sep 17 00:00:00 2001 From: Atemo Date: Wed, 31 Jan 2024 16:13:57 +0100 Subject: [PATCH 03/44] Archmage skill corrections (#8120) Corrections of several Archmage skills and High wizard skill HW_MAGICPOWER : AG_FROZEN_SLASH : 3 hits are displayed instead of a single hit. TargetType of 4th ground skills is now Ground. Ground skills don't trigger HW_SOULDRAIN. Skills affected : AG_VIOLENT_QUAKE_ATK AG_ALL_BLOOM_ATK AG_ALL_BLOOM_ATK2 AG_CRYSTAL_IMPACT_ATK AG_ASTRAL_STRIKE_ATK Fixed cast time of HW_MAGICPOWER is not affected by item bonus anymore. --- db/re/skill_db.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/db/re/skill_db.yml b/db/re/skill_db.yml index 3b14aefa13..a178f20eae 100644 --- a/db/re/skill_db.yml +++ b/db/re/skill_db.yml @@ -10125,6 +10125,7 @@ Body: FixedCastTime: 700 CastTimeFlags: IgnoreDex: true + IgnoreItemBonus: true Requires: SpCost: - Level: 1 @@ -35597,7 +35598,7 @@ Body: Description: Violent Quake Attack MaxLevel: 5 Type: Magic - TargetType: Attack + TargetType: Ground Range: 9 Hit: Single HitCount: 1 @@ -35782,7 +35783,7 @@ Body: Description: All Bloom Attack MaxLevel: 5 Type: Magic - TargetType: Attack + TargetType: Ground Range: 9 Hit: Single HitCount: 1 @@ -35802,7 +35803,7 @@ Body: Description: All Bloom Attack 2 MaxLevel: 5 Type: Magic - TargetType: Attack + TargetType: Ground Range: 9 Hit: Single HitCount: 1 @@ -35873,7 +35874,7 @@ Body: Description: Crystal Impact Attack MaxLevel: 5 Type: Magic - TargetType: Attack + TargetType: Ground DamageFlags: Splash: true Hit: Single @@ -36052,7 +36053,7 @@ Body: Description: Astral Strike Attack MaxLevel: 10 Type: Magic - TargetType: Attack + TargetType: Ground Range: 9 Hit: Single HitCount: 1 @@ -36241,8 +36242,8 @@ Body: TargetType: Self DamageFlags: Splash: true - Hit: Single - HitCount: 1 + Hit: Multi_Hit + HitCount: -3 Element: Water SplashArea: - Level: 1 From 8e2ee12b182b59aa79b0878d968022fdc75e52e8 Mon Sep 17 00:00:00 2001 From: Atemo Date: Sat, 17 Feb 2024 14:33:59 +0100 Subject: [PATCH 04/44] Rebalance Cardinal 20240205 (#8132) * Framen - Increases base damage from 4750+(Fidus Animus skill level x 25)%/5250+(Fidus Animus skill level x 25)%(demon and undead)Matk to 6500+(Fidus Animus skill level x 25)%/6750+(Fidus Animus skill level x 25)%(demon and undead)Matk based on level 5. * Pneumaticus Procella - Reduces AP consumption from 30 to 20. - Changes damage property from holy to neutral. - Addes global cooldown by 0.5 seconds. - Changes sound effect. --- db/re/skill_db.yml | 5 +++-- src/map/battle.cpp | 6 ++++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/db/re/skill_db.yml b/db/re/skill_db.yml index a178f20eae..0b73934a59 100644 --- a/db/re/skill_db.yml +++ b/db/re/skill_db.yml @@ -37535,15 +37535,16 @@ Body: Range: 9 Hit: Multi_Hit HitCount: -10 - Element: Holy + Element: Neutral CastCancel: true CastTime: 3000 + AfterCastActDelay: 500 Duration1: 12000 Cooldown: 5000 FixedCastTime: 2000 Requires: SpCost: 150 - ApCost: 30 + ApCost: 20 Unit: Id: Pneumaticus_Procella Range: diff --git a/src/map/battle.cpp b/src/map/battle.cpp index 35d15caae5..d2987b643d 100644 --- a/src/map/battle.cpp +++ b/src/map/battle.cpp @@ -8134,9 +8134,11 @@ struct Damage battle_calc_magic_attack(struct block_list *src,struct block_list RE_LVL_DMOD(100); break; case CD_FRAMEN: - skillratio += -100 + (950 + 5 * pc_checkskill(sd,CD_FIDUS_ANIMUS)) * skill_lv + 5 * sstatus->spl; + skillratio += -100 + 1300 * skill_lv; + skillratio += 5 * pc_checkskill(sd,CD_FIDUS_ANIMUS) * skill_lv; + skillratio += 5 * sstatus->spl; if (tstatus->race == RC_UNDEAD || tstatus->race == RC_DEMON) - skillratio += 100 * skill_lv; + skillratio += 50 * skill_lv; RE_LVL_DMOD(100); break; case AG_DESTRUCTIVE_HURRICANE_CLIMAX:// Is this affected by BaseLV and SPL too??? [Rytech] From 893b133444199eb988ebb622789629396c830860 Mon Sep 17 00:00:00 2001 From: Atemo Date: Sat, 17 Feb 2024 14:55:47 +0100 Subject: [PATCH 05/44] Rebalance Shadow Cross 20240205 (#8134) * Savage Impact - Increases base damage from 900%/1100%(Shadow Exceed)Atk to 1050%/1250%(Shadow Exceed)Atk per hit based on level 10. * Shadow Stab - Unifies number of hit from 2/3(Cloaking Exceed) hits to 3 hits regardless of Cloaking Exceed buff. - Increases base damage from 1750%/2000%(Cloaking Exceed)Atk to 2750%/3250%(Cloaking Exceed)Atk per hit based on level 5. * Eternal Slash - Attack count no longer be removed by Dispell or Clearance. - Increases base damage from 1325%/1825%(Shadow Exceed)Atk to 1500%/2100%(Shadow Exceed)Atk per hit based on level 5. --- db/re/skill_db.yml | 2 +- db/re/status.yml | 2 ++ src/map/battle.cpp | 14 +++++--------- src/map/skill.cpp | 3 --- 4 files changed, 8 insertions(+), 13 deletions(-) diff --git a/db/re/skill_db.yml b/db/re/skill_db.yml index 0b73934a59..1c983bc5d1 100644 --- a/db/re/skill_db.yml +++ b/db/re/skill_db.yml @@ -38053,7 +38053,7 @@ Body: IgnoreDefense: true Range: 2 Hit: Multi_Hit - HitCount: 2 + HitCount: 3 Element: Weapon GiveAp: 2 CastCancel: true diff --git a/db/re/status.yml b/db/re/status.yml index 5bc04d39c3..c124e46d2f 100644 --- a/db/re/status.yml +++ b/db/re/status.yml @@ -7890,6 +7890,8 @@ Body: BlEffect: true DisplayPc: true SendVal1: true + NoDispell: true + NoClearance: true - Status: Shadow_Weapon Icon: EFST_SHADOW_WEAPON DurationLookup: SHC_ENCHANTING_SHADOW diff --git a/src/map/battle.cpp b/src/map/battle.cpp index d2987b643d..9868a8ae8b 100644 --- a/src/map/battle.cpp +++ b/src/map/battle.cpp @@ -5579,7 +5579,7 @@ static int battle_calc_attack_skill_ratio(struct Damage* wd, struct block_list * RE_LVL_DMOD(100); break; case SHC_SAVAGE_IMPACT: - skillratio += -100 + 90 * skill_lv + 5 * sstatus->pow; + skillratio += -100 + 105 * skill_lv + 5 * sstatus->pow; if( sc != nullptr && sc->getSCE( SC_SHADOW_EXCEED ) ){ skillratio += 20 * skill_lv + 3 * sstatus->pow; // !TODO: check POW ratio @@ -5588,19 +5588,19 @@ static int battle_calc_attack_skill_ratio(struct Damage* wd, struct block_list * RE_LVL_DMOD(100); break; case SHC_ETERNAL_SLASH: - skillratio += -100 + 265 * skill_lv + 2 * sstatus->pow; + skillratio += -100 + 300 * skill_lv + 2 * sstatus->pow; if( sc != nullptr && sc->getSCE( SC_SHADOW_EXCEED ) ){ - skillratio += 100 * skill_lv + sstatus->pow; + skillratio += 120 * skill_lv + sstatus->pow; } RE_LVL_DMOD(100); break; case SHC_SHADOW_STAB: - skillratio += -100 + 350 * skill_lv + 5 * sstatus->pow; + skillratio += -100 + 550 * skill_lv + 5 * sstatus->pow; if( sc && sc->getSCE( SC_CLOAKINGEXCEED ) ){ - skillratio += 50 * skill_lv + 2 * sstatus->pow; + skillratio += 100 * skill_lv + 2 * sstatus->pow; } RE_LVL_DMOD(100); @@ -6793,10 +6793,6 @@ static struct Damage initialize_weapon_data(struct block_list *src, struct block if (sc && sc->getSCE(SC_E_SLASH_COUNT)) wd.div_ = sc->getSCE(SC_E_SLASH_COUNT)->val1; break; - case SHC_SHADOW_STAB: - if (wd.miscflag == 2) - wd.div_ = 3; - break; case SHC_IMPACT_CRATER: if (sc && sc->getSCE(SC_ROLLINGCUTTER)) wd.div_ = sc->getSCE(SC_ROLLINGCUTTER)->val1; diff --git a/src/map/skill.cpp b/src/map/skill.cpp index 60c051e4d8..0f925da2ec 100755 --- a/src/map/skill.cpp +++ b/src/map/skill.cpp @@ -5263,9 +5263,6 @@ int skill_castend_damage_id (struct block_list* src, struct block_list *bl, uint break; case SHC_SHADOW_STAB: - if (sc && sc->getSCE(SC_CLOAKINGEXCEED)) - flag |= 2;// Flag to deal 3 hits. - status_change_end(src, SC_CLOAKING); status_change_end(src, SC_CLOAKINGEXCEED); From 83067220bcf8adad3ae8e6d4c8026be4abb0b4a3 Mon Sep 17 00:00:00 2001 From: Atemo Date: Sat, 17 Feb 2024 18:35:38 +0100 Subject: [PATCH 06/44] Rebalance Arch Mage 20240205 (#8131) * Climax - Reduces AP consumption from 150 to 125. - Reduces skill cooldown from 300 seconds to 60 seconds. * Floral Flare Road - Increases global cooldown from 0.25 seconds to 0.75 seconds based on level 5. * Tornado Storm - Increases global cooldown from 0.25 seconds to 0.75 seconds based on level 5. * Stratum Tremor - Increases global cooldown from 0.25 seconds to 0.75 seconds based on level 5. * Rain of Crystal - Increases global cooldown from 0.25 seconds to 0.75 seconds based on level 5. * Crimson Arrow - Increases base damage from 1750%/3500%Matk to 2000%/3750%Matk based on level 5. * Storm Cannon - Increases base damage from 6000%/7500%(Climax)Matk to 7750%/9250%(Climax)Matk based on level 5. * Frozen Slash - Increases base damage from 4900%/6800%(Climax)Matk to 5200%/7100%(Climax)Matk based on level 5. * Mystery Illusion - Increases global cooldown from 0.5 seconds to 0.75 seconds based on level 5. * All Bloom - Increases global cooldown from 0.5 seconds to 1 second based on level 5. * Violent Quake - Increases global cooldown from 0.5 seconds to 1 second based on level 5. * Soul Vulcan Strike - Increases base damage from 1250%Matk to 1500%Matk per hit based on level 5. * Astral Strike - Increases global cooldown from 0.5 seconds to 1 second based on level 10. --- db/re/skill_db.yml | 20 ++++++++++---------- src/map/battle.cpp | 12 ++++++------ 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/db/re/skill_db.yml b/db/re/skill_db.yml index 1c983bc5d1..3ce842a279 100644 --- a/db/re/skill_db.yml +++ b/db/re/skill_db.yml @@ -35443,7 +35443,7 @@ Body: Element: Water CastCancel: true CastTime: 3000 - AfterCastActDelay: 250 + AfterCastActDelay: 750 Duration1: 4000 Cooldown: 5000 FixedCastTime: 1500 @@ -35490,7 +35490,7 @@ Body: Element: Dark CastCancel: true CastTime: 4000 - AfterCastActDelay: 500 + AfterCastActDelay: 750 Duration1: 4000 Cooldown: 4000 FixedCastTime: 1500 @@ -35547,7 +35547,7 @@ Body: Area: 4 CastCancel: true CastTime: 4000 - AfterCastActDelay: 500 + AfterCastActDelay: 1000 Duration1: - Level: 1 Time: 1200 @@ -35675,7 +35675,7 @@ Body: Element: Earth CastCancel: true CastTime: 3000 - AfterCastActDelay: 250 + AfterCastActDelay: 750 Duration1: 4000 Cooldown: 5000 FixedCastTime: 1500 @@ -35732,7 +35732,7 @@ Body: Area: 4 CastCancel: true CastTime: 4000 - AfterCastActDelay: 500 + AfterCastActDelay: 1000 Duration1: - Level: 1 Time: 1200 @@ -35894,7 +35894,7 @@ Body: Element: Wind CastCancel: true CastTime: 3000 - AfterCastActDelay: 250 + AfterCastActDelay: 750 Duration1: 3000 Cooldown: 5000 FixedCastTime: 1500 @@ -35945,7 +35945,7 @@ Body: Element: Fire CastCancel: true CastTime: 3000 - AfterCastActDelay: 250 + AfterCastActDelay: 750 Duration1: 5000 Cooldown: 5000 FixedCastTime: 1500 @@ -36013,7 +36013,7 @@ Body: Area: 5 CastCancel: true CastTime: 8000 - AfterCastActDelay: 500 + AfterCastActDelay: 1000 Duration1: 6000 Cooldown: 6000 FixedCastTime: 2000 @@ -36072,11 +36072,11 @@ Body: CastCancel: true AfterCastActDelay: 300 Duration1: 300000 - Cooldown: 300000 + Cooldown: 60000 FixedCastTime: 4000 Requires: SpCost: 60 - ApCost: 150 + ApCost: 125 Status: Climax - Id: 5233 Name: AG_ROCK_DOWN diff --git a/src/map/battle.cpp b/src/map/battle.cpp index 9868a8ae8b..ffae3e46e8 100644 --- a/src/map/battle.cpp +++ b/src/map/battle.cpp @@ -8000,7 +8000,7 @@ struct Damage battle_calc_magic_attack(struct block_list *src,struct block_list } break; case AG_SOUL_VC_STRIKE: - skillratio += -100 + 250 * skill_lv + 3 * sstatus->spl; + skillratio += -100 + 300 * skill_lv + 3 * sstatus->spl; RE_LVL_DMOD(100); break; case AG_STRANTUM_TREMOR: @@ -8059,7 +8059,7 @@ struct Damage battle_calc_magic_attack(struct block_list *src,struct block_list RE_LVL_DMOD(100); break; case AG_ROCK_DOWN: - skillratio += -100 + 1200 * skill_lv + 5 * sstatus->spl; + skillratio += -100 + 1550 * skill_lv + 5 * sstatus->spl; if( sc != nullptr && sc->getSCE( SC_CLIMAX ) ){ skillratio += 300 * skill_lv; @@ -8068,7 +8068,7 @@ struct Damage battle_calc_magic_attack(struct block_list *src,struct block_list RE_LVL_DMOD(100); break; case AG_STORM_CANNON: - skillratio += -100 + 1200 * skill_lv + 5 * sstatus->spl; + skillratio += -100 + 1550 * skill_lv + 5 * sstatus->spl; if( sc != nullptr && sc->getSCE( SC_CLIMAX ) ){ skillratio += 300 * skill_lv; @@ -8077,15 +8077,15 @@ struct Damage battle_calc_magic_attack(struct block_list *src,struct block_list RE_LVL_DMOD(100); break; case AG_CRIMSON_ARROW: - skillratio += -100 + 350 * skill_lv + 5 * sstatus->spl; + skillratio += -100 + 400 * skill_lv + 5 * sstatus->spl; RE_LVL_DMOD(100); break; case AG_CRIMSON_ARROW_ATK: - skillratio += -100 + 700 * skill_lv + 5 * sstatus->spl; + skillratio += -100 + 750 * skill_lv + 5 * sstatus->spl; RE_LVL_DMOD(100); break; case AG_FROZEN_SLASH: - skillratio += -100 + 400 + 900 * skill_lv + 5 * sstatus->spl; + skillratio += -100 + 450 + 950 * skill_lv + 5 * sstatus->spl; if( sc != nullptr && sc->getSCE( SC_CLIMAX ) ){ skillratio += 150 + 350 * skill_lv; From a0bbbf1729e4873cea93a2dd0b579e540cf51e8c Mon Sep 17 00:00:00 2001 From: Atemo Date: Sat, 17 Feb 2024 20:14:22 +0100 Subject: [PATCH 07/44] Rebalance Wind Hawk 20240205 (#8133) * Gale Storm - Reduces skill cooldown from 1.2 seconds to 0.7 seconds. - Increases base damage from 10000%Atk to 13500%Atk based on level 5. * Crescive Bolt - Increases base damage from 9400%Atk to 13500%Atk based on level 10. - Increases damage bonus on standing still from 10% per stack (up to 30% on 3 stacks) to 20% per stack (up to 60% on 3 stacks). - Changes sound effect. * Calamity Gale - Reduces AP consumption from 200 to 125. - Reduces skill cooldown from 180 seconds to 60 seconds. * Added missing clif_skill_nodamage for WH_GALESTORM Thanks to @Haydrich ! --- db/re/skill_db.yml | 6 +++--- src/map/battle.cpp | 8 +++++--- src/map/skill.cpp | 1 + 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/db/re/skill_db.yml b/db/re/skill_db.yml index 3ce842a279..0561b51758 100644 --- a/db/re/skill_db.yml +++ b/db/re/skill_db.yml @@ -39160,11 +39160,11 @@ Body: CastCancel: true AfterCastActDelay: 500 Duration1: 180000 - Cooldown: 180000 + Cooldown: 60000 FixedCastTime: 1000 Requires: SpCost: 300 - ApCost: 200 + ApCost: 125 Status: CalamityGale - Id: 5329 Name: WH_HAWKBOOMERANG @@ -39225,7 +39225,7 @@ Body: CastCancel: true CastTime: 3500 AfterCastActDelay: 500 - Cooldown: 1200 + Cooldown: 700 FixedCastTime: 500 Requires: SpCost: diff --git a/src/map/battle.cpp b/src/map/battle.cpp index ffae3e46e8..01b3c8a9e4 100644 --- a/src/map/battle.cpp +++ b/src/map/battle.cpp @@ -5690,17 +5690,19 @@ static int battle_calc_attack_skill_ratio(struct Damage* wd, struct block_list * RE_LVL_DMOD(100); break; case WH_GALESTORM: - skillratio += -100 + 1000 * skill_lv + 10 * sstatus->con; + skillratio += -100 + 1350 * skill_lv; + skillratio += 10 * sstatus->con; RE_LVL_DMOD(100); if (sc && sc->getSCE(SC_CALAMITYGALE) && (tstatus->race == RC_BRUTE || tstatus->race == RC_FISH)) skillratio += skillratio * 50 / 100; break; case WH_CRESCIVE_BOLT: - skillratio += -100 + 400 + 900 * skill_lv + 5 * sstatus->con; + skillratio += -100 + 500 + 1300 * skill_lv; + skillratio += 5 * sstatus->con; RE_LVL_DMOD(100); if (sc) { if (sc->getSCE(SC_CRESCIVEBOLT)) - skillratio += skillratio * (10 * sc->getSCE(SC_CRESCIVEBOLT)->val1) / 100; + skillratio += skillratio * (20 * sc->getSCE(SC_CRESCIVEBOLT)->val1) / 100; if (sc->getSCE(SC_CALAMITYGALE)) { skillratio += skillratio * 20 / 100; diff --git a/src/map/skill.cpp b/src/map/skill.cpp index 0f925da2ec..85bc68075b 100755 --- a/src/map/skill.cpp +++ b/src/map/skill.cpp @@ -5872,6 +5872,7 @@ int skill_castend_damage_id (struct block_list* src, struct block_list *bl, uint case WH_GALESTORM:// Give AP if 3 or more targets are hit. if (sd && map_foreachinallrange(skill_area_sub, bl, skill_get_splash(skill_id, skill_lv), BL_CHAR, src, skill_id, skill_lv, tick, BCT_ENEMY, skill_area_sub_count) >= 3) status_heal(src, 0, 0, 10, 0); + clif_skill_nodamage(src, bl, skill_id, skill_lv, 1); break; case BO_ACIDIFIED_ZONE_WATER: case BO_ACIDIFIED_ZONE_GROUND: From 9305da45dc6e5271e53518617003c3b29fae687c Mon Sep 17 00:00:00 2001 From: Kakaroto Date: Sat, 17 Feb 2024 16:17:44 -0300 Subject: [PATCH 08/44] Hateffect update (#8124) Co-authored-by: Pokye <98105181+Pokye@users.noreply.github.com> --- src/map/script.hpp | 5 +++++ src/map/script_constants.hpp | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/src/map/script.hpp b/src/map/script.hpp index 3c0c6b1286..af086077b4 100644 --- a/src/map/script.hpp +++ b/src/map/script.hpp @@ -2121,8 +2121,13 @@ enum e_hat_effects : int16{ HAT_EF_AUTUMN_FULL_MOON, HAT_EF_NIFLHEIM_NIGHT_SKY, HAT_EF_C_ROS2023_CAPE_1, + HAT_EF_BLACK_THUNDER_, HAT_EF_C_ROS2023_CAPE_2, HAT_EF_C_15TH_NOV_HELMET, + HAT_EF_COSMIC_CONNECTION, + HAT_EF_C_BABY_GLOOM, + HAT_EF_WINTERNIGHTBELLS, + HAT_EF_NIGHTSKYOFRUTIE, HAT_EF_MAX }; diff --git a/src/map/script_constants.hpp b/src/map/script_constants.hpp index 8ffda6775d..d1f1451fce 100644 --- a/src/map/script_constants.hpp +++ b/src/map/script_constants.hpp @@ -9622,8 +9622,13 @@ export_constant(HAT_EF_AUTUMN_FULL_MOON); export_constant(HAT_EF_NIFLHEIM_NIGHT_SKY); export_constant(HAT_EF_C_ROS2023_CAPE_1); + export_constant(HAT_EF_BLACK_THUNDER_); export_constant(HAT_EF_C_ROS2023_CAPE_2); export_constant(HAT_EF_C_15TH_NOV_HELMET); + export_constant(HAT_EF_COSMIC_CONNECTION); + export_constant(HAT_EF_C_BABY_GLOOM); + export_constant(HAT_EF_WINTERNIGHTBELLS); + export_constant(HAT_EF_NIGHTSKYOFRUTIE); /* pet catch */ export_constant(PET_CATCH_UNIVERSAL); From f9073574d3ebd3ee40c5c5793d25690752f3f116 Mon Sep 17 00:00:00 2001 From: Atemo Date: Sun, 18 Feb 2024 15:20:19 +0100 Subject: [PATCH 09/44] Updated map and items up to febuary 2024 (#8136) * Implemented equipment and etc items up to 05022024 * Added 1@vrsn map --- conf/maps_athena.conf | 3 + db/map_cache.dat | Bin 2888523 -> 2889473 bytes db/map_index.txt | 1 + db/re/item_combos.yml | 559 +++++++++++++++++ db/re/item_db_equip.yml | 806 ++++++++++++++++++++++++ db/re/item_db_etc.yml | 1279 ++++++++++++++++++++++++++++++++++++++- 6 files changed, 2647 insertions(+), 1 deletion(-) diff --git a/conf/maps_athena.conf b/conf/maps_athena.conf index 7ad07e55d1..629187ce34 100644 --- a/conf/maps_athena.conf +++ b/conf/maps_athena.conf @@ -1610,5 +1610,8 @@ map: 3@vrpop // Depth biosphere 2nd floor map: bl_depth2 +// Fantasy Series Sonic Collaboration - Dr. Eggman's Secret Base +map: 1@vrsn + //------------------------- Clone Maps --------------------------- //------------------------- Extra Maps --------------------------- diff --git a/db/map_cache.dat b/db/map_cache.dat index 1f745a2030d6461defaa0cba060cca024c7432ee..2fd6c8ea651efca900737558aac6fbc953bb9418 100644 GIT binary patch delta 1108 zcmZXSe=yW}7{_;Q&$ng2-~8z4yUS&ZI?2^8qqsZS)rpxRqHY}4?rj|jbxf$m*S0>* z&0KcX#FfapqA7{{LFLEUZLoKgRZMA1yJezF4$;yP=iJ;MclY}5{m1iuo@d_g&dOT4 z{8}v?=qo&EjdDOhM__?~fnW)O1&JY8ihzm05`h&076KdrfnXT|YXmk3Y!TQYSdQR5 z1oj9V5UfBzB48unAaF$Bgy4MyD-k#&;38OsU^N041g;3yAXtmw0|age)**05u)YpF zwk@alg7nn16xt$7=u7C|F=({Rl99*Xq&(x<2*R(<&ijvs_6UMUz8}!Fs$>;~4HsR{ zGs>9>rO`h>=wZF!;=BT$MsSP9uw>w_{};JmFOu+3bn?8YERYm)CAFu7nN1?1KDjX~ zoI2zA#2qtazGKhcZpwacrr_h~yC(OrYrJClPIWJxfnU6fTQKK0 z>W$PIY=C`egP03Y#Ag~=_isAimZ(E)%cK}1R&1#tNx4hwqT zGn$`ddTApz@e2OPR-WEve@sin5XYwdj`nPSNNrWP*W8p8O#X6QzJ4Z8>w%RIzY&MI z;D#2}!n|&duc0w;{l+Y=qC5m(s+@)T2bnopH>yo4w1o6eT#hUd530`PTz1AbNju?0V^|?a!~HajC_kteoAzGy zSM3CE1@{9mnW0%bDjCR=R|sRcksTZ_uT4HJPwTI0hoqgGZ7V%}n!o&^-%os|(==f? sYt+OKHa4Z0F~hH>ne+%nCv}eOcKd2r%3XLmk8b-P{QCS$6WnV51f$W>EC2ui delta 150 zcmWN^w-LfX002QAIJ|$n_f~a~P?dsfg^*D~LJKqnn{E2a!uOd49x=&%QY1)T3R0AR zOH!7KRHY_$X-HFA(w2^Nr6*DPGLWH+WGoYz%1q|6kfp3-EgRX&PWEz;qnzX{7rDyq HO>&PvY11L` diff --git a/db/map_index.txt b/db/map_index.txt index 13e7bcf091..a34bdf5e1a 100644 --- a/db/map_index.txt +++ b/db/map_index.txt @@ -1240,6 +1240,7 @@ t_garden 2@vrpop 3@vrpop bl_depth2 +1@vrsn //====================================================================================== // - Other/Extra maps - diff --git a/db/re/item_combos.yml b/db/re/item_combos.yml index 23201eea0c..f0b31e00bd 100644 --- a/db/re/item_combos.yml +++ b/db/re/item_combos.yml @@ -48064,3 +48064,562 @@ Body: - Improve_Orb_Cri # 29539 Script: | bonus2 bAddRace,RC_All,6; + - Combos: + - Combo: + - Signet_Of_Pow3 # 312984 + - Star_Cluster_Of_Pow3 # 310676 + Script: | + bonus2 bAddRace,RC_All,10; + bonus2 bAddRace,RC_Player_Human,-10; + bonus2 bAddRace,RC_Player_Doram,-10; + - Combos: + - Combo: + - Signet_Of_Pow4 # 312985 + - Star_Cluster_Of_Pow3 # 310676 + Script: | + bonus2 bAddRace,RC_All,15; + bonus2 bAddRace,RC_Player_Human,-15; + bonus2 bAddRace,RC_Player_Doram,-15; + - Combos: + - Combo: + - Signet_Of_Pow5 # 312986 + - Star_Cluster_Of_Pow3 # 310676 + Script: | + bonus2 bAddRace,RC_All,20; + bonus2 bAddRace,RC_Player_Human,-20; + bonus2 bAddRace,RC_Player_Doram,-20; + - Combos: + - Combo: + - Signet_Of_Con3 # 312989 + - Star_Cluster_Of_Con3 # 310682 + Script: | + bonus2 bAddRace,RC_All,10; + bonus2 bAddRace,RC_Player_Human,-10; + bonus2 bAddRace,RC_Player_Doram,-10; + - Combos: + - Combo: + - Signet_Of_Con4 # 312990 + - Star_Cluster_Of_Con3 # 310682 + Script: | + bonus2 bAddRace,RC_All,15; + bonus2 bAddRace,RC_Player_Human,-15; + bonus2 bAddRace,RC_Player_Doram,-15; + - Combos: + - Combo: + - Signet_Of_Con5 # 312991 + - Star_Cluster_Of_Con3 # 310682 + Script: | + bonus2 bAddRace,RC_All,20; + bonus2 bAddRace,RC_Player_Human,-20; + bonus2 bAddRace,RC_Player_Doram,-20; + - Combos: + - Combo: + - Signet_Of_Spl3 # 312994 + - Star_Cluster_Of_Spl3 # 310688 + Script: | + bonus2 bMagicAddRace,RC_All,10; + bonus2 bMagicAddRace,RC_Player_Human,-10; + bonus2 bMagicAddRace,RC_Player_Doram,-10; + - Combos: + - Combo: + - Signet_Of_Spl4 # 312995 + - Star_Cluster_Of_Spl3 # 310688 + Script: | + bonus2 bMagicAddRace,RC_All,15; + bonus2 bMagicAddRace,RC_Player_Human,-15; + bonus2 bMagicAddRace,RC_Player_Doram,-15; + - Combos: + - Combo: + - Signet_Of_Spl5 # 312996 + - Star_Cluster_Of_Spl3 # 310688 + Script: | + bonus2 bMagicAddRace,RC_All,20; + bonus2 bMagicAddRace,RC_Player_Human,-20; + bonus2 bMagicAddRace,RC_Player_Doram,-20; + - Combos: + - Combo: + - Signet_Of_Sta3 # 312999 + - Star_Cluster_Of_Sta3 # 310679 + Script: | + bonus bMaxHPrate,5; + - Combos: + - Combo: + - Signet_Of_Sta4 # 313000 + - Star_Cluster_Of_Sta3 # 310679 + Script: | + bonus bMaxHPrate,7; + - Combos: + - Combo: + - Signet_Of_Sta5 # 313001 + - Star_Cluster_Of_Sta3 # 310679 + Script: | + bonus bMaxHPrate,10; + - Combos: + - Combo: + - Signet_Of_Crt3 # 313004 + - Star_Cluster_Of_Crt3 # 310685 + Script: | + bonus2 bAddRace,RC_All,10; + bonus2 bAddRace,RC_Player_Human,-10; + bonus2 bAddRace,RC_Player_Doram,-10; + - Combos: + - Combo: + - Signet_Of_Crt4 # 313005 + - Star_Cluster_Of_Crt3 # 310685 + Script: | + bonus2 bAddRace,RC_All,15; + bonus2 bAddRace,RC_Player_Human,-15; + bonus2 bAddRace,RC_Player_Doram,-15; + - Combos: + - Combo: + - Signet_Of_Crt5 # 313006 + - Star_Cluster_Of_Crt3 # 310685 + Script: | + bonus2 bAddRace,RC_All,20; + bonus2 bAddRace,RC_Player_Human,-20; + bonus2 bAddRace,RC_Player_Doram,-20; + - Combos: + - Combo: + - Signet_Of_Wis3 # 313009 + - Star_Cluster_Of_Wis3 # 310691 + Script: | + bonus bMaxSPrate,5; + - Combos: + - Combo: + - Signet_Of_Wis4 # 313010 + - Star_Cluster_Of_Wis3 # 310691 + Script: | + bonus bMaxSPrate,7; + - Combos: + - Combo: + - Signet_Of_Wis5 # 313011 + - Star_Cluster_Of_Wis3 # 310691 + Script: | + bonus bMaxSPrate,10; + - Combos: + - Combo: + - Life_of_Spring_Pow # 313012 + - Star_Armor_Of_Pow # 450169 + Script: | + bonus2 bAddEle,Ele_All,2; + if (getenchantgrade(EQI_ARMOR)>=ENCHANTGRADE_A) { + bonus2 bAddEle,Ele_All,3*(getequiprefinerycnt(EQI_ARMOR)/2); + } + - Combos: + - Combo: + - Life_of_Spring_Sta # 313013 + - Star_Armor_Of_Sta # 450170 + Script: | + .@r_armor = getequiprefinerycnt(EQI_ARMOR); + bonus bMaxHPrate,3; + if (getenchantgrade(EQI_ARMOR)>=ENCHANTGRADE_A) { + bonus bMaxHPrate,(.@r_armor/2); + bonus bRes,20*(.@r_armor/2); + } + - Combos: + - Combo: + - Life_of_Spring_Crt # 313014 + - Star_Suit_Of_Crt # 450172 + Script: | + bonus bCritAtkRate,3; + if (getenchantgrade(EQI_ARMOR)>=ENCHANTGRADE_A) { + bonus bCritAtkRate,3*(getequiprefinerycnt(EQI_ARMOR)/2); + } + - Combos: + - Combo: + - Life_of_Summer_Con # 313015 + - Star_Suit_Of_Con # 450171 + Script: | + bonus2 bAddEle,Ele_All,2; + if (getenchantgrade(EQI_ARMOR)>=ENCHANTGRADE_A) { + bonus2 bAddEle,Ele_All,3*(getequiprefinerycnt(EQI_ARMOR)/2); + } + - Combos: + - Combo: + - Life_of_Summer_Sta # 313016 + - Star_Armor_Of_Sta # 450170 + Script: | + .@r_armor = getequiprefinerycnt(EQI_ARMOR); + bonus bMaxHPrate,3; + if (getenchantgrade(EQI_ARMOR)>=ENCHANTGRADE_A) { + bonus bMaxHPrate,(.@r_armor/2); + bonus bRes,20*(.@r_armor/2); + } + - Combos: + - Combo: + - Life_of_Summer_Crt # 313017 + - Star_Suit_Of_Crt # 450172 + Script: | + bonus bCritAtkRate,3; + if (getenchantgrade(EQI_ARMOR)>=ENCHANTGRADE_A) { + bonus bCritAtkRate,3*(getequiprefinerycnt(EQI_ARMOR)/2); + } + - Combos: + - Combo: + - Life_of_Autumn_Spl # 313018 + - Star_Robe_Of_Spl # 450173 + Script: | + bonus2 bMagicAddEle,Ele_All,2; + if (getenchantgrade(EQI_ARMOR)>=ENCHANTGRADE_A) { + bonus2 bMagicAddEle,Ele_All,3*(getequiprefinerycnt(EQI_ARMOR)/2); + } + - Combos: + - Combo: + - Life_of_Autumn_Sta # 313019 + - Star_Armor_Of_Sta # 450170 + Script: | + .@r_armor = getequiprefinerycnt(EQI_ARMOR); + bonus bMaxHPrate,3; + if (getenchantgrade(EQI_ARMOR)>=ENCHANTGRADE_A) { + bonus bMaxHPrate,(.@r_armor/2); + bonus bRes,20*(.@r_armor/2); + } + - Combos: + - Combo: + - Life_of_Autumn_Wis # 313020 + - Star_Robe_Of_Wis # 450174 + Script: | + .@r_armor = getequiprefinerycnt(EQI_ARMOR); + bonus bDelayrate,-3; + if (getenchantgrade(EQI_ARMOR)>=ENCHANTGRADE_A) { + bonus bDelayrate,-2*(.@r_armor/2); + bonus bMaxSPrate,(.@r_armor/2); + } + - Combos: + - Combo: + - Life_of_Winter_Pow # 313021 + - Star_Armor_Of_Pow # 450169 + Script: | + bonus bCritAtkRate,3; + if (getenchantgrade(EQI_ARMOR)>=ENCHANTGRADE_A) { + bonus bCritAtkRate,3*(getequiprefinerycnt(EQI_ARMOR)/2); + } + - Combos: + - Combo: + - Life_of_Winter_Con # 313022 + - Star_Suit_Of_Con # 450171 + Script: | + bonus bCritAtkRate,3; + if (getenchantgrade(EQI_ARMOR)>=ENCHANTGRADE_A) { + bonus bCritAtkRate,3*(getequiprefinerycnt(EQI_ARMOR)/2); + } + - Combos: + - Combo: + - Life_of_Winter_Crt # 313023 + - Star_Suit_Of_Crt # 450172 + Script: | + bonus2 bAddEle,Ele_All,2; + if (getenchantgrade(EQI_ARMOR)>=ENCHANTGRADE_A) { + bonus2 bAddEle,Ele_All,3*(getequiprefinerycnt(EQI_ARMOR)/2); + } + - Combos: + - Combo: + - Star_Cluster_Of_Str1 # 313024 + - Token_Of_Life # 312981 + Script: | + bonus2 bAddClass,Class_Normal,3; + bonus2 bAddClass,Class_Boss,3; + - Combos: + - Combo: + - Star_Cluster_Of_Str2 # 313025 + - Token_Of_Life # 312981 + Script: | + bonus2 bAddClass,Class_Normal,6; + bonus2 bAddClass,Class_Boss,6; + - Combos: + - Combo: + - Star_Cluster_Of_Str3 # 313026 + - Token_Of_Life # 312981 + Script: | + bonus2 bAddClass,Class_Normal,9; + bonus2 bAddClass,Class_Boss,9; + - Combos: + - Combo: + - Star_Cluster_Of_Str4 # 313027 + - Token_Of_Life # 312981 + Script: | + bonus2 bAddClass,Class_Normal,12; + bonus2 bAddClass,Class_Boss,12; + - Combos: + - Combo: + - Star_Cluster_Of_Str5 # 313028 + - Token_Of_Life # 312981 + Script: | + bonus2 bAddClass,Class_Normal,15; + bonus2 bAddClass,Class_Boss,15; + - Combos: + - Combo: + - Star_Cluster_Of_Luk1 # 313029 + - Token_Of_Life # 312981 + Script: | + bonus2 bAddClass,Class_Normal,3; + bonus2 bAddClass,Class_Boss,3; + - Combos: + - Combo: + - Star_Cluster_Of_Luk2 # 313030 + - Token_Of_Life # 312981 + Script: | + bonus2 bAddClass,Class_Normal,6; + bonus2 bAddClass,Class_Boss,6; + - Combos: + - Combo: + - Star_Cluster_Of_Luk3 # 313031 + - Token_Of_Life # 312981 + Script: | + bonus2 bAddClass,Class_Normal,9; + bonus2 bAddClass,Class_Boss,9; + - Combos: + - Combo: + - Star_Cluster_Of_Luk4 # 313032 + - Token_Of_Life # 312981 + Script: | + bonus2 bAddClass,Class_Normal,12; + bonus2 bAddClass,Class_Boss,12; + - Combos: + - Combo: + - Star_Cluster_Of_Luk5 # 313033 + - Token_Of_Life # 312981 + Script: | + bonus2 bAddClass,Class_Normal,15; + bonus2 bAddClass,Class_Boss,15; + - Combos: + - Combo: + - Star_Cluster_Of_Int1 # 313034 + - Token_Of_Life # 312981 + Script: | + bonus2 bMagicAddClass,Class_Normal,3; + bonus2 bMagicAddClass,Class_Boss,3; + - Combos: + - Combo: + - Star_Cluster_Of_Int2 # 313035 + - Token_Of_Life # 312981 + Script: | + bonus2 bMagicAddClass,Class_Normal,6; + bonus2 bMagicAddClass,Class_Boss,6; + - Combos: + - Combo: + - Star_Cluster_Of_Int3 # 313036 + - Token_Of_Life # 312981 + Script: | + bonus2 bMagicAddClass,Class_Normal,9; + bonus2 bMagicAddClass,Class_Boss,9; + - Combos: + - Combo: + - Star_Cluster_Of_Int4 # 313037 + - Token_Of_Life # 312981 + Script: | + bonus2 bMagicAddClass,Class_Normal,12; + bonus2 bMagicAddClass,Class_Boss,12; + - Combos: + - Combo: + - Star_Cluster_Of_Int5 # 313038 + - Token_Of_Life # 312981 + Script: | + bonus2 bMagicAddClass,Class_Normal,15; + bonus2 bMagicAddClass,Class_Boss,15; + - Combos: + - Combo: + - Star_Cluster_Of_Res1 # 313039 + - Token_Of_Life # 312981 + Script: | + bonus bMaxHPrate,1; + bonus bMaxSPrate,1; + - Combos: + - Combo: + - Star_Cluster_Of_Res2 # 313040 + - Token_Of_Life # 312981 + Script: | + bonus bMaxHPrate,2; + bonus bMaxSPrate,2; + - Combos: + - Combo: + - Star_Cluster_Of_Res3 # 313041 + - Token_Of_Life # 312981 + Script: | + bonus bMaxHPrate,3; + bonus bMaxSPrate,3; + - Combos: + - Combo: + - Star_Cluster_Of_Res4 # 313042 + - Token_Of_Life # 312981 + Script: | + bonus bMaxHPrate,4; + bonus bMaxSPrate,4; + - Combos: + - Combo: + - Star_Cluster_Of_Res5 # 313043 + - Token_Of_Life # 312981 + Script: | + bonus bMaxHPrate,5; + bonus bMaxSPrate,5; + - Combos: + - Combo: + - aegis_313059 # 313059 + - Runeknight_Top3 # 310881 + Script: | + bonus2 bAddSize,Size_All,3*(getskilllv("DK_TWOHANDDEF")/2); + - Combos: + - Combo: + - aegis_313059 # 313059 + - Runeknight_Middle3 # 310882 + Script: | + bonus2 bSkillAtk,"DK_HACKANDSLASHER",10; + - Combos: + - Combo: + - aegis_313059 # 313059 + - Runeknight_Bottom3 # 310883 + Script: | + bonus bCRate,3; + bonus2 bSkillAtk,"DK_STORMSLASH",15; + - Combos: + - Combo: + - aegis_313060 # 313060 + - Royalguard_Top3 # 310887 + Script: | + bonus2 bSkillAtk,"IG_CROSS_RAIN",15; + - Combos: + - Combo: + - aegis_313060 # 313060 + - Royalguard_Middle3 # 310888 + Script: | + bonus2 bMagicAddSize,Size_All,10; + - Combos: + - Combo: + - aegis_313060 # 313060 + - Royalguard_Bottom3 # 310889 + Script: | + bonus2 bMagicAddEle,Ele_All,3*(getskilllv("IG_SHIELD_MASTERY")/2); + - Combos: + - Combo: + - aegis_313061 # 313061 + - aegis_311463 # 311463 + Script: | + bonus2 bSkillAtk,"NW_THE_VIGILANTE_AT_NIGHT",10; + - Combos: + - Combo: + - aegis_313061 # 313061 + - aegis_311464 # 311464 + Script: | + bonus2 bSkillAtk,"NW_SPIRAL_SHOOTING",15; + - Combos: + - Combo: + - aegis_313061 # 313061 + - aegis_311465 # 311465 + Script: | + bonus2 bSkillAtk,"NW_MAGAZINE_FOR_ONE",10; + - Combos: + - Combo: + - FuriousCirclet_WH # 400608 + - StormBow_Furious # 700100 + Script: | + bonus2 bSkillAtk,"WH_GALESTORM",15; + - Combos: + - Combo: + - FuriousCirclet_WH # 400608 + - TornadoBow_Furious # 700101 + Script: | + bonus2 bSkillAtk,"WH_CRESCIVE_BOLT",15; + - Combos: + - Combo: + - FuriousCirclet_CD # 400609 + - SaintBook_Furious # 540086 + Script: | + bonus2 bSkillAtk,"CD_PETITIO",15; + - Combos: + - Combo: + - FuriousCirclet_CD # 400609 + - SaintWand_Furious # 550141 + Script: | + bonus2 bSkillAtk,"CD_FRAMEN",15; + - Combos: + - Combo: + - FuriousCirclet_SKE # 400610 + - SunBook_Furious # 540087 + Script: | + bonus2 bSkillAtk,"SKE_NOON_BLAST",15; + - Combos: + - Combo: + - FuriousCirclet_SKE # 400610 + - MoonBook_Furious # 540088 + Script: | + bonus2 bSkillAtk,"SKE_MIDNIGHT_KICK",15; + - Combos: + - Combo: + - Signet_Of_Spring # 490483 + - Circul_Of_Life_Spring # 480349 + Script: | + .@val = 5+3*(getequiprefinerycnt(EQI_GARMENT)/2); + bonus2 bAddRace,RC_All,.@val; + bonus2 bAddRace,RC_Player_Human,-.@val; + bonus2 bAddRace,RC_Player_Doram,-.@val; + bonus bDelayrate,-10; + - Combos: + - Combo: + - Signet_Of_Summer # 490484 + - Circul_Of_Life_Summer # 480350 + Script: | + .@val = 5+3*(getequiprefinerycnt(EQI_GARMENT)/2); + bonus2 bAddRace,RC_All,.@val; + bonus2 bAddRace,RC_Player_Human,-.@val; + bonus2 bAddRace,RC_Player_Doram,-.@val; + bonus bDelayrate,-10; + - Combos: + - Combo: + - Signet_Of_Autumn # 490485 + - Circul_Of_Life_Autumn # 480351 + Script: | + .@val = 5+3*(getequiprefinerycnt(EQI_GARMENT)/2); + bonus2 bMagicAddRace,RC_All,.@val; + bonus2 bMagicAddRace,RC_Player_Human,-.@val; + bonus2 bMagicAddRace,RC_Player_Doram,-.@val; + bonus bDelayrate,-10; + - Combos: + - Combo: + - Signet_Of_Winter # 490486 + - Circul_Of_Life_Winter # 480352 + Script: | + .@val = 5+3*(getequiprefinerycnt(EQI_GARMENT)/2); + bonus2 bAddRace,RC_All,.@val; + bonus2 bAddRace,RC_Player_Human,-.@val; + bonus2 bAddRace,RC_Player_Doram,-.@val; + bonus bDelayrate,-10; + - Combos: + - Combo: + - SaintBook_Furious # 540086 + - FuriousBoots # 470265 + Script: | + autobonus "{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,\"AB_DUPLELIGHT_MELEE\",(15*.@sum); bonus2 bSkillAtk,\"AB_DUPLELIGHT_MAGIC\",(15*.@sum); }",70,10000,BF_WEAPON; + - Combos: + - Combo: + - SunBook_Furious # 540087 + - FuriousBoots # 470265 + Script: | + bonus bDelayrate,-10; + - Combos: + - Combo: + - MoonBook_Furious # 540088 + - FuriousBoots # 470265 + Script: | + .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_SHOES); + bonus2 bSkillAtk,"SKE_MIDNIGHT_KICK",15; + bonus2 bSkillAtk,"SKE_DAWN_BREAK",.@sum*2; + - Combos: + - Combo: + - SaintWand_Furious # 550141 + - FuriousBoots # 470265 + Script: | + .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_SHOES); + bonus bDelayrate,-10; + bonus2 bSkillAtk,"CD_FRAMEN",.@sum; + - Combos: + - Combo: + - StormBow_Furious # 700100 + - FuriousBoots # 470265 + Script: | + bonus2 bSkillUseSP,"WH_GALESTORM",20; + - Combos: + - Combo: + - TornadoBow_Furious # 700101 + - FuriousBoots # 470265 + Script: | + bonus bDelayrate,-10; diff --git a/db/re/item_db_equip.yml b/db/re/item_db_equip.yml index fb9120f812..9b1143e9f8 100644 --- a/db/re/item_db_equip.yml +++ b/db/re/item_db_equip.yml @@ -57882,6 +57882,17 @@ Body: AegisName: Dark_Lord_Egg Name: Dark Lord Egg Type: PetEgg + - Id: 9156 + AegisName: Sonic_Chao_Egg + Name: Chao's Egg # !todo check english name + Type: PetEgg + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 10001 AegisName: Skull_Helm Name: Skull Helm @@ -115621,6 +115632,16 @@ Body: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 + - Id: 21400 + AegisName: aegis_21400 + Name: Costume Blue Dragon Statue # !todo check english name + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + ArmorLevel: 1 + View: 2494 - Id: 22000 AegisName: Temporal_Str_Boots Name: Temporal Str Boots @@ -160306,6 +160327,14 @@ Body: if (.@r>=11) { bonus2 bAddSize,Size_All,10; } + - Id: 400100 + AegisName: aegis_400100 + Name: Costume Leon Wig # !todo check english name + Type: Armor + Locations: + Costume_Head_Low: true + ArmorLevel: 1 + View: 2373 - Id: 400101 AegisName: GatesofNetherworld Name: Gate of Netherworld @@ -167787,6 +167816,21 @@ Body: bonus2 bSkillAtk,"WS_CARTTERMINATION",15; if (.@r>=7) bonus2 bSkillAtk,"WS_CARTTERMINATION",15; + - Id: 400502 + AegisName: C_Sonic_Ring + Name: Costume ring # !todo check english name + Type: Armor + Locations: + Costume_Head_Top: true + ArmorLevel: 1 + View: 2433 + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 400503 AegisName: C_Hosangto_Hat Name: Costume Bunny Ear Hat @@ -169416,6 +169460,181 @@ Body: Costume_Head_Top: true ArmorLevel: 1 View: 2488 + - Id: 400605 + AegisName: C_VIP_Poring_Cake_Cap + Name: Costume Birthday Cake Hat # !todo check english name + Type: Armor + Locations: + Costume_Head_Top: true + ArmorLevel: 1 + View: 417 + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 400608 + AegisName: FuriousCirclet_WH + Name: Crown of Wrath (Windhawk) # !todo check english name + Type: Armor + Weight: 300 + Defense: 30 + Slots: 1 + Jobs: + Hunter: true + Classes: + Fourth: true + Locations: + Head_Top: true + ArmorLevel: 2 + EquipLevelMin: 235 + Refineable: true + Gradable: true + View: 2415 + Script: | + .@g = getenchantgrade(); + .@r = getrefine(); + bonus bBaseAtk,10*(.@r/2); + bonus2 bSkillAtk,"WH_CRESCIVE_BOLT",4*(.@r/3); + bonus2 bSkillAtk,"WH_GALESTORM",4*(.@r/3); + if (.@r>=7) { + bonus bVariableCastrate,-15; + if (.@r>=9) { + bonus bLongAtkRate,10; + if (.@r>=11) { + bonus bFixedCast,-300; + bonus bAtkRate,5; + } + } + } + if (.@g>=ENCHANTGRADE_D) { + bonus bPAtk,3; + bonus bPow,5; + bonus bCon,5; + if (.@g>=ENCHANTGRADE_C) { + bonus bLongAtkRate,10; + if (.@g>=ENCHANTGRADE_B) { + bonus bFixedCast,-200; + bonus bAtkRate,5; + if (.@g>=ENCHANTGRADE_A) { + bonus bCritAtkRate,15; + bonus bCRate,5; + } + } + } + } + - Id: 400609 + AegisName: FuriousCirclet_CD + Name: Crown of Wrath (Cardinal) # !todo check english name + Type: Armor + Weight: 300 + Defense: 30 + Slots: 1 + Jobs: + Priest: true + Classes: + Fourth: true + Locations: + Head_Top: true + ArmorLevel: 2 + EquipLevelMin: 235 + Refineable: true + Gradable: true + View: 2415 + Script: | + .@g = getenchantgrade(); + .@r = getrefine(); + bonus bMatk,10*(.@r/2); + bonus bBaseAtk,10*(.@r/2); + bonus2 bSkillAtk,"CD_PETITIO",4*(.@r/3); + bonus2 bSkillAtk,"CD_FRAMEN",4*(.@r/3); + if (.@r>=7) { + bonus bVariableCastrate,-15; + if (.@r>=9) { + bonus bShortAtkRate,10; + bonus2 bMagicAtkEle,Ele_All,10; + if (.@r>=11) { + bonus bFixedCast,-300; + bonus bMatkRate,5; + bonus bAtkRate,5; + } + } + } + if (.@g>=ENCHANTGRADE_D) { + bonus bPAtk,3; + bonus bSMatk,3; + bonus bPow,5; + bonus bSpl,5; + bonus bCon,5; + if (.@g>=ENCHANTGRADE_C) { + bonus bShortAtkRate,10; + bonus2 bMagicAtkEle,Ele_All,10; + if (.@g>=ENCHANTGRADE_B) { + bonus bFixedCast,-200; + bonus bMatkRate,5; + bonus bAtkRate,5; + if (.@g>=ENCHANTGRADE_A) { + bonus2 bMagicAtkEle,Ele_All,15; + bonus bCritAtkRate,15; + bonus bPAtk,5; + bonus bSMatk,5; + } + } + } + } + - Id: 400610 + AegisName: FuriousCirclet_SKE + Name: Crown of Wrath (Sky Emperor) # !todo check english name + Type: Armor + Weight: 300 + Defense: 30 + Slots: 1 + Jobs: + StarGladiator: true + Classes: + Fourth: true + Locations: + Head_Top: true + ArmorLevel: 2 + EquipLevelMin: 235 + Refineable: true + Gradable: true + View: 2415 + Script: | + .@g = getenchantgrade(); + .@r = getrefine(); + bonus bBaseAtk,10*(.@r/2); + bonus2 bSkillAtk,"SKE_NOON_BLAST",4*(.@r/3); + bonus2 bSkillAtk,"SKE_MIDNIGHT_KICK",4*(.@r/3); + if (.@r>=7) { + bonus bVariableCastrate,-15; + if (.@r>=9) { + bonus bShortAtkRate,10; + if (.@r>=11) { + bonus bFixedCast,-300; + bonus bAtkRate,5; + } + } + } + if (.@g>=ENCHANTGRADE_D) { + bonus bPAtk,3; + bonus bPow,5; + bonus bCon,5; + if (.@g>=ENCHANTGRADE_C) { + bonus bShortAtkRate,10; + if (.@g>=ENCHANTGRADE_B) { + bonus bFixedCast,-200; + bonus bAtkRate,5; + if (.@g>=ENCHANTGRADE_A) { + bonus bShortAtkRate,15; + bonus bPAtk,5; + } + } + } + } - Id: 410000 AegisName: Resonate_Taego_J Name: Ancient Resonance @@ -172199,6 +172418,66 @@ Body: Costume_Head_Mid: true ArmorLevel: 1 View: 2421 + - Id: 410262 + AegisName: C_Sonic_Mini + Name: Costume Sonic Mini Me # !todo check english name + Type: Armor + Locations: + Costume_Head_Mid: true + ArmorLevel: 1 + View: 2429 + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 410263 + AegisName: C_Super_Sonic_Mini + Name: Costume Super Sonic Mini Me # !todo check english name + Type: Armor + Locations: + Costume_Head_Mid: true + ArmorLevel: 1 + View: 2430 + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 410264 + AegisName: C_Tails_Mini + Name: Costume Tales Mini Me # !todo check english name + Type: Armor + Locations: + Costume_Head_Mid: true + ArmorLevel: 1 + View: 2431 + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 410265 + AegisName: C_S_Attack_Ring + Name: Costume Power Ring Drop # !todo check english name + Type: Armor + Locations: + Costume_Head_Low: true + ArmorLevel: 1 + View: 2432 + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 410266 AegisName: C_H_N_Hat Name: Costume Miss Rabbit and Little Dog @@ -174747,6 +175026,21 @@ Body: ArmorLevel: 1 EquipLevelMin: 150 View: 2448 + - Id: 420303 + AegisName: C_Chaos_Emerald + Name: Costume Chaos Emerald # !todo check english name + Type: Armor + Locations: + Costume_Head_Low: true + ArmorLevel: 1 + View: 2485 + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 420304 AegisName: aegis_420304 Name: Costume Routier’s Night Sky # !todo check english name @@ -175224,6 +175518,23 @@ Body: Costume_Head_Low: true ArmorLevel: 1 View: 2147 + - Id: 440012 + AegisName: C_Dr_Eggman_Mask + Name: Costume Dr. Eggman Mask # !todo check english name + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + ArmorLevel: 1 + View: 2434 + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 450000 AegisName: IDTest_armor Name: IDTest armor @@ -189367,6 +189678,58 @@ Body: } } } + - Id: 470265 + AegisName: FuriousBoots + Name: Boots of Wrath # !todo check english name + Type: Armor + Weight: 1500 + Defense: 30 + Slots: 1 + Locations: + Shoes: true + ArmorLevel: 2 + EquipLevelMin: 220 + Refineable: true + Gradable: true + Script: | + .@g = getenchantgrade(); + .@r = getrefine(); + if (BaseLevel>=230) { + bonus2 bAddClass,Class_Normal,5; + bonus2 bMagicAddClass,Class_Normal,5; + bonus2 bAddClass,Class_Boss,5; + bonus2 bMagicAddClass,Class_Boss,5; + } + if (.@r>=7) { + bonus bMatkRate,5; + bonus bAtkRate,5; + if (.@r>=9) { + bonus bVariableCastrate,-10; + if (.@r>=10) { + bonus bFixedCast,-700; + if (.@r>=11) { + bonus2 bMagicAtkEle,Ele_All,10; + bonus bShortAtkRate,10; + bonus bLongAtkRate,10; + } + } + } + } + if (.@g>=ENCHANTGRADE_D) { + bonus bMatkRate,5; + bonus bAtkRate,5; + if (.@g>=ENCHANTGRADE_C) { + bonus bFixedCast,-300; + if (.@g>=ENCHANTGRADE_B) { + bonus bPAtk,5; + bonus bSMatk,5; + if (.@g>=ENCHANTGRADE_A) { + bonus bPAtk,2; + bonus bSMatk,2; + } + } + } + } - Id: 480000 AegisName: Atker_Manteau Name: Attacker Booster Manteau @@ -195128,6 +195491,14 @@ Body: Costume_Garment: true ArmorLevel: 1 View: 202 + - Id: 480408 + AegisName: aegis_480408 + Name: Costume Dragon Wings # !todo check english name + Type: Armor + Locations: + Costume_Garment: true + ArmorLevel: 1 + View: 204 - Id: 490004 AegisName: Atker_Ring Name: Attacker Booster Ring @@ -201377,6 +201748,90 @@ Body: bonus bDelayrate,-3; bonus bAtkRate,6; bonus bMatkRate,6; + - Id: 490483 + AegisName: Signet_Of_Spring + Name: "Seal of Circulation: Spring" # !todo check english name + Type: Armor + Weight: 500 + Defense: 10 + Slots: 1 + Locations: + Left_Accessory: true + ArmorLevel: 2 + EquipLevelMin: 250 + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bShortAtkRate,10; + bonus bVariableCastrate,-10; + - Id: 490484 + AegisName: Signet_Of_Summer + Name: "Seal of Circulation: Summer" # !todo check english name + Type: Armor + Weight: 500 + Defense: 10 + Slots: 1 + Locations: + Left_Accessory: true + ArmorLevel: 2 + EquipLevelMin: 250 + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bLongAtkRate,10; + bonus bVariableCastrate,-10; + - Id: 490485 + AegisName: Signet_Of_Autumn + Name: "Seal of Circulation: Autumn" # !todo check english name + Type: Armor + Weight: 500 + Defense: 10 + Slots: 1 + Locations: + Left_Accessory: true + ArmorLevel: 2 + EquipLevelMin: 250 + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bMagicAtkEle,Ele_All,10; + bonus bVariableCastrate,-10; + - Id: 490486 + AegisName: Signet_Of_Winter + Name: "Seal of Circulation: Winter" # !todo check english name + Type: Armor + Weight: 500 + Defense: 10 + Slots: 1 + Locations: + Left_Accessory: true + ArmorLevel: 2 + EquipLevelMin: 250 + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bCritAtkRate,10; + bonus bVariableCastrate,-10; - Id: 500000 AegisName: IDTest_weapon Name: IDTest weapon @@ -210820,6 +211275,181 @@ Body: } } } + - Id: 540086 + AegisName: SaintBook_Furious + Name: Bible of Wrath # !todo check english name + Type: Weapon + SubType: Book + Weight: 1200 + Attack: 175 + MagicAttack: 145 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Classes: + Fourth: true + Locations: + Right_Hand: true + WeaponLevel: 5 + EquipLevelMin: 205 + Refineable: true + Gradable: true + Script: | + .@g = getenchantgrade(); + .@r = getrefine(); + bonus2 bSkillAtk,"CD_PETITIO",5; + if (BaseLevel>=210) { + bonus bAtkRate,4; + bonus bBaseAtk,40; + } + if (BaseLevel>=220) { + bonus2 bSkillAtk,"CD_PETITIO",5; + } + if (BaseLevel>=230) { + bonus2 bAddSize,Size_All,10; + bonus2 bMagicAddSize,Size_All,10; + } + if (.@r>=7) { + bonus bCritAtkRate,10; + if (.@r>=9) { + bonus2 bSkillAtk,"CD_PETITIO",10; + if (.@r>=10) { + if (.@r>=11) { + bonus2 bSkillAtk,"CD_PETITIO",10; + } + } + } + } + if (.@g>=ENCHANTGRADE_D) { + bonus bCritAtkRate,10; + if (.@g>=ENCHANTGRADE_C) { + bonus2 bSkillAtk,"CD_PETITIO",5; + if (.@g>=ENCHANTGRADE_B) { + bonus2 bSkillAtk,"CD_PETITIO",10; + if (.@g>=ENCHANTGRADE_A) { + bonus bPAtk,3*(.@r/2); + bonus bAtkRate,3*(.@r/2); + } + } + } + } + - Id: 540087 + AegisName: SunBook_Furious + Name: Sunshine Book of Wrath # !todo check english name + Type: Weapon + SubType: Book + Weight: 1400 + Attack: 175 + Range: 1 + Slots: 2 + Jobs: + StarGladiator: true + Classes: + Fourth: true + Locations: + Right_Hand: true + WeaponLevel: 5 + EquipLevelMin: 205 + Refineable: true + Gradable: true + Script: | + .@g = getenchantgrade(); + .@r = getrefine(); + bonus2 bSkillAtk,"SKE_NOON_BLAST",5; + if (BaseLevel>=210) { + bonus bAtkRate,4; + bonus bBaseAtk,40; + } + if (BaseLevel>=220) { + bonus2 bSkillAtk,"SKE_NOON_BLAST",5; + } + if (BaseLevel>=230) { + bonus2 bAddSize,Size_All,10; + } + if (.@r>=7) { + bonus bCritAtkRate,10; + if (.@r>=9) { + bonus2 bSkillAtk,"SKE_NOON_BLAST",10; + if (.@r>=10) { + bonus bCritical,10; + if (.@r>=11) { + bonus2 bSkillAtk,"SKE_NOON_BLAST",10; + } + } + } + } + if (.@g>=ENCHANTGRADE_D) { + bonus bCritAtkRate,10; + if (.@g>=ENCHANTGRADE_C) { + bonus2 bSkillAtk,"SKE_NOON_BLAST",5; + if (.@g>=ENCHANTGRADE_B) { + bonus2 bSkillAtk,"SKE_NOON_BLAST",10; + if (.@g>=ENCHANTGRADE_A) { + bonus bPAtk,3*(.@r/2); + bonus bAtkRate,3*(.@r/2); + } + } + } + } + - Id: 540088 + AegisName: MoonBook_Furious + Name: Furious Moon Word # !todo check english name + Type: Weapon + SubType: Book + Weight: 1200 + Attack: 175 + Range: 1 + Slots: 2 + Jobs: + StarGladiator: true + Classes: + Fourth: true + Locations: + Right_Hand: true + WeaponLevel: 5 + EquipLevelMin: 205 + Refineable: true + Gradable: true + Script: | + .@g = getenchantgrade(); + .@r = getrefine(); + bonus2 bSkillAtk,"SKE_MIDNIGHT_KICK",5; + if (BaseLevel>=210) { + bonus bAtkRate,4; + bonus bBaseAtk,40; + } + if (BaseLevel>=220) { + bonus2 bSkillAtk,"SKE_MIDNIGHT_KICK",5; + } + if (BaseLevel>=230) { + bonus2 bAddSize,Size_All,10; + } + if (.@r>=7) { + bonus bShortAtkRate,10; + if (.@r>=9) { + bonus2 bSkillAtk,"SKE_MIDNIGHT_KICK",10; + if (.@r>=10) { + bonus bVariableCastrate,-10; + if (.@r>=11) { + bonus2 bSkillAtk,"SKE_MIDNIGHT_KICK",10; + } + } + } + } + if (.@g>=ENCHANTGRADE_D) { + bonus bShortAtkRate,10; + if (.@g>=ENCHANTGRADE_C) { + bonus2 bSkillAtk,"SKE_MIDNIGHT_KICK",5; + if (.@g>=ENCHANTGRADE_B) { + bonus2 bSkillAtk,"SKE_MIDNIGHT_KICK",10; + if (.@g>=ENCHANTGRADE_A) { + bonus bPAtk,3*(.@r/2); + bonus bAtkRate,3*(.@r/2); + } + } + } + } - Id: 550001 AegisName: Boost_Soul_Rod Name: Booster Rod @@ -215210,6 +215840,66 @@ Body: } } } + - Id: 550141 + AegisName: SaintWand_Furious + Name: Furious Saint Wand # !todo check english name + Type: Weapon + SubType: Staff + Weight: 1400 + Attack: 100 + MagicAttack: 180 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Classes: + Fourth: true + Locations: + Right_Hand: true + WeaponLevel: 5 + EquipLevelMin: 205 + Refineable: true + Gradable: true + Script: | + .@g = getenchantgrade(); + .@r = getrefine(); + bonus bUnbreakableWeapon; + bonus2 bSkillAtk,"CD_FRAMEN",5; + if (BaseLevel>=210) { + bonus bMatkRate,4; + bonus bMatk,40; + } + if (BaseLevel>=220) { + bonus2 bSkillAtk,"CD_FRAMEN",5; + } + if (BaseLevel>=230) { + bonus2 bMagicAddSize,Size_All,10; + } + if (.@r>=7) { + bonus2 bMagicAtkEle,Ele_Holy,10; + if (.@r>=9) { + bonus2 bSkillAtk,"CD_FRAMEN",10; + if (.@r>=10) { + bonus bVariableCastrate,-10; + if (.@r>=11) { + bonus2 bSkillAtk,"CD_FRAMEN",10; + } + } + } + } + if (.@g>=ENCHANTGRADE_D) { + bonus2 bMagicAtkEle,Ele_Holy,10; + if (.@g>=ENCHANTGRADE_C) { + bonus2 bSkillAtk,"CD_FRAMEN",5; + if (.@g>=ENCHANTGRADE_B) { + bonus2 bSkillAtk,"CD_FRAMEN",10; + if (.@g>=ENCHANTGRADE_A) { + bonus bSMatk,3*(.@r/2); + bonus bMatkRate,3*(.@r/2); + } + } + } + } - Id: 560000 AegisName: Boost_Knuckle Name: Booster Knuckles @@ -230740,6 +231430,122 @@ Body: } } } + - Id: 700100 + AegisName: StormBow_Furious + Name: Furious Storm Bow # !todo check english name + Type: Weapon + SubType: Bow + Weight: 1800 + Attack: 210 + Range: 5 + Slots: 2 + Jobs: + Hunter: true + Classes: + Fourth: true + Locations: + Both_Hand: true + WeaponLevel: 5 + EquipLevelMin: 205 + Refineable: true + Gradable: true + Script: | + .@g = getenchantgrade(); + .@r = getrefine(); + bonus2 bSkillAtk,"WH_GALESTORM",5; + if (BaseLevel>=210) { + bonus bAtkRate,7; + bonus bBaseAtk,70; + } + if (BaseLevel>=220) { + bonus2 bSkillAtk,"WH_GALESTORM",5; + } + if (BaseLevel>=230) { + bonus2 bAddSize,Size_All,10; + } + if (.@r>=7) { + bonus bCritAtkRate,10; + if (.@r>=9) { + bonus2 bSkillAtk,"WH_GALESTORM",10; + if (.@r>=10) { + bonus bCritical,10; + if (.@r>=11) { + bonus2 bSkillAtk,"WH_GALESTORM",10; + } + } + } + } + if (.@g>=ENCHANTGRADE_D) { + bonus bCritAtkRate,15; + if (.@g>=ENCHANTGRADE_C) { + bonus2 bSkillAtk,"WH_GALESTORM",5; + if (.@g>=ENCHANTGRADE_B) { + bonus2 bSkillAtk,"WH_GALESTORM",10; + if (.@g>=ENCHANTGRADE_A) { + bonus bPAtk,4*(.@r/2); + bonus bAtkRate,4*(.@r/2); + } + } + } + } + - Id: 700101 + AegisName: TornadoBow_Furious + Name: Wrath Gale Bow # !todo check english name + Type: Weapon + SubType: Bow + Weight: 1800 + Attack: 210 + Range: 5 + Slots: 2 + Jobs: + Hunter: true + Classes: + Fourth: true + Locations: + Both_Hand: true + WeaponLevel: 5 + EquipLevelMin: 205 + Refineable: true + Gradable: true + Script: | + .@g = getenchantgrade(); + .@r = getrefine(); + bonus2 bSkillAtk,"WH_CRESCIVE_BOLT",5; + if (BaseLevel>=210) { + bonus bAtkRate,7; + bonus bBaseAtk,70; + } + if (BaseLevel>=220) { + bonus2 bSkillAtk,"WH_CRESCIVE_BOLT",5; + } + if (BaseLevel>=230) { + bonus2 bAddSize,Size_All,10; + } + if (.@r>=7) { + bonus bCritAtkRate,10; + if (.@r>=9) { + bonus2 bSkillAtk,"WH_CRESCIVE_BOLT",10; + if (.@r>=10) { + bonus bVariableCastrate,-10; + if (.@r>=11) { + bonus2 bSkillAtk,"WH_CRESCIVE_BOLT",10; + } + } + } + } + if (.@g>=ENCHANTGRADE_D) { + bonus bCritAtkRate,15; + if (.@g>=ENCHANTGRADE_C) { + bonus2 bSkillAtk,"WH_CRESCIVE_BOLT",5; + if (.@g>=ENCHANTGRADE_B) { + bonus2 bSkillAtk,"WH_CRESCIVE_BOLT",10; + if (.@g>=ENCHANTGRADE_A) { + bonus bPAtk,4*(.@r/2); + bonus bAtkRate,4*(.@r/2); + } + } + } + } - Id: 800000 AegisName: IDTest_gun Name: IDTest gun diff --git a/db/re/item_db_etc.yml b/db/re/item_db_etc.yml index 918448891c..71bc63671c 100644 --- a/db/re/item_db_etc.yml +++ b/db/re/item_db_etc.yml @@ -70937,7 +70937,7 @@ Body: SubType: Enchant Script: | .@g = getenchantgrade(); - bonus bMaxHPrate,-5; + bonus bMaxHPrate,-5; bonus bMaxSPrate,-5; autobonus "{ bonus bStr,50; bonus bPow,15; bonus bSta,15; }",30,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; if (.@g>=ENCHANTGRADE_D) { @@ -77675,6 +77675,1146 @@ Body: SubType: Enchant Script: | bonus2 bMagicAtkEle,Ele_All,16; + - Id: 312981 + AegisName: Token_Of_Life + Name: Token of Life # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bAllTraitStats,3; + bonus bAllStats,5; + bonus bPAtk,3; + bonus bSMatk,3; + bonus2 bAddSize,Size_All,5; + bonus2 bMagicAddSize,Size_All,5; + - Id: 312982 + AegisName: Signet_Of_Pow1 + Name: Seal of Power 1Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bShortAtkRate,1; + bonus bAtkRate,1; + - Id: 312983 + AegisName: Signet_Of_Pow2 + Name: Seal of Power 2Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bShortAtkRate,3; + bonus bAtkRate,3; + - Id: 312984 + AegisName: Signet_Of_Pow3 + Name: Seal of Power 3Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bShortAtkRate,6; + bonus bAtkRate,6; + - Id: 312985 + AegisName: Signet_Of_Pow4 + Name: Seal of Power 4Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bShortAtkRate,10; + bonus bPAtk,10; + bonus bAtkRate,10; + - Id: 312986 + AegisName: Signet_Of_Pow5 + Name: Seal of Power 5Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bShortAtkRate,15; + bonus bPAtk,15; + bonus bAtkRate,15; + - Id: 312987 + AegisName: Signet_Of_Con1 + Name: Seal of Agility 1Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bLongAtkRate,1; + bonus bAtkRate,1; + - Id: 312988 + AegisName: Signet_Of_Con2 + Name: Seal of Agility 2Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bLongAtkRate,3; + bonus bAtkRate,3; + - Id: 312989 + AegisName: Signet_Of_Con3 + Name: Seal of Agility 3Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bLongAtkRate,6; + bonus bAtkRate,6; + - Id: 312990 + AegisName: Signet_Of_Con4 + Name: Seal of Agility 4Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bLongAtkRate,10; + bonus bPAtk,10; + bonus bAtkRate,10; + - Id: 312991 + AegisName: Signet_Of_Con5 + Name: Seal of Agility 5Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bLongAtkRate,15; + bonus bPAtk,15; + bonus bAtkRate,15; + - Id: 312992 + AegisName: Signet_Of_Spl1 + Name: Seal of Wisdom 1Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus2 bMagicAtkEle,Ele_All,1; + bonus bMatkRate,1; + - Id: 312993 + AegisName: Signet_Of_Spl2 + Name: Seal of Wisdom 2Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus2 bMagicAtkEle,Ele_All,3; + bonus bMatkRate,3; + - Id: 312994 + AegisName: Signet_Of_Spl3 + Name: Seal of Wisdom 3Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus2 bMagicAtkEle,Ele_All,6; + bonus bMatkRate,6; + - Id: 312995 + AegisName: Signet_Of_Spl4 + Name: Seal of Wisdom 4Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus2 bMagicAtkEle,Ele_All,10; + bonus bSMatk,10; + bonus bMatkRate,10; + - Id: 312996 + AegisName: Signet_Of_Spl5 + Name: Seal of Wisdom 5Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus2 bMagicAtkEle,Ele_All,15; + bonus bSMatk,15; + bonus bMatkRate,15; + - Id: 312997 + AegisName: Signet_Of_Sta1 + Name: Stamina Seal 1Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bDef,10; + bonus bMaxHP,1000; + - Id: 312998 + AegisName: Signet_Of_Sta2 + Name: Stamina Seal 2Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bDef,30; + bonus bMaxHP,3000; + - Id: 312999 + AegisName: Signet_Of_Sta3 + Name: Stamina Seal 3Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bDef,60; + bonus bMaxHP,6000; + - Id: 313000 + AegisName: Signet_Of_Sta4 + Name: Stamina Seal 4Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bDef,100; + bonus bMaxHP,10000; + bonus bRes,25; + - Id: 313001 + AegisName: Signet_Of_Sta5 + Name: Stamina Seal 5Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bDef,150; + bonus bMaxHP,15000; + bonus bRes,50; + - Id: 313002 + AegisName: Signet_Of_Crt1 + Name: Lucky Seal 1Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bCritAtkRate,1; + bonus bAtkRate,1; + - Id: 313003 + AegisName: Signet_Of_Crt2 + Name: Lucky Seal 2Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bCritAtkRate,3; + bonus bAtkRate,3; + - Id: 313004 + AegisName: Signet_Of_Crt3 + Name: Lucky Seal 3Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bCritAtkRate,6; + bonus bAtkRate,6; + - Id: 313005 + AegisName: Signet_Of_Crt4 + Name: Lucky Seal 4Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bCritAtkRate,10; + bonus bPAtk,10; + bonus bAtkRate,10; + - Id: 313006 + AegisName: Signet_Of_Crt5 + Name: Lucky Seal 5Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bCritAtkRate,15; + bonus bPAtk,15; + bonus bAtkRate,15; + - Id: 313007 + AegisName: Signet_Of_Wis1 + Name: Spirit Seal 1Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bMdef,5; + bonus bMaxSP,100; + - Id: 313008 + AegisName: Signet_Of_Wis2 + Name: Spirit Seal 2Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bMdef,15; + bonus bMaxSP,250; + - Id: 313009 + AegisName: Signet_Of_Wis3 + Name: Spirit Seal 3Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bMdef,30; + bonus bMaxSP,450; + - Id: 313010 + AegisName: Signet_Of_Wis4 + Name: Spirit Seal 4Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bMdef,50; + bonus bMaxSP,700; + bonus bMRes,25; + - Id: 313011 + AegisName: Signet_Of_Wis5 + Name: Spirit Seal 5Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bMdef,75; + bonus bMaxSP,1000; + bonus bMRes,50; + - Id: 313012 + AegisName: Life_of_Spring_Pow + Name: The life (power) of spring # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bPAtk,20; + bonus bShortAtkRate,25; + - Id: 313013 + AegisName: Life_of_Spring_Sta + Name: The life of spring (stamina) # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bPAtk,20; + bonus bShortAtkRate,25; + - Id: 313014 + AegisName: Life_of_Spring_Crt + Name: Spring life in full bloom (luck) # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bPAtk,20; + bonus bShortAtkRate,25; + - Id: 313015 + AegisName: Life_of_Summer_Con + Name: Life in full summer (Agility) # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bPAtk,20; + bonus bLongAtkRate,25; + - Id: 313016 + AegisName: Life_of_Summer_Sta + Name: Full summer life (stamina) # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bPAtk,20; + bonus bLongAtkRate,25; + - Id: 313017 + AegisName: Life_of_Summer_Crt + Name: Summer life in full bloom (luck) # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bPAtk,20; + bonus bLongAtkRate,25; + - Id: 313018 + AegisName: Life_of_Autumn_Spl + Name: The Life of Autumn (Wisdom) # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bSMatk,20; + bonus2 bMagicAtkEle,Ele_All,25; + - Id: 313019 + AegisName: Life_of_Autumn_Sta + Name: Autumn life in full swing (stamina) # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bSMatk,20; + bonus2 bMagicAtkEle,Ele_All,25; + - Id: 313020 + AegisName: Life_of_Autumn_Wis + Name: The full life of autumn (spirit) # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bSMatk,20; + bonus2 bMagicAtkEle,Ele_All,25; + - Id: 313021 + AegisName: Life_of_Winter_Pow + Name: Life (power) of complete winter # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bPAtk,20; + bonus bCritAtkRate,25; + - Id: 313022 + AegisName: Life_of_Winter_Con + Name: Complete Winter Life (Agility) # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bPAtk,20; + bonus bCritAtkRate,25; + - Id: 313023 + AegisName: Life_of_Winter_Crt + Name: Life in perfect winter (luck) # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bPAtk,20; + bonus bCritAtkRate,25; + - Id: 313024 + AegisName: Star_Cluster_Of_Str1 + Name: Strongman's Cluster 1Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus2 bAddRace,RC_All,5; + bonus2 bAddRace,RC_Player_Human,-5; + bonus2 bAddRace,RC_Player_Doram,-5; + bonus bPAtk,(readparam(bPow)/20); + bonus bBaseAtk,5*(readparam(bCon)/20); + - Id: 313025 + AegisName: Star_Cluster_Of_Str2 + Name: Strongman's Cluster 2Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@con = (readparam(bCon)/20); + .@pow = (readparam(bPow)/20); + bonus2 bAddRace,RC_All,10; + bonus2 bAddRace,RC_Player_Human,-10; + bonus2 bAddRace,RC_Player_Doram,-10; + bonus bShortAtkRate,.@pow; + bonus bLongAtkRate,.@pow; + bonus bPAtk,.@pow; + bonus bAtkRate,.@con; + bonus bBaseAtk,5*.@con; + - Id: 313026 + AegisName: Star_Cluster_Of_Str3 + Name: Strongman's Cluster 3Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@con = (readparam(bCon)/15); + .@pow = (readparam(bPow)/15); + bonus2 bAddRace,RC_All,15; + bonus2 bAddRace,RC_Player_Human,-15; + bonus2 bAddRace,RC_Player_Doram,-15; + bonus bShortAtkRate,.@pow; + bonus bLongAtkRate,.@pow; + bonus bPAtk,.@pow; + bonus bAtkRate,.@con; + bonus bBaseAtk,5*.@con; + - Id: 313027 + AegisName: Star_Cluster_Of_Str4 + Name: Strongman's Cluster 4Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@con = (readparam(bCon)/15); + .@pow = (readparam(bPow)/15); + bonus2 bAddRace,RC_All,20; + bonus2 bAddRace,RC_Player_Human,-20; + bonus2 bAddRace,RC_Player_Doram,-20; + bonus bShortAtkRate,2*.@pow; + bonus bLongAtkRate,2*.@pow; + bonus bPAtk,.@pow; + bonus bAtkRate,.@con; + bonus bBaseAtk,10*.@con; + - Id: 313028 + AegisName: Star_Cluster_Of_Str5 + Name: Strongman's Cluster 5Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@con = (readparam(bCon)/15); + .@pow = (readparam(bPow)/15); + bonus2 bAddRace,RC_All,25; + bonus2 bAddRace,RC_Player_Human,-25; + bonus2 bAddRace,RC_Player_Doram,-25; + bonus bShortAtkRate,2*.@pow; + bonus bLongAtkRate,2*.@pow; + bonus bPAtk,2*.@pow; + bonus bAtkRate,2*.@con; + bonus bBaseAtk,10*.@con; + - Id: 313029 + AegisName: Star_Cluster_Of_Luk1 + Name: Heavenly Fortune Cluster 1Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus2 bAddRace,RC_All,5; + bonus2 bAddRace,RC_Player_Human,-5; + bonus2 bAddRace,RC_Player_Doram,-5; + bonus bPAtk,(readparam(bPow)/20); + bonus bBaseAtk,5*(readparam(bCrt)/20); + - Id: 313030 + AegisName: Star_Cluster_Of_Luk2 + Name: Heavenly Fortune Cluster 2Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@crt = (readparam(bCrt)/20); + .@pow = (readparam(bPow)/20); + bonus2 bAddRace,RC_All,10; + bonus2 bAddRace,RC_Player_Human,-10; + bonus2 bAddRace,RC_Player_Doram,-10; + bonus bShortAtkRate,.@pow; + bonus bLongAtkRate,.@pow; + bonus bPAtk,.@pow; + bonus bCritical,.@crt; + bonus bBaseAtk,5*.@crt; + - Id: 313031 + AegisName: Star_Cluster_Of_Luk3 + Name: Heavenly Fortune Cluster 3Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@crt = (readparam(bCrt)/15); + .@pow = (readparam(bPow)/15); + bonus2 bAddRace,RC_All,15; + bonus2 bAddRace,RC_Player_Human,-15; + bonus2 bAddRace,RC_Player_Doram,-15; + bonus bShortAtkRate,.@pow; + bonus bLongAtkRate,.@pow; + bonus bPAtk,.@pow; + bonus bCritical,.@crt; + bonus bBaseAtk,5*.@crt; + - Id: 313032 + AegisName: Star_Cluster_Of_Luk4 + Name: Heavenly Fortune Cluster 4Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@crt = (readparam(bCrt)/15); + .@pow = (readparam(bPow)/15); + bonus2 bAddRace,RC_All,20; + bonus2 bAddRace,RC_Player_Human,-20; + bonus2 bAddRace,RC_Player_Doram,-20; + bonus bShortAtkRate,2*.@pow; + bonus bLongAtkRate,2*.@pow; + bonus bPAtk,.@pow; + bonus bCritical,.@crt; + bonus bBaseAtk,10*.@crt; + - Id: 313033 + AegisName: Star_Cluster_Of_Luk5 + Name: Heavenly Fortune Cluster 5Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@crt = (readparam(bCrt)/15); + .@pow = (readparam(bPow)/15); + bonus2 bAddRace,RC_All,25; + bonus2 bAddRace,RC_Player_Human,-25; + bonus2 bAddRace,RC_Player_Doram,-25; + bonus bShortAtkRate,2*.@pow; + bonus bLongAtkRate,2*.@pow; + bonus bPAtk,2*.@pow; + bonus bCritical,2*.@crt; + bonus bBaseAtk,10*.@crt; + - Id: 313034 + AegisName: Star_Cluster_Of_Int1 + Name: Cluster of Intelligence 1Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus2 bMagicAddRace,RC_All,5; + bonus2 bMagicAddRace,RC_Player_Human,-5; + bonus2 bMagicAddRace,RC_Player_Doram,-5; + bonus bSMatk,(readparam(bSpl)/20); + bonus bMatk,5*(readparam(bCon)/20); + - Id: 313035 + AegisName: Star_Cluster_Of_Int2 + Name: Cluster of Intelligence 2Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@con = (readparam(bCon)/20); + .@spl = (readparam(bSpl)/20); + bonus2 bMagicAddRace,RC_All,10; + bonus2 bMagicAddRace,RC_Player_Human,-10; + bonus2 bMagicAddRace,RC_Player_Doram,-10; + bonus2 bMagicAtkEle,Ele_All,.@spl; + bonus bSMatk,.@spl; + bonus bMatkRate,.@con; + bonus bMatk,5*.@con; + - Id: 313036 + AegisName: Star_Cluster_Of_Int3 + Name: Cluster of Intelligence 3Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@con = (readparam(bCon)/15); + .@spl = (readparam(bSpl)/15); + bonus2 bMagicAddRace,RC_All,15; + bonus2 bMagicAddRace,RC_Player_Human,-15; + bonus2 bMagicAddRace,RC_Player_Doram,-15; + bonus2 bMagicAtkEle,Ele_All,.@spl; + bonus bSMatk,.@spl; + bonus bMatkRate,.@con; + bonus bMatk,5*.@con; + - Id: 313037 + AegisName: Star_Cluster_Of_Int4 + Name: Cluster of Intelligence 4Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@con = (readparam(bCon)/15); + .@spl = (readparam(bSpl)/15); + bonus2 bMagicAddRace,RC_All,20; + bonus2 bMagicAddRace,RC_Player_Human,-20; + bonus2 bMagicAddRace,RC_Player_Doram,-20; + bonus2 bMagicAtkEle,Ele_All,2*.@spl; + bonus bSMatk,.@spl; + bonus bMatkRate,.@con; + bonus bMatk,10*.@con; + - Id: 313038 + AegisName: Star_Cluster_Of_Int5 + Name: Cluster of Intelligence 5Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@con = (readparam(bCon)/15); + .@spl = (readparam(bSpl)/15); + bonus2 bMagicAddRace,RC_All,25; + bonus2 bMagicAddRace,RC_Player_Human,-25; + bonus2 bMagicAddRace,RC_Player_Doram,-25; + bonus2 bMagicAtkEle,Ele_All,2*.@spl; + bonus bSMatk,2*.@spl; + bonus bMatkRate,2*.@con; + bonus bMatk,10*.@con; + - Id: 313039 + AegisName: Star_Cluster_Of_Res1 + Name: Cluster of Resistance 1Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus bMRes,10; + bonus bRes,10; + bonus bDef,10*(readparam(bSta)/20); + bonus bMdef,5*(readparam(bWis)/20); + - Id: 313040 + AegisName: Star_Cluster_Of_Res2 + Name: Cluster of Resistance 2Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@sta = (readparam(bSta)/20); + .@wis = (readparam(bWis)/20); + bonus bMRes,20+5*.@wis; + bonus bRes,20+5*.@sta; + bonus bDef,10*.@sta; + bonus bMdef,5*.@wis; + - Id: 313041 + AegisName: Star_Cluster_Of_Res3 + Name: Cluster of Resistance 3Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@sta = (readparam(bSta)/15); + .@wis = (readparam(bWis)/15); + bonus bMRes,30+5*.@wis; + bonus bRes,30+5*.@sta; + bonus bDef,10*.@sta; + bonus bMdef,5*.@wis; + - Id: 313042 + AegisName: Star_Cluster_Of_Res4 + Name: Cluster of Resistance 4Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@sta = (readparam(bSta)/15); + .@wis = (readparam(bWis)/15); + bonus bMRes,40+5*.@wis; + bonus bRes,40+10*.@sta; + bonus bDef,10*.@sta; + bonus bMdef,10*.@wis; + - Id: 313043 + AegisName: Star_Cluster_Of_Res5 + Name: Cluster of Resistance 5Lv # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@sta = (readparam(bSta)/15); + .@wis = (readparam(bWis)/15); + bonus bMRes,50+10*.@wis; + bonus bRes,50+10*.@sta; + bonus bDef,20*.@sta; + bonus bMdef,10*.@wis; + - Id: 313059 + AegisName: aegis_313059 + Name: Dragon Knight Stone (Garment) # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@val = getskilllv("DK_HACKANDSLASHER"); + bonus2 bAddRace,RC_All,(.@val/2); + bonus2 bAddRace,RC_Player_Human,-(.@val/2); + bonus2 bAddRace,RC_Player_Doram,-(.@val/2); + - Id: 313060 + AegisName: aegis_313060 + Name: Imperial Guard Stone (Garment) # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus2 bSkillAtk,"LG_RAYOFGENESIS",10*(getskilllv("IG_CROSS_RAIN")/2); + - Id: 313061 + AegisName: aegis_313061 + Name: Nightwatch Stone (Garment) # !todo check english name + Type: Card + SubType: Enchant + Script: | + bonus2 bAddEle,Ele_All,(getskilllv("NW_HIDDEN_CARD")/2); + - Id: 313111 + AegisName: FuriousMaterial_Not + Name: Crystal of Wrath (Neutral) # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@g = getenchantgrade(); + bonus2 bMagicAddEle,Ele_Neutral,5; + bonus2 bAddEle,Ele_Neutral,5; + if (.@g>=ENCHANTGRADE_B) { + bonus2 bMagicAddEle,Ele_Neutral,5; + bonus2 bAddEle,Ele_Neutral,5; + if (.@g>=ENCHANTGRADE_A) { + bonus2 bMagicAddEle,Ele_Neutral,5; + bonus2 bAddEle,Ele_Neutral,5; + } + } + - Id: 313112 + AegisName: FuriousMaterial_Wat + Name: Crystal of Wrath (Water) # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@g = getenchantgrade(); + bonus2 bMagicAddEle,Ele_Water,5; + bonus2 bAddEle,Ele_Water,5; + if (.@g>=ENCHANTGRADE_B) { + bonus2 bMagicAddEle,Ele_Water,5; + bonus2 bAddEle,Ele_Water,5; + if (.@g>=ENCHANTGRADE_A) { + bonus2 bMagicAddEle,Ele_Water,5; + bonus2 bAddEle,Ele_Water,5; + } + } + - Id: 313113 + AegisName: FuriousMaterial_Win + Name: Crystal of Wrath (Wind) # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@g = getenchantgrade(); + bonus2 bMagicAddEle,Ele_Wind,5; + bonus2 bAddEle,Ele_Wind,5; + if (.@g>=ENCHANTGRADE_B) { + bonus2 bMagicAddEle,Ele_Wind,5; + bonus2 bAddEle,Ele_Wind,5; + if (.@g>=ENCHANTGRADE_A) { + bonus2 bMagicAddEle,Ele_Wind,5; + bonus2 bAddEle,Ele_Wind,5; + } + } + - Id: 313114 + AegisName: FuriousMaterial_Fir + Name: Crystal of Wrath (Fire) # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@g = getenchantgrade(); + bonus2 bMagicAddEle,Ele_Fire,5; + bonus2 bAddEle,Ele_Fire,5; + if (.@g>=ENCHANTGRADE_B) { + bonus2 bMagicAddEle,Ele_Fire,5; + bonus2 bAddEle,Ele_Fire,5; + if (.@g>=ENCHANTGRADE_A) { + bonus2 bMagicAddEle,Ele_Fire,5; + bonus2 bAddEle,Ele_Fire,5; + } + } + - Id: 313115 + AegisName: FuriousMaterial_Gro + Name: Crystal of Wrath (Earth) # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@g = getenchantgrade(); + bonus2 bMagicAddEle,Ele_Earth,5; + bonus2 bAddEle,Ele_Earth,5; + if (.@g>=ENCHANTGRADE_B) { + bonus2 bMagicAddEle,Ele_Earth,5; + bonus2 bAddEle,Ele_Earth,5; + if (.@g>=ENCHANTGRADE_A) { + bonus2 bMagicAddEle,Ele_Earth,5; + bonus2 bAddEle,Ele_Earth,5; + } + } + - Id: 313116 + AegisName: FuriousMaterial_Und + Name: Crystal of Wrath (Undead) # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@g = getenchantgrade(); + bonus2 bMagicAddEle,Ele_Undead,5; + bonus2 bAddEle,Ele_Undead,5; + if (.@g>=ENCHANTGRADE_B) { + bonus2 bMagicAddEle,Ele_Undead,5; + bonus2 bAddEle,Ele_Undead,5; + if (.@g>=ENCHANTGRADE_A) { + bonus2 bMagicAddEle,Ele_Undead,5; + bonus2 bAddEle,Ele_Undead,5; + } + } + - Id: 313117 + AegisName: FuriousMaterial_Dar + Name: Crystal of Wrath (Dark) # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@g = getenchantgrade(); + bonus2 bMagicAddEle,Ele_Dark,5; + bonus2 bAddEle,Ele_Dark,5; + if (.@g>=ENCHANTGRADE_B) { + bonus2 bMagicAddEle,Ele_Dark,5; + bonus2 bAddEle,Ele_Dark,5; + if (.@g>=ENCHANTGRADE_A) { + bonus2 bMagicAddEle,Ele_Dark,5; + bonus2 bAddEle,Ele_Dark,5; + } + } + - Id: 313118 + AegisName: FuriousMaterial_Tel + Name: Crystal of Wrath (Ghost) # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@g = getenchantgrade(); + bonus2 bMagicAddEle,Ele_Ghost,5; + bonus2 bAddEle,Ele_Ghost,5; + if (.@g>=ENCHANTGRADE_B) { + bonus2 bMagicAddEle,Ele_Ghost,5; + bonus2 bAddEle,Ele_Ghost,5; + if (.@g>=ENCHANTGRADE_A) { + bonus2 bMagicAddEle,Ele_Ghost,5; + bonus2 bAddEle,Ele_Ghost,5; + } + } + - Id: 313119 + AegisName: FuriousMaterial_Sai + Name: Crystal of Wrath (Holy) # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@g = getenchantgrade(); + bonus2 bMagicAddEle,Ele_Holy,5; + bonus2 bAddEle,Ele_Holy,5; + if (.@g>=ENCHANTGRADE_B) { + bonus2 bMagicAddEle,Ele_Holy,5; + bonus2 bAddEle,Ele_Holy,5; + if (.@g>=ENCHANTGRADE_A) { + bonus2 bMagicAddEle,Ele_Holy,5; + bonus2 bAddEle,Ele_Holy,5; + } + } + - Id: 313120 + AegisName: FuriousMaterial_Poi + Name: Crystal of Wrath (Poison) # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@g = getenchantgrade(); + bonus2 bMagicAddEle,Ele_Poison,5; + bonus2 bAddEle,Ele_Poison,5; + if (.@g>=ENCHANTGRADE_B) { + bonus2 bMagicAddEle,Ele_Poison,5; + bonus2 bAddEle,Ele_Poison,5; + if (.@g>=ENCHANTGRADE_A) { + bonus2 bMagicAddEle,Ele_Poison,5; + bonus2 bAddEle,Ele_Poison,5; + } + } + - Id: 313121 + AegisName: FuriousEnergy_Not + Name: Energy of Wrath (Formless) # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@g = getenchantgrade(); + bonus2 bAddRace,RC_Formless,5; + bonus2 bMagicAddRace,RC_Formless,5; + if (.@g>=ENCHANTGRADE_B) { + bonus2 bAddRace,RC_Formless,5; + bonus2 bMagicAddRace,RC_Formless,5; + if (.@g>=ENCHANTGRADE_A) { + bonus2 bAddRace,RC_Formless,5; + bonus2 bMagicAddRace,RC_Formless,5; + } + } + - Id: 313122 + AegisName: FuriousEnergy_Hum + Name: Energy of Wrath (Human) # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@g = getenchantgrade(); + bonus2 bAddRace,RC_DemiHuman,5; + bonus2 bMagicAddRace,RC_DemiHuman,5; + if (.@g>=ENCHANTGRADE_B) { + bonus2 bAddRace,RC_DemiHuman,5; + bonus2 bMagicAddRace,RC_DemiHuman,5; + if (.@g>=ENCHANTGRADE_A) { + bonus2 bAddRace,RC_DemiHuman,5; + bonus2 bMagicAddRace,RC_DemiHuman,5; + } + } + - Id: 313123 + AegisName: FuriousEnergy_Dra + Name: Energy of Wrath (Dragon) # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@g = getenchantgrade(); + bonus2 bAddRace,RC_Dragon,5; + bonus2 bMagicAddRace,RC_Dragon,5; + if (.@g>=ENCHANTGRADE_B) { + bonus2 bAddRace,RC_Dragon,5; + bonus2 bMagicAddRace,RC_Dragon,5; + if (.@g>=ENCHANTGRADE_A) { + bonus2 bAddRace,RC_Dragon,5; + bonus2 bMagicAddRace,RC_Dragon,5; + } + } + - Id: 313124 + AegisName: FuriousEnergy_Pla + Name: Energy of Wrath (Plant) # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@g = getenchantgrade(); + bonus2 bAddRace,RC_Plant,5; + bonus2 bMagicAddRace,RC_Plant,5; + if (.@g>=ENCHANTGRADE_B) { + bonus2 bAddRace,RC_Plant,5; + bonus2 bMagicAddRace,RC_Plant,5; + if (.@g>=ENCHANTGRADE_A) { + bonus2 bAddRace,RC_Plant,5; + bonus2 bMagicAddRace,RC_Plant,5; + } + } + - Id: 313125 + AegisName: FuriousEnergy_Ins + Name: Energy of Wrath (Insect) # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@g = getenchantgrade(); + bonus2 bAddRace,RC_Insect,5; + bonus2 bMagicAddRace,RC_Insect,5; + if (.@g>=ENCHANTGRADE_B) { + bonus2 bAddRace,RC_Insect,5; + bonus2 bMagicAddRace,RC_Insect,5; + if (.@g>=ENCHANTGRADE_A) { + bonus2 bAddRace,RC_Insect,5; + bonus2 bMagicAddRace,RC_Insect,5; + } + } + - Id: 313126 + AegisName: FuriousEnergy_Ani + Name: Energy of Wrath (Brute) # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@g = getenchantgrade(); + bonus2 bAddRace,RC_Brute,5; + bonus2 bMagicAddRace,RC_Brute,5; + if (.@g>=ENCHANTGRADE_B) { + bonus2 bAddRace,RC_Brute,5; + bonus2 bMagicAddRace,RC_Brute,5; + if (.@g>=ENCHANTGRADE_A) { + bonus2 bAddRace,RC_Brute,5; + bonus2 bMagicAddRace,RC_Brute,5; + } + } + - Id: 313127 + AegisName: FuriousEnergy_Fis + Name: Energy of Wrath (Fish) # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@g = getenchantgrade(); + bonus2 bAddRace,RC_Fish,5; + bonus2 bMagicAddRace,RC_Fish,5; + if (.@g>=ENCHANTGRADE_B) { + bonus2 bAddRace,RC_Fish,5; + bonus2 bMagicAddRace,RC_Fish,5; + if (.@g>=ENCHANTGRADE_A) { + bonus2 bAddRace,RC_Fish,5; + bonus2 bMagicAddRace,RC_Fish,5; + } + } + - Id: 313128 + AegisName: FuriousEnergy_Ang + Name: Energy of Wrath (Angel) # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@g = getenchantgrade(); + bonus2 bAddRace,RC_Angel,5; + bonus2 bMagicAddRace,RC_Angel,5; + if (.@g>=ENCHANTGRADE_B) { + bonus2 bAddRace,RC_Angel,5; + bonus2 bMagicAddRace,RC_Angel,5; + if (.@g>=ENCHANTGRADE_A) { + bonus2 bAddRace,RC_Angel,5; + bonus2 bMagicAddRace,RC_Angel,5; + } + } + - Id: 313129 + AegisName: FuriousEnergy_Dem + Name: Energy of Wrath (Demon) # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@g = getenchantgrade(); + bonus2 bAddRace,RC_Demon,5; + bonus2 bMagicAddRace,RC_Demon,5; + if (.@g>=ENCHANTGRADE_B) { + bonus2 bAddRace,RC_Demon,5; + bonus2 bMagicAddRace,RC_Demon,5; + if (.@g>=ENCHANTGRADE_A) { + bonus2 bAddRace,RC_Demon,5; + bonus2 bMagicAddRace,RC_Demon,5; + } + } + - Id: 313130 + AegisName: FuriousEnergy_Und + Name: Energy of Wrath (Undead) # !todo check english name + Type: Card + SubType: Enchant + Script: | + .@g = getenchantgrade(); + bonus2 bAddRace,RC_Undead,5; + bonus2 bMagicAddRace,RC_Undead,5; + if (.@g>=ENCHANTGRADE_B) { + bonus2 bAddRace,RC_Undead,5; + bonus2 bMagicAddRace,RC_Undead,5; + if (.@g>=ENCHANTGRADE_A) { + bonus2 bAddRace,RC_Undead,5; + bonus2 bMagicAddRace,RC_Undead,5; + } + } + - Id: 313131 + AegisName: Pow_Assist + Name: POW Assistant # !todo check english name + Type: Card + SubType: Enchant + Script: | + if (BaseLevel>=240) { + .@param = min(readparam(bPow),100); + bonus bDef,3*(.@param/7); + bonus bRes,(.@param/7); + } + - Id: 313132 + AegisName: Pow_Enforce + Name: POW Enhancement # !todo check english name + Type: Card + SubType: Enchant + Script: | + if (BaseLevel>=240) { + .@param = min(readparam(bPow),100); + bonus bLongAtkRate,(.@param/10); + bonus bShortAtkRate,(.@param/10); + bonus bAtkRate,(.@param/10); + } + - Id: 313133 + AegisName: SPL_Assist + Name: SPL Assistant # !todo check english name + Type: Card + SubType: Enchant + Script: | + if (BaseLevel>=240) { + .@param = min(readparam(bSpl),100); + bonus bMdef,3*(.@param/7); + bonus bMRes,(.@param/7); + } + - Id: 313134 + AegisName: SPL_Enforce + Name: SPL Enhancement # !todo check english name + Type: Card + SubType: Enchant + Script: | + if (BaseLevel>=240) { + .@param = min(readparam(bSpl),100); + bonus2 bMagicAtkEle,Ele_All,(.@param/10); + bonus bMatkRate,(.@param/10); + } + - Id: 313135 + AegisName: STA_Assist + Name: STA Assistant # !todo check english name + Type: Card + SubType: Enchant + Script: | + if (BaseLevel>=240) { + bonus bPAtk,(min(readparam(bSta),100)/7); + } + - Id: 313136 + AegisName: STA_Enforce + Name: STA Enhancement # !todo check english name + Type: Card + SubType: Enchant + Script: | + if (BaseLevel>=240) { + bonus bMaxHPrate,(min(readparam(bSta),100)/10); + } + - Id: 313137 + AegisName: WIS_Assist + Name: WIS Assistant # !todo check english name + Type: Card + SubType: Enchant + Script: | + if (BaseLevel>=240) { + bonus bSMatk,(min(readparam(bWis),100)/7); + } + - Id: 313138 + AegisName: WIS_Enforce + Name: WIS Enhancement # !todo check english name + Type: Card + SubType: Enchant + Script: | + if (BaseLevel>=240) { + bonus bMaxSPrate,(min(readparam(bWis),100)/10); + } + - Id: 313139 + AegisName: CON_Assist + Name: CON Assistant # !todo check english name + Type: Card + SubType: Enchant + Script: | + if (BaseLevel>=240) { + .@param = min(readparam(bCon),100); + bonus bCRate,(.@param/7); + bonus bCritical,(.@param/7); + } + - Id: 313140 + AegisName: CON_Enforce_Melee + Name: CON Enhancement (Physical) # !todo check english name + Type: Card + SubType: Enchant + Script: | + if (BaseLevel>=240) { + .@param = min(readparam(bCon),100); + bonus bLongAtkRate,(.@param/7); + bonus bShortAtkRate,(.@param/7); + bonus bBaseAtk,5*(.@param/7); + } + - Id: 313141 + AegisName: CON_Enforce_Magic + Name: CON Enhancement (Magical) # !todo check english name + Type: Card + SubType: Enchant + Script: | + if (BaseLevel>=240) { + .@param = min(readparam(bCon),100); + bonus2 bMagicAtkEle,Ele_All,(.@param/7); + bonus bMatk,5*(.@param/7); + } + - Id: 313142 + AegisName: CRT_Assist + Name: CRT Assistant # !todo check english name + Type: Card + SubType: Enchant + Script: | + if (BaseLevel>=240) { + .@param = min(readparam(bCrt),100); + bonus bHit,5*(.@param/7); + bonus bFlee,5*(.@param/7); + } + - Id: 313143 + AegisName: CRT_Enforce + Name: CRT Enhancement # !todo check english name + Type: Card + SubType: Enchant + Script: | + if (BaseLevel>=240) { + .@param = min(readparam(bCrt),100); + bonus bCritAtkRate,(.@param/10); + bonus bCritical,(.@param/10); + } - Id: 1000000 AegisName: IDTest_event Name: IDTest event @@ -84135,6 +85275,18 @@ Body: Weight: 10 Flags: BuyingStore: true + - Id: 1001474 + AegisName: VR_RING + Name: Ring # !todo check english name + Type: Etc + Weight: 10 + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 1001478 AegisName: aegis_1001478 Name: Pure Diamond # !todo check english name @@ -84713,6 +85865,19 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + - Id: 1001549 + AegisName: S_Badge + Name: Sonic Badge # !todo check english name + Type: Etc + Weight: 10 + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 1001550 AegisName: Abyss_Jewel_Fragment Name: Abyss Jewel Fragment # !todo check english name @@ -84793,6 +85958,118 @@ Body: Type: Etc Flags: BuyingStore: true + - Id: 1001589 + AegisName: Sp_Cor_Core + Name: Special Cor Core # !todo check english name + Type: Etc + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1001590 + AegisName: Sp_BarMeal_Ticket + Name: Special Barmil Ticket # !todo check english name + Type: Etc + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1001591 + AegisName: Sp_Amethyst_Fragment + Name: Special Amethyst Piece # !todo check english name + Type: Etc + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1001592 + AegisName: R_Core_Rune + Name: Concentrated Magical Rune Stone # !todo check english name + Type: Etc + Flags: + BuyingStore: true + - Id: 1001593 + AegisName: R_Outside_Rune + Name: Dim Magical Rune Stone # !todo check english name + Type: Etc + Flags: + BuyingStore: true + - Id: 1001594 + AegisName: R_Rune_Seal + Name: Rune Seal # !todo check english name + Type: Etc + Flags: + BuyingStore: true + - Id: 1001595 + AegisName: R_Sealed_Rune + Name: Rune stone sealed with a seal # !todo check english name + Type: Etc + Flags: + BuyingStore: true + - Id: 1001596 + AegisName: 2401_ev_YongLin + Name: Rammir’s Dragon # !todo check english name + Type: Etc + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1001599 + AegisName: Unknown_Meteorite_F + Name: Unknown meteorite fragment # !todo check english name + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 1001600 + AegisName: Energy_Of_Elemental + Name: Elemental energy # !todo check english name + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 1001601 + AegisName: Genesis_Of_Life + Name: Origin of life # !todo check english name + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 1001603 + AegisName: aegis_1001603 + Name: Imperial Guard Stone (Garment) # !todo check english name + Type: Etc + Weight: 100 + - Id: 1001604 + AegisName: aegis_1001604 + Name: Dragon Knight Stone (Garment) # !todo check english name + Type: Etc + Weight: 100 + - Id: 1001605 + AegisName: aegis_1001605 + Name: Nightwatch Stone (Garment) # !todo check english name + Type: Etc + Weight: 100 - Id: 1220001 AegisName: Kunai Name: Kunai From 464c122b40885adff61e8c6d753a7384f1cb4853 Mon Sep 17 00:00:00 2001 From: BotGigo <59173632+BotGigo@users.noreply.github.com> Date: Tue, 20 Feb 2024 05:07:12 -0300 Subject: [PATCH 10/44] Correct some conditions (#8142) Correct comparations in conditions for some base level achievements to work with the multi level check of achievements. --- db/re/achievement_db.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/db/re/achievement_db.yml b/db/re/achievement_db.yml index a5e0718a07..2a825cb4d2 100644 --- a/db/re/achievement_db.yml +++ b/db/re/achievement_db.yml @@ -2049,21 +2049,21 @@ Body: - Id: 200032 Group: Goal_Level Name: The start of another adventure! - Condition: " BaseLevel == 100 " + Condition: " BaseLevel >= 100 " Rewards: Item: Rebeginer_Box_100 Score: 10 - Id: 200033 Group: Goal_Level Name: With a new mind!(1) - Condition: " BaseLevel == 170 && (Class >= JOB_RUNE_KNIGHT && Class <= JOB_GUILLOTINE_CROSS_T) " + Condition: " BaseLevel >= 170 && (Class >= JOB_RUNE_KNIGHT && Class <= JOB_GUILLOTINE_CROSS_T) " Rewards: Item: Costume_Ticket Score: 50 - Id: 200034 Group: Goal_Level Name: With a new mind!(2) - Condition: " BaseLevel == 170 && (Class >= JOB_ROYAL_GUARD && Class <= JOB_SHADOW_CHASER_T) " + Condition: " BaseLevel >= 170 && (Class >= JOB_ROYAL_GUARD && Class <= JOB_SHADOW_CHASER_T) " Rewards: Item: Costume_Ticket Score: 50 From e196eadcaae0d78211a8d33a1241511c8e48b1f6 Mon Sep 17 00:00:00 2001 From: AoShinHo <126742159+AoShinRO@users.noreply.github.com> Date: Sat, 24 Feb 2024 05:15:28 -0300 Subject: [PATCH 11/44] Suppressing C4018 (#8123) * suppressing warning C4018 * dinamically get decltype suggested by vstumpf --- src/login/loginclif.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/login/loginclif.cpp b/src/login/loginclif.cpp index fc8c58c1b3..fc465dc8a6 100644 --- a/src/login/loginclif.cpp +++ b/src/login/loginclif.cpp @@ -350,7 +350,7 @@ int logclif_parse_reqauth_sso( int fd, login_session_data& sd, char* ip ){ return 0; } - if( RFIFOREST( fd ) < p->packetLength ){ + if( static_castpacketLength)>(RFIFOREST(fd)) < p->packetLength){ return 0; } From eb308dcad295faf74fe63f55c69a389c00acfb0b Mon Sep 17 00:00:00 2001 From: Pokye <98105181+Pokye@users.noreply.github.com> Date: Mon, 26 Feb 2024 18:08:52 -0300 Subject: [PATCH 12/44] Implemented Dialog Types (#8110) Fixes #8109 Co-authored-by: Aleos Co-authored-by: Lemongrass3110 --- doc/script_commands.txt | 34 +++++++++++++ src/map/clif.cpp | 51 +++++++++++++++++++ src/map/clif.hpp | 5 ++ src/map/map.hpp | 12 +++++ src/map/script.cpp | 105 ++++++++++++++++++++++++++++++++++++++++ 5 files changed, 207 insertions(+) diff --git a/doc/script_commands.txt b/doc/script_commands.txt index 1ea3f1ec64..911015cf27 100644 --- a/doc/script_commands.txt +++ b/doc/script_commands.txt @@ -11412,3 +11412,37 @@ Example: autoloot(10000); // 100.00% --------------------------------------- + +*setdialogalign(); + +Set vertical or horizontal align in NPC dialog. +Valid aligns: +- horizontal align: + DIALOG_ALIGN_LEFT + DIALOG_ALIGN_CENTER + DIALOG_ALIGN_RIGHT + +- vertical align: + DIALOG_ALIGN_TOP + DIALOG_ALIGN_MIDDLE + DIALOG_ALIGN_BOTTOM + +--------------------------------------- + +*setdialogsize(, ) + +Set size for NPC dialog in pixels. + +--------------------------------------- + +*setdialogpos(, ) + +Set position for NPC dialog in pixels. + +--------------------------------------- + +*setdialogpospercent(, ) + +Set position for NPC dialog in screen size percent. + +--------------------------------------- diff --git a/src/map/clif.cpp b/src/map/clif.cpp index 103a6fa4bf..da3cb98003 100644 --- a/src/map/clif.cpp +++ b/src/map/clif.cpp @@ -25187,6 +25187,57 @@ void clif_parse_reset_skill( int fd, map_session_data* sd ){ #endif } +void clif_set_dialog_align(map_session_data& sd, int npcid, e_say_dialog_align align) +{ +#if PACKETVER_MAIN_NUM >= 20210203 || PACKETVER_RE_NUM >= 20211103 || PACKETVER_ZERO_NUM >= 20221024 + PACKET_ZC_DIALOG_TEXT_ALIGN p = {}; + + p.PacketType = HEADER_ZC_DIALOG_TEXT_ALIGN; + p.align = align; + + clif_send( &p, sizeof( p ), &sd.bl, SELF ); +#endif // PACKETVER_MAIN_NUM >= 20210203 || PACKETVER_RE_NUM >= 20211103 || PACKETVER_ZERO_NUM >= 20221024 +} + +void clif_set_npc_window_size(map_session_data& sd, int width, int height) +{ +#if PACKETVER_MAIN_NUM >= 20220504 + PACKET_ZC_DIALOG_WINDOW_SIZE p = {}; + + p.PacketType = HEADER_ZC_DIALOG_WINDOW_SIZE; + p.width = width; + p.height = height; + + clif_send( &p, sizeof( p ), &sd.bl, SELF ); +#endif // PACKETVER_MAIN_NUM >= 20220504 +} + +void clif_set_npc_window_pos(map_session_data& sd, int x, int y) +{ +#if PACKETVER_MAIN_NUM >= 20220504 + PACKET_ZC_DIALOG_WINDOW_POS p = {}; + + p.PacketType = HEADER_ZC_DIALOG_WINDOW_POS; + p.x = x; + p.y = y; + + clif_send( &p, sizeof( p ), &sd.bl, SELF ); +#endif // PACKETVER_MAIN_NUM >= 20220504 +} + +void clif_set_npc_window_pos_percent(map_session_data& sd, int x, int y) +{ +#if PACKETVER_MAIN_NUM >= 20220504 + PACKET_ZC_DIALOG_WINDOW_POS2 p = {}; + + p.PacketType = HEADER_ZC_DIALOG_WINDOW_POS2; + p.x = x; + p.y = y; + + clif_send( &p, sizeof( p ), &sd.bl, SELF ); +#endif // PACKETVER_MAIN_NUM >= 20220504 +} + /*========================================== * Main client packet processing function *------------------------------------------*/ diff --git a/src/map/clif.hpp b/src/map/clif.hpp index 9155b92428..b94acdca55 100644 --- a/src/map/clif.hpp +++ b/src/map/clif.hpp @@ -1254,4 +1254,9 @@ void clif_macro_reporter_status(map_session_data &sd, e_macro_report_status styp void clif_dynamicnpc_result( map_session_data& sd, e_dynamicnpc_result result ); +void clif_set_dialog_align(map_session_data& sd, int npcid, e_say_dialog_align align); +void clif_set_npc_window_size(map_session_data& sd, int width, int height); +void clif_set_npc_window_pos(map_session_data& sd, int x, int y); +void clif_set_npc_window_pos_percent(map_session_data& sd, int x, int y); + #endif /* CLIF_HPP */ diff --git a/src/map/map.hpp b/src/map/map.hpp index 13f1f29527..cea7c8b463 100644 --- a/src/map/map.hpp +++ b/src/map/map.hpp @@ -861,6 +861,18 @@ struct map_data_other_server { uint16 port; }; +/** + * align for packet ZC_SAY_DIALOG_ALIGN + **/ +enum e_say_dialog_align : uint8 { + DIALOG_ALIGN_LEFT = 0, + DIALOG_ALIGN_RIGHT = 1, + DIALOG_ALIGN_CENTER = 2, + DIALOG_ALIGN_TOP = 3, + DIALOG_ALIGN_MIDDLE = 4, + DIALOG_ALIGN_BOTTOM = 5 +}; + struct inter_conf { uint32 start_status_points; bool emblem_woe_change; diff --git a/src/map/script.cpp b/src/map/script.cpp index bb817be7a6..dd27f28d97 100644 --- a/src/map/script.cpp +++ b/src/map/script.cpp @@ -27123,6 +27123,106 @@ BUILDIN_FUNC(opentips){ #endif } +BUILDIN_FUNC(setdialogalign){ + map_session_data *sd; + + if ( !script_rid2sd(sd) ) { + return SCRIPT_CMD_FAILURE; + } + + int32 align = script_getnum( st, 2 ); + + if( align < DIALOG_ALIGN_LEFT || align > DIALOG_ALIGN_BOTTOM ){ + ShowError( "buildin_setdialogalign: Unknown align value %d\n", align ); + return SCRIPT_CMD_FAILURE; + } + + clif_set_dialog_align( *sd, st->oid, static_cast( align ) ); + + return SCRIPT_CMD_SUCCESS; +} + +BUILDIN_FUNC(setdialogsize){ + map_session_data *sd; + + if ( !script_rid2sd(sd) ) { + script_pushint(st, 0); + return SCRIPT_CMD_FAILURE; + } + + int32 x = script_getnum( st, 2 ); + + if( x < 0 || x > INT16_MAX ){ + ShowError( "buildin_setdialogsize: x size %d is out of range [0,%d]\n", x, INT16_MAX ); + return SCRIPT_CMD_FAILURE; + } + + int32 y = script_getnum( st, 3 ); + + if( y < 0 || y > INT16_MAX ){ + ShowError( "buildin_setdialogsize: y size %d is out of range [0,%d]\n", y, INT16_MAX ); + return SCRIPT_CMD_FAILURE; + } + + clif_set_npc_window_size( *sd, x, y ); + + return SCRIPT_CMD_SUCCESS; +} + +BUILDIN_FUNC(setdialogpos){ + map_session_data *sd; + + if ( !script_rid2sd(sd) ) { + script_pushint(st, 0); + return SCRIPT_CMD_FAILURE; + } + + int32 x = script_getnum( st, 2 ); + + if( x < 0 || x > INT16_MAX ){ + ShowError( "buildin_setdialogpos: x position %d is out of range [0,%d]\n", x, INT16_MAX ); + return SCRIPT_CMD_FAILURE; + } + + int32 y = script_getnum( st, 3 ); + + if( y < 0 || y > INT16_MAX ){ + ShowError( "buildin_setdialogpos: y position %d is out of range [0,%d]\n", y, INT16_MAX ); + return SCRIPT_CMD_FAILURE; + } + + clif_set_npc_window_pos( *sd, x, y ); + + return SCRIPT_CMD_SUCCESS; +} + +BUILDIN_FUNC(setdialogpospercent){ + map_session_data *sd; + + if ( !script_rid2sd(sd) ) { + script_pushint(st, 0); + return SCRIPT_CMD_FAILURE; + } + + int32 x = script_getnum( st, 2 ); + + if( x < 0 || x > 100 ){ + ShowError( "buildin_setdialogpospercent: x rate %d is out of range [0,100]\n", x ); + return SCRIPT_CMD_FAILURE; + } + + int32 y = script_getnum( st, 3 ); + + if( y < 0 || y > 100 ){ + ShowError( "buildin_setdialogpospercent: y rate %d is out of range [0,100]\n", y ); + return SCRIPT_CMD_FAILURE; + } + + clif_set_npc_window_pos_percent( *sd, x, y ); + + return SCRIPT_CMD_SUCCESS; +} + #include // declarations that were supposed to be exported from npc_chat.cpp @@ -27883,6 +27983,11 @@ struct script_function buildin_func[] = { BUILDIN_DEF(autoloot,"??"), BUILDIN_DEF(opentips, "i?"), + BUILDIN_DEF(setdialogalign, "i"), + BUILDIN_DEF(setdialogsize, "ii"), + BUILDIN_DEF(setdialogpos, "ii"), + BUILDIN_DEF(setdialogpospercent, "ii"), + #include {NULL,NULL,NULL}, From c22906d77589c75e64af510ac281122223c4604e Mon Sep 17 00:00:00 2001 From: Lemongrass3110 Date: Mon, 26 Feb 2024 22:48:08 +0100 Subject: [PATCH 13/44] Created a template for packet handling (#8069) --- src/common/packets.hpp | 96 ++++++++++++++++++- src/login/loginclif.cpp | 199 ++++++++++++++-------------------------- 2 files changed, 165 insertions(+), 130 deletions(-) diff --git a/src/common/packets.hpp b/src/common/packets.hpp index bdcf84bff2..3f2b9af4cc 100644 --- a/src/common/packets.hpp +++ b/src/common/packets.hpp @@ -4,20 +4,30 @@ #ifndef PACKETS_HPP #define PACKETS_HPP +#include +#include + #include #include +#include +#include +#include #pragma warning( push ) #pragma warning( disable : 4200 ) #define DEFINE_PACKET_HEADER( name, id ) const int16 HEADER_##name = id -#define DEFINE_PACKET_ID( name, id ) DEFINE_PACKET_HEADER( name, id ) // NetBSD 5 and Solaris don't like pragma pack but accept the packed attribute #if !defined( sun ) && ( !defined( __NETBSD__ ) || __NetBSD_Version__ >= 600000000 ) #pragma pack( push, 1 ) #endif +struct PACKET{ + int16 packetType; + int16 packetLength; +} __attribute__((packed)); + struct PACKET_CA_LOGIN{ int16 packetType; uint32 version; @@ -209,4 +219,88 @@ DEFINE_PACKET_HEADER( TC_RESULT, 0xae3 ); #pragma warning( pop ) +template class PacketDatabase{ +private: + struct s_packet_info{ + bool fixed; + int16 size; + std::function func; + }; + + std::unordered_map infos; + +public: + void add( int16 packetType, bool fixed, int16 size, std::function func ){ + if( fixed ){ + if( size < 2 ){ + ShowError( "Definition for packet 0x%04x is invalid. Minimum size for a fixed length packet is 2 bytes.\n", packetType ); + return; + } + }else{ + if( size < 4 ){ + ShowError( "Definition for packet 0x%04x is invalid. Minimum size for a dynamic length packet is 2 bytes.\n", packetType ); + return; + } + } + + s_packet_info& info = infos[packetType]; + + info.fixed = fixed; + info.size = size; + info.func = func; + } + + bool handle( int fd, sessiontype& sd ){ + int16 remaining = static_cast( RFIFOREST( fd ) ); + + if( remaining < 2 ){ + ShowError( "Did not receive enough bytes to process a packet\n" ); + set_eof( fd ); + return false; + } + + PACKET* p = (PACKET*)RFIFOP( fd, 0 ); + + s_packet_info* info = rathena::util::umap_find( this->infos, p->packetType ); + + if( info == nullptr ){ + ShowError( "Received unknown packet 0x%04x\n", p->packetType ); + set_eof( fd ); + return false; + } + + if( info->fixed ){ + if( remaining < info->size ){ + ShowError( "Invalid size %hd for packet 0x%04x with fixed size of %hd\n", remaining, p->packetType, info->size ); + set_eof( fd ); + return false; + } + + bool ret = info->func( fd, sd ); + + RFIFOSKIP( fd, info->size ); + + return ret; + }else{ + if( remaining < info->size ){ + ShowError( "Invalid size %hd for packet 0x%04x with dynamic minimum size of %hd\n", remaining, p->packetType, info->size ); + set_eof( fd ); + return false; + } + + if( remaining < p->packetLength ){ + ShowError( "Invalid size %hd for packet 0x%04x with dynamic size of %hd\n", remaining, p->packetType, p->packetLength ); + set_eof( fd ); + return false; + } + + bool ret = info->func( fd, sd ); + + RFIFOSKIP( fd, p->packetLength ); + + return ret; + } + } +}; + #endif /* PACKETS_HPP */ diff --git a/src/login/loginclif.cpp b/src/login/loginclif.cpp index fc465dc8a6..135f0e3c30 100644 --- a/src/login/loginclif.cpp +++ b/src/login/loginclif.cpp @@ -242,16 +242,9 @@ static void logclif_auth_failed(struct login_session_data* sd, int result) { * @param fd: fd to parse from (client fd) * @return 0 not enough info transmitted, 1 success */ -static int logclif_parse_keepalive(int fd){ - PACKET_CA_CONNECT_INFO_CHANGED* p = (PACKET_CA_CONNECT_INFO_CHANGED*)RFIFOP( fd, 0 ); - - if( RFIFOREST( fd ) < sizeof( *p ) ){ - return 0; - } - - RFIFOSKIP( fd, sizeof( *p ) ); - - return 1; +static bool logclif_parse_keepalive( int fd, struct login_session_data& ){ + // Do nothing + return true; } /** @@ -260,28 +253,22 @@ static int logclif_parse_keepalive(int fd){ * @param fd: fd to parse from (client fd) * @return 0 not enough info transmitted, 1 success */ -static int logclif_parse_updclhash(int fd, struct login_session_data *sd){ +static bool logclif_parse_updclhash( int fd, struct login_session_data& sd ){ PACKET_CA_EXE_HASHCHECK* p = (PACKET_CA_EXE_HASHCHECK*)RFIFOP( fd, 0 ); - if( RFIFOREST( fd ) < sizeof( *p ) ){ - return 0; - } + sd.has_client_hash = 1; + memcpy( sd.client_hash, p->hash, sizeof( sd.client_hash ) ); - sd->has_client_hash = 1; - memcpy( sd->client_hash, p->hash, sizeof( sd->client_hash ) ); - - RFIFOSKIP( fd, sizeof( *p ) ); - - return 1; + return true; } template -int logclif_parse_reqauth_raw( int fd, login_session_data& sd, char* ip ){ +static bool logclif_parse_reqauth_raw( int fd, login_session_data& sd ){ P* p = (P*)RFIFOP( fd, 0 ); - if( RFIFOREST( fd ) < sizeof( *p ) ){ - return 0; - } + char ip[16]; + uint32 ipl = session[fd]->client_addr; + ip2str( ipl, ip ); safestrncpy( sd.userid, p->username, sizeof( sd.userid ) ); sd.clienttype = p->clienttype; @@ -295,8 +282,6 @@ int logclif_parse_reqauth_raw( int fd, login_session_data& sd, char* ip ){ sd.passwdenc = 0; - RFIFOSKIP( fd, sizeof( *p ) ); - int result = login_mmo_auth( &sd, false ); if( result == -1 ){ @@ -305,16 +290,16 @@ int logclif_parse_reqauth_raw( int fd, login_session_data& sd, char* ip ){ logclif_auth_failed( &sd, result ); } - return 1; + return true; } template -int logclif_parse_reqauth_md5( int fd, login_session_data& sd, char* ip ){ +static bool logclif_parse_reqauth_md5( int fd, login_session_data& sd ){ P* p = (P*)RFIFOP( fd, 0 ); - if( RFIFOREST( fd ) < sizeof( *p ) ){ - return 0; - } + char ip[16]; + uint32 ipl = session[fd]->client_addr; + ip2str( ipl, ip ); safestrncpy( sd.userid, p->username, sizeof( sd.userid ) ); sd.clienttype = p->clienttype; @@ -324,11 +309,9 @@ int logclif_parse_reqauth_md5( int fd, login_session_data& sd, char* ip ){ sd.passwdenc = PASSWORDENC; - RFIFOSKIP( fd, sizeof( *p ) ); - if( login_config.use_md5_passwds ){ logclif_auth_failed( &sd, 3 ); // send "rejected from server" - return 0; + return false; } int result = login_mmo_auth( &sd, false ); @@ -339,20 +322,16 @@ int logclif_parse_reqauth_md5( int fd, login_session_data& sd, char* ip ){ logclif_auth_failed( &sd, result ); } - return 1; + return true; } template -int logclif_parse_reqauth_sso( int fd, login_session_data& sd, char* ip ){ +static bool logclif_parse_reqauth_sso( int fd, login_session_data& sd ){ P* p = (P*)RFIFOP( fd, 0 ); - if( RFIFOREST( fd ) < sizeof( *p ) ){ - return 0; - } - - if( static_castpacketLength)>(RFIFOREST(fd)) < p->packetLength){ - return 0; - } + char ip[16]; + uint32 ipl = session[fd]->client_addr; + ip2str( ipl, ip ); size_t token_length = p->packetLength - sizeof( *p ); @@ -369,8 +348,6 @@ int logclif_parse_reqauth_sso( int fd, login_session_data& sd, char* ip ){ sd.passwdenc = 0; - RFIFOSKIP( fd, p->packetLength ); - int result = login_mmo_auth( &sd, false ); if( result == -1 ){ @@ -379,7 +356,17 @@ int logclif_parse_reqauth_sso( int fd, login_session_data& sd, char* ip ){ logclif_auth_failed( &sd, result ); } - return 1; + return true; +} + +static void logclif_reqkey_result( int fd, struct login_session_data& sd ){ + PACKET_AC_ACK_HASH* p = (PACKET_AC_ACK_HASH*)packet_buffer; + + p->packetType = HEADER_AC_ACK_HASH; + p->packetLength = sizeof( *p ) + sd.md5keylen; + strncpy( p->salt, sd.md5key, sd.md5keylen ); + + socket_send( fd, p ); } /** @@ -388,25 +375,13 @@ int logclif_parse_reqauth_sso( int fd, login_session_data& sd, char* ip ){ * @param sd: client session * @return 1 success */ -static int logclif_parse_reqkey(int fd, struct login_session_data *sd){ +static bool logclif_parse_reqkey( int fd, struct login_session_data& sd ){ PACKET_CA_REQ_HASH* p_in = (PACKET_CA_REQ_HASH*)RFIFOP( fd, 0 ); - if( RFIFOREST( fd ) < sizeof( *p_in ) ){ - return 0; - } + sd.md5keylen = sizeof( sd.md5key ); + MD5_Salt( sd.md5keylen, sd.md5key ); - RFIFOSKIP( fd, sizeof( *p_in ) ); - - sd->md5keylen = sizeof( sd->md5key ); - MD5_Salt( sd->md5keylen, sd->md5key ); - - PACKET_AC_ACK_HASH* p_out = (PACKET_AC_ACK_HASH*)packet_buffer; - - p_out->packetType = HEADER_AC_ACK_HASH; - p_out->packetLength = sizeof( *p_out ) + sd->md5keylen; - strncpy( p_out->salt, sd->md5key, sd->md5keylen ); - - socket_send( fd, p_out ); + logclif_reqkey_result( fd, sd ); return 1; } @@ -485,28 +460,43 @@ static int logclif_parse_reqcharconnec(int fd, struct login_session_data *sd, ch return 1; } -int logclif_parse_otp_login( int fd, struct login_session_data* sd ){ - PACKET_CT_AUTH* p_in = (PACKET_CT_AUTH*)RFIFOP( fd, 0 ); +static void logclif_otp_result( int fd ){ + PACKET_TC_RESULT p = {}; - if( RFIFOREST( fd ) < sizeof( *p_in ) ){ - return 0; - } + p.packetType = HEADER_TC_RESULT; + p.packetLength = sizeof( p ); + p.type = 0; // normal login + safestrncpy( p.unknown1, "S1000", sizeof( p.unknown1 ) ); + safestrncpy( p.unknown2, "token", sizeof( p.unknown2 ) ); - RFIFOSKIP( fd, sizeof( *p_in ) ); + socket_send( fd, p ); +} - PACKET_TC_RESULT p_out = {}; +static bool logclif_parse_otp_login( int fd, struct login_session_data& ){ + PACKET_CT_AUTH* p = (PACKET_CT_AUTH*)RFIFOP( fd, 0 ); - p_out.packetType = HEADER_TC_RESULT; - p_out.packetLength = sizeof( p_out ); - p_out.type = 0; // normal login - safestrncpy( p_out.unknown1, "S1000", sizeof( p_out.unknown1 ) ); - safestrncpy( p_out.unknown2, "token", sizeof( p_out.unknown2 ) ); - - socket_send( fd, p_out ); + logclif_otp_result( fd ); return 1; } +class LoginPacketDatabase : public PacketDatabase{ +public: + LoginPacketDatabase(){ + this->add( HEADER_CA_CONNECT_INFO_CHANGED, true, sizeof( PACKET_CA_CONNECT_INFO_CHANGED ), logclif_parse_keepalive ); + this->add( HEADER_CA_EXE_HASHCHECK, true, sizeof( PACKET_CA_EXE_HASHCHECK ), logclif_parse_updclhash ); + this->add( HEADER_CA_LOGIN, true, sizeof( PACKET_CA_LOGIN ), logclif_parse_reqauth_raw ); + this->add( HEADER_CA_LOGIN_PCBANG, true, sizeof( PACKET_CA_LOGIN_PCBANG ), logclif_parse_reqauth_raw ); + this->add( HEADER_CA_LOGIN_CHANNEL, true, sizeof( PACKET_CA_LOGIN_CHANNEL ), logclif_parse_reqauth_raw ); + this->add( HEADER_CA_LOGIN2, true, sizeof( PACKET_CA_LOGIN2 ), logclif_parse_reqauth_md5 ); + this->add( HEADER_CA_LOGIN3, true, sizeof( PACKET_CA_LOGIN3 ), logclif_parse_reqauth_md5 ); + this->add( HEADER_CA_LOGIN4, true, sizeof( PACKET_CA_LOGIN4 ), logclif_parse_reqauth_md5 ); + this->add( HEADER_CA_SSO_LOGIN_REQ, false, sizeof( PACKET_CA_SSO_LOGIN_REQ ), logclif_parse_reqauth_sso ); + this->add( HEADER_CA_REQ_HASH, true, sizeof( PACKET_CA_REQ_HASH ), logclif_parse_reqkey ); + this->add( HEADER_CT_AUTH, true, sizeof( PACKET_CT_AUTH ), logclif_parse_otp_login ); + } +} login_packet_db; + /** * Entry point from client to log-server. * Function that checks incoming command, then splits it to the correct handler. @@ -548,70 +538,21 @@ int logclif_parse(int fd) { while( RFIFOREST(fd) >= 2 ) { uint16 command = RFIFOW(fd,0); - int next=1; switch( command ){ - // New alive packet: used to verify if client is always alive. - case HEADER_CA_CONNECT_INFO_CHANGED: - next = logclif_parse_keepalive( fd ); - break; - // client md5 hash (binary) - case HEADER_CA_EXE_HASHCHECK: - next = logclif_parse_updclhash( fd, sd ); - break; - // request client login (raw password) - case HEADER_CA_LOGIN: - // S 0064 .L .24B .24B .B - next = logclif_parse_reqauth_raw( fd, *sd, ip ); - break; - case HEADER_CA_LOGIN_PCBANG: - // S 0277 .L .24B .24B .B .16B .13B - next = logclif_parse_reqauth_raw( fd, *sd, ip ); - break; - case HEADER_CA_LOGIN_CHANNEL: - // S 02b0 .L .24B .24B .B .16B .13B .B - next = logclif_parse_reqauth_raw( fd, *sd, ip ); - break; - // request client login (md5-hashed password) - case HEADER_CA_LOGIN2: - // S 01dd .L .24B .16B .B - next = logclif_parse_reqauth_md5( fd, *sd, ip ); - break; - case HEADER_CA_LOGIN3: - // S 01fa .L .24B .16B .B .B(index of the connection in the clientinfo file (+10 if the command-line contains "pc")) - next = logclif_parse_reqauth_md5( fd, *sd, ip ); - break; - case HEADER_CA_LOGIN4: - // S 027c .L .24B .16B .B .13B - next = logclif_parse_reqauth_md5( fd, *sd, ip ); - break; - case HEADER_CA_SSO_LOGIN_REQ: - // S 0825 .W .L .B .24B .27B .17B .15B .?B - next = logclif_parse_reqauth_sso( fd, *sd, ip ); - break; - // Sending request of the coding key - case HEADER_CA_REQ_HASH: - next = logclif_parse_reqkey( fd, sd ); - break; - // OTP token login - case HEADER_CT_AUTH: - next = logclif_parse_otp_login( fd, sd ); - break; // Connection request of a char-server case 0x2710: logclif_parse_reqcharconnec(fd,sd, ip); return 0; // processing will continue elsewhere default: - ShowNotice("Abnormal end of connection (ip: %s): Unknown packet 0x%x\n", ip, command); - set_eof(fd); - return 0; + if( !login_packet_db.handle( fd, *sd ) ){ + return 0; + } + break; } - if(next==0) return 0; // avoid processing of followup packets (prev was probably incomplete) } return 0; } - - /// Constructor destructor /** From e77513dc7379c5c8f3bbdb3d0b64ea46227c06d1 Mon Sep 17 00:00:00 2001 From: Atemo Date: Tue, 27 Feb 2024 21:38:45 +0100 Subject: [PATCH 14/44] Rebalance Troubadour & Trouvere 2024-02-05 (#8140) * Rhythm Shooting - Increases base damage from 3700%/4550%(sound brand)Atk to 5300%/6100%(sound brand)Atk per hit based on level 5. * Metallic Fury - Increases base damage from 13000%/18000%(sound brand)Matk to 19250%/23250%(sound brand)Matk based on level 5. - Changes sound effect. --- src/map/battle.cpp | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/src/map/battle.cpp b/src/map/battle.cpp index 01b3c8a9e4..312191fcb1 100644 --- a/src/map/battle.cpp +++ b/src/map/battle.cpp @@ -5790,16 +5790,13 @@ static int battle_calc_attack_skill_ratio(struct Damage* wd, struct block_list * } break; case TR_RHYTHMSHOOTING: - skillratio += -100 + 450 + 650 * skill_lv; + skillratio += -100 + 550 + 950 * skill_lv; if (sd && pc_checkskill(sd, TR_STAGE_MANNER) > 0) skillratio += 5 * sstatus->con; if (tsc && tsc->getSCE(SC_SOUNDBLEND)) { - if (skill_lv == 4) - skillratio += 830; // Typo in skill description ? - else - skillratio += 350 + 100 * skill_lv; + skillratio += 300 + 100 * skill_lv; skillratio += 2 * sstatus->con; } @@ -8154,10 +8151,10 @@ struct Damage battle_calc_magic_attack(struct block_list *src,struct block_list RE_LVL_DMOD(100); break; case TR_METALIC_FURY: - skillratio += -100 + 2600 * skill_lv; + skillratio += -100 + 3850 * skill_lv; // !Todo: skill affected by SPL (without SC_SOUNDBLEND) as well? if (tsc && tsc->getSCE(SC_SOUNDBLEND)) { - skillratio += 1000 * skill_lv; + skillratio += 800 * skill_lv; skillratio += 2 * pc_checkskill(sd, TR_STAGE_MANNER) * sstatus->spl; } RE_LVL_DMOD(100); From 9ed6ff829bb1bce112c5750070626729df9851e9 Mon Sep 17 00:00:00 2001 From: Atemo Date: Tue, 27 Feb 2024 21:40:03 +0100 Subject: [PATCH 15/44] Rebalance Biolo 2024-02-05 (#8138) Explosive Powder - Increases base damage from 3150%/3650%(Research Report)Atk to 3750%/4250%(Research Report)Atk per hit based on level 5. --- src/map/battle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/map/battle.cpp b/src/map/battle.cpp index 312191fcb1..d356cf4f6b 100644 --- a/src/map/battle.cpp +++ b/src/map/battle.cpp @@ -5740,7 +5740,7 @@ static int battle_calc_attack_skill_ratio(struct Damage* wd, struct block_list * RE_LVL_DMOD(100); break; case BO_EXPLOSIVE_POWDER: - skillratio += -100 + 400 + 550 * skill_lv; + skillratio += -100 + 500 + 650 * skill_lv; skillratio += 5 * sstatus->pow; if (sc && sc->getSCE(SC_RESEARCHREPORT)) skillratio += 100 * skill_lv; From 8e44c94c7c15be963c905b5e618db4fa81230651 Mon Sep 17 00:00:00 2001 From: Atemo Date: Tue, 27 Feb 2024 21:40:43 +0100 Subject: [PATCH 16/44] Rebalance Inquisitor 2024-02-05 (#8139) * Explosion Blaster - Increases base damage from 12000%/17600%(Oleum Sanctum)Atk to 13450%/18200%(Oleum Sanctum)Atk based on level 5. * Third Punish - Reduces skill cooldown from 1 second to 0.7 seconds. - Adds global cooldown by 0.5 seconds. - Increases base damage from 7850%Atk to 9450%Atk based on level 5. * Third Flame Bomb - Adds global cooldown by 0.7 seconds. --- db/re/skill_db.yml | 4 +++- src/map/battle.cpp | 8 +++++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/db/re/skill_db.yml b/db/re/skill_db.yml index 0561b51758..b91461eb7b 100644 --- a/db/re/skill_db.yml +++ b/db/re/skill_db.yml @@ -36718,7 +36718,8 @@ Body: SplashArea: 3 CastCancel: true Duration1: 600000 - Cooldown: 1000 + AfterCastActDelay: 500 + Cooldown: 700 Requires: SpCost: - Level: 1 @@ -36745,6 +36746,7 @@ Body: Element: Weapon SplashArea: 3 CastCancel: true + AfterCastActDelay: 700 Cooldown: 1000 Requires: SpCost: diff --git a/src/map/battle.cpp b/src/map/battle.cpp index d356cf4f6b..24a5fdaf3a 100644 --- a/src/map/battle.cpp +++ b/src/map/battle.cpp @@ -5494,10 +5494,11 @@ static int battle_calc_attack_skill_ratio(struct Damage* wd, struct block_list * RE_LVL_DMOD(100); break; case IQ_EXPOSION_BLASTER: - skillratio += -100 + 2400 * skill_lv + 10 * sstatus->pow; + skillratio += -100 + 450 + 2600 * skill_lv; + skillratio += 10 * sstatus->pow; if( tsc != nullptr && tsc->getSCE( SC_HOLY_OIL ) ){ - skillratio += 350 + 1050 * skill_lv; + skillratio += 950 * skill_lv; } RE_LVL_DMOD(100); @@ -5519,7 +5520,8 @@ static int battle_calc_attack_skill_ratio(struct Damage* wd, struct block_list * RE_LVL_DMOD(100); break; case IQ_THIRD_PUNISH: - skillratio += -100 + 350 + 1500 * skill_lv + 10 * sstatus->pow; + skillratio += -100 + 450 + 1800 * skill_lv; + skillratio += 10 * sstatus->pow; RE_LVL_DMOD(100); break; case IQ_THIRD_FLAME_BOMB: From fa71d1012dc25811576e0b08c595240a2561d945 Mon Sep 17 00:00:00 2001 From: Atemo Date: Tue, 27 Feb 2024 23:41:03 +0100 Subject: [PATCH 17/44] Rebalance Dragon Knight 2024-02-05 (#8135) * Servant Weapon - Reduces skill cooldown from 150 seconds to 60 seconds based on level 5. - Increases base damage from 2500%Atk to 4850%Atk based on level 5. - Increases number of hit from 2 hits to 3 hits. - No longer be removed by Dispell or Clearance. - Increases the trigger chance of weapon from 15% to 25% based on level 5. * Madness Crusher - Increases base damage from 8350%Atk to 20000%Atk based on level 5. * Storm Slash - Increases base damage from 2200%Atk to 4050%Atk per hit based on level 5. * Hack and Slasher - Increases base damage from 7700%Atk to 8550%Atk per hit based on level 10. * Dragonic Breath - Increases factor weight of MaxHP in skill formula from 12.5% to 25%. - Increases factor weight of MaxSP in skill formula from 25% to 50%. Additionally: Dragonic Breath formula updated. Thanks to @datawulf ! Co-authored-by: Lemongrass3110 --- db/re/skill_db.yml | 14 ++------------ src/map/battle.cpp | 29 +++++++++++++++++++---------- 2 files changed, 21 insertions(+), 22 deletions(-) diff --git a/db/re/skill_db.yml b/db/re/skill_db.yml index b91461eb7b..e0ae4f41c8 100644 --- a/db/re/skill_db.yml +++ b/db/re/skill_db.yml @@ -34931,17 +34931,7 @@ Body: Time: 2000 - Level: 5 Time: 1000 - Cooldown: - - Level: 1 - Time: 30000 - - Level: 2 - Time: 60000 - - Level: 3 - Time: 90000 - - Level: 4 - Time: 120000 - - Level: 5 - Time: 150000 + Cooldown: 60000 Requires: SpCost: - Level: 1 @@ -34966,7 +34956,7 @@ Body: Critical: true Range: 1 Hit: Multi_Hit - HitCount: 2 + HitCount: 3 Element: Weapon Requires: SpCost: 1 diff --git a/src/map/battle.cpp b/src/map/battle.cpp index 24a5fdaf3a..e3dc03a737 100644 --- a/src/map/battle.cpp +++ b/src/map/battle.cpp @@ -5432,7 +5432,8 @@ static int battle_calc_attack_skill_ratio(struct Damage* wd, struct block_list * skillratio += skillratio * sc->getSCE(SC_LIGHTOFSTAR)->val2 / 100; break; case DK_SERVANTWEAPON_ATK: - skillratio += -100 + 500 + 400 * skill_lv + 5 * sstatus->pow; + skillratio += -100 + 450 + 800 * skill_lv; + skillratio += 5 * sstatus->pow; RE_LVL_DMOD(100); break; case DK_SERVANT_W_PHANTOM: @@ -5445,7 +5446,7 @@ static int battle_calc_attack_skill_ratio(struct Damage* wd, struct block_list * break; case DK_HACKANDSLASHER: case DK_HACKANDSLASHER_ATK: - skillratio += -100 + 200 + 750 * skill_lv; + skillratio += -100 + 350 + 820 * skill_lv; skillratio += 7 * sstatus->pow; RE_LVL_DMOD(100); break; @@ -5456,7 +5457,8 @@ static int battle_calc_attack_skill_ratio(struct Damage* wd, struct block_list * RE_LVL_DMOD(100); break; case DK_MADNESS_CRUSHER: - skillratio += -100 + 350 + 1600 * skill_lv + 10 * sstatus->pow; + skillratio += -100 + 1000 + 3800 * skill_lv; + skillratio += 10 * sstatus->pow; if( sd != nullptr ){ int16 index = sd->equip_index[EQI_HAND_R]; @@ -5469,18 +5471,25 @@ static int battle_calc_attack_skill_ratio(struct Damage* wd, struct block_list * skillratio *= 2; break; case DK_STORMSLASH: - skillratio += -100 + 200 + 400 * skill_lv + 5 * sstatus->pow; + skillratio += -100 + 300 + 750 * skill_lv; + skillratio += 5 * sstatus->pow; RE_LVL_DMOD(100); if (sc && sc->getSCE(SC_GIANTGROWTH) && rnd_chance(60, 100)) skillratio *= 2; break; case DK_DRAGONIC_BREATH: skillratio += -100 + 50 + 350 * skill_lv; - skillratio += 5 * sstatus->pow; - //TODO: needs official HP/SP scaling [Muh] - skillratio += sstatus->max_hp / 500 + status_get_max_sp(src) / 40; - if (sc && sc->getSCE(SC_DRAGONIC_AURA)) - skillratio += sstatus->max_hp / 500 + status_get_max_sp(src) / 40; + skillratio += 7 * sstatus->pow; + + if (sc && sc->getSCE(SC_DRAGONIC_AURA)) { + skillratio += 3 * sstatus->pow; + skillratio += (skill_lv * (sstatus->max_hp * 25 / 100) * 5) / 100; // Skill level x 0.05 x ((MaxHP / 4) + (MaxSP / 2)) + skillratio += (skill_lv * (sstatus->max_sp * 50 / 100) * 5) / 100; + } else { + skillratio += (skill_lv * (sstatus->max_hp * 25 / 100) * 7) / 100; // Skill level x 0.07 x ((MaxHP / 4) + (MaxSP / 2)) + skillratio += (skill_lv * (sstatus->max_sp * 50 / 100) * 7) / 100; + } + RE_LVL_DMOD(100); break; case IQ_OLEUM_SANCTUM: @@ -9718,7 +9727,7 @@ enum damage_lv battle_weapon_attack(struct block_list* src, struct block_list* t } if( sc ){ - if( sc->getSCE( SC_SERVANTWEAPON ) && sd->servantball > 0 && rnd() % 100 < ( 3 * sc->getSCE( SC_SERVANTWEAPON )->val1 ) ){ + if( sc->getSCE( SC_SERVANTWEAPON ) && sd->servantball > 0 && rnd_chance( 5 * sc->getSCE( SC_SERVANTWEAPON )->val1, 100 ) ){ uint16 skill_id = DK_SERVANTWEAPON_ATK; uint16 skill_lv = sc->getSCE(SC_SERVANTWEAPON)->val1; From efe7824bbe185e571ef553abb8ac90e588b2bf44 Mon Sep 17 00:00:00 2001 From: Atemo Date: Tue, 27 Feb 2024 23:41:43 +0100 Subject: [PATCH 18/44] Rebalance Meister 2024-02-05 (#8137) * Axe Stomp - Increases global cooldown from 0.25 seconds to 0.7 seconds based on level 5. - Increases base damage from 5150%Atk to 6200%Atk per hit based on level 5. * Mighty Smash - Increases global cooldown from 0.25 seconds to 0.7 seconds based on level 10. - Increases base damage from 1825%/1850%(Axe Stomp)Atk to 2480%/2500%(Axe Stomp)Atk per hit based on level 10. * Spark Blaster - Increases base damage from 9250%Atk to 14600%Atk based on level 10. * Triple Laser - Increases base damage from 5050%Atk to 6400%Atk per hit based on level 5. * Rush Quake - Buff no longer be removed by Dispell or Clearance. Co-authored-by: Lemongrass3110 --- db/re/skill_db.yml | 4 ++-- db/re/status.yml | 4 ++++ src/map/battle.cpp | 11 ++++++----- 3 files changed, 12 insertions(+), 7 deletions(-) diff --git a/db/re/skill_db.yml b/db/re/skill_db.yml index e0ae4f41c8..14bbece650 100644 --- a/db/re/skill_db.yml +++ b/db/re/skill_db.yml @@ -38184,7 +38184,7 @@ Body: Area: 3 GiveAp: 3 CastCancel: true - AfterCastActDelay: 250 + AfterCastActDelay: 700 Duration1: - Level: 1 Time: 10000 @@ -42371,7 +42371,7 @@ Body: - Level: 10 Area: 3 CastCancel: true - AfterCastActDelay: 250 + AfterCastActDelay: 700 Cooldown: 500 Requires: SpCost: diff --git a/db/re/status.yml b/db/re/status.yml index c124e46d2f..2170fd945f 100644 --- a/db/re/status.yml +++ b/db/re/status.yml @@ -8749,6 +8749,10 @@ Body: DurationLookup: MT_RUSH_QUAKE CalcFlags: All: true + Flags: + NoDispell: true + NoBanishingBuster: true + NoClearance: true - Status: G_LIFEPOTION Icon: EFST_G_LIFEPOTION Flags: diff --git a/src/map/battle.cpp b/src/map/battle.cpp index e3dc03a737..c6531f85f8 100644 --- a/src/map/battle.cpp +++ b/src/map/battle.cpp @@ -5627,14 +5627,15 @@ static int battle_calc_attack_skill_ratio(struct Damage* wd, struct block_list * RE_LVL_DMOD(100); break; case MT_AXE_STOMP: - skillratio += -100 + 400 + 950 * skill_lv + 5 * sstatus->pow; + skillratio += -100 + 450 + 1150 * skill_lv; + skillratio += 5 * sstatus->pow; RE_LVL_DMOD(100); break; case MT_MIGHTY_SMASH: - skillratio += -100 + 25 + 180 * skill_lv; + skillratio += -100 + 80 + 240 * skill_lv; skillratio += 5 * sstatus->pow; if (sc && sc->getSCE(SC_AXE_STOMP)) { - skillratio += 25; + skillratio += 20; skillratio += 5 * sstatus->pow; } RE_LVL_DMOD(100); @@ -5650,12 +5651,12 @@ static int battle_calc_attack_skill_ratio(struct Damage* wd, struct block_list * RE_LVL_DMOD(100); break; case MT_SPARK_BLASTER: - skillratio += -100 + 250 + 900 * skill_lv; + skillratio += -100 + 600 + 1400 * skill_lv; skillratio += 5 * sstatus->pow; RE_LVL_DMOD(100); break; case MT_TRIPLE_LASER: - skillratio += -100 + 550 + 900 * skill_lv; + skillratio += -100 + 650 + 1150 * skill_lv; skillratio += 12 * sstatus->pow; RE_LVL_DMOD(100); break; From d4ec7eb2414bf0feddbd97d8c501700466f64cf2 Mon Sep 17 00:00:00 2001 From: Vincent Stumpf Date: Tue, 27 Feb 2024 16:03:07 -0800 Subject: [PATCH 19/44] Fix inventory expansion packet versions (#8148) Co-authored-by: Lemongrass3110 --- src/map/clif.cpp | 12 ++++++------ src/map/clif_packetdb.hpp | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/map/clif.cpp b/src/map/clif.cpp index da3cb98003..a78cee1f69 100644 --- a/src/map/clif.cpp +++ b/src/map/clif.cpp @@ -22715,7 +22715,7 @@ void clif_parse_stylist_close( int fd, map_session_data* sd ){ } void clif_inventory_expansion_info( map_session_data* sd ){ -#if PACKETVER_MAIN_NUM >= 20181031 || PACKETVER_RE_NUM >= 20181031 || PACKETVER_ZERO_NUM >= 20181114 +#if PACKETVER_MAIN_NUM >= 20181219 || PACKETVER_RE_NUM >= 20181219 || PACKETVER_ZERO_NUM >= 20181212 nullpo_retv( sd ); struct PACKET_ZC_EXTEND_BODYITEM_SIZE p = {}; @@ -22736,7 +22736,7 @@ enum class e_inventory_expansion_response : uint8{ }; void clif_inventory_expansion_response( map_session_data* sd, e_inventory_expansion_response response ){ -#if PACKETVER_MAIN_NUM >= 20181031 || PACKETVER_RE_NUM >= 20181031 || PACKETVER_ZERO_NUM >= 20181114 +#if PACKETVER_MAIN_NUM >= 20181219 || PACKETVER_RE_NUM >= 20181219 || PACKETVER_ZERO_NUM >= 20181212 nullpo_retv( sd ); struct PACKET_ZC_ACK_OPEN_MSGBOX_EXTEND_BODYITEM_SIZE p = {}; @@ -22750,7 +22750,7 @@ void clif_inventory_expansion_response( map_session_data* sd, e_inventory_expans } void clif_parse_inventory_expansion_request( int fd, map_session_data* sd ){ -#if PACKETVER_MAIN_NUM >= 20181031 || PACKETVER_RE_NUM >= 20181031 || PACKETVER_ZERO_NUM >= 20181114 +#if PACKETVER_MAIN_NUM >= 20181219 || PACKETVER_RE_NUM >= 20181219 || PACKETVER_ZERO_NUM >= 20181212 // Check if player is dead or busy with other stuff if( pc_isdead( sd ) || pc_cant_act( sd ) ){ clif_inventory_expansion_response( sd, e_inventory_expansion_response::BUSY ); @@ -22819,7 +22819,7 @@ enum class e_inventory_expansion_result : uint8{ }; void clif_inventory_expansion_result( map_session_data* sd, e_inventory_expansion_result result ){ -#if PACKETVER_MAIN_NUM >= 20181031 || PACKETVER_RE_NUM >= 20181031 || PACKETVER_ZERO_NUM >= 20181114 +#if PACKETVER_MAIN_NUM >= 20181219 || PACKETVER_RE_NUM >= 20181219 || PACKETVER_ZERO_NUM >= 20181212 nullpo_retv( sd ); struct PACKET_ZC_ACK_EXTEND_BODYITEM_SIZE p = {}; @@ -22836,7 +22836,7 @@ void clif_inventory_expansion_result( map_session_data* sd, e_inventory_expansio } void clif_parse_inventory_expansion_confirm( int fd, map_session_data* sd ){ -#if PACKETVER_MAIN_NUM >= 20181031 || PACKETVER_RE_NUM >= 20181031 || PACKETVER_ZERO_NUM >= 20181114 +#if PACKETVER_MAIN_NUM >= 20181219 || PACKETVER_RE_NUM >= 20181219 || PACKETVER_ZERO_NUM >= 20181212 if( sd->state.inventory_expansion_confirmation == 0 ){ return; } @@ -22887,7 +22887,7 @@ void clif_parse_inventory_expansion_confirm( int fd, map_session_data* sd ){ } void clif_parse_inventory_expansion_reject( int fd, map_session_data* sd ){ -#if PACKETVER_MAIN_NUM >= 20181031 || PACKETVER_RE_NUM >= 20181031 || PACKETVER_ZERO_NUM >= 20181114 +#if PACKETVER_MAIN_NUM >= 20181219 || PACKETVER_RE_NUM >= 20181219 || PACKETVER_ZERO_NUM >= 20181212 sd->state.inventory_expansion_confirmation = 0; sd->state.inventory_expansion_amount = 0; #endif diff --git a/src/map/clif_packetdb.hpp b/src/map/clif_packetdb.hpp index ccd1434893..e620e49379 100644 --- a/src/map/clif_packetdb.hpp +++ b/src/map/clif_packetdb.hpp @@ -2365,7 +2365,7 @@ parseable_packet( HEADER_CZ_USE_SKILL_END, sizeof( struct PACKET_CZ_USE_SKILL_END ), clif_parse_StopUseSkillToId, 0 ); #endif -#if PACKETVER_MAIN_NUM >= 20181031 || PACKETVER_RE_NUM >= 20181031 || PACKETVER_ZERO_NUM >= 20181114 +#if PACKETVER_MAIN_NUM >= 20181219 || PACKETVER_RE_NUM >= 20181219 || PACKETVER_ZERO_NUM >= 20181212 parseable_packet( HEADER_CZ_REQ_OPEN_MSGBOX_EXTEND_BODYITEM_SIZE, sizeof( struct PACKET_CZ_REQ_OPEN_MSGBOX_EXTEND_BODYITEM_SIZE ), clif_parse_inventory_expansion_request, 0 ); parseable_packet( HEADER_CZ_REQ_EXTEND_BODYITEM_SIZE, sizeof( struct PACKET_CZ_REQ_EXTEND_BODYITEM_SIZE ), clif_parse_inventory_expansion_confirm, 0 ); parseable_packet( HEADER_CZ_CLOSE_MSGBOX_EXTEND_BODYITEM_SIZE, sizeof( struct PACKET_CZ_CLOSE_MSGBOX_EXTEND_BODYITEM_SIZE ), clif_parse_inventory_expansion_reject, 0 ); From 398bae57a8fafe1bdbcdfb589d80620e789fc57b Mon Sep 17 00:00:00 2001 From: inhyositsu Date: Wed, 28 Feb 2024 08:49:15 +0800 Subject: [PATCH 20/44] Fixed a Zeny variable overflow in mails (#8145) Fix the issue of Zeny variable overflow causing it to become negative. Co-authored-by: Lemongrass3110 --- src/map/mail.cpp | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/src/map/mail.cpp b/src/map/mail.cpp index 12e9a5bb14..8005f8c599 100644 --- a/src/map/mail.cpp +++ b/src/map/mail.cpp @@ -7,6 +7,7 @@ #include #include #include +#include #include "atcommand.hpp" #include "battle.hpp" @@ -18,6 +19,8 @@ #include "pc.hpp" #include "pet.hpp" +using namespace rathena; + void mail_clear(map_session_data *sd) { int i; @@ -106,8 +109,36 @@ bool mail_removezeny( map_session_data *sd, bool flag ){ if( sd->mail.zeny > 0 ){ //Zeny send if( flag ){ + int64 zeny = sd->mail.zeny; + + if( battle_config.mail_zeny_fee > 0 ){ + int64 fee; + + if( util::safe_multiplication( zeny, static_cast( battle_config.mail_zeny_fee ), fee ) ){ + return false; + } + + if( fee < 0 ){ + return false; + } + + fee /= 100; + + if( fee > MAX_ZENY ){ + return false; + } + + if( util::safe_addition( zeny, fee, zeny ) ){ + return false; + } + + if( zeny > MAX_ZENY ){ + return false; + } + } + // It's possible that we don't know what the dest_id is, so it will be 0 - if (pc_payzeny(sd, sd->mail.zeny + sd->mail.zeny * battle_config.mail_zeny_fee / 100, LOG_TYPE_MAIL, sd->mail.dest_id)) { + if( pc_payzeny( sd, static_cast( zeny ), LOG_TYPE_MAIL, sd->mail.dest_id ) ){ return false; } }else{ From 9139a21adc56200589a03d19d19aa59bc7015e66 Mon Sep 17 00:00:00 2001 From: Lemongrass3110 Date: Wed, 28 Feb 2024 21:05:18 +0100 Subject: [PATCH 21/44] Resolved a few size_t related warnings (#8085) Disabled warnings in libconfig only for MSVS --- 3rdparty/libconfig/scanner.c | 9 ++ src/char/char.cpp | 10 +- src/common/core.cpp | 3 +- src/common/showmsg.cpp | 4 +- src/common/socket.cpp | 5 +- src/common/strlib.cpp | 186 ++++++++++++++++++++--------------- src/common/strlib.hpp | 28 +++--- src/common/utilities.cpp | 4 +- src/login/login.cpp | 3 +- src/map/itemdb.cpp | 2 +- src/map/mob.cpp | 3 +- src/map/npc.cpp | 7 +- src/map/pc.cpp | 2 +- src/map/skill.cpp | 12 +-- src/map/status.cpp | 3 +- src/tool/csv2yaml.cpp | 106 +++++++++----------- src/tool/csv2yaml.hpp | 96 +++++++++--------- src/tool/yaml.hpp | 4 +- 18 files changed, 250 insertions(+), 237 deletions(-) diff --git a/3rdparty/libconfig/scanner.c b/3rdparty/libconfig/scanner.c index a7a401af50..09b8ec2a5e 100644 --- a/3rdparty/libconfig/scanner.c +++ b/3rdparty/libconfig/scanner.c @@ -2,6 +2,11 @@ #line 4 "scanner.c" +#ifdef _MSC_VER + #pragma warning( push ) + #pragma warning( disable : 4267 ) +#endif + #define YY_INT_ALIGNED short int /* A lexical scanner generated by flex */ @@ -2365,3 +2370,7 @@ void libconfig_yyfree (void * ptr , yyscan_t yyscanner) #define YYTABLES_NAME "yytables" #line 192 "scanner.l" + +#ifdef _MSC_VER + #pragma warning( pop ) +#endif diff --git a/src/char/char.cpp b/src/char/char.cpp index 6c841496b2..b660f186ea 100644 --- a/src/char/char.cpp +++ b/src/char/char.cpp @@ -2831,9 +2831,10 @@ void char_config_split_startpoint( char* w1_value, char* w2_value, struct s_poin lineitem = strtok(w2_value, ":"); while (lineitem != NULL && (*count) < MAX_STARTPOINT) { - int n = sv_split(lineitem, strlen(lineitem), 0, ',', fields, fields_length, SV_NOESCAPE_NOTERMINATE); + bool error; + size_t n = sv_split( lineitem, strlen( lineitem ), 0, ',', fields, fields_length, SV_NOESCAPE_NOTERMINATE, error ); - if (n + 1 < fields_length) { + if( error || ( n + 1 ) < fields_length ){ ShowDebug("%s: not enough arguments for %s! Skipping...\n", w1_value, lineitem); lineitem = strtok(NULL, ":"); //next lineitem continue; @@ -2867,9 +2868,10 @@ void char_config_split_startitem(char *w1_value, char *w2_value, struct startite lineitem = strtok(w2_value, ":"); while (lineitem != NULL && i < MAX_STARTITEM) { - int n = sv_split(lineitem, strlen(lineitem), 0, ',', fields, fields_length, SV_NOESCAPE_NOTERMINATE); + bool error; + size_t n = sv_split( lineitem, strlen( lineitem ), 0, ',', fields, fields_length, SV_NOESCAPE_NOTERMINATE, error ); - if (n + 1 < fields_length) { + if( error || ( n + 1 ) < fields_length ){ ShowDebug("%s: not enough arguments for %s! Skipping...\n", w1_value, lineitem); lineitem = strtok(NULL, ":"); //next lineitem continue; diff --git a/src/common/core.cpp b/src/common/core.cpp index 9470c92069..8bf5c34079 100644 --- a/src/common/core.cpp +++ b/src/common/core.cpp @@ -340,9 +340,8 @@ int Core::start( int argc, char **argv ){ char *p1; if((p1 = strrchr(argv[0], '/')) != NULL || (p1 = strrchr(argv[0], '\\')) != NULL ){ char *pwd = NULL; //path working directory - int n=0; SERVER_NAME = ++p1; - n = p1-argv[0]; //calc dir name len + size_t n = p1-argv[0]; //calc dir name len pwd = safestrncpy((char*)malloc(n + 1), argv[0], n); if(chdir(pwd) != 0) ShowError("Couldn't change working directory to %s for %s, runtime will probably fail",pwd,SERVER_NAME); diff --git a/src/common/showmsg.cpp b/src/common/showmsg.cpp index 7273700389..431d9e7c8c 100644 --- a/src/common/showmsg.cpp +++ b/src/common/showmsg.cpp @@ -61,7 +61,7 @@ char console_log_filepath[32] = "./log/unknown.log"; char s_[SBUF_SIZE]; \ StringBuf *d_; \ char *v_; \ - int l_; \ + size_t l_; \ } buf ={"",NULL,NULL,0}; \ //define NEWBUF @@ -210,7 +210,7 @@ int VFPRINTF(HANDLE handle, const char *fmt, va_list argptr) if( !is_console(handle) && stdout_with_ansisequence ) { - WriteFile(handle, BUFVAL(tempbuf), BUFLEN(tempbuf), &written, 0); + WriteFile( handle, BUFVAL( tempbuf ), (DWORD)BUFLEN( tempbuf ), &written, 0 ); return 0; } diff --git a/src/common/socket.cpp b/src/common/socket.cpp index ef8d167502..e94777fe42 100644 --- a/src/common/socket.cpp +++ b/src/common/socket.cpp @@ -1696,10 +1696,7 @@ void send_shortlist_add_fd(int fd) // Do pending network sends and eof handling from the shortlist. void send_shortlist_do_sends() { - int i; - - for( i = send_shortlist_count-1; i >= 0; --i ) - { + for( int i = static_cast( send_shortlist_count - 1 ); i >= 0; --i ){ int fd = send_shortlist_array[i]; int idx = fd/32; int bit = fd%32; diff --git a/src/common/strlib.cpp b/src/common/strlib.cpp index 0f2b2e3d88..515e1a0e11 100644 --- a/src/common/strlib.cpp +++ b/src/common/strlib.cpp @@ -3,6 +3,8 @@ #include "strlib.hpp" +#include + #include #include "cbasetypes.hpp" @@ -348,8 +350,7 @@ bool bin2hex(char* output, unsigned char* input, size_t count) /// /// @param sv Parse state /// @return 1 if a field was parsed, 0 if already done, -1 on error. -int sv_parse_next(struct s_svstate* sv) -{ +int sv_parse_next( s_svstate& sv ){ enum { START_OF_FIELD, PARSING_FIELD, @@ -358,19 +359,11 @@ int sv_parse_next(struct s_svstate* sv) TERMINATE, END } state; - const char* str; - int len; - enum e_svopt opt; - char delim; - int i; - if( sv == NULL ) - return -1;// error - - str = sv->str; - len = sv->len; - opt = sv->opt; - delim = sv->delim; + const char* str = sv.str; + size_t len = sv.len; + int opt = sv.opt; + char delim = sv.delim; // check opt if( delim == '\n' && (opt&(SV_TERMINATE_CRLF|SV_TERMINATE_LF)) ) @@ -384,9 +377,9 @@ int sv_parse_next(struct s_svstate* sv) return -1;// error } - if( sv->done || str == NULL ) + if( sv.done || str == NULL ) { - sv->done = true; + sv.done = true; return 0;// nothing to parse } @@ -397,10 +390,10 @@ int sv_parse_next(struct s_svstate* sv) ((opt&SV_TERMINATE_CR) && str[i] == '\r') || \ ((opt&SV_TERMINATE_CRLF) && i+1 < len && str[i] == '\r' && str[i+1] == '\n') ) #define IS_C_ESCAPE() ( (opt&SV_ESCAPE_C) && str[i] == '\\' ) -#define SET_FIELD_START() sv->start = i -#define SET_FIELD_END() sv->end = i +#define SET_FIELD_START() sv.start = i +#define SET_FIELD_END() sv.end = i - i = sv->off; + size_t i = sv.off; state = START_OF_FIELD; while( state != END ) { @@ -480,14 +473,14 @@ int sv_parse_next(struct s_svstate* sv) else ++i;// CR or LF #endif - sv->done = true; + sv.done = true; state = END; break; } } if( IS_END() ) - sv->done = true; - sv->off = i; + sv.done = true; + sv.off = i; #undef IS_END #undef IS_DELIM @@ -520,15 +513,20 @@ int sv_parse_next(struct s_svstate* sv) /// @param npos Size of the pos array /// @param opt Options that determine the parsing behaviour /// @return Number of fields found in the string or -1 if an error occured -int sv_parse(const char* str, int len, int startoff, char delim, int* out_pos, int npos, enum e_svopt opt) -{ - struct s_svstate sv; - int count; - +size_t sv_parse( const char* str, size_t len, size_t startoff, char delim, size_t* out_pos, size_t npos, int opt, bool& error ){ // initialize - if( out_pos == NULL ) npos = 0; - for( count = 0; count < npos; ++count ) - out_pos[count] = -1; + error = false; + + if( out_pos == nullptr ){ + npos = 0; + } + + for( size_t i = 0; i < npos; ++i ){ + out_pos[i] = -1; + } + + s_svstate sv = {}; + sv.str = str; sv.len = len; sv.off = startoff; @@ -536,18 +534,34 @@ int sv_parse(const char* str, int len, int startoff, char delim, int* out_pos, i sv.delim = delim; sv.done = false; - // parse - count = 0; - if( npos > 0 ) out_pos[0] = startoff; - while( !sv.done ) - { - ++count; - if( sv_parse_next(&sv) <= 0 ) - return -1;// error - if( npos > count*2 ) out_pos[count*2] = sv.start; - if( npos > count*2+1 ) out_pos[count*2+1] = sv.end; + if( npos > 0 ){ + out_pos[0] = startoff; } - if( npos > 1 ) out_pos[1] = sv.off; + + // parse + size_t count = 0; + + while( !sv.done ){ + ++count; + + if( sv_parse_next( sv ) <= 0 ){ + error = true; + return 0; + } + + if( npos > count * 2 ){ + out_pos[count * 2] = sv.start; + } + + if( npos > count * 2 + 1 ){ + out_pos[count * 2 + 1] = sv.end; + } + } + + if( npos > 1 ){ + out_pos[1] = sv.off; + } + return count; } @@ -570,18 +584,21 @@ int sv_parse(const char* str, int len, int startoff, char delim, int* out_pos, i /// @param nfields Size of the field array /// @param opt Options that determine the parsing behaviour /// @return Number of fields found in the string or -1 if an error occured -int sv_split(char* str, int len, int startoff, char delim, char** out_fields, size_t nfields, enum e_svopt opt) -{ - int pos[1024]; - int done; - char* end; - int ret = sv_parse(str, len, startoff, delim, pos, ARRAYLENGTH(pos), opt); +size_t sv_split( char* str, size_t len, size_t startoff, char delim, char** out_fields, size_t nfields, int opt, bool& error ){ + if( out_fields == nullptr || nfields <= 0 ){ + return 0; // nothing to do + } - if( ret == -1 || out_fields == NULL || nfields <= 0 ) - return ret; // nothing to do + size_t pos[1024]; + size_t ret = sv_parse( str, len, startoff, delim, pos, ARRAYLENGTH( pos ), opt, error ); + + // An error occurred + if( error ){ + return 0; + } // next line - end = str + pos[1]; + char* end = str + pos[1]; if( end[0] == '\0' ) { *out_fields = end; @@ -614,7 +631,7 @@ int sv_split(char* str, int len, int startoff, char delim, char** out_fields, si // fields size_t i = 2; - done = 0; + size_t done = 0; while( done < ret && nfields > 0 ) { if( i < ARRAYLENGTH(pos) ) @@ -630,7 +647,13 @@ int sv_split(char* str, int len, int startoff, char delim, char** out_fields, si } else {// get more fields - sv_parse(str, len, pos[i-1] + 1, delim, pos, ARRAYLENGTH(pos), opt); + sv_parse( str, len, pos[i - 1] + 1, delim, pos, ARRAYLENGTH( pos ), opt, error ); + + // An error occurred + if( error ){ + return 0; + } + i = 2; } } @@ -862,13 +885,11 @@ const char* skip_escaped_c(const char* p) * @param silent : should we display error if file not found ? * @return true on success, false if file could not be opened */ -bool sv_readdb(const char* directory, const char* filename, char delim, int mincols, int maxcols, int maxrows, bool (*parseproc)(char* fields[], int columns, int current), bool silent) -{ +bool sv_readdb( const char* directory, const char* filename, char delim, size_t mincols, size_t maxcols, size_t maxrows, bool (*parseproc)( char* fields[], size_t columns, size_t current ), bool silent ){ FILE* fp; int lines = 0; - int entries = 0; + size_t entries = 0; char** fields; // buffer for fields ([0] is reserved) - int columns, nb_cols; char path[1024], *line; const short colsize=512; @@ -883,13 +904,12 @@ bool sv_readdb(const char* directory, const char* filename, char delim, int minc } // allocate enough memory for the maximum requested amount of columns plus the reserved one - nb_cols = maxcols+1; + size_t nb_cols = maxcols + 1; fields = (char**)aMalloc(nb_cols*sizeof(char*)); line = (char*)aMalloc(nb_cols*colsize); // process rows one by one - while( fgets(line, maxcols*colsize, fp) ) - { + while( fgets( line, static_cast( maxcols * colsize ), fp ) ){ char *match; lines++; @@ -903,7 +923,13 @@ bool sv_readdb(const char* directory, const char* filename, char delim, int minc if( line[0] == '\0' || line[0] == '\n' || line[0] == '\r') continue; - columns = sv_split(line, strlen(line), 0, delim, fields, nb_cols, (e_svopt)(SV_TERMINATE_LF|SV_TERMINATE_CRLF)); + bool error; + size_t columns = sv_split( line, strlen( line ), 0, delim, fields, nb_cols, SV_TERMINATE_LF|SV_TERMINATE_CRLF, error ); + + if( error ){ + ShowError( "sv_readdb: error in line %d of \"%s\".\n", lines, path ); + continue; + } if( columns < mincols ) { @@ -965,53 +991,49 @@ void _StringBuf_Init(const char *file, int line, const char *func,StringBuf* sel } /// Appends the result of printf to the StringBuf -int _StringBuf_Printf(const char *file, int line, const char *func,StringBuf* self, const char* fmt, ...) -{ - int len; +size_t _StringBuf_Printf( const char* file, int line, const char* func, StringBuf* self, const char* fmt, ... ){ va_list ap; va_start(ap, fmt); - len = _StringBuf_Vprintf(file,line,func,self, fmt, ap); + size_t len = _StringBuf_Vprintf(file,line,func,self, fmt, ap); va_end(ap); return len; } /// Appends the result of vprintf to the StringBuf -int _StringBuf_Vprintf(const char *file, int line, const char *func,StringBuf* self, const char* fmt, va_list ap) -{ +size_t _StringBuf_Vprintf( const char* file, int line, const char* func, StringBuf* self, const char* fmt, va_list ap ){ for(;;) { - int n, size, off; va_list apcopy; /* Try to print in the allocated space. */ - size = self->max_ - (self->ptr_ - self->buf_); + size_t size = self->max_ - (self->ptr_ - self->buf_); va_copy(apcopy, ap); - n = vsnprintf(self->ptr_, size, fmt, apcopy); + int n = vsnprintf( self->ptr_, size, fmt, apcopy ); va_end(apcopy); /* If that worked, return the length. */ if( n > -1 && n < size ) { self->ptr_ += n; - return (int)(self->ptr_ - self->buf_); + return self->ptr_ - self->buf_; } /* Else try again with more space. */ self->max_ *= 2; // twice the old size - off = (int)(self->ptr_ - self->buf_); + size_t off = self->ptr_ - self->buf_; self->buf_ = (char*)aRealloc2(self->buf_, self->max_ + 1, file, line, func); self->ptr_ = self->buf_ + off; } } /// Appends the contents of another StringBuf to the StringBuf -int _StringBuf_Append(const char *file, int line, const char *func,StringBuf* self, const StringBuf* sbuf) +size_t _StringBuf_Append(const char *file, int line, const char *func,StringBuf* self, const StringBuf* sbuf) { - int available = self->max_ - (self->ptr_ - self->buf_); - int needed = (int)(sbuf->ptr_ - sbuf->buf_); + size_t available = self->max_ - (self->ptr_ - self->buf_); + size_t needed = sbuf->ptr_ - sbuf->buf_; if( needed >= available ) { - int off = (int)(self->ptr_ - self->buf_); + size_t off = self->ptr_ - self->buf_; self->max_ += needed; self->buf_ = (char*)aRealloc2(self->buf_, self->max_ + 1, file, line, func); self->ptr_ = self->buf_ + off; @@ -1019,26 +1041,26 @@ int _StringBuf_Append(const char *file, int line, const char *func,StringBuf* se memcpy(self->ptr_, sbuf->buf_, needed); self->ptr_ += needed; - return (int)(self->ptr_ - self->buf_); + return self->ptr_ - self->buf_; } // Appends str to the StringBuf -int _StringBuf_AppendStr(const char *file, int line, const char *func,StringBuf* self, const char* str) +size_t _StringBuf_AppendStr(const char *file, int line, const char *func,StringBuf* self, const char* str) { - int available = self->max_ - (self->ptr_ - self->buf_); - int needed = (int)strlen(str); + size_t available = self->max_ - ( self->ptr_ - self->buf_ ); + size_t needed = strlen( str ); if( needed >= available ) {// not enough space, expand the buffer (minimum expansion = 1024) - int off = (int)(self->ptr_ - self->buf_); - self->max_ += max(needed, 1024); + size_t off = self->ptr_ - self->buf_; + self->max_ += std::max( needed, static_cast( 1024 ) ); self->buf_ = (char*)aRealloc2(self->buf_, self->max_ + 1, file, line, func); self->ptr_ = self->buf_ + off; } memcpy(self->ptr_, str, needed); self->ptr_ += needed; - return (int)(self->ptr_ - self->buf_); + return self->ptr_ - self->buf_; } // Returns the length of the data in the Stringbuf diff --git a/src/common/strlib.hpp b/src/common/strlib.hpp index 3e1a8e8a39..fe1ffe18b7 100644 --- a/src/common/strlib.hpp +++ b/src/common/strlib.hpp @@ -85,11 +85,11 @@ typedef enum e_svopt struct s_svstate { const char* str; //< string to parse - int len; //< string length - int off; //< current offset in the string - int start; //< where the field starts - int end; //< where the field ends - enum e_svopt opt; //< parse options + size_t len; //< string length + size_t off; //< current offset in the string + size_t start; //< where the field starts + size_t end; //< where the field ends + int opt; //< parse options char delim; //< field delimiter bool done; //< if all the text has been parsed }; @@ -99,14 +99,14 @@ struct s_svstate /// /// @param sv Parse state /// @return 1 if a field was parsed, 0 if done, -1 on error. -int sv_parse_next(struct s_svstate* sv); +int sv_parse_next( s_svstate& sv ); /// Parses a delim-separated string. /// Starts parsing at startoff and fills the pos array with position pairs. /// out_pos[0] and out_pos[1] are the start and end of line. /// Other position pairs are the start and end of fields. /// Returns the number of fields found or -1 if an error occurs. -int sv_parse(const char* str, int len, int startoff, char delim, int* out_pos, int npos, enum e_svopt opt); +size_t sv_parse( const char* str, size_t len, size_t startoff, char delim, size_t* out_pos, size_t npos, int opt, bool& error ); /// Splits a delim-separated string. /// WARNING: this function modifies the input string @@ -114,7 +114,7 @@ int sv_parse(const char* str, int len, int startoff, char delim, int* out_pos, i /// out_fields[0] is the start of the next line. /// Other entries are the start of fields (nul-teminated). /// Returns the number of fields found or -1 if an error occurs. -int sv_split(char* str, int len, int startoff, char delim, char** out_fields, size_t nfields, enum e_svopt opt); +size_t sv_split( char* str, size_t len, size_t startoff, char delim, char** out_fields, size_t nfields, int opt, bool& error ); /// Escapes src to out_dest according to the format of the C compiler. /// Returns the length of the escaped string. @@ -132,7 +132,7 @@ const char* skip_escaped_c(const char* p); /// Opens and parses a file containing delim-separated columns, feeding them to the specified callback function row by row. /// Tracks the progress of the operation (current line number, number of successfully processed rows). /// Returns 'true' if it was able to process the specified file, or 'false' if it could not be read. -bool sv_readdb(const char* directory, const char* filename, char delim, int mincols, int maxcols, int maxrows, bool (*parseproc)(char* fields[], int columns, int current), bool silent); +bool sv_readdb( const char* directory, const char* filename, char delim, size_t mincols, size_t maxcols, size_t maxrows, bool (*parseproc)( char* fields[], size_t columns, size_t current ), bool silent ); /// StringBuf - dynamic string @@ -140,7 +140,7 @@ struct StringBuf { char *buf_; char *ptr_; - unsigned int max_; + size_t max_; }; typedef struct StringBuf StringBuf; @@ -148,13 +148,13 @@ StringBuf* _StringBuf_Malloc(const char *file, int line, const char *func); #define StringBuf_Malloc() _StringBuf_Malloc(ALC_MARK) void _StringBuf_Init(const char *file, int line, const char *func, StringBuf* self); #define StringBuf_Init(self) _StringBuf_Init(ALC_MARK,self) -int _StringBuf_Printf(const char *file, int line, const char *func, StringBuf* self, const char* fmt, ...); +size_t _StringBuf_Printf( const char* file, int line, const char* func, StringBuf* self, const char* fmt, ... ); #define StringBuf_Printf(self,fmt,...) _StringBuf_Printf(ALC_MARK,self,fmt, ## __VA_ARGS__) -int _StringBuf_Vprintf(const char *file, int line, const char *func,StringBuf* self, const char* fmt, va_list args); +size_t _StringBuf_Vprintf( const char* file, int line, const char* func, StringBuf* self, const char* fmt, va_list args ); #define StringBuf_Vprintf(self,fmt,args) _StringBuf_Vprintf(ALC_MARK,self,fmt,args) -int _StringBuf_Append(const char *file, int line, const char *func, StringBuf* self, const StringBuf *sbuf); +size_t _StringBuf_Append(const char *file, int line, const char *func, StringBuf* self, const StringBuf *sbuf); #define StringBuf_Append(self,sbuf) _StringBuf_Append(ALC_MARK,self,sbuf) -int _StringBuf_AppendStr(const char *file, int line, const char *func, StringBuf* self, const char* str); +size_t _StringBuf_AppendStr(const char *file, int line, const char *func, StringBuf* self, const char* str); #define StringBuf_AppendStr(self,str) _StringBuf_AppendStr(ALC_MARK,self,str) int StringBuf_Length(StringBuf* self); char* StringBuf_Value(StringBuf* self); diff --git a/src/common/utilities.cpp b/src/common/utilities.cpp index 48adb85e3f..6a08359458 100644 --- a/src/common/utilities.cpp +++ b/src/common/utilities.cpp @@ -117,12 +117,12 @@ bool rathena::util::safe_multiplication( int64 a, int64 b, int64& result ){ void rathena::util::string_left_pad_inplace(std::string& str, char padding, size_t num) { - str.insert(0, min(0, num - str.length()), padding); + str.insert( 0, std::min( static_cast( 0 ), num - str.length() ), padding ); } std::string rathena::util::string_left_pad(const std::string& original, char padding, size_t num) { - return std::string(num - min(num, original.length()), padding) + original; + return std::string( num - std::min( num, original.length() ), padding ) + original; } constexpr char base62_dictionary[] = { diff --git a/src/login/login.cpp b/src/login/login.cpp index 20c8ca829a..8394a163bd 100644 --- a/src/login/login.cpp +++ b/src/login/login.cpp @@ -292,7 +292,6 @@ int login_mmo_auth_new(const char* userid, const char* pass, const char sex, con */ int login_mmo_auth(struct login_session_data* sd, bool isServer) { struct mmo_account acc; - int len; char ip[16]; ip2str(session[sd->fd]->client_addr, ip); @@ -316,7 +315,7 @@ int login_mmo_auth(struct login_session_data* sd, bool isServer) { } - len = strnlen(sd->userid, NAME_LENGTH); + size_t len = strnlen(sd->userid, NAME_LENGTH); // Account creation with _M/_F if( login_config.new_account_flag ) { diff --git a/src/map/itemdb.cpp b/src/map/itemdb.cpp index 25daa3de28..ff86c3de7c 100644 --- a/src/map/itemdb.cpp +++ b/src/map/itemdb.cpp @@ -3553,7 +3553,7 @@ void ItemGroupDatabase::loadingFinished() { /** Read item forbidden by mapflag (can't equip item) * Structure: , */ -static bool itemdb_read_noequip(char* str[], int columns, int current) { +static bool itemdb_read_noequip( char* str[], size_t columns, size_t current ){ t_itemid nameid; int flag; diff --git a/src/map/mob.cpp b/src/map/mob.cpp index 9920a3f43b..a583b5a6d2 100644 --- a/src/map/mob.cpp +++ b/src/map/mob.cpp @@ -5736,8 +5736,7 @@ uint64 MobChatDatabase::parseBodyNode(const ryml::NodeRef& node) { /*========================================== * processes one mob_skill_db entry *------------------------------------------*/ -static bool mob_parse_row_mobskilldb(char** str, int columns, int current) -{ +static bool mob_parse_row_mobskilldb( char** str, size_t columns, size_t current ){ static const struct { char str[32]; enum MobSkillState id; diff --git a/src/map/npc.cpp b/src/map/npc.cpp index de1fa07c02..ea97d4f9ed 100644 --- a/src/map/npc.cpp +++ b/src/map/npc.cpp @@ -5621,13 +5621,14 @@ int npc_parsesrcfile(const char* filepath) // parse buffer for ( const char* p = skip_space(buffer); p && *p ; p = skip_space(p) ) { - int pos[9]; + size_t pos[9]; lines++; // w1w2w3w4 - int count = sv_parse(p, len+buffer-p, 0, '\t', pos, ARRAYLENGTH(pos), (e_svopt)(SV_TERMINATE_LF|SV_TERMINATE_CRLF)); + bool error; + size_t count = sv_parse( p, len + buffer - p, 0, '\t', pos, ARRAYLENGTH( pos ), SV_TERMINATE_LF|SV_TERMINATE_CRLF, error ); - if (count < 0) { + if( error ){ ShowError("npc_parsesrcfile: Parse error in file '%s', line '%d'. Stopping...\n", filepath, strline(buffer,p-buffer)); break; } diff --git a/src/map/pc.cpp b/src/map/pc.cpp index 1dc3263c98..8700b13436 100755 --- a/src/map/pc.cpp +++ b/src/map/pc.cpp @@ -14069,7 +14069,7 @@ void JobDatabase::loadingFinished() { /** * Read job_noenter_map.txt **/ -static bool pc_readdb_job_noenter_map(char *str[], int columns, int current) { +static bool pc_readdb_job_noenter_map( char *str[], size_t columns, size_t current ){ int class_ = -1; int64 class_tmp; diff --git a/src/map/skill.cpp b/src/map/skill.cpp index 85bc68075b..303ee1d2bb 100755 --- a/src/map/skill.cpp +++ b/src/map/skill.cpp @@ -24762,8 +24762,7 @@ uint64 MagicMushroomDatabase::parseBodyNode(const ryml::NodeRef& node) { /** Reads skill no cast db * Structure: SkillID,Flag */ -static bool skill_parse_row_nocastdb(char* split[], int columns, int current) -{ +static bool skill_parse_row_nocastdb( char* split[], size_t columns, size_t current ){ std::shared_ptr skill = skill_db.find(atoi(split[0])); if (!skill) @@ -24777,8 +24776,7 @@ static bool skill_parse_row_nocastdb(char* split[], int columns, int current) /** Reads Produce db * Structure: ProduceItemID,ItemLV,RequireSkill,Requireskill_lv,MaterialID1,MaterialAmount1,... */ -static bool skill_parse_row_producedb(char* split[], int columns, int current) -{ +static bool skill_parse_row_producedb( char* split[], size_t columns, size_t current ){ unsigned short x, y; unsigned short id = atoi(split[0]); t_itemid nameid = 0; @@ -24967,8 +24965,7 @@ uint64 AbraDatabase::parseBodyNode(const ryml::NodeRef& node) { /** Reads change material db * Structure: ProductID,BaseRate,MakeAmount1,MakeAmountRate1...,MakeAmount5,MakeAmountRate5 */ -static bool skill_parse_row_changematerialdb(char* split[], int columns, int current) -{ +static bool skill_parse_row_changematerialdb( char* split[], size_t columns, size_t current ){ uint16 id = atoi(split[0]); t_itemid nameid = strtoul(split[1], nullptr, 10); short rate = atoi(split[2]); @@ -25024,8 +25021,7 @@ static bool skill_parse_row_changematerialdb(char* split[], int columns, int cur * Reads skill damage adjustment * @author [Lilith] */ -static bool skill_parse_row_skilldamage(char* split[], int columns, int current) -{ +static bool skill_parse_row_skilldamage( char* split[], size_t columns, size_t current ){ int64 caster_tmp; uint16 id; int caster, value; diff --git a/src/map/status.cpp b/src/map/status.cpp index f3dafd248f..f1490db7c1 100644 --- a/src/map/status.cpp +++ b/src/map/status.cpp @@ -15418,8 +15418,7 @@ void status_change_clear_onChangeMap(struct block_list *bl, status_change *sc) * @param current: Current row being read into SCDisabled array * @return True - Successfully stored, False - Invalid SC */ -static bool status_readdb_status_disabled(char **str, int columns, int current) -{ +static bool status_readdb_status_disabled( char **str, size_t columns, size_t current ){ int64 type = SC_NONE; if (ISDIGIT(str[0][0])) diff --git a/src/tool/csv2yaml.cpp b/src/tool/csv2yaml.cpp index 2787f560c3..89ac0892fb 100644 --- a/src/tool/csv2yaml.cpp +++ b/src/tool/csv2yaml.cpp @@ -577,7 +577,7 @@ bool Csv2YamlTool::initialize( int argc, char* argv[] ){ // Copied and adjusted from guild.cpp // ,,,,,,,,,,, -static bool guild_read_guildskill_tree_db( char* split[], int columns, int current ){ +static bool guild_read_guildskill_tree_db( char* split[], size_t columns, size_t current ){ uint16 skill_id = (uint16)atoi(split[0]); std::string* name = util::umap_find( aegis_skillnames, skill_id ); @@ -802,8 +802,7 @@ static bool pet_read_db( const char* file ){ } // Copied and adjusted from skill.cpp -static bool skill_parse_row_magicmushroomdb(char *split[], int column, int current) -{ +static bool skill_parse_row_magicmushroomdb( char *split[], size_t column, size_t current ){ uint16 skill_id = atoi(split[0]); std::string *skill_name = util::umap_find(aegis_skillnames, skill_id); @@ -820,8 +819,7 @@ static bool skill_parse_row_magicmushroomdb(char *split[], int column, int curre } // Copied and adjusted from skill.cpp -static bool skill_parse_row_abradb(char* split[], int columns, int current) -{ +static bool skill_parse_row_abradb( char* split[], size_t columns, size_t current ){ uint16 skill_id = atoi(split[0]); std::string *skill_name = util::umap_find(aegis_skillnames, skill_id); @@ -861,8 +859,7 @@ static bool skill_parse_row_abradb(char* split[], int columns, int current) } // Copied and adjusted from skill.cpp -static bool skill_parse_row_spellbookdb(char* split[], int columns, int current) -{ +static bool skill_parse_row_spellbookdb( char* split[], size_t columns, size_t current ){ uint16 skill_id = atoi(split[0]); std::string *skill_name = util::umap_find(aegis_skillnames, skill_id); @@ -889,7 +886,7 @@ static bool skill_parse_row_spellbookdb(char* split[], int columns, int current) } // Copied and adjusted from mob.cpp -static bool mob_readdb_mobavail(char* str[], int columns, int current) { +static bool mob_readdb_mobavail( char* str[], size_t columns, size_t current ){ uint16 mob_id = atoi(str[0]); std::string *mob_name = util::umap_find(aegis_mobnames, mob_id); @@ -1121,8 +1118,7 @@ static bool mob_readdb_mobavail(char* str[], int columns, int current) { // skill_db.yml function //---------------------- -static bool skill_parse_row_requiredb(char* split[], int columns, int current) -{ +static bool skill_parse_row_requiredb( char* split[], size_t columns, size_t current ){ s_skill_require entry = {}; skill_split_atoi(split[1], entry.hp); @@ -1236,8 +1232,7 @@ static bool skill_parse_row_requiredb(char* split[], int columns, int current) // skill_db.yml function //---------------------- -static bool skill_parse_row_castdb(char* split[], int columns, int current) -{ +static bool skill_parse_row_castdb( char* split[], size_t columns, size_t current ){ s_skill_db entry = {}; skill_split_atoi(split[1], entry.cast); @@ -1257,8 +1252,7 @@ static bool skill_parse_row_castdb(char* split[], int columns, int current) // skill_db.yml function //---------------------- -static bool skill_parse_row_castnodexdb(char* split[], int columns, int current) -{ +static bool skill_parse_row_castnodexdb( char* split[], size_t columns, size_t current ){ s_skill_db entry = {}; entry.castnodex = atoi(split[1]); @@ -1272,8 +1266,7 @@ static bool skill_parse_row_castnodexdb(char* split[], int columns, int current) // skill_db.yml function //---------------------- -static bool skill_parse_row_unitdb(char* split[], int columns, int current) -{ +static bool skill_parse_row_unitdb( char* split[], size_t columns, size_t current ){ s_skill_unit_csv entry = {}; entry.unit_id = (uint16)strtol(split[1], NULL, 16); @@ -1291,8 +1284,7 @@ static bool skill_parse_row_unitdb(char* split[], int columns, int current) // skill_db.yml function //---------------------- -static bool skill_parse_row_copyabledb(char* split[], int column, int current) -{ +static bool skill_parse_row_copyabledb( char* split[], size_t column, size_t current ){ s_skill_copyable entry = {}; int skill_id = -1; @@ -1321,8 +1313,7 @@ static bool skill_parse_row_copyabledb(char* split[], int column, int current) // skill_db.yml function //---------------------- -static bool skill_parse_row_nonearnpcrangedb(char* split[], int column, int current) -{ +static bool skill_parse_row_nonearnpcrangedb( char* split[], size_t column, size_t current ){ s_skill_db entry = {}; int skill_id = -1; @@ -1350,7 +1341,7 @@ static bool skill_parse_row_nonearnpcrangedb(char* split[], int column, int curr } // Copied and adjusted from skill.cpp -static bool skill_parse_row_skilldb(char* split[], int columns, int current) { +static bool skill_parse_row_skilldb( char* split[], size_t columns, size_t current ){ int arr[MAX_SKILL_LEVEL], arr_size, skill_id = atoi(split[0]); body << YAML::BeginMap; @@ -2323,7 +2314,7 @@ static bool skill_parse_row_skilldb(char* split[], int columns, int current) { } // Copied and adjusted from quest.cpp -static bool quest_read_db(char *split[], int columns, int current) { +static bool quest_read_db( char *split[], size_t columns, size_t current ){ int quest_id = atoi(split[0]); if (quest_id < 0 || quest_id >= INT_MAX) { @@ -2459,7 +2450,7 @@ static bool quest_read_db(char *split[], int columns, int current) { } // Copied and adjusted from instance.cpp -static bool instance_readdb_sub(char* str[], int columns, int current) { +static bool instance_readdb_sub( char* str[], size_t columns, size_t current ){ body << YAML::BeginMap; body << YAML::Key << "Id" << YAML::Value << atoi(str[0]); body << YAML::Key << "Name" << YAML::Value << str[1]; @@ -2498,21 +2489,21 @@ static bool instance_readdb_sub(char* str[], int columns, int current) { // item_db.yml function //--------------------- -static bool itemdb_read_itemavail(char *str[], int columns, int current) { +static bool itemdb_read_itemavail( char *str[], size_t columns, size_t current ){ item_avail.insert({ strtoul(str[0], nullptr, 10), strtoul(str[1], nullptr, 10) }); return true; } // item_db.yml function //--------------------- -static bool itemdb_read_buyingstore(char* fields[], int columns, int current) { +static bool itemdb_read_buyingstore( char* fields[], size_t columns, size_t current ){ item_buyingstore.insert({ strtoul(fields[0], nullptr, 10), true }); return true; } // item_db.yml function //--------------------- -static bool itemdb_read_flag(char* fields[], int columns, int current) { +static bool itemdb_read_flag( char* fields[], size_t columns, size_t current ){ s_item_flag_csv2yaml item = { 0 }; uint16 flag = abs(atoi(fields[1])); @@ -2547,7 +2538,7 @@ static bool itemdb_read_flag(char* fields[], int columns, int current) { // item_db.yml function //--------------------- -static bool itemdb_read_itemdelay(char* str[], int columns, int current) { +static bool itemdb_read_itemdelay( char* str[], size_t columns, size_t current ){ s_item_delay_csv2yaml item = { 0 }; item.delay = atoi(str[1]); @@ -2561,7 +2552,7 @@ static bool itemdb_read_itemdelay(char* str[], int columns, int current) { // item_db.yml function //--------------------- -static bool itemdb_read_stack(char* fields[], int columns, int current) { +static bool itemdb_read_stack( char* fields[], size_t columns, size_t current ){ s_item_stack_csv2yaml item = { 0 }; item.amount = atoi(fields[1]); @@ -2583,7 +2574,7 @@ static bool itemdb_read_stack(char* fields[], int columns, int current) { // item_db.yml function //--------------------- -static bool itemdb_read_nouse(char* fields[], int columns, int current) { +static bool itemdb_read_nouse( char* fields[], size_t columns, size_t current ){ s_item_nouse_csv2yaml item = { 0 }; item.sitting = "true"; @@ -2595,7 +2586,7 @@ static bool itemdb_read_nouse(char* fields[], int columns, int current) { // item_db.yml function //--------------------- -static bool itemdb_read_itemtrade(char* str[], int columns, int current) { +static bool itemdb_read_itemtrade( char* str[], size_t columns, size_t current ){ s_item_trade_csv2yaml item = { 0 }; int flag = atoi(str[1]); @@ -3103,7 +3094,7 @@ static bool itemdb_read_randomopt(const char* file) { } // Copied and adjusted from itemdb.cpp -static bool itemdb_read_randomopt_group(char* str[], int columns, int current) { +static bool itemdb_read_randomopt_group( char* str[], size_t columns, size_t current ){ if ((columns - 2) % 3 != 0) { ShowError("itemdb_read_randomopt_group: Invalid column entries '%d'.\n", columns); return false; @@ -3205,7 +3196,7 @@ static bool itemdb_randomopt_group_yaml(void) { return true; } -static bool pc_readdb_levelpenalty( char* fields[], int columns, int current ){ +static bool pc_readdb_levelpenalty( char* fields[], size_t columns, size_t current ){ // 1=experience, 2=item drop int type = atoi( fields[0] ); @@ -3269,7 +3260,7 @@ bool pc_levelpenalty_yaml(){ // mob_db.yml function //-------------------- -static bool mob_readdb_race2(char *fields[], int columns, int current) { +static bool mob_readdb_race2( char *fields[], size_t columns, size_t current ){ int64 race; if (ISDIGIT(fields[0][0])) @@ -3300,7 +3291,7 @@ static bool mob_readdb_race2(char *fields[], int columns, int current) { // mob_db.yml function //-------------------- -static bool mob_readdb_drop(char *str[], int columns, int current) { +static bool mob_readdb_drop( char *str[], size_t columns, size_t current ){ uint32 mob_id = strtoul(str[0], nullptr, 10); std::string *mob_name = util::umap_find(aegis_mobnames, static_cast(mob_id)); @@ -3347,7 +3338,7 @@ static bool mob_readdb_drop(char *str[], int columns, int current) { } // Copied and adjusted from mob.cpp -static bool mob_readdb_sub(char *fields[], int columns, int current) { +static bool mob_readdb_sub( char *fields[], size_t columns, size_t current ){ uint32 mob_id = strtoul(fields[0], nullptr, 10); body << YAML::BeginMap; @@ -3711,7 +3702,7 @@ static bool mob_readdb_sub(char *fields[], int columns, int current) { } // Copied and adjusted from mob.cpp -static bool mob_parse_row_chatdb(char* fields[], int columns, int current) { +static bool mob_parse_row_chatdb( char* fields[], size_t columns, size_t current ){ int msg_id = atoi(fields[0]); if (msg_id <= 0){ @@ -3783,7 +3774,7 @@ static bool read_homunculus_expdb(const char* file) { } // Copied and adjusted from mob.cpp -static bool mob_readdb_group(char* str[], int columns, int current) { +static bool mob_readdb_group( char* str[], size_t columns, size_t current ){ if (strncasecmp(str[0], "MOBG_", 5) != 0) { ShowError("The group %s must start with 'MOBG_'.\n", str[0]); return false; @@ -3859,8 +3850,7 @@ static bool mob_readdb_group_yaml(void) { } // Copied and adjusted from skill.cpp -static bool skill_parse_row_createarrowdb(char* split[], int columns, int current) -{ +static bool skill_parse_row_createarrowdb( char* split[], size_t columns, size_t current ){ t_itemid nameid = static_cast(strtoul(split[0], nullptr, 10)); if (nameid == 0) @@ -3944,7 +3934,7 @@ static bool pc_read_statsdb(const char* file) { } // Copied and adjusted from guild.cpp -static bool guild_read_castledb(char* str[], int columns, int current) { +static bool guild_read_castledb( char* str[], size_t columns, size_t current ){ body << YAML::BeginMap; body << YAML::Key << "Id" << YAML::Value << str[0]; body << YAML::Key << "Map" << YAML::Value << str[1]; @@ -3955,7 +3945,7 @@ static bool guild_read_castledb(char* str[], int columns, int current) { } // Copied and adjusted from int_guild.cpp -static bool exp_guild_parse_row(char* split[], int column, int current) { +static bool exp_guild_parse_row( char* split[], size_t column, size_t current ){ t_exp exp = strtoull(split[0], nullptr, 10); if (exp > MAX_GUILD_EXP) { @@ -3972,7 +3962,7 @@ static bool exp_guild_parse_row(char* split[], int column, int current) { } // Copied and adjusted from itemdb.cpp -static bool itemdb_read_group(char* str[], int columns, int current) { +static bool itemdb_read_group( char* str[], size_t columns, size_t current ){ if (strncasecmp(str[0], "IG_", 3) != 0) { ShowError("The group %s must start with 'IG_'.\n", str[0]); return false; @@ -4122,7 +4112,7 @@ static bool itemdb_read_group_yaml(void) { } // Copied and adjusted from mob.cpp -static bool mob_readdb_itemratio(char* str[], int columns, int current) { +static bool mob_readdb_itemratio( char* str[], size_t columns, size_t current ){ t_itemid nameid = strtoul(str[0], nullptr, 10); std::string *item_name = util::umap_find(aegis_itemnames, nameid); @@ -4222,7 +4212,7 @@ static bool status_readdb_attrfix(const char* file) { } // Copied and adjusted from script.cpp -static bool read_constdb(char* fields[], int columns, int current) { +static bool read_constdb( char* fields[], size_t columns, size_t current ){ char name[1024], val[1024]; int type = 0; @@ -4252,7 +4242,7 @@ static bool read_constdb(char* fields[], int columns, int current) { // job_db.yml function //---------------------- -static bool pc_readdb_job2(char* fields[], int columns, int current) { +static bool pc_readdb_job2( char* fields[], size_t columns, size_t current ){ std::vector stats; stats.resize(MAX_LEVEL); @@ -4267,7 +4257,7 @@ static bool pc_readdb_job2(char* fields[], int columns, int current) { // job_db.yml function //---------------------- -static bool pc_readdb_job_param(char* fields[], int columns, int current) { +static bool pc_readdb_job_param( char* fields[], size_t columns, size_t current ){ int job_id = atoi(fields[0]); s_job_param entry = {}; @@ -4285,7 +4275,7 @@ static bool pc_readdb_job_param(char* fields[], int columns, int current) { // job_basehpsp_db.yml function //---------------------- -static bool pc_readdb_job_exp_sub(char* fields[], int columns, int current) { +static bool pc_readdb_job_exp_sub( char* fields[], size_t columns, size_t current ){ int level = atoi(fields[0]), jobs[CLASS_COUNT], job_count = skill_split_atoi(fields[1], jobs, CLASS_COUNT), type = atoi(fields[2]); for (int i = 0; i < job_count; i++) { @@ -4299,7 +4289,7 @@ static bool pc_readdb_job_exp_sub(char* fields[], int columns, int current) { } // Copied and adjusted from pc.cpp -static bool pc_readdb_job_exp(char* fields[], int columns, int current) { +static bool pc_readdb_job_exp( char* fields[], size_t columns, size_t current ){ int level = atoi(fields[0]), jobs[CLASS_COUNT], job_count = skill_split_atoi(fields[1], jobs, CLASS_COUNT), type = atoi(fields[2]); body << YAML::BeginMap; @@ -4337,7 +4327,7 @@ static bool pc_readdb_job_exp(char* fields[], int columns, int current) { } // Copied and adjusted from pc.cpp -static bool pc_readdb_job_basehpsp(char* fields[], int columns, int current) { +static bool pc_readdb_job_basehpsp( char* fields[], size_t columns, size_t current ){ int type = atoi(fields[3]), jobs[CLASS_COUNT], job_count = skill_split_atoi(fields[2], jobs, CLASS_COUNT); body << YAML::BeginMap; @@ -4401,7 +4391,7 @@ static bool pc_readdb_job_basehpsp(char* fields[], int columns, int current) { } // Copied and adjusted from pc.cpp -static bool pc_readdb_job1(char* fields[], int columns, int current) { +static bool pc_readdb_job1( char* fields[], size_t columns, size_t current ){ int job_id = atoi(fields[0]); if (job_id == JOB_WEDDING) @@ -4499,7 +4489,7 @@ static bool pc_readdb_job1(char* fields[], int columns, int current) { // elemental_db.yml function //--------------------------- -static bool read_elemental_skilldb(char* str[], int columns, int current) { +static bool read_elemental_skilldb( char* str[], size_t columns, size_t current ){ uint16 skill_id = atoi(str[1]); std::string *skill_name = util::umap_find(aegis_skillnames, skill_id); @@ -4533,7 +4523,7 @@ static bool read_elemental_skilldb(char* str[], int columns, int current) { } // Copied and adjusted from elemental.cpp -static bool read_elementaldb(char* str[], int columns, int current) { +static bool read_elementaldb( char* str[], size_t columns, size_t current ){ body << YAML::BeginMap; body << YAML::Key << "Id" << YAML::Value << str[0]; body << YAML::Key << "AegisName" << YAML::Value << str[1]; @@ -4609,7 +4599,7 @@ static bool read_elementaldb(char* str[], int columns, int current) { // mercenary_db.yml function //--------------------------- -static bool mercenary_read_skilldb(char* str[], int columns, int current) { +static bool mercenary_read_skilldb( char* str[], size_t columns, size_t current ){ uint16 skill_id = atoi(str[1]); std::string *skill_name = util::umap_find(aegis_skillnames, skill_id); @@ -4636,7 +4626,7 @@ static bool mercenary_read_skilldb(char* str[], int columns, int current) { } // Copied and adjusted from mercenary.cpp -static bool mercenary_readdb(char* str[], int columns, int current) { +static bool mercenary_readdb( char* str[], size_t columns, size_t current ){ body << YAML::BeginMap; body << YAML::Key << "Id" << YAML::Value << str[0]; body << YAML::Key << "AegisName" << YAML::Value << str[1]; @@ -4716,7 +4706,7 @@ static bool mercenary_readdb(char* str[], int columns, int current) { } // Copied and adjusted from pc.cpp -static bool pc_readdb_skilltree(char* fields[], int columns, int current) { +static bool pc_readdb_skilltree( char* fields[], size_t columns, size_t current ){ uint16 baselv, joblv, offset; uint16 class_ = (uint16)atoi(fields[0]); uint16 skill_id = (uint16)atoi(fields[1]); @@ -4947,7 +4937,7 @@ static bool itemdb_read_combos(const char* file) { } // Copied and adjusted from cashshop.cpp -static bool cashshop_parse_dbrow( char* fields[], int columns, int current ){ +static bool cashshop_parse_dbrow( char* fields[], size_t columns, size_t current ){ uint16 tab = atoi( fields[0] ); t_itemid nameid = strtoul( fields[1], nullptr, 10 ); uint32 price = atoi( fields[2] ); @@ -4994,7 +4984,7 @@ static bool cashshop_parse_dbrow( char* fields[], int columns, int current ){ // homunculus_db.yml function //--------------------------- -static bool read_homunculus_skilldb(char* split[], int columns, int current) { +static bool read_homunculus_skilldb( char* split[], size_t columns, size_t current ){ s_homun_skill_tree_entry entry = {}; entry.id = atoi(split[1]); @@ -5022,7 +5012,7 @@ static bool compareHomSkillId(const s_homun_skill_tree_entry &a, const s_homun_s } // Copied and adjusted from homunculus.cpp -static bool read_homunculusdb(char* str[], int columns, int current) { +static bool read_homunculusdb( char* str[], size_t columns, size_t current ){ bool has_evo = false; body << YAML::BeginMap; diff --git a/src/tool/csv2yaml.hpp b/src/tool/csv2yaml.hpp index 7d8317f1e5..3f7bc9e036 100644 --- a/src/tool/csv2yaml.hpp +++ b/src/tool/csv2yaml.hpp @@ -476,65 +476,65 @@ void init_random_option_constants() { #undef export_constant2 } -static bool guild_read_guildskill_tree_db( char* split[], int columns, int current ); +static bool guild_read_guildskill_tree_db( char* split[], size_t columns, size_t current ); static bool pet_read_db( const char* file ); -static bool skill_parse_row_magicmushroomdb(char *split[], int column, int current); -static bool skill_parse_row_abradb(char* split[], int columns, int current); -static bool skill_parse_row_spellbookdb(char* split[], int columns, int current); -static bool mob_readdb_mobavail(char *str[], int columns, int current); -static bool skill_parse_row_requiredb(char* split[], int columns, int current); -static bool skill_parse_row_castdb(char* split[], int columns, int current); -static bool skill_parse_row_castnodexdb(char* split[], int columns, int current); -static bool skill_parse_row_unitdb(char* split[], int columns, int current); -static bool skill_parse_row_copyabledb(char* split[], int columns, int current); -static bool skill_parse_row_nonearnpcrangedb(char* split[], int columns, int current); -static bool skill_parse_row_skilldb(char* split[], int columns, int current); -static bool quest_read_db(char *split[], int columns, int current); -static bool instance_readdb_sub(char* str[], int columns, int current); -static bool itemdb_read_itemavail(char *str[], int columns, int current); -static bool itemdb_read_buyingstore(char* fields[], int columns, int current); -static bool itemdb_read_flag(char* fields[], int columns, int current); -static bool itemdb_read_itemdelay(char* str[], int columns, int current); -static bool itemdb_read_stack(char* fields[], int columns, int current); -static bool itemdb_read_nouse(char* fields[], int columns, int current); -static bool itemdb_read_itemtrade(char* fields[], int columns, int current); +static bool skill_parse_row_magicmushroomdb( char* split[], size_t columns, size_t current ); +static bool skill_parse_row_abradb( char* split[], size_t columns, size_t current ); +static bool skill_parse_row_spellbookdb( char* split[], size_t columns, size_t current ); +static bool mob_readdb_mobavail( char* str[], size_t columns, size_t current ); +static bool skill_parse_row_requiredb( char* split[], size_t columns, size_t current ); +static bool skill_parse_row_castdb( char* split[], size_t columns, size_t current ); +static bool skill_parse_row_castnodexdb( char* split[], size_t columns, size_t current ); +static bool skill_parse_row_unitdb( char* split[], size_t columns, size_t current ); +static bool skill_parse_row_copyabledb( char* split[], size_t columns, size_t current ); +static bool skill_parse_row_nonearnpcrangedb( char* split[], size_t columns, size_t current ); +static bool skill_parse_row_skilldb( char* split[], size_t columns, size_t current ); +static bool quest_read_db( char* split[], size_t columns, size_t current ); +static bool instance_readdb_sub( char* str[], size_t columns, size_t current ); +static bool itemdb_read_itemavail( char* str[], size_t columns, size_t current ); +static bool itemdb_read_buyingstore( char* fields[], size_t columns, size_t current ); +static bool itemdb_read_flag( char* fields[], size_t columns, size_t current ); +static bool itemdb_read_itemdelay( char* str[], size_t columns, size_t current ); +static bool itemdb_read_stack( char* fields[], size_t columns, size_t current ); +static bool itemdb_read_nouse( char* fields[], size_t columns, size_t current ); +static bool itemdb_read_itemtrade( char* fields[], size_t columns, size_t current ); static bool itemdb_read_db(const char *file); static bool itemdb_read_randomopt(const char* file); -static bool itemdb_read_randomopt_group(char *str[], int columns, int current); +static bool itemdb_read_randomopt_group( char* str[], size_t columns, size_t current ); static bool itemdb_randomopt_group_yaml(void); -static bool pc_readdb_levelpenalty(char* fields[], int columns, int current); +static bool pc_readdb_levelpenalty( char* fields[], size_t columns, size_t current ); static bool pc_levelpenalty_yaml(); -static bool mob_parse_row_chatdb(char* fields[], int columns, int current); +static bool mob_parse_row_chatdb( char* fields[], size_t columns, size_t current ); static bool read_homunculus_expdb(const char* file); -static bool mob_readdb_group(char* str[], int columns, int current); +static bool mob_readdb_group( char* str[], size_t columns, size_t current ); static bool mob_readdb_group_yaml(void); -static bool skill_parse_row_createarrowdb(char* fields[], int columns, int current); +static bool skill_parse_row_createarrowdb( char* fields[], size_t columns, size_t current ); static bool pc_read_statsdb(const char* file); -static bool guild_read_castledb(char* str[], int columns, int current); -static bool exp_guild_parse_row(char* split[], int column, int current); -static bool itemdb_read_group(char* fields[], int columns, int current); +static bool guild_read_castledb( char* str[], size_t columns, size_t current ); +static bool exp_guild_parse_row( char* split[], size_t columns, size_t current ); +static bool itemdb_read_group( char* fields[], size_t columns, size_t current ); static bool itemdb_read_group_yaml(void); -static bool mob_readdb_itemratio(char* fields[], int columns, int current); +static bool mob_readdb_itemratio( char* fields[], size_t columns, size_t current ); static bool status_readdb_attrfix(const char* file); -static bool read_constdb(char* fields[], int columns, int current); -static bool mob_readdb_race2(char *fields[], int columns, int current); -static bool mob_readdb_drop(char *str[], int columns, int current); -static bool mob_readdb_sub(char *fields[], int columns, int current); -static bool pc_readdb_job2(char *fields[], int columns, int current); -static bool pc_readdb_job_param(char *fields[], int columns, int current); -static bool pc_readdb_job_exp(char *fields[], int columns, int current); -static bool pc_readdb_job_exp_sub(char *fields[], int columns, int current); -static bool pc_readdb_job_basehpsp(char *fields[], int columns, int current); -static bool pc_readdb_job1(char *fields[], int columns, int current); -static bool read_elemental_skilldb(char* str[], int columns, int current); -static bool read_elementaldb(char* str[], int columns, int current); -static bool mercenary_read_skilldb(char* str[], int columns, int current); -static bool mercenary_readdb(char* str[], int columns, int current); -static bool pc_readdb_skilltree(char* str[], int columns, int current); +static bool read_constdb( char* fields[], size_t columns, size_t current ); +static bool mob_readdb_race2( char* fields[], size_t columns, size_t current ); +static bool mob_readdb_drop( char* str[], size_t columns, size_t current ); +static bool mob_readdb_sub( char* fields[], size_t columns, size_t current ); +static bool pc_readdb_job2( char* fields[], size_t columns, size_t current ); +static bool pc_readdb_job_param( char* fields[], size_t columns, size_t current ); +static bool pc_readdb_job_exp( char* fields[], size_t columns, size_t current ); +static bool pc_readdb_job_exp_sub( char* fields[], size_t columns, size_t current ); +static bool pc_readdb_job_basehpsp( char* fields[], size_t columns, size_t current ); +static bool pc_readdb_job1( char* fields[], size_t columns, size_t current ); +static bool read_elemental_skilldb( char* str[], size_t columns, size_t current ); +static bool read_elementaldb( char* str[], size_t columns, size_t current ); +static bool mercenary_read_skilldb( char* str[], size_t columns, size_t current ); +static bool mercenary_readdb( char* str[], size_t columns, size_t current ); +static bool pc_readdb_skilltree( char* str[], size_t columns, size_t current ); static bool pc_readdb_skilltree_yaml(void); static bool itemdb_read_combos(const char* file); -static bool cashshop_parse_dbrow( char* fields[], int columns, int current ); -static bool read_homunculus_skilldb(char* split[], int columns, int current); -static bool read_homunculusdb(char* str[], int columns, int current); +static bool cashshop_parse_dbrow( char* fields[], size_t columns, size_t current ); +static bool read_homunculus_skilldb( char* split[], size_t columns, size_t current ); +static bool read_homunculusdb( char* str[], size_t columns, size_t current ); #endif /* CSV2YAML_HPP */ diff --git a/src/tool/yaml.hpp b/src/tool/yaml.hpp index 04a08ea169..6167cd67a1 100644 --- a/src/tool/yaml.hpp +++ b/src/tool/yaml.hpp @@ -593,7 +593,7 @@ void ItemDatabase::loadingFinished() { ItemDatabase item_db; -static bool parse_mob_constants_txt(char *split[], int columns, int current) { +static bool parse_mob_constants_txt( char *split[], size_t columns, size_t current ){ uint16 mob_id = atoi(split[0]); char *name = trim(split[1]); @@ -602,7 +602,7 @@ static bool parse_mob_constants_txt(char *split[], int columns, int current) { return true; } -static bool parse_skill_constants_txt(char *split[], int columns, int current) { +static bool parse_skill_constants_txt( char *split[], size_t columns, size_t current ){ uint16 skill_id = atoi(split[0]); char *name = trim(split[16]); From f34a47ae24b6e96e2d68d03cb0bdc7dc3dbee74c Mon Sep 17 00:00:00 2001 From: Atemo Date: Sat, 2 Mar 2024 19:59:45 +0100 Subject: [PATCH 22/44] Corrected a mistake in DK_SERVANTWEAPON_ATK formula. (#8157) Follow-up https://github.com/rathena/rathena/commit/fa71d1012dc25811576e0b08c595240a2561d945 Thanks to @Tolimatoi --- src/map/battle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/map/battle.cpp b/src/map/battle.cpp index c6531f85f8..8481ce0f91 100644 --- a/src/map/battle.cpp +++ b/src/map/battle.cpp @@ -5432,7 +5432,7 @@ static int battle_calc_attack_skill_ratio(struct Damage* wd, struct block_list * skillratio += skillratio * sc->getSCE(SC_LIGHTOFSTAR)->val2 / 100; break; case DK_SERVANTWEAPON_ATK: - skillratio += -100 + 450 + 800 * skill_lv; + skillratio += -100 + 600 + 850 * skill_lv; skillratio += 5 * sstatus->pow; RE_LVL_DMOD(100); break; From 37d9196a4e27f7705e26c5b0b23e55b479d36b16 Mon Sep 17 00:00:00 2001 From: munkrej Date: Sat, 9 Mar 2024 15:57:08 +0100 Subject: [PATCH 23/44] Fixed DK_DRAGONIC_BREATH factor mix up (#8158) Follow-up https://github.com/rathena/rathena/commit/fa71d1012dc25811576e0b08c595240a2561d945 --- src/map/battle.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/map/battle.cpp b/src/map/battle.cpp index 8481ce0f91..3e14e60a27 100644 --- a/src/map/battle.cpp +++ b/src/map/battle.cpp @@ -5483,11 +5483,11 @@ static int battle_calc_attack_skill_ratio(struct Damage* wd, struct block_list * if (sc && sc->getSCE(SC_DRAGONIC_AURA)) { skillratio += 3 * sstatus->pow; - skillratio += (skill_lv * (sstatus->max_hp * 25 / 100) * 5) / 100; // Skill level x 0.05 x ((MaxHP / 4) + (MaxSP / 2)) - skillratio += (skill_lv * (sstatus->max_sp * 50 / 100) * 5) / 100; - } else { skillratio += (skill_lv * (sstatus->max_hp * 25 / 100) * 7) / 100; // Skill level x 0.07 x ((MaxHP / 4) + (MaxSP / 2)) skillratio += (skill_lv * (sstatus->max_sp * 50 / 100) * 7) / 100; + } else { + skillratio += (skill_lv * (sstatus->max_hp * 25 / 100) * 5) / 100; // Skill level x 0.05 x ((MaxHP / 4) + (MaxSP / 2)) + skillratio += (skill_lv * (sstatus->max_sp * 50 / 100) * 5) / 100; } RE_LVL_DMOD(100); From 4124cdaa4a234731cc91fc42d8e67ebd38bdbc1c Mon Sep 17 00:00:00 2001 From: Lemongrass3110 Date: Sun, 10 Mar 2024 22:10:28 +0100 Subject: [PATCH 24/44] Initial implementation of Night Watch (#8150) Taken from #7024 Co-authored-by: munkrej Co-authored-by: Atemo --- db/re/skill_db.yml | 477 +++++++++++++++++++++++++++++++++++ db/re/skill_tree.yml | 89 +++++++ db/re/status.yml | 89 +++++++ src/map/battle.cpp | 263 ++++++++++++++++++- src/map/script_constants.hpp | 10 + src/map/skill.cpp | 182 +++++++++++-- src/map/skill.hpp | 2 + src/map/status.cpp | 32 +++ src/map/status.hpp | 12 + 9 files changed, 1138 insertions(+), 18 deletions(-) diff --git a/db/re/skill_db.yml b/db/re/skill_db.yml index 14bbece650..e3bf3005b5 100644 --- a/db/re/skill_db.yml +++ b/db/re/skill_db.yml @@ -41379,6 +41379,473 @@ Body: SplashArea: 6 Requires: SpCost: 1 + - Id: 5401 + Name: NW_P_F_I + Description: P.F.I + MaxLevel: 10 + - Id: 5402 + Name: NW_GRENADE_MASTERY + Description: Grenade Mastery + MaxLevel: 10 + - Id: 5403 + Name: NW_INTENSIVE_AIM + Description: Intensive Aim + MaxLevel: 1 + Type: Weapon + TargetType: Self + DamageFlags: + NoDamage: true + Hit: Single + HitCount: 1 + Duration1: -1 + Requires: + SpCost: + - Level: 1 + Amount: 10 + Status: Intensive_Aim + - Id: 5404 + Name: NW_GRENADE_FRAGMENT + Description: Grenade Fragment + MaxLevel: 7 + Type: Weapon + TargetType: Self + DamageFlags: + NoDamage: true + Hit: Single + HitCount: 1 + Duration1: 300000 + Cooldown: 2000 + Requires: + SpCost: 50 + - Id: 5405 + Name: NW_THE_VIGILANTE_AT_NIGHT + Description: The Vigilante at Night + MaxLevel: 5 + Type: Weapon + TargetType: Self + DamageFlags: + Splash: true + Hit: Multi_Hit + HitCount: 4 + Element: Weapon + SplashArea: + - Level: 1 + Area: 2 + - Level: 2 + Area: 2 + - Level: 3 + Area: 2 + - Level: 4 + Area: 3 + - Level: 5 + Area: 3 + GiveAp: 1 + AfterCastActDelay: 1000 + Cooldown: 500 + CastCancel: true + FixedCastTime: 1500 + Requires: + SpCost: + - Level: 1 + Amount: 49 + - Level: 2 + Amount: 53 + - Level: 3 + Amount: 57 + - Level: 4 + Amount: 61 + - Level: 5 + Amount: 65 + Weapon: + Gatling: true + Shotgun: true + Ammo: + Bullet: true + AmmoAmount: 10 + - Id: 5406 + Name: NW_ONLY_ONE_BULLET + Description: Only One Bullet + MaxLevel: 5 + Type: Weapon + TargetType: Attack + DamageFlags: + Critical: true + Range: -9 + Hit: Single + HitCount: 1 + Element: Weapon + GiveAp: 1 + AfterCastActDelay: 500 + Cooldown: 300 + CastCancel: true + FixedCastTime: 1000 + Requires: + SpCost: + - Level: 1 + Amount: 39 + - Level: 2 + Amount: 43 + - Level: 3 + Amount: 47 + - Level: 4 + Amount: 51 + - Level: 5 + Amount: 55 + Weapon: + Revolver: true + Rifle: true + Ammo: + Bullet: true + AmmoAmount: 1 + - Id: 5407 + Name: NW_SPIRAL_SHOOTING + Description: Spiral Shooting + MaxLevel: 5 + Type: Weapon + TargetType: Attack + DamageFlags: + Critical: true + Splash: true + Range: -9 + Hit: Multi_Hit + HitCount: 1 + Element: Weapon + SplashArea: + - Level: 1 + Area: 2 + - Level: 2 + Area: 2 + - Level: 3 + Area: 2 + - Level: 4 + Area: 3 + - Level: 5 + Area: 3 + GiveAp: 1 + AfterCastActDelay: 1000 + Cooldown: 500 + CastCancel: true + FixedCastTime: 1000 + Requires: + SpCost: + - Level: 1 + Amount: 48 + - Level: 2 + Amount: 53 + - Level: 3 + Amount: 58 + - Level: 4 + Amount: 63 + - Level: 5 + Amount: 68 + Weapon: + Grenade: true + Rifle: true + Ammo: + Bullet: true + AmmoAmount: 6 + - Id: 5408 + Name: NW_MAGAZINE_FOR_ONE + Description: Magazine for One + MaxLevel: 5 + Type: Weapon + TargetType: Attack + DamageFlags: + Critical: true + Range: -9 + Hit: Multi_Hit + HitCount: 6 + Element: Weapon + GiveAp: 1 + AfterCastActDelay: 1000 + Cooldown: 500 + CastCancel: true + FixedCastTime: 1000 + Requires: + SpCost: + - Level: 1 + Amount: 42 + - Level: 2 + Amount: 46 + - Level: 3 + Amount: 50 + - Level: 4 + Amount: 54 + - Level: 5 + Amount: 58 + Weapon: + Revolver: true + Gatling: true + Ammo: + Bullet: true + AmmoAmount: 6 + - Id: 5409 + Name: NW_WILD_FIRE + Description: Wild Fire + MaxLevel: 5 + Type: Weapon + TargetType: Ground + Range: -9 + Hit: Single + HitCount: -3 + Element: Weapon + DamageFlags: + Splash: true + SplashArea: + - Level: 1 + Area: 2 + - Level: 2 + Area: 2 + - Level: 3 + Area: 2 + - Level: 4 + Area: 3 + - Level: 5 + Area: 3 + GiveAp: 1 + AfterCastActDelay: 1000 + Cooldown: 500 + CastCancel: true + FixedCastTime: 1000 + Requires: + SpCost: + - Level: 1 + Amount: 51 + - Level: 2 + Amount: 55 + - Level: 3 + Amount: 59 + - Level: 4 + Amount: 63 + - Level: 5 + Amount: 67 + Weapon: + Shotgun: true + Grenade: true + Ammo: + Bullet: true + AmmoAmount: 5 + - Id: 5410 + Name: NW_BASIC_GRENADE + Description: Basic Grenade + MaxLevel: 5 + Type: Weapon + TargetType: Ground + Range: -9 + Hit: Single + HitCount: -2 + Element: Weapon + DamageFlags: + Splash: true + SplashArea: + - Level: 1 + Area: 1 + - Level: 2 + Area: 1 + - Level: 3 + Area: 1 + - Level: 4 + Area: 2 + - Level: 5 + Area: 2 + GiveAp: 2 + Cooldown: 300 + CastCancel: true + FixedCastTime: 1000 + Requires: + SpCost: + - Level: 1 + Amount: 36 + - Level: 2 + Amount: 42 + - Level: 3 + Amount: 48 + - Level: 4 + Amount: 54 + - Level: 5 + Amount: 60 + ItemCost: + - Item: Nw_Grenade + Amount: 1 + - Id: 5411 + Name: NW_HASTY_FIRE_IN_THE_HOLE + Description: Hasty Fire in the Hole + MaxLevel: 5 + Type: Weapon + TargetType: Ground + Range: -9 + Hit: Multi_Hit + HitCount: -2 + Element: Weapon + DamageFlags: + Splash: true + SplashArea: 2 + GiveAp: 3 + Cooldown: 1000 + CastCancel: true + FixedCastTime: 1000 + AfterCastActDelay: 1500 + Requires: + SpCost: + - Level: 1 + Amount: 50 + - Level: 2 + Amount: 53 + - Level: 3 + Amount: 56 + - Level: 4 + Amount: 59 + - Level: 5 + Amount: 62 + ItemCost: + - Item: Nw_Grenade + Amount: 3 + - Id: 5412 + Name: NW_GRENADES_DROPPING + Description: Grenades Dropping + MaxLevel: 5 + Type: Weapon + TargetType: Ground + Range: -9 + Hit: Multi_Hit + HitCount: 3 + Element: Weapon + DamageFlags: + Splash: true + SplashArea: + - Level: 1 + Area: 5 + - Level: 2 + Area: 5 + - Level: 3 + Area: 5 + - Level: 4 + Area: 4 + - Level: 5 + Area: 4 + GiveAp: 5 + Cooldown: 4500 + CastCancel: true + FixedCastTime: 1000 + Requires: + SpCost: + - Level: 1 + Amount: 60 + - Level: 2 + Amount: 66 + - Level: 3 + Amount: 72 + - Level: 4 + Amount: 78 + - Level: 5 + Amount: 84 + ItemCost: + - Item: Nw_Grenade + Amount: 15 + Duration1: 4000 + Duration2: 100 + Unit: + Id: Grenades_Dropping + Layout: 0 + Range: + - Level: 1 + Size: 1 + - Level: 2 + Size: 1 + - Level: 3 + Size: 1 + - Level: 4 + Size: 2 + - Level: 5 + Size: 2 + Interval: 250 + Target: Enemy + Flag: + NoOverlap: true + PathCheck: true + - Id: 5413 + Name: NW_AUTO_FIRING_LAUNCHER + Description: Auto Firing Launcher + MaxLevel: 5 + Type: Weapon + TargetType: Self + DamageFlags: + NoDamage: true + Duration1: + - Level: 1 + Time: 120000 + - Level: 2 + Time: 150000 + - Level: 3 + Time: 180000 + - Level: 4 + Time: 210000 + - Level: 5 + Time: 240000 + Cooldown: 30000 + CastCancel: true + FixedCastTime: 3000 + Requires: + SpCost: + - Level: 1 + Amount: 90 + - Level: 2 + Amount: 100 + - Level: 3 + Amount: 110 + - Level: 4 + Amount: 120 + - Level: 5 + Amount: 130 + Status: Auto_Firing_Launcher + - Id: 5414 + Name: NW_HIDDEN_CARD + Description: Hidden Card + MaxLevel: 10 + Type: Weapon + TargetType: Self + DamageFlags: + NoDamage: true + Duration1: 300000 + Cooldown: 60000 + CastCancel: true + FixedCastTime: 2000 + Requires: + SpCost: 150 + ApCost: 150 + Status: Hidden_Card + - Id: 5415 + Name: NW_MISSION_BOMBARD + Description: Mission Bombard + MaxLevel: 10 + Type: Weapon + TargetType: Ground + Range: -9 + Hit: Multi_Hit + HitCount: -3 + Element: Weapon + DamageFlags: + Splash: true + SplashArea: 4 + Cooldown: 10000 + CastCancel: true + FixedCastTime: 1000 + Requires: + SpCost: 100 + ApCost: 35 + ItemCost: + - Item: Nw_Grenade + Amount: 15 + Duration1: 10000 + Unit: + Id: Mission_Bombard + Layout: 0 + Range: 2 + Interval: 250 + Target: Enemy + Flag: + NoOverlap: true + PathCheck: true - Id: 5449 Name: HN_SELFSTUDY_TATICS Description: Self Study Tactics @@ -42159,6 +42626,16 @@ Body: SpCost: 150 ApCost: 150 Status: Rulebreak + - Id: 5496 + Name: NW_THE_VIGILANTE_AT_NIGHT_GUN_GATLING + Description: The Vigilante At Night Gun Gatling + MaxLevel: 5 + CastCancel: true + - Id: 5497 + Name: NW_THE_VIGILANTE_AT_NIGHT_GUN_SHOTGUN + Description: The Vigilante At Night Gun Shotgun + MaxLevel: 5 + CastCancel: true - Id: 6001 Name: DK_DRAGONIC_BREATH Description: Dragonic Breath diff --git a/db/re/skill_tree.yml b/db/re/skill_tree.yml index 9788a49f67..d9213f46bd 100644 --- a/db/re/skill_tree.yml +++ b/db/re/skill_tree.yml @@ -7864,6 +7864,95 @@ Body: Royal_Guard: true Royal_Guard_T: true Imperial_Guard: true + - Job: Night_Watch + Inherit: + Novice: true + Gunslinger: true + Rebellion: true + Tree: + - Name: NW_P_F_I + MaxLevel: 10 + - Name: NW_GRENADE_MASTERY + MaxLevel: 10 + - Name: NW_INTENSIVE_AIM + MaxLevel: 1 + Requires: + - Name: NW_P_F_I + Level: 1 + - Name: NW_HIDDEN_CARD + MaxLevel: 10 + Requires: + - Name: NW_P_F_I + Level: 5 + - Name: NW_INTENSIVE_AIM + Level: 1 + - Name: NW_BASIC_GRENADE + MaxLevel: 5 + Requires: + - Name: NW_GRENADE_MASTERY + Level: 3 + - Name: NW_GRENADE_FRAGMENT + MaxLevel: 7 + Requires: + - Name: NW_GRENADE_MASTERY + Level: 1 + - Name: NW_THE_VIGILANTE_AT_NIGHT + MaxLevel: 5 + Requires: + - Name: NW_P_F_I + Level: 3 + - Name: NW_INTENSIVE_AIM + Level: 1 + - Name: NW_ONLY_ONE_BULLET + MaxLevel: 5 + Requires: + - Name: NW_P_F_I + Level: 3 + - Name: NW_INTENSIVE_AIM + Level: 1 + - Name: NW_SPIRAL_SHOOTING + MaxLevel: 5 + Requires: + - Name: NW_P_F_I + Level: 3 + - Name: NW_INTENSIVE_AIM + Level: 1 + - Name: NW_MAGAZINE_FOR_ONE + MaxLevel: 5 + Requires: + - Name: NW_P_F_I + Level: 3 + - Name: NW_INTENSIVE_AIM + Level: 1 + - Name: NW_WILD_FIRE + MaxLevel: 5 + Requires: + - Name: NW_P_F_I + Level: 3 + - Name: NW_INTENSIVE_AIM + Level: 1 + - Name: NW_HASTY_FIRE_IN_THE_HOLE + MaxLevel: 5 + Requires: + - Name: NW_BASIC_GRENADE + Level: 3 + - Name: NW_GRENADES_DROPPING + MaxLevel: 5 + Requires: + - Name: NW_HASTY_FIRE_IN_THE_HOLE + Level: 3 + - Name: NW_AUTO_FIRING_LAUNCHER + MaxLevel: 5 + Requires: + - Name: NW_GRENADES_DROPPING + Level: 3 + - Name: NW_MISSION_BOMBARD + MaxLevel: 10 + Requires: + - Name: NW_GRENADE_MASTERY + Level: 5 + - Name: NW_GRENADES_DROPPING + Level: 3 - Job: Hyper_Novice Inherit: Novice: true diff --git a/db/re/status.yml b/db/re/status.yml index 2170fd945f..e3eab6f6cf 100644 --- a/db/re/status.yml +++ b/db/re/status.yml @@ -8787,3 +8787,92 @@ Body: - Status: Rulebreak Icon: EFST_RULEBREAK DurationLookup: HN_RULEBREAK + - Status: Intensive_Aim + Icon: EFST_INTENSIVE_AIM + States: + NoMove: true + CalcFlags: + Batk: true + Hit: true + Cri: true + Flags: + BlEffect: true + DisplayPc: true + SendVal1: true + NoSave: true + NoBanishingBuster: true + NoDispell: true + NoClearance: true + - Status: Intensive_Aim_Count + Icon: EFST_INTENSIVE_AIM_COUNT + Flags: + DisplayPc: true + SendVal1: true + NoSave: true + NoBanishingBuster: true + NoDispell: true + NoClearance: true + - Status: Grenade_Fragment_1 + Icon: EFST_GRENADE_FRAGMENT_1 + DurationLookup: NW_GRENADE_FRAGMENT + EndOnStart: + Grenade_Fragment_2: true + Grenade_Fragment_3: true + Grenade_Fragment_4: true + Grenade_Fragment_5: true + Grenade_Fragment_6: true + - Status: Grenade_Fragment_2 + Icon: EFST_GRENADE_FRAGMENT_2 + DurationLookup: NW_GRENADE_FRAGMENT + EndOnStart: + Grenade_Fragment_1: true + Grenade_Fragment_3: true + Grenade_Fragment_4: true + Grenade_Fragment_5: true + Grenade_Fragment_6: true + - Status: Grenade_Fragment_3 + Icon: EFST_GRENADE_FRAGMENT_3 + DurationLookup: NW_GRENADE_FRAGMENT + EndOnStart: + Grenade_Fragment_1: true + Grenade_Fragment_2: true + Grenade_Fragment_4: true + Grenade_Fragment_5: true + Grenade_Fragment_6: true + - Status: Grenade_Fragment_4 + Icon: EFST_GRENADE_FRAGMENT_4 + DurationLookup: NW_GRENADE_FRAGMENT + EndOnStart: + Grenade_Fragment_1: true + Grenade_Fragment_2: true + Grenade_Fragment_3: true + Grenade_Fragment_5: true + Grenade_Fragment_6: true + - Status: Grenade_Fragment_5 + Icon: EFST_GRENADE_FRAGMENT_5 + DurationLookup: NW_GRENADE_FRAGMENT + EndOnStart: + Grenade_Fragment_1: true + Grenade_Fragment_2: true + Grenade_Fragment_3: true + Grenade_Fragment_4: true + Grenade_Fragment_6: true + - Status: Grenade_Fragment_6 + Icon: EFST_GRENADE_FRAGMENT_6 + DurationLookup: NW_GRENADE_FRAGMENT + EndOnStart: + Grenade_Fragment_1: true + Grenade_Fragment_2: true + Grenade_Fragment_3: true + Grenade_Fragment_4: true + Grenade_Fragment_5: true + - Status: Auto_Firing_Launcher + Icon: EFST_AUTO_FIRING_LAUNCHEREFST + DurationLookup: NW_AUTO_FIRING_LAUNCHER + Flags: + SendVal1: true + - Status: Hidden_Card + Icon: EFST_HIDDEN_CARD + DurationLookup: NW_HIDDEN_CARD + CalcFlags: + All: true diff --git a/src/map/battle.cpp b/src/map/battle.cpp index 3e14e60a27..ac181660ac 100644 --- a/src/map/battle.cpp +++ b/src/map/battle.cpp @@ -2585,12 +2585,20 @@ void battle_consume_ammo(map_session_data*sd, int skill, int lv) { int qty = 1; + if( sd == nullptr ){ + return; + } + if (!battle_config.arrow_decrement) return; if (skill) { qty = skill_get_ammo_qty(skill, lv); if (!qty) qty = 1; + + if( skill == NW_MAGAZINE_FOR_ONE && sd->weapontype1 == W_GATLING ){ + qty += 4; + } } if (sd->equip_index[EQI_AMMO] >= 0) //Qty check should have been done in skill_check_condition @@ -2621,6 +2629,7 @@ static int battle_range_type(struct block_list *src, struct block_list *target, case BO_ACIDIFIED_ZONE_FIRE_ATK: case BO_ACIDIFIED_ZONE_GROUND_ATK: case BO_ACIDIFIED_ZONE_WIND_ATK: + case NW_THE_VIGILANTE_AT_NIGHT: return BF_LONG; case NJ_KIRIKAGE: // Cast range mimics NJ_SHADOWJUMP but damage is considered melee case GC_CROSSIMPACT: // Cast range is 7 cells and player jumps to target but skill is considered melee @@ -2997,6 +3006,18 @@ static bool is_attack_critical(struct Damage* wd, struct block_list *src, struct case WH_GALESTORM: if (sc && !sc->getSCE(SC_CALAMITYGALE)) return false; + break; + case NW_ONLY_ONE_BULLET: + case NW_SPIRAL_SHOOTING: + if( sd == nullptr || sd->weapontype1 != W_RIFLE ){ + return false; + } + break; + case NW_MAGAZINE_FOR_ONE: + if( sd == nullptr || sd->weapontype1 != W_REVOLVER ){ + return false; + } + break; } if(tsd && tsd->bonus.critical_def) cri = cri * ( 100 - tsd->bonus.critical_def ) / 100; @@ -3282,8 +3303,25 @@ static bool attack_ignores_def(struct Damage* wd, struct block_list *src, struct if (sc && sc->getSCE(SC_FUSION)) return true; - if (skill_id == RK_WINDCUTTER && sd && sd->status.weapon == W_2HSWORD) - return true; + if( sd != nullptr ){ + switch( skill_id ){ + case RK_WINDCUTTER: + if( sd->status.weapon == W_2HSWORD ){ + return true; + } + break; + case NW_THE_VIGILANTE_AT_NIGHT: + if( sd->status.weapon == W_GATLING ){ + return true; + } + break; + case NW_ONLY_ONE_BULLET: + if( sd->status.weapon == W_REVOLVER ){ + return true; + } + break; + } + } if (skill_id != CR_GRANDCROSS && skill_id != NPC_GRANDDARKNESS) { //Ignore Defense? @@ -3427,6 +3465,27 @@ int battle_get_weapon_element(struct Damage* wd, struct block_list *src, struct if (sd && sd->flicker) //Force RL_H_MINE deals fire damage if activated by RL_FLICKER element = ELE_FIRE; break; + case NW_BASIC_GRENADE: + case NW_HASTY_FIRE_IN_THE_HOLE: + case NW_GRENADES_DROPPING: + case NW_MISSION_BOMBARD: + // Night Watch Grenade Fragment elementals affecting those skills. + if( sc != nullptr ){ + if( sc->getSCE( SC_GRENADE_FRAGMENT_1 ) != nullptr ){ + element = ELE_WATER; + }else if( sc->getSCE( SC_GRENADE_FRAGMENT_2 ) != nullptr ){ + element = ELE_WIND; + }else if( sc->getSCE( SC_GRENADE_FRAGMENT_3 ) != nullptr ){ + element = ELE_EARTH; + }else if( sc->getSCE( SC_GRENADE_FRAGMENT_4 ) != nullptr ){ + element = ELE_FIRE; + }else if( sc->getSCE( SC_GRENADE_FRAGMENT_5 ) != nullptr ){ + element = ELE_DARK; + }else if( sc->getSCE( SC_GRENADE_FRAGMENT_6 ) != nullptr ){ + element = ELE_HOLY; + } + } + break; } if (sc && sc->getSCE(SC_GOLDENE_FERSE) && ((!skill_id && (rnd() % 100 < sc->getSCE(SC_GOLDENE_FERSE)->val4)) || skill_id == MH_STAHL_HORN)) @@ -4186,6 +4245,18 @@ static void battle_calc_multi_attack(struct Damage* wd, struct block_list *src,s } break; #endif + case NW_SPIRAL_SHOOTING: + if (sd && sd->weapontype1 == W_GRENADE) + wd->div_ += 1; + break; + case NW_MAGAZINE_FOR_ONE: + if (sd && sd->weapontype1 == W_GATLING) + wd->div_ += 4; + break; + case NW_THE_VIGILANTE_AT_NIGHT: + if (sd && sd->weapontype1 == W_GATLING) + wd->div_ += 3; + break; } } @@ -5864,6 +5935,85 @@ static int battle_calc_attack_skill_ratio(struct Damage* wd, struct block_list * skillratio += 5 * sstatus->pow; RE_LVL_DMOD(100); break; + case NW_HASTY_FIRE_IN_THE_HOLE: + skillratio += -100 + 1500 + 1050 * skill_lv; + skillratio += pc_checkskill( sd, NW_GRENADE_MASTERY ) * 20; + skillratio += 5 * sstatus->con; + RE_LVL_DMOD(100); + break; + case NW_BASIC_GRENADE: + skillratio += -100 + 1000 + 950 * skill_lv; + skillratio += pc_checkskill( sd, NW_GRENADE_MASTERY ) * 50; + skillratio += 5 * sstatus->con; + RE_LVL_DMOD(100); + break; + case NW_GRENADES_DROPPING: + skillratio += -100 + 550 + 850 * skill_lv; + skillratio += pc_checkskill( sd, NW_GRENADE_MASTERY ) * 30; + skillratio += 5 * sstatus->con; + RE_LVL_DMOD(100); + break; + case NW_WILD_FIRE: + skillratio += -100 + 1000 + 2300 * skill_lv; + skillratio += 5 * sstatus->con; + if (sc && sc->getSCE(SC_INTENSIVE_AIM_COUNT)) + skillratio += sc->getSCE(SC_INTENSIVE_AIM_COUNT)->val1 * 500 * skill_lv; + if (sd && sd->weapontype1 == W_SHOTGUN) + skillratio += 150 * skill_lv; + RE_LVL_DMOD(100); + break; + case NW_MAGAZINE_FOR_ONE: + skillratio += -100 + 100 + 450 * ( skill_lv - 1 ); + skillratio += 5 * sstatus->con; + if (sc && sc->getSCE(SC_INTENSIVE_AIM_COUNT)) + skillratio += sc->getSCE(SC_INTENSIVE_AIM_COUNT)->val1 * 100 * skill_lv; + if (sd && sd->weapontype1 == W_REVOLVER) + skillratio += 50 + 100 * (skill_lv-1); + RE_LVL_DMOD(100); + break; + case NW_SPIRAL_SHOOTING: + skillratio += -100 + 1000 + 1500 * skill_lv; + skillratio += 5 * sstatus->con; + if (sc && sc->getSCE(SC_INTENSIVE_AIM_COUNT)) + skillratio += sc->getSCE(SC_INTENSIVE_AIM_COUNT)->val1 * 150 * skill_lv; + if (sd && sd->weapontype1 == W_RIFLE) + skillratio += 200 + 200 * skill_lv; + RE_LVL_DMOD(100); + break; + case NW_ONLY_ONE_BULLET: + skillratio += -100 + 800 + 1350 * skill_lv; + skillratio += 5 * sstatus->con; + if (sc && sc->getSCE(SC_INTENSIVE_AIM_COUNT)) + skillratio += sc->getSCE(SC_INTENSIVE_AIM_COUNT)->val1 * 350 * skill_lv; + if (sd && sd->weapontype1 == W_REVOLVER) { + skillratio += 150 * skill_lv; + } + RE_LVL_DMOD(100); + break; + case NW_THE_VIGILANTE_AT_NIGHT: + if (sd && sd->weapontype1 == W_GATLING) { + skillratio += -100 + 300 * skill_lv; + if (sc && sc->getSCE(SC_INTENSIVE_AIM_COUNT)) + skillratio += sc->getSCE(SC_INTENSIVE_AIM_COUNT)->val1 * 100 * skill_lv; + } else { + skillratio += -100 + 800 + 700 * skill_lv; + if (sc && sc->getSCE(SC_INTENSIVE_AIM_COUNT)) + skillratio += sc->getSCE(SC_INTENSIVE_AIM_COUNT)->val1 * 200 * skill_lv; + } + skillratio += 5 * sstatus->con; + RE_LVL_DMOD(100); + break; + case NW_MISSION_BOMBARD: + if( wd->miscflag&SKILL_ALTDMG_FLAG ){ + skillratio += -100 + 5000 + 1800 * skill_lv; + skillratio += pc_checkskill( sd, NW_GRENADE_MASTERY ) * 100; + }else{ + skillratio += -100 + 800 + 200 * skill_lv; + skillratio += pc_checkskill( sd, NW_GRENADE_MASTERY ) * 30; + } + skillratio += 5 * sstatus->con; + RE_LVL_DMOD(100); + break; } return skillratio; } @@ -6089,6 +6239,8 @@ static void battle_attack_sc_bonus(struct Damage* wd, struct block_list *src, st if (sc->getSCE(SC_MIRACLE)) anger_id = 2; // Always treat all monsters as star flagged monster when in miracle state + if (sc->getSCE(SC_HIDDEN_CARD) && (wd->flag&BF_LONG) == BF_LONG) + RE_ALLATK_ADDRATE(wd, sc->getSCE(SC_HIDDEN_CARD)->val3); } if ((wd->flag&(BF_LONG|BF_MAGIC)) == BF_LONG) { @@ -9773,6 +9925,113 @@ enum damage_lv battle_weapon_attack(struct block_list* src, struct block_list* t sd->state.autocast = 0; } + if( sc->getSCE( SC_AUTO_FIRING_LAUNCHER ) ){ + uint16 skill_id; + uint16 skill_lv; + + switch( sc->getSCE( SC_AUTO_FIRING_LAUNCHER )->val1 ){ + case 1: + skill_id = NW_BASIC_GRENADE; + skill_lv = pc_checkskill( sd, skill_id ); + + if( skill_lv > 0 && rnd_chance( 6, 100 ) ){ + sd->state.autocast = 1; + skill_castend_pos2( src, target->x, target->y, skill_id, skill_lv, tick, flag ); + battle_autocast_aftercast( src, skill_id, skill_lv, tick ); + sd->state.autocast = 0; + } + break; + + case 2: + skill_id = NW_BASIC_GRENADE; + skill_lv = pc_checkskill( sd, skill_id ); + + if( skill_lv > 0 && rnd_chance( 7, 100 ) ){ + sd->state.autocast = 1; + skill_castend_pos2( src, target->x, target->y, skill_id, skill_lv, tick, flag ); + battle_autocast_aftercast( src, skill_id, skill_lv, tick ); + sd->state.autocast = 0; + } + break; + + case 3: + skill_id = NW_HASTY_FIRE_IN_THE_HOLE; + skill_lv = pc_checkskill( sd, skill_id ); + + if( skill_lv > 0 && rnd_chance( 3, 100 ) ){ + sd->state.autocast = 1; + skill_castend_pos2( src, target->x, target->y, skill_id, skill_lv, tick, flag ); + battle_autocast_aftercast( src, skill_id, skill_lv, tick ); + sd->state.autocast = 0; + } + + skill_id = NW_BASIC_GRENADE; + skill_lv = pc_checkskill( sd, skill_id ); + + if( skill_lv > 0 && rnd_chance( 8, 100 ) ){ + sd->state.autocast = 1; + skill_castend_pos2( src, target->x, target->y, skill_id, skill_lv, tick, flag ); + battle_autocast_aftercast( src, skill_id, skill_lv, tick ); + sd->state.autocast = 0; + } + break; + + case 4: + skill_id = NW_HASTY_FIRE_IN_THE_HOLE; + skill_lv = pc_checkskill( sd, skill_id ); + + if( skill_lv > 0 && rnd_chance( 5, 100 ) ){ + sd->state.autocast = 1; + skill_castend_pos2( src, target->x, target->y, skill_id, skill_lv, tick, flag ); + battle_autocast_aftercast( src, skill_id, skill_lv, tick ); + sd->state.autocast = 0; + } + + skill_id = NW_BASIC_GRENADE; + skill_lv = pc_checkskill( sd, skill_id ); + + if( skill_lv > 0 && rnd_chance( 9, 100 ) ){ + sd->state.autocast = 1; + skill_castend_pos2( src, target->x, target->y, skill_id, skill_lv, tick, flag ); + battle_autocast_aftercast( src, skill_id, skill_lv, tick ); + sd->state.autocast = 0; + } + break; + + case 5: + skill_id = NW_GRENADES_DROPPING; + skill_lv = pc_checkskill( sd, skill_id ); + + if( skill_lv > 0 && rnd_chance( 3, 100 ) ){ + sd->state.autocast = 1; + skill_castend_pos2( src, target->x, target->y, skill_id, skill_lv, tick, flag ); + battle_autocast_aftercast( src, skill_id, skill_lv, tick ); + sd->state.autocast = 0; + } + + skill_id = NW_HASTY_FIRE_IN_THE_HOLE; + skill_lv = pc_checkskill( sd, skill_id ); + + if( skill_lv > 0 && rnd_chance( 7, 100 ) ){ + sd->state.autocast = 1; + skill_castend_pos2( src, target->x, target->y, skill_id, skill_lv, tick, flag ); + battle_autocast_aftercast( src, skill_id, skill_lv, tick ); + sd->state.autocast = 0; + } + + skill_id = NW_BASIC_GRENADE; + skill_lv = pc_checkskill( sd, skill_id ); + + if( skill_lv > 0 && rnd_chance( 10, 100 ) ){ + sd->state.autocast = 1; + skill_castend_pos2( src, target->x, target->y, skill_id, skill_lv, tick, flag ); + battle_autocast_aftercast( src, skill_id, skill_lv, tick ); + sd->state.autocast = 0; + } + break; + } + } + // Autocasted skills from super elemental supportive buffs. if (sc->getSCE(SC_FLAMETECHNIC_OPTION) && rnd() % 100 < 7) battle_autocast_elembuff_skill(sd, target, MG_FIREBOLT, tick, flag); diff --git a/src/map/script_constants.hpp b/src/map/script_constants.hpp index d1f1451fce..c739b58c7a 100644 --- a/src/map/script_constants.hpp +++ b/src/map/script_constants.hpp @@ -1900,6 +1900,16 @@ export_constant(SC_GROUNDGRAVITY); export_constant(SC_BREAKINGLIMIT); export_constant(SC_RULEBREAK); + export_constant(SC_INTENSIVE_AIM); + export_constant(SC_INTENSIVE_AIM_COUNT); + export_constant(SC_GRENADE_FRAGMENT_1); + export_constant(SC_GRENADE_FRAGMENT_2); + export_constant(SC_GRENADE_FRAGMENT_3); + export_constant(SC_GRENADE_FRAGMENT_4); + export_constant(SC_GRENADE_FRAGMENT_5); + export_constant(SC_GRENADE_FRAGMENT_6); + export_constant(SC_AUTO_FIRING_LAUNCHER); + export_constant(SC_HIDDEN_CARD); #ifdef RENEWAL export_constant(SC_EXTREMITYFIST2); diff --git a/src/map/skill.cpp b/src/map/skill.cpp index 303ee1d2bb..293616f267 100755 --- a/src/map/skill.cpp +++ b/src/map/skill.cpp @@ -4794,6 +4794,29 @@ static TIMER_FUNC(skill_timerskill){ skill_unitsetting(src, skl->skill_id, skl->skill_lv, tmpx, tmpy, skill_get_unit_interval(skl->skill_id)); } break; + case NW_HASTY_FIRE_IN_THE_HOLE: + skill_castend_pos2(src, skl->x, skl->y, skl->skill_id, skl->skill_lv, tick, skl->flag); + break; + case NW_GRENADES_DROPPING: { + int area = skill_get_splash(skl->skill_id, skl->skill_lv); + short tmpx = 0, tmpy = 0; + + tmpx = skl->x - area + rnd() % (area * 2 + 1); + tmpy = skl->y - area + rnd() % (area * 2 + 1); + skill_unitsetting(src, skl->skill_id, skl->skill_lv, tmpx, tmpy, skl->flag); + } + break; + case NW_MISSION_BOMBARD: { + int area = skill_get_unit_range(skl->skill_id, skl->skill_lv); + int range = skill_get_splash(skl->skill_id, skl->skill_lv); + short tmpx = 0, tmpy = 0; + + tmpx = skl->x - range + rnd() % (range * 2 + 1); + tmpy = skl->y - range + rnd() % (range * 2 + 1); + map_foreachinarea(skill_area_sub, src->m, tmpx - range, tmpy - range, tmpx + range, tmpy + range, BL_CHAR, + src, skl->skill_id, skl->skill_lv, tick, skl->flag | BCT_ENEMY | SD_SPLASH | 1, skill_castend_damage_id); + } + break; } } } while (0); @@ -5235,6 +5258,10 @@ int skill_castend_damage_id (struct block_list* src, struct block_list *bl, uint case ABR_DUAL_CANNON_FIRE: case ABR_INFINITY_BUSTER: case MT_TRIPLE_LASER: + case NW_MISSION_BOMBARD: + case NW_HASTY_FIRE_IN_THE_HOLE: + case NW_BASIC_GRENADE: + case NW_WILD_FIRE: skill_attack(BF_WEAPON,src,src,bl,skill_id,skill_lv,tick,flag); break; case DK_DRAGONIC_AURA: @@ -5916,6 +5943,24 @@ int skill_castend_damage_id (struct block_list* src, struct block_list *bl, uint } } break; + case NW_THE_VIGILANTE_AT_NIGHT: + if (flag & 1) + skill_attack(skill_get_type(skill_id), src, src, bl, skill_id, skill_lv, tick, flag); + break; + case NW_SPIRAL_SHOOTING: + if (flag & 1) { + skill_attack(skill_get_type(skill_id), src, src, bl, skill_id, skill_lv, tick, flag); + } else { + int splash = skill_get_splash(skill_id, skill_lv); + + if (sd && sd->weapontype1 == W_GRENADE) + splash += 2; + clif_skill_nodamage(src, bl, skill_id, skill_lv, 1); + map_foreachinrange(skill_area_sub, bl, splash, BL_CHAR, src, skill_id, skill_lv, tick, flag | BCT_ENEMY | SD_SPLASH | 1, skill_castend_damage_id); + if (sc && sc->getSCE(SC_INTENSIVE_AIM_COUNT)) + status_change_end(src, SC_INTENSIVE_AIM_COUNT); + } + break; //Place units around target case NJ_BAKUENRYU: @@ -7077,6 +7122,13 @@ int skill_castend_damage_id (struct block_list* src, struct block_list *bl, uint } break; + case NW_MAGAZINE_FOR_ONE: + case NW_ONLY_ONE_BULLET: + skill_attack(BF_WEAPON,src,src,bl,skill_id,skill_lv,tick,flag); + if (sc && sc->getSCE(SC_INTENSIVE_AIM_COUNT)) + status_change_end(src, SC_INTENSIVE_AIM_COUNT); + break; + default: ShowWarning("skill_castend_damage_id: Unknown skill used:%d\n",skill_id); clif_skill_damage(src, bl, tick, status_get_amotion(src), tstatus->dmotion, @@ -7101,7 +7153,8 @@ int skill_castend_damage_id (struct block_list* src, struct block_list *bl, uint } // perform skill requirement consumption - skill_consume_requirement(sd,skill_id,skill_lv,2); + if (!(flag&SKILL_NOCONSUME_REQ)) + skill_consume_requirement(sd,skill_id,skill_lv,2); } return 0; @@ -7297,6 +7350,7 @@ int skill_castend_nodamage_id (struct block_list *src, struct block_list *bl, ui type = skill_get_sc(skill_id); tsc = status_get_sc(bl); + status_change* sc = status_get_sc(src); tsce = (tsc && type != SC_NONE)?tsc->getSCE(type):NULL; if (src!=bl && type > SC_NONE && @@ -7651,8 +7705,6 @@ int skill_castend_nodamage_id (struct block_list *src, struct block_list *bl, ui return 1; } - status_change* sc = status_get_sc(src); - if( sc && tsc ) { if( !sc->getSCE(SC_MARIONETTE) && !tsc->getSCE(SC_MARIONETTE2) ) @@ -8025,7 +8077,6 @@ int skill_castend_nodamage_id (struct block_list *src, struct block_list *bl, ui sc_start(src, bl, type, 100, skill_lv, skill_get_time2(skill_id, skill_lv)); } else { uint16 climax_lv = 0, splash_size = skill_get_splash(skill_id, skill_lv); - status_change *sc = status_get_sc(src); if (sc && sc->getSCE(SC_CLIMAX)) climax_lv = sc->getSCE(SC_CLIMAX)->val1; @@ -8566,7 +8617,6 @@ int skill_castend_nodamage_id (struct block_list *src, struct block_list *bl, ui case ABC_ABYSS_DAGGER: case BO_EXPLOSIVE_POWDER: { - status_change *sc = status_get_sc(src); int starget = BL_CHAR|BL_SKILL; if (skill_id == SR_HOWLINGOFLION) @@ -11176,8 +11226,6 @@ int skill_castend_nodamage_id (struct block_list *src, struct block_list *bl, ui case WL_SUMMONWB: case WL_SUMMONSTONE: { - status_change *sc = status_get_sc(src); - if (sc == nullptr) break; @@ -11687,7 +11735,6 @@ int skill_castend_nodamage_id (struct block_list *src, struct block_list *bl, ui case WM_LERADS_DEW: case WM_UNLIMITED_HUMMING_VOICE: if( flag&1 ) { // These affect to to all party members near the caster. - status_change *sc = status_get_sc(src); if( sc && sc->getSCE(type) ) { sc_start2(src,bl,type,100,skill_lv,pc_checkskill(sd, WM_LESSON),skill_get_time(skill_id,skill_lv)); } @@ -12094,9 +12141,9 @@ int skill_castend_nodamage_id (struct block_list *src, struct block_list *bl, ui s_elemental_data *ele = BL_CAST(BL_ELEM, src); if( ele ) { sc_type type2 = (sc_type)(type-1); - status_change *sc = status_get_sc(&ele->bl); + status_change *esc = status_get_sc(&ele->bl); - if( (sc && sc->getSCE(type2)) || (tsc && tsc->getSCE(type)) ) { + if( (esc && esc->getSCE(type2)) || (tsc && tsc->getSCE(type)) ) { status_change_end(src,type); status_change_end(bl,type2); } else { @@ -12121,11 +12168,11 @@ int skill_castend_nodamage_id (struct block_list *src, struct block_list *bl, ui case EL_WATER_SCREEN: { s_elemental_data *ele = BL_CAST(BL_ELEM, src); if( ele ) { - status_change *sc = status_get_sc(&ele->bl); + status_change *esc = status_get_sc(&ele->bl); sc_type type2 = (sc_type)(type-1); clif_skill_nodamage(src,src,skill_id,skill_lv,1); - if( (sc && sc->getSCE(type2)) || (tsc && tsc->getSCE(type)) ) { + if( (esc && esc->getSCE(type2)) || (tsc && tsc->getSCE(type)) ) { status_change_end(bl,type); status_change_end(src,type2); } else { @@ -12865,6 +12912,54 @@ int skill_castend_nodamage_id (struct block_list *src, struct block_list *bl, ui map_foreachinrange(skill_area_sub, bl, skill_get_splash(skill_id, skill_lv), BL_CHAR, src, skill_id, skill_lv, tick, flag | BCT_ENEMY | 1, skill_castend_damage_id); break; + case NW_THE_VIGILANTE_AT_NIGHT: + i = skill_get_splash(skill_id, skill_lv); + skill_area_temp[0] = 0; + skill_area_temp[1] = bl->id; + skill_area_temp[2] = 0; + + if (sd && sd->weapontype1 == W_GATLING) { + i += 3; + clif_skill_nodamage(src, bl, NW_THE_VIGILANTE_AT_NIGHT_GUN_GATLING, skill_lv, 1); + } else + clif_skill_nodamage(src, bl, NW_THE_VIGILANTE_AT_NIGHT_GUN_SHOTGUN, skill_lv, 1); + map_foreachinrange(skill_area_sub, bl, i, BL_CHAR, src, skill_id, skill_lv, tick, flag | BCT_ENEMY | SD_SPLASH | 1, skill_castend_damage_id); + if (sc && sc->getSCE(SC_INTENSIVE_AIM_COUNT)) + status_change_end(src, SC_INTENSIVE_AIM_COUNT); + break; + + case NW_INTENSIVE_AIM: + if (tsc && tsc->getSCE(type)) { + status_change_end(src, SC_INTENSIVE_AIM_COUNT); + status_change_end(bl, type); + } else { + status_change_end(src, SC_INTENSIVE_AIM_COUNT); + sc_start(src, bl, type, 100, skill_lv, skill_get_time(skill_id, skill_lv)); + } + clif_skill_nodamage(src, src, skill_id, skill_lv, 1); + break; + + case NW_HIDDEN_CARD: + case NW_AUTO_FIRING_LAUNCHER: + sc_start(src, bl, type, 100, skill_lv, skill_get_time(skill_id, skill_lv)); + clif_skill_nodamage(src, src, skill_id, skill_lv, 1); + break; + + case NW_GRENADE_FRAGMENT: + status_change_end(src, type); + if (skill_lv < 7) + sc_start(src, bl, (sc_type)(SC_GRENADE_FRAGMENT_1 -1 + skill_lv), 100, skill_lv, skill_get_time(skill_id, skill_lv)); + else if (skill_lv == 7) { + status_change_end(src, SC_GRENADE_FRAGMENT_1); + status_change_end(src, SC_GRENADE_FRAGMENT_2); + status_change_end(src, SC_GRENADE_FRAGMENT_3); + status_change_end(src, SC_GRENADE_FRAGMENT_4); + status_change_end(src, SC_GRENADE_FRAGMENT_5); + status_change_end(src, SC_GRENADE_FRAGMENT_6); + } + clif_skill_nodamage(src, src, skill_id, skill_lv, 1); + break; + default: { std::shared_ptr skill = skill_db.find(skill_id); ShowWarning("skill_castend_nodamage_id: missing code case for skill %s(%d)\n", skill ? skill->name : "UNKNOWN", skill_id); @@ -12875,8 +12970,6 @@ int skill_castend_nodamage_id (struct block_list *src, struct block_list *bl, ui } if (skill_id != SR_CURSEDCIRCLE && skill_id != NPC_SR_CURSEDCIRCLE) { - status_change *sc = status_get_sc(src); - if (sc && sc->getSCE(SC_CURSEDCIRCLE_ATKER)) // Should only remove after the skill had been casted. status_change_end(src,SC_CURSEDCIRCLE_ATKER); } @@ -12896,7 +12989,8 @@ int skill_castend_nodamage_id (struct block_list *src, struct block_list *bl, ui } skill_onskillusage(sd, bl, skill_id, tick); // perform skill requirement consumption - skill_consume_requirement(sd,skill_id,skill_lv,2); + if (!(flag&SKILL_NOCONSUME_REQ)) + skill_consume_requirement(sd,skill_id,skill_lv,2); } map_freeblock_unlock(); @@ -13603,6 +13697,7 @@ int skill_castend_pos2(struct block_list* src, int x, int y, uint16 skill_id, ui case SU_CN_METEOR: case NPC_RAINOFMETEOR: case HN_METEOR_STORM_BUSTER: + case NW_GRENADES_DROPPING: break; //Effect is displayed on respective switch case. default: if(skill_get_inf(skill_id)&INF_SELF_SKILL) @@ -13643,6 +13738,7 @@ int skill_castend_pos2(struct block_list* src, int x, int y, uint16 skill_id, ui break; case SR_RIDEINLIGHTNING: + case NW_BASIC_GRENADE: i = skill_get_splash(skill_id, skill_lv); map_foreachinallarea(skill_area_sub, src->m, x-i, y-i, x+i, y+i, BL_CHAR, src, skill_id, skill_lv, tick, flag|BCT_ENEMY|1, skill_castend_damage_id); @@ -14545,6 +14641,53 @@ int skill_castend_pos2(struct block_list* src, int x, int y, uint16 skill_id, ui } break; + case NW_WILD_FIRE: + i = skill_get_splash(skill_id, skill_lv); + if (sd && sd->status.weapon == W_GRENADE) + i += 2; + map_foreachinallarea(skill_area_sub, + src->m, x - i, y - i, x + i, y + i, BL_CHAR, + src, skill_id, skill_lv, tick, flag | BCT_ENEMY | 1, + skill_castend_damage_id); + if (sc && sc->getSCE(SC_INTENSIVE_AIM_COUNT)) + status_change_end(src, SC_INTENSIVE_AIM_COUNT); + break; + case NW_HASTY_FIRE_IN_THE_HOLE: + i = skill_get_splash(skill_id, skill_lv); + if (flag & 1){ + i++; + } + if (flag & 2){ + i++; + } + map_foreachinallarea(skill_area_sub, + src->m, x - i, y - i, x + i, y + i, BL_CHAR, + src, skill_id, skill_lv, tick, flag | BCT_ENEMY | 1, + skill_castend_damage_id); + if (!(flag & 1)) { + skill_addtimerskill(src, tick + 300, 0, x, y, skill_id, skill_lv, 0, flag | 1 | SKILL_NOCONSUME_REQ); + skill_addtimerskill(src, tick + 600, 0, x, y, skill_id, skill_lv, 0, flag | 3 | SKILL_NOCONSUME_REQ); + } + break; + case NW_GRENADES_DROPPING: { + uint16 splash = skill_get_splash(skill_id, skill_lv); + uint16 tmpx = rnd_value( x - splash, x + splash ); + uint16 tmpy = rnd_value( y - splash, y + splash ); + skill_unitsetting(src, skill_id, skill_lv, tmpx, tmpy, flag); + for (i = 0; i <= (skill_get_time(skill_id, skill_lv) / skill_get_unit_interval(skill_id)); i++) { + skill_addtimerskill(src, tick + (t_tick)i*skill_get_unit_interval(skill_id), 0, x, y, skill_id, skill_lv, 0, flag); + } + } break; + case NW_MISSION_BOMBARD: + i = skill_get_splash(skill_id,skill_lv); + map_foreachinarea(skill_area_sub,src->m,x-i,y-i,x+i,y+i,BL_CHAR|BL_SKILL,src,skill_id,skill_lv,tick,flag|BCT_ENEMY|SKILL_ALTDMG_FLAG|1,skill_castend_damage_id); + skill_unitsetting(src, skill_id, skill_lv, x, y, flag); + + for (i = 1; i <= (skill_get_time(skill_id, skill_lv) / skill_get_unit_interval(skill_id)); i++) { + skill_addtimerskill(src, tick + (t_tick)i*skill_get_unit_interval(skill_id), 0, x, y, skill_id, skill_lv, 0, flag); + } + break; + default: ShowWarning("skill_castend_pos2: Unknown skill used:%d\n",skill_id); return 1; @@ -14563,7 +14706,8 @@ int skill_castend_pos2(struct block_list* src, int x, int y, uint16 skill_id, ui } skill_onskillusage(sd, NULL, skill_id, tick); // perform skill requirement consumption - skill_consume_requirement(sd,skill_id,skill_lv,2); + if (!(flag&SKILL_NOCONSUME_REQ)) + skill_consume_requirement(sd,skill_id,skill_lv,2); } return 0; @@ -15211,6 +15355,10 @@ std::shared_ptr skill_unitsetting(struct block_list *src, ui case WH_FLAMETRAP: limit += 3000 * (sd ? pc_checkskill(sd, WH_ADVANCED_TRAP) : 5); break; + + case NW_GRENADES_DROPPING: + limit = skill_get_time2(skill_id,skill_lv); + break; } // Init skill unit group @@ -18711,6 +18859,8 @@ struct s_skill_condition skill_get_requirement(map_session_data* sd, uint16 skil req.mhp = skill->require.mhp[skill_lv-1]; req.weapon = skill->require.weapon; req.ammo_qty = skill->require.ammo_qty[skill_lv-1]; + if (skill_id == NW_MAGAZINE_FOR_ONE && sd->weapontype1 == W_GATLING) + req.ammo_qty += 4; if (req.ammo_qty) req.ammo = skill->require.ammo; diff --git a/src/map/skill.hpp b/src/map/skill.hpp index c1ac243df3..16c6132392 100644 --- a/src/map/skill.hpp +++ b/src/map/skill.hpp @@ -41,6 +41,8 @@ class status_change; /// To control alternative skill scalings #define SKILL_ALTDMG_FLAG 0x10 +/// Make skill ignore requirement consumption [Muh] +#define SKILL_NOCONSUME_REQ 0x20 /// Constants to identify a skill's nk value (damage properties) /// The NK value applies only to non INF_GROUND_SKILL skills diff --git a/src/map/status.cpp b/src/map/status.cpp index f1490db7c1..06621064ee 100644 --- a/src/map/status.cpp +++ b/src/map/status.cpp @@ -4169,6 +4169,10 @@ int status_calc_pc_sub(map_session_data* sd, uint8 opt) base_status->mdef++; } +// ----- CONCENTRATION CALCULATION ----- + if ((skill = pc_checkskill(sd, NW_GRENADE_MASTERY)) > 0) + base_status->con += skill; + // ------ ATTACK CALCULATION ------ // Base batk value is set in status_calc_misc @@ -4383,6 +4387,8 @@ int status_calc_pc_sub(map_session_data* sd, uint8 opt) base_status->patk += skill; if ((skill = pc_checkskill(sd, HN_SELFSTUDY_SOCERY)) > 0) base_status->smatk += skill; + if ((skill = pc_checkskill(sd, NW_P_F_I)) > 0 && (sd->status.weapon >= W_REVOLVER && sd->status.weapon <= W_GRENADE)) + base_status->patk += skill + 2; // 2-Handed Staff Mastery if( sd->status.weapon == W_2HSTAFF && ( skill = pc_checkskill( sd, AG_TWOHANDSTAFF ) ) > 0 ){ @@ -4759,6 +4765,8 @@ int status_calc_pc_sub(map_session_data* sd, uint8 opt) sd->bonus.short_attack_atk_rate += 5 * sc->getSCE( SC_RUSH_QUAKE2 )->val1; sd->bonus.long_attack_atk_rate += 5 * sc->getSCE( SC_RUSH_QUAKE2 )->val1; } + if (sc->getSCE(SC_HIDDEN_CARD)) + sd->bonus.long_attack_atk_rate += sc->getSCE(SC_HIDDEN_CARD)->val3; if (sc->getSCE(SC_DEADLY_DEFEASANCE)) sd->special_state.no_magic_damage = 0; if (sc->getSCE(SC_CLIMAX_DES_HU)) @@ -7070,6 +7078,8 @@ static unsigned short status_calc_batk(struct block_list *bl, status_change *sc, batk += 20; if(sc->getSCE(SC_SKF_ATK)) batk += sc->getSCE(SC_SKF_ATK)->val1; + if (sc->getSCE(SC_INTENSIVE_AIM)) + batk += 150; return (unsigned short)cap_value(batk,0,USHRT_MAX); } @@ -7386,6 +7396,8 @@ static signed short status_calc_critical(struct block_list *bl, status_change *s critical += sc->getSCE(SC_MTF_HITFLEE)->val1; if (sc->getSCE(SC_PACKING_ENVELOPE9)) critical += sc->getSCE(SC_PACKING_ENVELOPE9)->val1 * 10; + if (sc->getSCE(SC_INTENSIVE_AIM)) + critical += 300; return (short)cap_value(critical,10,SHRT_MAX); } @@ -7462,6 +7474,8 @@ static signed short status_calc_hit(struct block_list *bl, status_change *sc, in hit += sc->getSCE(SC_LIMIT_POWER_BOOSTER)->val1; if (sc->getSCE(SC_ACARAJE)) hit += 5; + if (sc->getSCE(SC_INTENSIVE_AIM)) + hit += 250; return (short)cap_value(hit,1,SHRT_MAX); } @@ -8518,6 +8532,8 @@ static signed short status_calc_patk(struct block_list *bl, status_change *sc, i if( sc->getSCE( SC_ATTACK_STANCE ) ){ patk += sc->getSCE( SC_ATTACK_STANCE )->val3; } + if (sc->getSCE(SC_HIDDEN_CARD)) + patk += sc->getSCE(SC_HIDDEN_CARD)->val2; return (short)cap_value(patk, 0, SHRT_MAX); } @@ -12741,6 +12757,13 @@ int status_change_start(struct block_list* src, struct block_list* bl,enum sc_ty case SC_WEAPONBREAKER: val2 = val1 * 2 * 100; // Chance to break weapon break; + case SC_INTENSIVE_AIM: + tick = 500; + break; + case SC_HIDDEN_CARD: + val2 = 3 * val1; + val3 = 10 * val1; + break; default: if (calc_flag.none() && scdb->skill_id == 0 && scdb->icon == EFST_BLANK && scdb->opt1 == OPT1_NONE && scdb->opt2 == OPT2_NONE && scdb->state.none() && scdb->flag.none() && scdb->endonstart.empty() && scdb->endreturn.empty() && scdb->fail.empty() && scdb->endonend.empty()) { @@ -14891,6 +14914,15 @@ TIMER_FUNC(status_change_timer){ if (sce->val4 >= 0) skill_castend_damage_id( bl, bl, NPC_KILLING_AURA, sce->val1, tick, 0 ); break; + case SC_INTENSIVE_AIM: + if (!sc || !sc->getSCE(SC_INTENSIVE_AIM_COUNT)) + sce->val4 = 0; + if (sce->val4 < 10) { + sce->val4++; + sc_start(bl, bl, SC_INTENSIVE_AIM_COUNT, 100, sce->val4, INFINITE_TICK); + } + sc_timer_next(500 + tick); + return 0; } // If status has an interval and there is at least 100ms remaining time, wait for next interval diff --git a/src/map/status.hpp b/src/map/status.hpp index fb1a3a95aa..16b7cc6381 100644 --- a/src/map/status.hpp +++ b/src/map/status.hpp @@ -1293,6 +1293,18 @@ enum sc_type : int16 { SC_BREAKINGLIMIT, SC_RULEBREAK, + // Night Watch + SC_INTENSIVE_AIM, + SC_INTENSIVE_AIM_COUNT, + SC_GRENADE_FRAGMENT_1, + SC_GRENADE_FRAGMENT_2, + SC_GRENADE_FRAGMENT_3, + SC_GRENADE_FRAGMENT_4, + SC_GRENADE_FRAGMENT_5, + SC_GRENADE_FRAGMENT_6, + SC_AUTO_FIRING_LAUNCHER, + SC_HIDDEN_CARD, + #ifdef RENEWAL SC_EXTREMITYFIST2, //! NOTE: This SC should be right before SC_MAX, so it doesn't disturb if RENEWAL is disabled #endif From 3b6c3b61c08898d21f9356b2df98316ff265a1e6 Mon Sep 17 00:00:00 2001 From: Lemongrass3110 Date: Sun, 10 Mar 2024 22:46:09 +0100 Subject: [PATCH 25/44] Update SU_LUNATICCARROTBEAT formula (#8152) Taken from #7024 Co-authored-by: munkrej --- src/map/battle.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/map/battle.cpp b/src/map/battle.cpp index ac181660ac..e723511f5d 100644 --- a/src/map/battle.cpp +++ b/src/map/battle.cpp @@ -5464,10 +5464,12 @@ static int battle_calc_attack_skill_ratio(struct Damage* wd, struct block_list * break; case SU_LUNATICCARROTBEAT: case SU_LUNATICCARROTBEAT2: - skillratio += 100 + 100 * skill_lv + sstatus->str * 5; // !TODO: What's the STR bonus? - RE_LVL_DMOD(100); + skillratio += 100 + 100 * skill_lv; if (sd && pc_checkskill(sd, SU_SPIRITOFLIFE)) skillratio += skillratio * status_get_hp(src) / status_get_max_hp(src); + if (status_get_lv(src) > 99) + skillratio += sstatus->str; + RE_LVL_DMOD(100); break; case SU_SVG_SPIRIT: skillratio += 150 + 150 * skill_lv; From 0865e160cb5b3668a8579dd082d546473e173cbb Mon Sep 17 00:00:00 2001 From: Atemo Date: Mon, 11 Mar 2024 17:25:05 +0100 Subject: [PATCH 26/44] Rebalance Night Watch 2022-12-21 (#8161) * The Vigilante at Night - Increases SP consumption from 65 to 88 based on level 5. - Reduces area of effect of gatling gun from 13 x 13 cells to 11 x 11 cells based on level 5. * Only One Bullet - Increases cooldown from 0.3 seconds to 0.35 seconds. - Increases base damage from 7550%/8300%Atk to 16200%/18200%Atk based on level 5. * Spiral Shooting - Increases base damage from 8500%/9700%Atk to 9700%/15400%Atk per hit based on level 5. * Magazine for One - Increases base damage from 1950%/2400%Atk to 2750%/4300%Atk per hit based on level 5. * Wild Fire - Increases base damage from 13250%/12500%Atk to 17500%/16500%Atk based on level 5. * Basic Grenade - Increases base damage from 5750%Atk to 12000%Atk based on level 5. * Hasty Fire in the Hole - Increases base damage from 6750%Atk to 9000%Atk per hit based on level 5. Co-authored-by: Lemongrass3110 --- db/re/skill_db.yml | 12 ++++++------ src/map/battle.cpp | 20 ++++++++++---------- src/map/skill.cpp | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/db/re/skill_db.yml b/db/re/skill_db.yml index e3bf3005b5..3f3c2a454e 100644 --- a/db/re/skill_db.yml +++ b/db/re/skill_db.yml @@ -41447,15 +41447,15 @@ Body: Requires: SpCost: - Level: 1 - Amount: 49 + Amount: 72 - Level: 2 - Amount: 53 + Amount: 76 - Level: 3 - Amount: 57 + Amount: 80 - Level: 4 - Amount: 61 + Amount: 84 - Level: 5 - Amount: 65 + Amount: 88 Weapon: Gatling: true Shotgun: true @@ -41476,7 +41476,7 @@ Body: Element: Weapon GiveAp: 1 AfterCastActDelay: 500 - Cooldown: 300 + Cooldown: 350 CastCancel: true FixedCastTime: 1000 Requires: diff --git a/src/map/battle.cpp b/src/map/battle.cpp index e723511f5d..069bfa3cc3 100644 --- a/src/map/battle.cpp +++ b/src/map/battle.cpp @@ -5938,13 +5938,13 @@ static int battle_calc_attack_skill_ratio(struct Damage* wd, struct block_list * RE_LVL_DMOD(100); break; case NW_HASTY_FIRE_IN_THE_HOLE: - skillratio += -100 + 1500 + 1050 * skill_lv; + skillratio += -100 + 1500 + 1500 * skill_lv; skillratio += pc_checkskill( sd, NW_GRENADE_MASTERY ) * 20; skillratio += 5 * sstatus->con; RE_LVL_DMOD(100); break; case NW_BASIC_GRENADE: - skillratio += -100 + 1000 + 950 * skill_lv; + skillratio += -100 + 1500 + 2100 * skill_lv; skillratio += pc_checkskill( sd, NW_GRENADE_MASTERY ) * 50; skillratio += 5 * sstatus->con; RE_LVL_DMOD(100); @@ -5956,39 +5956,39 @@ static int battle_calc_attack_skill_ratio(struct Damage* wd, struct block_list * RE_LVL_DMOD(100); break; case NW_WILD_FIRE: - skillratio += -100 + 1000 + 2300 * skill_lv; + skillratio += -100 + 1500 + 3000 * skill_lv; skillratio += 5 * sstatus->con; if (sc && sc->getSCE(SC_INTENSIVE_AIM_COUNT)) skillratio += sc->getSCE(SC_INTENSIVE_AIM_COUNT)->val1 * 500 * skill_lv; if (sd && sd->weapontype1 == W_SHOTGUN) - skillratio += 150 * skill_lv; + skillratio += 200 * skill_lv; RE_LVL_DMOD(100); break; case NW_MAGAZINE_FOR_ONE: - skillratio += -100 + 100 + 450 * ( skill_lv - 1 ); + skillratio += -100 + 250 + 500 * skill_lv; skillratio += 5 * sstatus->con; if (sc && sc->getSCE(SC_INTENSIVE_AIM_COUNT)) skillratio += sc->getSCE(SC_INTENSIVE_AIM_COUNT)->val1 * 100 * skill_lv; if (sd && sd->weapontype1 == W_REVOLVER) - skillratio += 50 + 100 * (skill_lv-1); + skillratio += 50 + 300 * skill_lv; RE_LVL_DMOD(100); break; case NW_SPIRAL_SHOOTING: - skillratio += -100 + 1000 + 1500 * skill_lv; + skillratio += -100 + 1200 + 1700 * skill_lv; skillratio += 5 * sstatus->con; if (sc && sc->getSCE(SC_INTENSIVE_AIM_COUNT)) skillratio += sc->getSCE(SC_INTENSIVE_AIM_COUNT)->val1 * 150 * skill_lv; if (sd && sd->weapontype1 == W_RIFLE) - skillratio += 200 + 200 * skill_lv; + skillratio += 200 + 1100 * skill_lv; RE_LVL_DMOD(100); break; case NW_ONLY_ONE_BULLET: - skillratio += -100 + 800 + 1350 * skill_lv; + skillratio += -100 + 1200 + 3000 * skill_lv; skillratio += 5 * sstatus->con; if (sc && sc->getSCE(SC_INTENSIVE_AIM_COUNT)) skillratio += sc->getSCE(SC_INTENSIVE_AIM_COUNT)->val1 * 350 * skill_lv; if (sd && sd->weapontype1 == W_REVOLVER) { - skillratio += 150 * skill_lv; + skillratio += 400 * skill_lv; } RE_LVL_DMOD(100); break; diff --git a/src/map/skill.cpp b/src/map/skill.cpp index 293616f267..34c8eb5220 100755 --- a/src/map/skill.cpp +++ b/src/map/skill.cpp @@ -12919,7 +12919,7 @@ int skill_castend_nodamage_id (struct block_list *src, struct block_list *bl, ui skill_area_temp[2] = 0; if (sd && sd->weapontype1 == W_GATLING) { - i += 3; + i = 5; // 11x11 clif_skill_nodamage(src, bl, NW_THE_VIGILANTE_AT_NIGHT_GUN_GATLING, skill_lv, 1); } else clif_skill_nodamage(src, bl, NW_THE_VIGILANTE_AT_NIGHT_GUN_SHOTGUN, skill_lv, 1); From 5efd5b8c95a43cab207f7fa13e17ba58f84e8e8a Mon Sep 17 00:00:00 2001 From: Atemo Date: Mon, 11 Mar 2024 18:58:17 +0100 Subject: [PATCH 27/44] Rebalance Hyper Novice 2024-02-05 (#8156) * Double Bowling Bash - Increases base damage from 3200+(Self Study Tactics skill level x 30)%Atk to 4250+(Self Study Tactics skill level x 30)%Atk per hit based on level 10. * Shield Chain Rush - Increases base damage from 5700+(Self Study Tactics skill level x 30)%Atk to 11350+(Self Study Tactics skill level x 30)%Atk based on level 10. * Spiral Pierce Max - Increases base damage from 8700+(Self Study Tactics skill level x 30)%Atk x size correction to 16000+(Self Study Tactics skill level x 30)%Atk x size correction based on level 10. * Breaking Limit - Increases damage bonus of Double Bowling Bash and Shield Chain Rush from 70% to 120%. * Hell's Drive - Increases base damage from 8500+(Self Study Sorcery skill level x 30)%Atk to 10700+(Self Study Sorcery skill level x 30)%Matk based on level 10. --- src/map/battle.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/map/battle.cpp b/src/map/battle.cpp index 069bfa3cc3..d6ef5079a9 100644 --- a/src/map/battle.cpp +++ b/src/map/battle.cpp @@ -1846,7 +1846,7 @@ int64 battle_calc_damage(struct block_list *src,struct block_list *bl,struct Dam switch (skill_id) { case HN_SHIELD_CHAIN_RUSH: case HN_DOUBLEBOWLINGBASH: - damage += damage * 70 / 100; + damage += damage * 120 / 100; break; case HN_MEGA_SONIC_BLOW: case HN_SPIRAL_PIERCE_MAX: @@ -5901,7 +5901,7 @@ static int battle_calc_attack_skill_ratio(struct Damage* wd, struct block_list * skillratio += -100 + 50000; break; case HN_SPIRAL_PIERCE_MAX: - skillratio += -100 + 700 + 800 * skill_lv; + skillratio += -100 + 1000 + 1500 * skill_lv; skillratio += pc_checkskill(sd, HN_SELFSTUDY_TATICS) * 3 * skill_lv; skillratio += 5 * sstatus->pow; switch (status_get_size(target)){ @@ -5918,7 +5918,7 @@ static int battle_calc_attack_skill_ratio(struct Damage* wd, struct block_list * RE_LVL_DMOD(100); break; case HN_SHIELD_CHAIN_RUSH: - skillratio += -100 + 700 + 500 * skill_lv; + skillratio += -100 + 850 + 1050 * skill_lv; skillratio += pc_checkskill(sd, HN_SELFSTUDY_TATICS) * 3 * skill_lv; skillratio += 5 * sstatus->pow; RE_LVL_DMOD(100); @@ -5932,7 +5932,7 @@ static int battle_calc_attack_skill_ratio(struct Damage* wd, struct block_list * RE_LVL_DMOD(100); break; case HN_DOUBLEBOWLINGBASH: - skillratio += -100 + 200 + 300 * skill_lv; + skillratio += -100 + 250 + 400 * skill_lv; skillratio += pc_checkskill(sd, HN_SELFSTUDY_TATICS) * 3 * skill_lv; skillratio += 5 * sstatus->pow; RE_LVL_DMOD(100); @@ -8435,7 +8435,7 @@ struct Damage battle_calc_magic_attack(struct block_list *src,struct block_list RE_LVL_DMOD(100); break; case HN_HELLS_DRIVE: - skillratio += -100 + 1500 + 700 * skill_lv; + skillratio += -100 + 1700 + 900 * skill_lv; skillratio += pc_checkskill(sd, HN_SELFSTUDY_SOCERY) * 4 * skill_lv; skillratio += 5 * sstatus->spl; RE_LVL_DMOD(100); From c9582cc4fd7e72de5bb8bbb388cdb4ee0cc1d08b Mon Sep 17 00:00:00 2001 From: Atemo Date: Mon, 11 Mar 2024 18:58:31 +0100 Subject: [PATCH 28/44] Rebalance Imperial Guard 2024-02-05 (#8155) * Guardian Shield - Reworks AP condition from recovering AP to consuming 35 AP upon using instead. - Reduces skill duration from 60 seconds to 40 seconds. - Increases skill cooldown from 15 seconds to 25 seconds. - Reduces global cooldown from 1 second to 0.3 seconds. - Reduces factor weight of MaxHP in skill formula from 50% to 30%. - Reduces final durability factor of skill level from 250% to 125% based on level 5. * Cross Rain - Increases AP recovery rate from 4 to 6. - Increases base damage from 3200+(Spear & Sword Mastery skill level x 100)%/4500+(Spear & Sword Mastery skill level x 150)%(Holy Shield)Matk to 4500+(Spear & Sword Mastery skill level x 100)%/6500+(Spear & Sword Mastery skill level x 150)%(Holy Shield)Matk per hit based on level 10. * Holy Shield - No longer be removed by Dispell or Clearance. * Shield Shooting - Increases AP recovery rate from 3 to 5. - Increases base damage from 14900+(Shield Mastery skill level x 250)%Atk to 18500+(Shield Mastery skill level x 750)%Atk based on level 5. - Increases factor weight of shield refine rate in skill formula from 25 to 100. - Increases factor weight of POW in skill formula from 7 to 10. * Overslash - Increases AP recovery rate from 3 to 5. - Increases base damage from 1600+(Spear & Sword Mastery skill level x 250)%Atk to 2200+(Spear & Sword Mastery skill level x 500)%Atk per hit based on level 10. * Judgement Cross - Changes damage property from holy to neutral. --- db/re/skill_db.yml | 16 ++++++++-------- db/re/status.yml | 3 +++ src/map/battle.cpp | 16 ++++++++-------- src/map/status.cpp | 2 +- 4 files changed, 20 insertions(+), 17 deletions(-) diff --git a/db/re/skill_db.yml b/db/re/skill_db.yml index 3f3c2a454e..43e4c25d10 100644 --- a/db/re/skill_db.yml +++ b/db/re/skill_db.yml @@ -36847,16 +36847,16 @@ Body: Toggleable: true Hit: Single HitCount: 1 - GiveAp: 15 SplashArea: 10 CastCancel: true CastTime: 2000 - AfterCastActDelay: 500 - Duration1: 60000 - Cooldown: 15000 + AfterCastActDelay: 300 + Duration1: 40000 + Cooldown: 25000 FixedCastTime: 1000 Requires: SpCost: 60 + ApCost: 35 Status: Guard_Stance: true Status: Guardian_S @@ -37018,7 +37018,7 @@ Body: Range: 9 Hit: Multi_Hit HitCount: -10 - Element: Holy + Element: Neutral CastCancel: true CastTime: 2000 Cooldown: 5000 @@ -37058,7 +37058,7 @@ Body: Hit: Multi_Hit HitCount: -7 Element: Weapon - GiveAp: 3 + GiveAp: 5 SplashArea: - Level: 1 Area: 2 @@ -37105,7 +37105,7 @@ Body: HitCount: 3 Element: Weapon SplashArea: 3 - GiveAp: 3 + GiveAp: 5 CastCancel: true CastTime: 1000 AfterCastActDelay: 500 @@ -37145,7 +37145,7 @@ Body: Hit: Single HitCount: 1 Element: Holy - GiveAp: 4 + GiveAp: 6 CastCancel: true CastTime: 1000 AfterCastActDelay: 150 diff --git a/db/re/status.yml b/db/re/status.yml index e3eab6f6cf..8c215b79a6 100644 --- a/db/re/status.yml +++ b/db/re/status.yml @@ -7937,6 +7937,9 @@ Body: Flags: BlEffect: true DisplayPc: true + NoBanishingBuster: true + NoDispell: true + NoClearance: true - Status: Ultimate_S Icon: EFST_ULTIMATE_S DurationLookup: IG_ULTIMATE_SACRIFICE diff --git a/src/map/battle.cpp b/src/map/battle.cpp index d6ef5079a9..85bf1521f5 100644 --- a/src/map/battle.cpp +++ b/src/map/battle.cpp @@ -5624,22 +5624,22 @@ static int battle_calc_attack_skill_ratio(struct Damage* wd, struct block_list * skillratio += skillratio * i / 100; break; case IG_SHIELD_SHOOTING: - skillratio += -100 + 650 + 2850 * skill_lv; - skillratio += 7 * sstatus->pow; - skillratio += skill_lv * 50 * pc_checkskill( sd, IG_SHIELD_MASTERY ); + skillratio += -100 + 1000 + 3500 * skill_lv; + skillratio += 10 * sstatus->pow; + skillratio += skill_lv * 150 * pc_checkskill( sd, IG_SHIELD_MASTERY ); if (sd) { // Damage affected by the shield's weight and refine. Need official formula. [Rytech] short index = sd->equip_index[EQI_HAND_L]; if (index >= 0 && sd->inventory_data[index] && sd->inventory_data[index]->type == IT_ARMOR) { skillratio += (sd->inventory_data[index]->weight * 7 / 6) / 10; - skillratio += sd->inventory.u.items_inventory[index].refine * 25; + skillratio += sd->inventory.u.items_inventory[index].refine * 100; } } RE_LVL_DMOD(100); break; case IG_OVERSLASH: - skillratio += -100 + 160 * skill_lv; - skillratio += pc_checkskill(sd, IG_SPEAR_SWORD_M) * 25 * skill_lv; + skillratio += -100 + 220 * skill_lv; + skillratio += pc_checkskill(sd, IG_SPEAR_SWORD_M) * 50 * skill_lv; skillratio += 7 * sstatus->pow; RE_LVL_DMOD(100); if ((i = pc_checkskill_imperial_guard(sd, 3)) > 0) @@ -8268,9 +8268,9 @@ struct Damage battle_calc_magic_attack(struct block_list *src,struct block_list break; case IG_CROSS_RAIN: if( sc && sc->getSCE( SC_HOLY_S ) ){ - skillratio += -100 + ( 450 + 15 * pc_checkskill( sd, IG_SPEAR_SWORD_M ) ) * skill_lv; + skillratio += -100 + ( 650 + 15 * pc_checkskill( sd, IG_SPEAR_SWORD_M ) ) * skill_lv; }else{ - skillratio += -100 + ( 320 + 10 * pc_checkskill( sd, IG_SPEAR_SWORD_M ) ) * skill_lv; + skillratio += -100 + ( 450 + 10 * pc_checkskill( sd, IG_SPEAR_SWORD_M ) ) * skill_lv; } skillratio += 7 * sstatus->spl; RE_LVL_DMOD(100); diff --git a/src/map/status.cpp b/src/map/status.cpp index 06621064ee..632c5b272b 100644 --- a/src/map/status.cpp +++ b/src/map/status.cpp @@ -12616,7 +12616,7 @@ int status_change_start(struct block_list* src, struct block_list* bl,enum sc_ty tick = INFINITE_TICK; break; case SC_GUARDIAN_S: - val2 = ( status->max_hp / 2 ) * ( 50 * val1 ) / 100 + 15 * status->sta; // Barrier HP + val2 = ( status->max_hp * 30 / 100 ) * ( 25 * val1 ) / 100 + 15 * status->sta; // Barrier HP break; case SC_REBOUND_S: val2 = 10 * val1;// Reduced Damage From Devotion From 34e90e9aa9387b2ab25098a7589c71799fc55d59 Mon Sep 17 00:00:00 2001 From: Atemo Date: Mon, 11 Mar 2024 18:58:45 +0100 Subject: [PATCH 29/44] Rebalance Elemental Master 2024-02-05 (#8154) * Summon Elemental Ardor - Reduces skill cooldown from 900 seconds to 60 seconds. - Passive mode : Flame Technique, increases damage bonus of Fire Bolt from 100% to 400%. * Summon Elemental Diluvio - Reduces skill cooldown from 900 seconds to 60 seconds. - Passive mode : Cold Force, increases damage bonus of Cold Bolt from 100% to 400%. * Summon Elemental Procella - Reduces skill cooldown from 900 seconds to 60 seconds. - Passive mode : Grace Breeze, increases damage bonus of Lightning Bolt from 100% to 400%. * Summon Elemental Terremotus - Reduces skill cooldown from 900 seconds to 60 seconds. - Passive mode : Earth Care, increases damage bonus of Earth Spike from 80% to 800%. * Summon Elemental Serpens - Reduces skill cooldown from 900 seconds to 60 seconds. - Passive mode : Deep Poisoning, increases damage bonus of Killing Cloud from 50% to 1500%. * Conflagration - Increases global cooldown from 0.5 seconds to 0.7 seconds. - Increases base damage from 3750%/5750%(spirit)Matk to 6200%/7200%(spirit)Matk based on level 5. - Reduces the chance of inflicting [blaze] on each hit from 60% to 3%. * Diamond Storm - Increases base damage from 8150%/14400%(spirit)Matk to 12500%/20800%(spirit)Matk based on level 5. - Reduces the chance of inflicting [quench] on each hit from 90% to 5%. * Lightning Land - Increases global cooldown from 0.5 seconds to 0.7 seconds. - Increases base damage from 3750%/5750%(spirit)Matk to 6200%/7200%(spirit)Matk based on level 5. - Reduces the chance of inflicting [torrent] on each hit from 60% to 3%. * Terra Drive - Increases base damage from 8150%/14400%(spirit)Matk to 12500%/20800%(spirit)Matk based on level 5. - Reduces the chance of inflicting [concretion] on each hit from 90% to 5%. * Venom Swamp - Increases global cooldown from 0.5 seconds to 0.7 seconds. - Increases base damage from 3750%/5750%(spirit)Matk to 6200%/7200%(spirit)Matk based on level 5. - Reduces the chance of inflicting [severe poison] on each hit from 60% to 3%. * Elemental Buster - Reduces AP consumption from 30 to 15. - Reduces skill cooldown from 5 seconds to 2 seconds. - Increases base damage from 22500%/24000%(dragon and formless)Matk to 27050%/28550%(dragon and formless)Matk based on level 10. --- db/re/skill_db.yml | 20 ++++++++++---------- src/map/battle.cpp | 36 ++++++++++++++++++++++-------------- src/map/skill.cpp | 10 +++++----- 3 files changed, 37 insertions(+), 29 deletions(-) diff --git a/db/re/skill_db.yml b/db/re/skill_db.yml index 43e4c25d10..c02dc3f05a 100644 --- a/db/re/skill_db.yml +++ b/db/re/skill_db.yml @@ -40909,7 +40909,7 @@ Body: GiveAp: 5 CastCancel: true CastTime: 4000 - AfterCastActDelay: 500 + AfterCastActDelay: 700 Duration1: 3000 Duration2: 10000 Cooldown: 2000 @@ -40948,7 +40948,7 @@ Body: GiveAp: 5 CastCancel: true CastTime: 4000 - AfterCastActDelay: 500 + AfterCastActDelay: 700 Duration1: 3000 Duration2: 20000 Cooldown: 2000 @@ -40987,7 +40987,7 @@ Body: GiveAp: 5 CastCancel: true CastTime: 4000 - AfterCastActDelay: 500 + AfterCastActDelay: 700 Duration1: 3000 Duration2: 20000 Cooldown: 2000 @@ -41068,7 +41068,7 @@ Body: CastTime: 3000 AfterCastActDelay: 500 Duration1: 1500000 - Cooldown: 900000 + Cooldown: 60000 FixedCastTime: 2000 Requires: SpCost: 100 @@ -41089,7 +41089,7 @@ Body: CastTime: 3000 AfterCastActDelay: 500 Duration1: 1500000 - Cooldown: 900000 + Cooldown: 60000 FixedCastTime: 2000 Requires: SpCost: 100 @@ -41110,7 +41110,7 @@ Body: CastTime: 3000 AfterCastActDelay: 500 Duration1: 1500000 - Cooldown: 900000 + Cooldown: 60000 FixedCastTime: 2000 Requires: SpCost: 100 @@ -41131,7 +41131,7 @@ Body: CastTime: 3000 AfterCastActDelay: 500 Duration1: 1500000 - Cooldown: 900000 + Cooldown: 60000 FixedCastTime: 2000 Requires: SpCost: 100 @@ -41152,7 +41152,7 @@ Body: CastTime: 3000 AfterCastActDelay: 500 Duration1: 1500000 - Cooldown: 900000 + Cooldown: 60000 FixedCastTime: 2000 Requires: SpCost: 100 @@ -41171,11 +41171,11 @@ Body: CastCancel: true CastTime: 8000 AfterCastActDelay: 500 - Cooldown: 5000 + Cooldown: 2000 FixedCastTime: 1500 Requires: SpCost: 140 - ApCost: 30 + ApCost: 15 - Id: 5381 Name: EM_ELEMENTAL_VEIL Description: Elemental Veil diff --git a/src/map/battle.cpp b/src/map/battle.cpp index 85bf1521f5..e348392c83 100644 --- a/src/map/battle.cpp +++ b/src/map/battle.cpp @@ -7701,7 +7701,7 @@ struct Damage battle_calc_magic_attack(struct block_list *src,struct block_list if ((skill_id == MG_FIREBOLT && sc->getSCE(SC_FLAMETECHNIC_OPTION)) || (skill_id == MG_COLDBOLT && sc->getSCE(SC_COLD_FORCE_OPTION)) || (skill_id == MG_LIGHTNINGBOLT && sc->getSCE(SC_GRACE_BREEZE_OPTION))) - skillratio *= 2; + skillratio *= 5; if (sc->getSCE(SC_SPELLFIST) && mflag & BF_SHORT) { skillratio += (sc->getSCE(SC_SPELLFIST)->val3 * 100) + (sc->getSCE(SC_SPELLFIST)->val1 * 50 - 50) - 100; // val3 = used bolt level, val1 = used spellfist level. [Rytech] @@ -7754,7 +7754,7 @@ struct Damage battle_calc_magic_attack(struct block_list *src,struct block_list case WZ_EARTHSPIKE: skillratio += 100; if (sc && sc->getSCE(SC_EARTH_CARE_OPTION)) - skillratio += skillratio * 80 / 100; + skillratio += skillratio * 800 / 100; break; #endif case HW_NAPALMVULCAN: @@ -8021,7 +8021,7 @@ struct Damage battle_calc_magic_attack(struct block_list *src,struct block_list skillratio += (sd ? sd->status.job_level : 0); if (sc->getSCE(SC_DEEP_POISONING_OPTION)) - skillratio += skillratio * 50 / 100; + skillratio += skillratio * 1500 / 100; } break; case NPC_CLOUD_KILL: @@ -8336,46 +8336,53 @@ struct Damage battle_calc_magic_attack(struct block_list *src,struct block_list } break; case EM_DIAMOND_STORM: - skillratio += -100 + 400 + 1550 * skill_lv + 5 * sstatus->spl; + skillratio += -100 + 500 + 2400 * skill_lv; + skillratio += 5 * sstatus->spl; if( sc != nullptr && sc->getSCE( SC_SUMMON_ELEMENTAL_DILUVIO ) ){ - skillratio += 5000 + 250 * skill_lv + 5 * sstatus->spl; + skillratio += 7300 + 200 * skill_lv; + skillratio += 5 * sstatus->spl; } RE_LVL_DMOD(100); break; case EM_LIGHTNING_LAND: - skillratio += -100 + 500 + 650 * skill_lv + 5 * sstatus->spl; + skillratio += -100 + 700 + 1100 * skill_lv; + skillratio += 5 * sstatus->spl; if( sc != nullptr && sc->getSCE( SC_SUMMON_ELEMENTAL_PROCELLA ) ){ - skillratio += 400 * skill_lv; + skillratio += 200 * skill_lv; } RE_LVL_DMOD(100); break; case EM_VENOM_SWAMP: - skillratio += -100 + 500 + 650 * skill_lv + 5 * sstatus->spl; + skillratio += -100 + 700 + 1100 * skill_lv; + skillratio += 5 * sstatus->spl; if( sc && sc->getSCE( SC_SUMMON_ELEMENTAL_SERPENS ) ){ - skillratio += 400 * skill_lv; + skillratio += 200 * skill_lv; } RE_LVL_DMOD(100); break; case EM_CONFLAGRATION: - skillratio += -100 + 500 + 650 * skill_lv + 5 * sstatus->spl; + skillratio += -100 + 700 + 1100 * skill_lv; + skillratio += 5 * sstatus->spl; if( sc != nullptr && sc->getSCE( SC_SUMMON_ELEMENTAL_ARDOR ) ){ - skillratio += 400 * skill_lv; + skillratio += 200 * skill_lv; } RE_LVL_DMOD(100); break; case EM_TERRA_DRIVE: - skillratio += -100 + 400 + 1550 * skill_lv + 5 * sstatus->spl; + skillratio += -100 + 500 + 2400 * skill_lv; + skillratio += 5 * sstatus->spl; if( sc != nullptr && sc->getSCE( SC_SUMMON_ELEMENTAL_TERREMOTUS ) ){ - skillratio += 5000 + 250 * skill_lv + 5 * sstatus->spl; + skillratio += 7300 + 200 * skill_lv; + skillratio += 5 * sstatus->spl; } RE_LVL_DMOD(100); @@ -8389,7 +8396,8 @@ struct Damage battle_calc_magic_attack(struct block_list *src,struct block_list case EM_ELEMENTAL_BUSTER_WIND: case EM_ELEMENTAL_BUSTER_GROUND: case EM_ELEMENTAL_BUSTER_POISON: - skillratio += -100 + 500 + 2200 * skill_lv + 10 * sstatus->spl; + skillratio += -100 + 550 + 2650 * skill_lv; + skillratio += 10 * sstatus->spl; if (tstatus->race == RC_FORMLESS || tstatus->race == RC_DRAGON) skillratio += 150 * skill_lv; RE_LVL_DMOD(100); diff --git a/src/map/skill.cpp b/src/map/skill.cpp index 34c8eb5220..88108a56a9 100755 --- a/src/map/skill.cpp +++ b/src/map/skill.cpp @@ -2190,19 +2190,19 @@ int skill_additional_effect( struct block_list* src, struct block_list *bl, uint status_change_end(bl, SC_SOUNDBLEND); break; case EM_DIAMOND_STORM: - sc_start(src, bl, SC_HANDICAPSTATE_FROSTBITE, 40 + 10 * skill_lv, skill_lv, skill_get_time2(skill_id, skill_lv)); + sc_start(src, bl, SC_HANDICAPSTATE_FROSTBITE, 5, skill_lv, skill_get_time2(skill_id, skill_lv)); break; case EM_LIGHTNING_LAND: - sc_start(src, bl, SC_HANDICAPSTATE_LIGHTNINGSTRIKE, 10 + 10 * skill_lv, skill_lv, skill_get_time2(skill_id, skill_lv)); + sc_start(src, bl, SC_HANDICAPSTATE_LIGHTNINGSTRIKE, 3, skill_lv, skill_get_time2(skill_id, skill_lv)); break; case EM_VENOM_SWAMP: - sc_start(src, bl, SC_HANDICAPSTATE_DEADLYPOISON, 10 + 10 * skill_lv, skill_lv, skill_get_time2(skill_id, skill_lv)); + sc_start(src, bl, SC_HANDICAPSTATE_DEADLYPOISON, 3, skill_lv, skill_get_time2(skill_id, skill_lv)); break; case EM_CONFLAGRATION: - sc_start(src, bl, SC_HANDICAPSTATE_CONFLAGRATION, 10 + 10 * skill_lv, skill_lv, skill_get_time2(skill_id, skill_lv)); + sc_start(src, bl, SC_HANDICAPSTATE_CONFLAGRATION, 3, skill_lv, skill_get_time2(skill_id, skill_lv)); break; case EM_TERRA_DRIVE: - sc_start(src, bl, SC_HANDICAPSTATE_CRYSTALLIZATION, 40 + 10 * skill_lv, skill_lv, skill_get_time2(skill_id, skill_lv)); + sc_start(src, bl, SC_HANDICAPSTATE_CRYSTALLIZATION, 5, skill_lv, skill_get_time2(skill_id, skill_lv)); break; case MT_RUSH_QUAKE: sc_start( src, bl, SC_RUSH_QUAKE1, 100, skill_lv, skill_get_time( skill_id, skill_lv ) ); From 4a3149649efa8968936148a1f957d5645063bf48 Mon Sep 17 00:00:00 2001 From: Atemo Date: Mon, 11 Mar 2024 18:58:59 +0100 Subject: [PATCH 30/44] Rebalance Abyss Chaser 2024-02-05 (#8153) * Abyss Slayer - Reduces AP consumption from 150 to 120. * Omega Abyss Strike - Reduces fixed casting time from 1.5 seconds to 1 second. - Reduces skill cooldown from 3 seconds to 0.7 seconds. - Reduces AP consumption from 15 to 10. - Changes damage property from neutral to fire. - Increases base damage from 22000%/23500%(angel and demon)Matk to 26500%/28500%(angel and demon)Matk based on level 10. * Abyss Dagger - Increases base damage from 4600%Atk to 7350%Atk based on level 5. * Deft Stab - Increases base damage from 3750%Atk to 6200%Atk based on level 10. - Increases factor weight of POW in skill formula from 5 to 7. * From the Abyss - Reduces skill cooldown from 60 seconds to 30 seconds. - Increases number of hit from 2 hits to 5 hits. - Increases base damage from 2600%Matk to 3400%Matk based on level 5. - No longer be removed by Dispell or Clearance. - Increases the trigger chance of abyss sphere from 15% to 25% based on level 5. * Abyss Square - Increases base damage from 2850+(Magic Sword Mastery skill level x 100)%Matk to 3750+(Magic Sword Mastery skill level x 200)Matk based on level 5. * Chain Reaction Shot - Increases base damage of secondary attack from 12350%Atk to 13550%Atk based on level 5. * Frenzy Shot - Increases AP recovery rate from 1 to 3. - Increases base damage from 6150%Atk to 8250%Atk per hit based on level 10. --- db/re/skill_db.yml | 15 ++++++++------- src/map/battle.cpp | 30 ++++++++++++++++++------------ 2 files changed, 26 insertions(+), 19 deletions(-) diff --git a/db/re/skill_db.yml b/db/re/skill_db.yml index c02dc3f05a..2be54927c1 100644 --- a/db/re/skill_db.yml +++ b/db/re/skill_db.yml @@ -38857,7 +38857,7 @@ Body: Time: 1500 - Level: 5 Time: 1000 - Cooldown: 60000 + Cooldown: 30000 Requires: SpCost: - Level: 1 @@ -38888,26 +38888,27 @@ Body: FixedCastTime: 1000 Requires: SpCost: 100 - ApCost: 150 + ApCost: 120 Status: Abyss_Slayer - Id: 5319 Name: ABC_ABYSS_STRIKE - Description: Abyss Strike + Description: Omega Abyss Strike MaxLevel: 10 Type: Magic TargetType: Ground Range: 9 Hit: Single HitCount: 1 + Element: Fire CastCancel: true CastTime: 2000 AfterCastActDelay: 500 Duration1: 100 - Cooldown: 3000 + Cooldown: 700 FixedCastTime: 1000 Requires: SpCost: 125 - ApCost: 15 + ApCost: 10 Unit: Id: Dummyskill Range: 4 @@ -39022,7 +39023,7 @@ Body: Hit: Multi_Hit HitCount: 2 Element: Weapon - GiveAp: 1 + GiveAp: 3 CastCancel: true AfterCastActDelay: 500 Cooldown: 350 @@ -41240,7 +41241,7 @@ Body: Splash: true Range: 1 Hit: Multi_Hit - HitCount: 2 + HitCount: 5 SplashArea: 4 Requires: SpCost: 1 diff --git a/src/map/battle.cpp b/src/map/battle.cpp index e348392c83..d49827c622 100644 --- a/src/map/battle.cpp +++ b/src/map/battle.cpp @@ -4231,7 +4231,7 @@ static void battle_calc_multi_attack(struct Damage* wd, struct block_list *src,s break; } case ABC_FRENZY_SHOT: - if( rnd()%100 < 5 * skill_lv ){ + if( rnd_chance( 5 * skill_lv, 100 ) ){ wd->div_ = 3; } break; @@ -5734,7 +5734,7 @@ static int battle_calc_attack_skill_ratio(struct Damage* wd, struct block_list * RE_LVL_DMOD(100); break; case ABC_ABYSS_DAGGER: - skillratio += -100 + 100 + 900 * skill_lv; + skillratio += -100 + 350 + 1400 * skill_lv; skillratio += 5 * sstatus->pow; RE_LVL_DMOD(100); break; @@ -5743,20 +5743,22 @@ static int battle_calc_attack_skill_ratio(struct Damage* wd, struct block_list * RE_LVL_DMOD(100); break; case ABC_CHAIN_REACTION_SHOT: - skillratio += -100 + 850 * skill_lv + 15 * sstatus->con; + skillratio += -100 + 850 * skill_lv; + skillratio += 15 * sstatus->con; RE_LVL_DMOD(100); break; case ABC_CHAIN_REACTION_SHOT_ATK: - skillratio += -100 + 600 + 2350 * skill_lv + 15 * sstatus->con; + skillratio += -100 + 800 + 2550 * skill_lv; + skillratio += 15 * sstatus->con; RE_LVL_DMOD(100); break; case ABC_DEFT_STAB: - skillratio += -100 + 250 + 350 * skill_lv; - skillratio += 5 * sstatus->pow; + skillratio += -100 + 700 + 550 * skill_lv; + skillratio += 7 * sstatus->pow; RE_LVL_DMOD(100); break; case ABC_FRENZY_SHOT: - skillratio += -100 + 150 + 600 * skill_lv; + skillratio += -100 + 250 + 800 * skill_lv; skillratio += 15 * sstatus->con; RE_LVL_DMOD(100); break; @@ -8307,13 +8309,16 @@ struct Damage battle_calc_magic_attack(struct block_list *src,struct block_list RE_LVL_DMOD(100); break; case ABC_ABYSS_STRIKE: - skillratio += -100 + 2200 * skill_lv + 10 * sstatus->spl; + skillratio += -100 + 2650 * skill_lv; + skillratio += 10 * sstatus->spl; if (tstatus->race == RC_DEMON || tstatus->race == RC_ANGEL) - skillratio += 150 * skill_lv; + skillratio += 200 * skill_lv; RE_LVL_DMOD(100); break; case ABC_ABYSS_SQUARE: - skillratio += -100 + ( 570 + 20 * pc_checkskill( sd, ABC_MAGIC_SWORD_M ) ) * skill_lv + 5 * sstatus->spl; + skillratio += -100 + 750 * skill_lv; + skillratio += 40 * pc_checkskill( sd, ABC_MAGIC_SWORD_M ) * skill_lv; + skillratio += 5 * sstatus->spl; RE_LVL_DMOD(100); break; case TR_METALIC_FURY: @@ -8388,7 +8393,8 @@ struct Damage battle_calc_magic_attack(struct block_list *src,struct block_list RE_LVL_DMOD(100); break; case ABC_FROM_THE_ABYSS_ATK: - skillratio += -100 + 100 + 500 * skill_lv + 5 * sstatus->spl; + skillratio += -100 + 150 + 650 * skill_lv; + skillratio += 5 * sstatus->spl; RE_LVL_DMOD(100); break; case EM_ELEMENTAL_BUSTER_FIRE: @@ -9912,7 +9918,7 @@ enum damage_lv battle_weapon_attack(struct block_list* src, struct block_list* t sd->state.autocast = 0; } - if( sc->getSCE(SC_ABYSSFORCEWEAPON) && sd->abyssball > 0 && rnd() % 100 < 15 ){ + if( sc->getSCE(SC_ABYSSFORCEWEAPON) && sd->abyssball > 0 && rnd_chance( 25, 100 ) ){ uint16 skill_id = ABC_FROM_THE_ABYSS_ATK; uint16 skill_lv = sc->getSCE(SC_ABYSSFORCEWEAPON)->val1; From 3e82cf45a6e69fd712faacafd36f6bea7fcce659 Mon Sep 17 00:00:00 2001 From: Atemo Date: Mon, 11 Mar 2024 19:55:23 +0100 Subject: [PATCH 31/44] Rebalance Night Watch 2024-02-05 (#8164) * Hidden Card - No longer be removed by Dispell or Clearance. * The Vigilante at Night - Increases AP recovery rate from 1 to 2. * Only One Bullet - Increases AP recovery rate from 1 to 2. * Spiral Shooting - Increases AP recovery rate from 1 to 2. * Magazine for One - Increases AP recovery rate from 1 to 2. * Wild Fire - Increases AP recovery rate from 1 to 2. --- db/re/skill_db.yml | 10 +++++----- db/re/status.yml | 4 ++++ 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/db/re/skill_db.yml b/db/re/skill_db.yml index 2be54927c1..869e0e56ef 100644 --- a/db/re/skill_db.yml +++ b/db/re/skill_db.yml @@ -41440,7 +41440,7 @@ Body: Area: 3 - Level: 5 Area: 3 - GiveAp: 1 + GiveAp: 2 AfterCastActDelay: 1000 Cooldown: 500 CastCancel: true @@ -41475,7 +41475,7 @@ Body: Hit: Single HitCount: 1 Element: Weapon - GiveAp: 1 + GiveAp: 2 AfterCastActDelay: 500 Cooldown: 350 CastCancel: true @@ -41522,7 +41522,7 @@ Body: Area: 3 - Level: 5 Area: 3 - GiveAp: 1 + GiveAp: 2 AfterCastActDelay: 1000 Cooldown: 500 CastCancel: true @@ -41557,7 +41557,7 @@ Body: Hit: Multi_Hit HitCount: 6 Element: Weapon - GiveAp: 1 + GiveAp: 2 AfterCastActDelay: 1000 Cooldown: 500 CastCancel: true @@ -41603,7 +41603,7 @@ Body: Area: 3 - Level: 5 Area: 3 - GiveAp: 1 + GiveAp: 2 AfterCastActDelay: 1000 Cooldown: 500 CastCancel: true diff --git a/db/re/status.yml b/db/re/status.yml index 8c215b79a6..af2f37ccee 100644 --- a/db/re/status.yml +++ b/db/re/status.yml @@ -8879,3 +8879,7 @@ Body: DurationLookup: NW_HIDDEN_CARD CalcFlags: All: true + Flags: + NoBanishingBuster: true + NoDispell: true + NoClearance: true From 43eece8628c918c15fd2e9f6ef568f458b6873b5 Mon Sep 17 00:00:00 2001 From: Atemo Date: Tue, 12 Mar 2024 15:12:41 +0100 Subject: [PATCH 32/44] Implemented new items up to March 6 2024 (#8165) --- db/re/item_combos.yml | 77 + db/re/item_db_equip.yml | 543 ++ db/re/item_db_etc.yml | 14 + db/re/item_db_usable.yml | 265 + db/re/item_enchant.yml | 2509 ++++++- db/re/item_reform.yml | 14502 ++++++++++++++++++++----------------- 6 files changed, 11151 insertions(+), 6759 deletions(-) diff --git a/db/re/item_combos.yml b/db/re/item_combos.yml index f0b31e00bd..c0ca3044de 100644 --- a/db/re/item_combos.yml +++ b/db/re/item_combos.yml @@ -48623,3 +48623,80 @@ Body: - FuriousBoots # 470265 Script: | bonus bDelayrate,-10; + - Combos: + - Combo: + - FuriousCirclet_DK # 400628 + - Slayer_Furious # 600059 + Script: | + bonus2 bSkillAtk,"DK_HACKANDSLASHER",15; + - Combos: + - Combo: + - FuriousCirclet_DK # 400628 + - Trident_Furious # 630045 + Script: | + bonus2 bSkillAtk,"DK_MADNESS_CRUSHER",15; + - Combos: + - Combo: + - FuriousCirclet_ABC # 400629 + - Demonius_Furious # 510150 + Script: | + bonus2 bSkillAtk,"ABC_DEFT_STAB",15; + - Combos: + - Combo: + - FuriousCirclet_ABC # 400629 + - Demonsword_Furious # 510151 + Script: | + bonus2 bSkillAtk,"ABC_ABYSS_SQUARE",15; + - Combos: + - Combo: + - FuriousCirclet_SH # 400630 + - Foxtail_Furious # 550143 + Script: | + bonus2 bSkillAtk,"SH_HOGOGONG_STRIKE",15; + - Combos: + - Combo: + - FuriousCirclet_SH # 400630 + - Setaria_Furious # 550144 + Script: | + bonus2 bSkillAtk,"SH_HYUN_ROKS_BREEZE",15; + - Combos: + - Combo: + - Demonius_Furious # 510150 + - FuriousBoots # 470265 + Script: | + .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_SHOES); + bonus2 bSkillAtk,"ABC_DEFT_STAB",.@sum; + - Combos: + - Combo: + - Demonsword_Furious # 510151 + - FuriousBoots # 470265 + Script: | + .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_SHOES); + bonus2 bSkillAtk,"ABC_ABYSS_SQUARE",.@sum; + - Combos: + - Combo: + - Foxtail_Furious # 550143 + - FuriousBoots # 470265 + Script: | + .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_SHOES); + bonus2 bSkillAtk,"SH_HOGOGONG_STRIKE",.@sum; + - Combos: + - Combo: + - Setaria_Furious # 550144 + - FuriousBoots # 470265 + Script: | + .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_SHOES); + bonus2 bSkillAtk,"SH_HYUN_ROKS_BREEZE",.@sum; + - Combos: + - Combo: + - Slayer_Furious # 600059 + - FuriousBoots # 470265 + Script: | + bonus2 bSkillAtk,"DK_HACKANDSLASHER",15; + - Combos: + - Combo: + - Trident_Furious # 630045 + - FuriousBoots # 470265 + Script: | + .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_SHOES); + bonus2 bSkillAtk,"DK_MADNESS_CRUSHER",.@sum; diff --git a/db/re/item_db_equip.yml b/db/re/item_db_equip.yml index 9b1143e9f8..8be2f24a59 100644 --- a/db/re/item_db_equip.yml +++ b/db/re/item_db_equip.yml @@ -169635,6 +169635,176 @@ Body: } } } + - Id: 400628 + AegisName: FuriousCirclet_DK + Name: Furious Crown (Dragon Knight) + Type: Armor + Weight: 300 + Defense: 30 + Slots: 1 + Jobs: + Knight: true + Classes: + Fourth: true + Locations: + Head_Top: true + ArmorLevel: 2 + EquipLevelMin: 235 + Refineable: true + Gradable: true + View: 2415 + Script: | + .@g = getenchantgrade(); + .@r = getrefine(); + bonus bBaseAtk,10*(.@r/2); + bonus2 bSkillAtk,"DK_MADNESS_CRUSHER",4*(.@r/3); + bonus2 bSkillAtk,"DK_SERVANTWEAPON_ATK",4*(.@r/3); + if (.@r>=7) { + bonus bAspdRate,15; + if (.@r>=9) { + bonus bLongAtkRate,10; + if (.@r>=11) { + bonus bFixedCast,-300; + bonus bAtkRate,5; + } + } + } + if (.@g>=ENCHANTGRADE_D) { + bonus bPAtk,3; + bonus bPow,5; + bonus bCon,5; + if (.@g>=ENCHANTGRADE_C) { + bonus bCritAtkRate,10; + bonus bLongAtkRate,10; + if (.@g>=ENCHANTGRADE_B) { + bonus bFixedCast,-200; + bonus bAtkRate,5; + if (.@g>=ENCHANTGRADE_A) { + bonus bCritAtkRate,15; + bonus bLongAtkRate,15; + bonus bPAtk,5; + } + } + } + } + - Id: 400629 + AegisName: FuriousCirclet_ABC + Name: Furious Crown (Abyss Chaser) + Type: Armor + Weight: 300 + Defense: 30 + Slots: 1 + Jobs: + Rogue: true + Classes: + Fourth: true + Locations: + Head_Top: true + ArmorLevel: 2 + EquipLevelMin: 235 + Refineable: true + Gradable: true + View: 2415 + Script: | + .@g = getenchantgrade(); + .@r = getrefine(); + bonus bMatk,10*(.@r/2); + bonus bBaseAtk,10*(.@r/2); + bonus2 bSkillAtk,"ABC_FROM_THE_ABYSS_ATK",4*(.@r/3); + bonus2 bSkillAtk,"ABC_DEFT_STAB",4*(.@r/3); + if (.@r>=7) { + bonus bAspdRate,15; + if (.@r>=9) { + bonus bShortAtkRate,10; + bonus2 bMagicAtkEle,Ele_All,10; + if (.@r>=11) { + bonus bFixedCast,-300; + bonus bMatkRate,5; + bonus bAtkRate,5; + } + } + } + if (.@g>=ENCHANTGRADE_D) { + bonus bPAtk,3; + bonus bSMatk,3; + bonus bPow,5; + bonus bSpl,5; + bonus bCon,5; + if (.@g>=ENCHANTGRADE_C) { + bonus bShortAtkRate,10; + bonus2 bMagicAtkEle,Ele_All,10; + if (.@g>=ENCHANTGRADE_B) { + bonus bFixedCast,-200; + bonus bMatkRate,5; + bonus bAtkRate,5; + if (.@g>=ENCHANTGRADE_A) { + bonus bShortAtkRate,15; + bonus2 bMagicAtkEle,Ele_All,15; + bonus bPAtk,5; + bonus bSMatk,5; + } + } + } + } + - Id: 400630 + AegisName: FuriousCirclet_SH + Name: Furious Crown (Spirit Handler) + Type: Armor + Weight: 300 + Defense: 30 + Slots: 1 + Jobs: + Summoner: true + Classes: + Fourth: true + Locations: + Head_Top: true + ArmorLevel: 2 + EquipLevelMin: 235 + Refineable: true + Gradable: true + View: 2415 + Script: | + .@g = getenchantgrade(); + .@r = getrefine(); + bonus bMatk,10*(.@r/2); + bonus bBaseAtk,10*(.@r/2); + bonus2 bSkillAtk,"SH_CHUL_HO_SONIC_CLAW",4*(.@r/3); + bonus2 bSkillAtk,"SH_HYUN_ROK_CANNON",4*(.@r/3); + if (.@r>=7) { + bonus bVariableCastrate,-15; + if (.@r>=9) { + bonus bLongAtkRate,10; + bonus2 bMagicAtkEle,Ele_All,10; + if (.@r>=11) { + bonus bFixedCast,-300; + bonus bMatkRate,5; + bonus bAtkRate,5; + } + } + } + if (.@g>=ENCHANTGRADE_D) { + bonus bPAtk,3; + bonus bSMatk,3; + bonus bPow,5; + bonus bSpl,5; + bonus bCon,5; + if (.@g>=ENCHANTGRADE_C) { + bonus bLongAtkRate,10; + bonus2 bMagicAtkEle,Ele_All,10; + if (.@g>=ENCHANTGRADE_B) { + bonus bFixedCast,-200; + bonus bMatkRate,5; + bonus bAtkRate,5; + if (.@g>=ENCHANTGRADE_A) { + bonus bLongAtkRate,15; + bonus2 bMagicAtkEle,Ele_All,15; + bonus bPAtk,5; + bonus bSMatk,5; + } + } + } + } - Id: 410000 AegisName: Resonate_Taego_J Name: Ancient Resonance @@ -206990,6 +207160,126 @@ Body: } } } + - Id: 510150 + AegisName: Demonius_Furious + Name: Furious Demonius + Type: Weapon + SubType: Dagger + Weight: 1400 + Attack: 180 + Range: 1 + Slots: 2 + Jobs: + Rogue: true + Classes: + Fourth: true + Locations: + Right_Hand: true + WeaponLevel: 5 + EquipLevelMin: 205 + Refineable: true + Gradable: true + Script: | + .@g = getenchantgrade(); + .@r = getrefine(); + bonus2 bSkillAtk,"ABC_DEFT_STAB",5; + if (BaseLevel>=210) { + bonus bAtkRate,4; + bonus bBaseAtk,40; + } + if (BaseLevel>=220) { + bonus2 bSkillAtk,"ABC_DEFT_STAB",5; + } + if (BaseLevel>=230) { + bonus2 bAddSize,Size_All,10; + } + if (.@r>=7) { + bonus bShortAtkRate,10; + if (.@r>=9) { + bonus2 bSkillAtk,"ABC_DEFT_STAB",10; + if (.@r>=10) { + bonus bDelayrate,-10; + if (.@r>=11) { + bonus2 bSkillAtk,"ABC_DEFT_STAB",10; + } + } + } + } + if (.@g>=ENCHANTGRADE_D) { + bonus bShortAtkRate,15; + if (.@g>=ENCHANTGRADE_C) { + bonus2 bSkillAtk,"ABC_DEFT_STAB",5; + if (.@g>=ENCHANTGRADE_B) { + bonus2 bSkillAtk,"ABC_DEFT_STAB",10; + if (.@g>=ENCHANTGRADE_A) { + bonus bPAtk,3*(.@r/2); + bonus bAtkRate,3*(.@r/2); + } + } + } + } + - Id: 510151 + AegisName: Demonsword_Furious + Name: Furious Demon Sword + Type: Weapon + SubType: Dagger + Weight: 1400 + Attack: 140 + MagicAttack: 180 + Range: 1 + Slots: 2 + Jobs: + Rogue: true + Classes: + Fourth: true + Locations: + Right_Hand: true + WeaponLevel: 5 + EquipLevelMin: 205 + Refineable: true + Gradable: true + Script: | + .@g = getenchantgrade(); + .@r = getrefine(); + bonus2 bSkillAtk,"ABC_FROM_THE_ABYSS_ATK",10; + if (BaseLevel>=210) { + bonus bMatkRate,4; + bonus bMatk,40; + } + if (BaseLevel>=220) { + bonus2 bSkillAtk,"ABC_FROM_THE_ABYSS_ATK",5; + } + if (BaseLevel>=230) { + bonus2 bMagicAddSize,Size_All,10; + } + if (.@r>=7) { + bonus2 bMagicAtkEle,Ele_Fire,10; + bonus2 bMagicAtkEle,Ele_Neutral,10; + if (.@r>=9) { + bonus bAspdRate,10; + if (.@r>=10) { + bonus2 bMagicAtkEle,Ele_Fire,10; + bonus2 bMagicAtkEle,Ele_Neutral,10; + if (.@r>=11) { + bonus2 bSkillAtk,"ABC_FROM_THE_ABYSS_ATK",10; + } + } + } + } + if (.@g>=ENCHANTGRADE_D) { + bonus2 bMagicAtkEle,Ele_Fire,10; + bonus2 bMagicAtkEle,Ele_Neutral,10; + if (.@g>=ENCHANTGRADE_C) { + bonus2 bSkillAtk,"ABC_FROM_THE_ABYSS_ATK",5; + if (.@g>=ENCHANTGRADE_B) { + bonus2 bSkillAtk,"ABC_FROM_THE_ABYSS_ATK",10; + if (.@g>=ENCHANTGRADE_A) { + bonus bSMatk,3*(.@r/2); + bonus bMatkRate,3*(.@r/2); + } + } + } + } - Id: 520000 AegisName: Boost_Axe Name: Booster Axe @@ -215900,6 +216190,143 @@ Body: } } } + - Id: 550143 + AegisName: Foxtail_Furious + Name: Furious Foxtail + Type: Weapon + SubType: Staff + Weight: 1600 + Attack: 380 + Range: 1 + Slots: 2 + Jobs: + Summoner: true + Classes: + Fourth: true + Locations: + Right_Hand: true + WeaponLevel: 5 + EquipLevelMin: 205 + Refineable: true + Gradable: true + Script: | + .@g = getenchantgrade(); + .@r = getrefine(); + bonus bUnbreakableWeapon; + bonus2 bSkillAtk,"SH_CHUL_HO_SONIC_CLAW",5; + if (BaseLevel>=210) { + bonus bAtkRate,4; + bonus bBaseAtk,40; + } + if (BaseLevel>=220) { + bonus2 bSkillAtk,"SH_CHUL_HO_SONIC_CLAW",5; + } + if (BaseLevel>=230) { + bonus2 bAddSize,Size_All,10; + } + if (.@r>=7) { + bonus bCritAtkRate,10; + if (.@r>=9) { + bonus2 bSkillAtk,"SH_CHUL_HO_SONIC_CLAW",10; + if (.@r>=10) { + bonus bDelayrate,-10; + if (.@r>=11) { + bonus2 bSkillAtk,"SH_CHUL_HO_SONIC_CLAW",10; + } + } + } + } + if (.@g>=ENCHANTGRADE_D) { + bonus bCritAtkRate,15; + if (.@g>=ENCHANTGRADE_C) { + bonus2 bSkillAtk,"SH_CHUL_HO_SONIC_CLAW",5; + if (.@g>=ENCHANTGRADE_B) { + bonus2 bSkillAtk,"SH_CHUL_HO_SONIC_CLAW",10; + if (.@g>=ENCHANTGRADE_A) { + bonus bPAtk,3*(.@r/2); + bonus bAtkRate,3*(.@r/2); + } + } + } + } + - Id: 550144 + AegisName: Setaria_Furious + Name: Furious Foxtail Model + Type: Weapon + SubType: Staff + Weight: 1600 + Attack: 180 + MagicAttack: 380 + Range: 1 + Slots: 2 + Jobs: + Summoner: true + Classes: + Fourth: true + Locations: + Right_Hand: true + WeaponLevel: 5 + EquipLevelMin: 205 + Refineable: true + Gradable: true + Script: | + .@g = getenchantgrade(); + .@r = getrefine(); + bonus bUnbreakableWeapon; + bonus2 bSkillAtk,"SH_HYUN_ROK_CANNON",5; + if (BaseLevel>=210) { + bonus bMatkRate,4; + bonus bMatk,40; + } + if (BaseLevel>=220) { + bonus2 bSkillAtk,"SH_HYUN_ROK_CANNON",5; + } + if (BaseLevel>=230) { + bonus2 bMagicAddSize,Size_All,10; + } + if (.@r>=7) { + bonus2 bMagicAtkEle,Ele_Holy,10; + bonus2 bMagicAtkEle,Ele_Fire,10; + bonus2 bMagicAtkEle,Ele_Neutral,10; + bonus2 bMagicAtkEle,Ele_Earth,10; + bonus2 bMagicAtkEle,Ele_Water,10; + bonus2 bMagicAtkEle,Ele_Wind,10; + bonus2 bMagicAtkEle,Ele_Dark,10; + if (.@r>=9) { + bonus2 bSkillAtk,"SH_HYUN_ROK_CANNON",10; + if (.@r>=10) { + bonus2 bMagicAtkEle,Ele_Holy,10; + bonus2 bMagicAtkEle,Ele_Fire,10; + bonus2 bMagicAtkEle,Ele_Neutral,10; + bonus2 bMagicAtkEle,Ele_Earth,10; + bonus2 bMagicAtkEle,Ele_Water,10; + bonus2 bMagicAtkEle,Ele_Wind,10; + bonus2 bMagicAtkEle,Ele_Dark,10; + if (.@r>=11) { + bonus2 bSkillAtk,"SH_HYUN_ROK_CANNON",10; + } + } + } + } + if (.@g>=ENCHANTGRADE_D) { + bonus2 bMagicAtkEle,Ele_Holy,10; + bonus2 bMagicAtkEle,Ele_Fire,10; + bonus2 bMagicAtkEle,Ele_Neutral,10; + bonus2 bMagicAtkEle,Ele_Earth,10; + bonus2 bMagicAtkEle,Ele_Water,10; + bonus2 bMagicAtkEle,Ele_Wind,10; + bonus2 bMagicAtkEle,Ele_Dark,10; + if (.@g>=ENCHANTGRADE_C) { + bonus2 bSkillAtk,"SH_HYUN_ROK_CANNON",5; + if (.@g>=ENCHANTGRADE_B) { + bonus2 bSkillAtk,"SH_HYUN_ROK_CANNON",10; + if (.@g>=ENCHANTGRADE_A) { + bonus bSMatk,3*(.@r/2); + bonus bMatkRate,3*(.@r/2); + } + } + } + } - Id: 560000 AegisName: Boost_Knuckle Name: Booster Knuckles @@ -223126,6 +223553,64 @@ Body: } } } + - Id: 600059 + AegisName: Slayer_Furious + Name: Furious Slayer + Type: Weapon + SubType: 2hSword + Weight: 3500 + Attack: 260 + Range: 1 + Slots: 2 + Jobs: + Knight: true + Classes: + Fourth: true + Locations: + Both_Hand: true + WeaponLevel: 5 + EquipLevelMin: 205 + Refineable: true + Gradable: true + Script: | + .@g = getenchantgrade(); + .@r = getrefine(); + bonus2 bSkillAtk,"DK_SERVANTWEAPON_ATK",10; + if (BaseLevel>=210) { + bonus bAtkRate,7; + bonus bBaseAtk,70; + } + if (BaseLevel>=220) { + bonus2 bSkillAtk,"DK_SERVANTWEAPON_ATK",5; + } + if (BaseLevel>=230) { + bonus2 bAddSize,Size_All,10; + } + if (.@r>=7) { + bonus bCritAtkRate,10; + if (.@r>=9) { + bonus bAspdRate,15; + if (.@r>=10) { + bonus bCritical,10; + if (.@r>=11) { + bonus2 bSkillAtk,"DK_SERVANTWEAPON_ATK",10; + } + } + } + } + if (.@g>=ENCHANTGRADE_D) { + bonus bCritAtkRate,15; + if (.@g>=ENCHANTGRADE_C) { + bonus2 bSkillAtk,"DK_SERVANTWEAPON_ATK",5; + if (.@g>=ENCHANTGRADE_B) { + bonus2 bSkillAtk,"DK_SERVANTWEAPON_ATK",10; + if (.@g>=ENCHANTGRADE_A) { + bonus bPAtk,4*(.@r/2); + bonus bAtkRate,4*(.@r/2); + } + } + } + } - Id: 610000 AegisName: Boost_Katar Name: Booster Katar @@ -226193,6 +226678,64 @@ Body: WeaponLevel: 3 EquipLevelMin: 33 Refineable: true + - Id: 630045 + AegisName: Trident_Furious + Name: Furious Trident + Type: Weapon + SubType: 2hSpear + Weight: 8500 + Attack: 260 + Range: 3 + Slots: 2 + Jobs: + Knight: true + Classes: + Fourth: true + Locations: + Both_Hand: true + WeaponLevel: 5 + EquipLevelMin: 205 + Refineable: true + Gradable: true + Script: | + .@g = getenchantgrade(); + .@r = getrefine(); + bonus2 bSkillAtk,"DK_MADNESS_CRUSHER",5; + if (BaseLevel>=210) { + bonus bAtkRate,7; + bonus bBaseAtk,70; + } + if (BaseLevel>=220) { + bonus2 bSkillAtk,"DK_MADNESS_CRUSHER",5; + } + if (BaseLevel>=230) { + bonus2 bAddSize,Size_All,10; + } + if (.@r>=7) { + bonus bLongAtkRate,10; + if (.@r>=9) { + bonus2 bSkillAtk,"DK_MADNESS_CRUSHER",10; + if (.@r>=10) { + bonus bDelayrate,-10; + if (.@r>=11) { + bonus2 bSkillAtk,"DK_MADNESS_CRUSHER",10; + } + } + } + } + if (.@g>=ENCHANTGRADE_D) { + bonus bLongAtkRate,15; + if (.@g>=ENCHANTGRADE_C) { + bonus2 bSkillAtk,"DK_MADNESS_CRUSHER",5; + if (.@g>=ENCHANTGRADE_B) { + bonus2 bSkillAtk,"DK_MADNESS_CRUSHER",10; + if (.@g>=ENCHANTGRADE_A) { + bonus bPAtk,4*(.@r/2); + bonus bAtkRate,4*(.@r/2); + } + } + } + } - Id: 640000 AegisName: Boost_Staff Name: Booster Staff diff --git a/db/re/item_db_etc.yml b/db/re/item_db_etc.yml index 71bc63671c..1d4d375291 100644 --- a/db/re/item_db_etc.yml +++ b/db/re/item_db_etc.yml @@ -86070,6 +86070,20 @@ Body: Name: Nightwatch Stone (Garment) # !todo check english name Type: Etc Weight: 100 + - Id: 1001668 + AegisName: 2403_ev_Dalcom + Name: Sweet Coin # !todo check english name + Type: Etc + Weight: 1 + Flags: + BuyingStore: true + - Id: 1001684 + AegisName: 2403_ev_Spray_4 + Name: Flower branch # !todo check english name + Type: Etc + Weight: 1 + Flags: + BuyingStore: true - Id: 1220001 AegisName: Kunai Name: Kunai diff --git a/db/re/item_db_usable.yml b/db/re/item_db_usable.yml index 9a8df21f0f..17985e89fb 100644 --- a/db/re/item_db_usable.yml +++ b/db/re/item_db_usable.yml @@ -66207,12 +66207,40 @@ Body: BuyingStore: true Script: | laphine_upgrade(); + - Id: 101801 + AegisName: R_Bearers_Select_Box + Name: Road Bearers Shadow Selection Box # !todo check english name + Type: DelayConsume + Weight: 10 + Flags: + BuyingStore: true + - Id: 101806 + AegisName: Hasty_Select_Box + Name: Hasty Shadow Selection Box # !todo check english name + Type: DelayConsume + Weight: 10 + Flags: + BuyingStore: true - Id: 101816 AegisName: Dimmen_A_Refine Name: Dimension Enhancer # !todo check english name Type: DelayConsume Script: | item_reform(); + - Id: 101856 + AegisName: MAutoSpell_Select_Box + Name: Major Auto Spell Shadow Selection Box # !todo check english name + Type: DelayConsume + Weight: 10 + Flags: + BuyingStore: true + - Id: 101862 + AegisName: Infinity_Select_Box + Name: Infinity Shadow Selection Box # !todo check english name + Type: DelayConsume + Weight: 10 + Flags: + BuyingStore: true - Id: 101876 AegisName: aegis_101876 Name: Costume Enchant Stone Box 29 @@ -66222,6 +66250,20 @@ Body: Container: true Script: | getgroupitem(IG_Enchant_Stone_Box29); + - Id: 101919 + AegisName: EXP_Select_Box + Name: Experience Shadow Selection Box # !todo check english name + Type: DelayConsume + Weight: 10 + Flags: + BuyingStore: true + - Id: 101922 + AegisName: M_Blitz_Select_Box + Name: Mega Blitz Shadow Selection Box # !todo check english name + Type: DelayConsume + Weight: 10 + Flags: + BuyingStore: true - Id: 101933 AegisName: Barmund_Soul_Reform Name: Soul Rune Upgrade # !todo check english name @@ -66672,6 +66714,11 @@ Body: BuyingStore: true Script: | item_reform(); + - Id: 102084 + AegisName: GoodnEvil_Circlet_Box + Name: Crown of Good and Evil (Night Watch) Selection Box # !todo check english name + Type: DelayConsume + Weight: 10 - Id: 102121 AegisName: aegis_102121 Name: "[Scroll] AGI Biscuit Stick" @@ -66705,6 +66752,61 @@ Body: Container: true Script: | getgroupitem(IG_Enchant_Stone_Box30); + - Id: 102213 + AegisName: Hero_Weapon_Up_S_Box + Name: Hero's Weapon Mod Selection Box # !todo check english name + Type: DelayConsume + Weight: 10 + - Id: 102214 + AegisName: Hero_Weapon_Hammer_S + Name: Modified Hero's Weapon Refining Hammer S # !todo check english name + Type: DelayConsume + Weight: 10 + - Id: 102215 + AegisName: aegis_102215 + Name: 12 refine selection cube # !todo check english name + Type: DelayConsume + Weight: 10 + - Id: 102216 + AegisName: aegis_102216 + Name: 11 refine selection cube # !todo check english name + Type: DelayConsume + Weight: 10 + - Id: 102217 + AegisName: Hero_Weapon_S_Box_1 + Name: Ancient Hero's Weapon Selector I # !todo check english name + Type: DelayConsume + Weight: 10 + - Id: 102218 + AegisName: Hero_Weapon_S_Box_2 + Name: Ancient Hero's Weapon Selector II # !todo check english name + Type: DelayConsume + Weight: 10 + - Id: 102219 + AegisName: Hero_Weapon_S_Box_3 + Name: Ancient Hero's Weapon Selector III # !todo check english name + Type: DelayConsume + Weight: 10 + - Id: 102220 + AegisName: Hero_Weapon_S_Box_4 + Name: Ancient Hero's Weapon Selector IV # !todo check english name + Type: DelayConsume + Weight: 10 + - Id: 102221 + AegisName: Hero_Weapon_S_Box_5 + Name: Ancient Hero's Weapon Selection Box V # !todo check english name + Type: DelayConsume + Weight: 10 + - Id: 102222 + AegisName: Hero_Weapon_S_Box_6 + Name: Ancient Hero's Weapon Selection Box VI # !todo check english name + Type: DelayConsume + Weight: 10 + - Id: 102223 + AegisName: Hero_Weapon_S_Box_7 + Name: Ancient Hero's Weapon Selection Box VII # !todo check english name + Type: DelayConsume + Weight: 10 - Id: 102224 AegisName: Hero_Up_Cube_11 Name: +11 Ancient Hero Armor Opening Cube # !todo check english name @@ -66772,6 +66874,18 @@ Body: BuyingStore: true Script: | laphine_synthesis(); + - Id: 102306 + AegisName: 2023_Spring_Select + Name: 2023 Spring Reward Outfit Selection Box # !todo check english name + Type: DelayConsume + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 102308 AegisName: Bs_Item_M_S_61 Name: Beelzebub's Crown Recipe @@ -66820,6 +66934,18 @@ Body: Container: true Script: | /* TODO getgroupitem(IG_THIRD_JOB_STONE_GARMENT_BOX3); */ + - Id: 102338 + AegisName: RO_Concert_Scroll2 + Name: RO Concert Costume Selection Box # !todo check english name + Type: DelayConsume + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 102342 AegisName: Loki_Advice_3 Name: Loki's advice (distance physics) # !todo check english name @@ -66913,6 +67039,18 @@ Body: Container: true Script: | getgroupitem(IG_Enchant_Stone_Box32); + - Id: 102467 + AegisName: 21th_Costume_Select + Name: 21st Anniversary Costume Selection Box # !todo check english name + Type: DelayConsume + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 102482 AegisName: FateSin_Boots_Hammer Name: Boots of Good and Evil Smelting Hammer # !todo check english name @@ -66922,6 +67060,21 @@ Body: BuyingStore: true Script: | item_reform(); + - Id: 102514 + AegisName: Season_H_Upgrade + Name: Granting the truth of the Circulation of life + Type: DelayConsume + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + item_reform(); - Id: 102580 AegisName: aegis_102580 Name: Ponytail Gift Box @@ -66940,6 +67093,118 @@ Body: Container: true Script: | getgroupitem(IG_Enchant_Stone_Box33); + - Id: 102631 + AegisName: Cinnamon_Costume_Box + Name: Cinnamoroll Costume Selection Box + Type: DelayConsume + Weight: 100 + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 102668 + AegisName: Dimen_W_Refine + Name: Dimensions Weapon Refinement Device + Type: DelayConsume + Weight: 200 + EquipLevelMin: 250 + Flags: + BuyingStore: true + DropEffect: CLIENT + Script: | + item_reform(); + - Id: 102676 + AegisName: Loki_Coin_4 + Name: Loki's Golden Coin + Type: DelayConsume + Weight: 10 + Flags: + BuyingStore: true + Script: | + laphine_upgrade(); + - Id: 102677 + AegisName: Loki_Advice_4 + Name: Loki's Advice (Defense) + Type: DelayConsume + Weight: 10 + Flags: + BuyingStore: true + Script: | + laphine_upgrade(); + - Id: 102732 + AegisName: IsgardCrown_Box + Name: Issgard Crown Selection Box + Type: DelayConsume + Flags: + BuyingStore: true + - Id: 102733 + AegisName: AceCard_Box + Name: Ace Card in Mouth Selection Box + Type: DelayConsume + Flags: + BuyingStore: true + - Id: 102734 + AegisName: Loki_Coin_Box + Name: Loki's Coin Selection Box + Type: DelayConsume + Flags: + BuyingStore: true + - Id: 102735 + AegisName: Loki_Advice_Box + Name: Loki's Advice Selection Box + Type: DelayConsume + Flags: + BuyingStore: true + - Id: 102771 + AegisName: 2023_Xmas_Costume + Name: Christmas Costume Selection Package + Type: DelayConsume + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 102812 + AegisName: 10AllMighty_Select_Box + Name: +10 Almighty Shadow Selection Box + Type: DelayConsume + Weight: 10 + Flags: + BuyingStore: true + - Id: 102815 + AegisName: R_Sealed_Card + Name: Sealed Card Converter + Type: DelayConsume + Script: | + laphine_synthesis(); + - Id: 102900 + AegisName: Refine_Furious + Name: Furious Refine Stone + Type: DelayConsume + Weight: 10 + Flags: + BuyingStore: true + Script: | + item_reform(); + - Id: 102949 + AegisName: Sonic_Costume_Pack + Name: Sonic Costume Selection Box # !todo check english name + Type: DelayConsume + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 200003 AegisName: LI_HD_Oridecon_Box2 Name: (Limited) HD Oridecon Box(Blacksmith)(30) diff --git a/db/re/item_enchant.yml b/db/re/item_enchant.yml index 45bfdf00c5..261e6a6854 100644 --- a/db/re/item_enchant.yml +++ b/db/re/item_enchant.yml @@ -4774,212 +4774,963 @@ Body: Chance: 300 - Item: Star_Cluster_Of_Wis3 Chance: 900 - - Id: 13 - TargetItems: - Signet_Of_Pow_Star: true - Signet_Of_Sta_Star: true - Signet_Of_Con_Star: true - Signet_Of_Crt_Star: true - Signet_Of_Spl_Star: true - Signet_Of_Wis_Star: true - Reset: - Chance: 80000 - Price: 500000 - Materials: - - Material: Meteorite_Dust - Amount: 30 - Order: - - Slot: 3 - - Slot: 2 - Slots: - - Slot: 3 - Price: 300000 - Materials: - - Material: Meteorite_Fragment - Amount: 5 - Enchants: - - Enchantgrade: 0 - Items: - - Item: Spell3 - Chance: 10000 - - Item: Expert_Archer3 - Chance: 10050 - - Item: Fighting_Spirit3 - Chance: 10050 - - Item: Sharp3 - Chance: 10050 - - Item: Spell4 - Chance: 1750 - - Item: Expert_Archer4 - Chance: 1750 - - Item: Fighting_Spirit4 - Chance: 1750 - - Item: Sharp4 - Chance: 1750 - - Item: Star_Of_Mettle1 - Chance: 4000 - - Item: Star_Of_MasterArcher1 - Chance: 4000 - - Item: Star_Of_Sharp1 - Chance: 4000 - - Item: Star_Of_Spell1 - Chance: 4000 - - Item: Star_Of_Speed1 - Chance: 4000 - - Item: Star_Of_Vital1 - Chance: 4000 - - Item: Star_Of_Spirit1 - Chance: 4000 - - Item: Star_Of_Mettle2 - Chance: 2000 - - Item: Star_Of_MasterArcher2 - Chance: 2000 - - Item: Star_Of_Sharp2 - Chance: 2000 - - Item: Star_Of_Spell2 - Chance: 2000 - - Item: Star_Of_Speed2 - Chance: 2000 - - Item: Star_Of_Vital2 - Chance: 2000 - - Item: Star_Of_Spirit2 - Chance: 2000 - - Item: Star_Of_Mettle3 - Chance: 1250 - - Item: Star_Of_MasterArcher3 - Chance: 1250 - - Item: Star_Of_Sharp3 - Chance: 1250 - - Item: Star_Of_Spell3 - Chance: 1250 - - Item: Star_Of_Speed3 - Chance: 1250 - - Item: Star_Of_Vital3 - Chance: 1250 - - Item: Star_Of_Spirit3 - Chance: 1250 - - Item: Star_Of_Mettle4 - Chance: 250 - - Item: Star_Of_MasterArcher4 - Chance: 250 - - Item: Star_Of_Sharp4 - Chance: 250 - - Item: Star_Of_Spell4 - Chance: 250 - - Item: Star_Of_Speed4 - Chance: 250 - - Item: Star_Of_Vital4 - Chance: 250 - - Item: Star_Of_Spirit4 - Chance: 250 - - Item: Star_Of_Mettle5 - Chance: 50 - - Item: Star_Of_MasterArcher5 - Chance: 50 - - Item: Star_Of_Sharp5 - Chance: 50 - - Item: Star_Of_Spell5 - Chance: 50 - - Item: Star_Of_Speed5 - Chance: 50 - - Item: Star_Of_Vital5 - Chance: 50 - - Item: Star_Of_Spirit5 - Chance: 50 - - Slot: 2 - Price: 500000 - Materials: - - Material: Meteorite_Fragment - Amount: 10 - Enchants: - - Enchantgrade: 0 - Items: - - Item: Spell3 - Chance: 10000 - - Item: Expert_Archer3 - Chance: 10050 - - Item: Fighting_Spirit3 - Chance: 10050 - - Item: Sharp3 - Chance: 10050 - - Item: Spell4 - Chance: 1750 - - Item: Expert_Archer4 - Chance: 1750 - - Item: Fighting_Spirit4 - Chance: 1750 - - Item: Sharp4 - Chance: 1750 - - Item: Star_Of_Mettle1 - Chance: 4000 - - Item: Star_Of_MasterArcher1 - Chance: 4000 - - Item: Star_Of_Sharp1 - Chance: 4000 - - Item: Star_Of_Spell1 - Chance: 4000 - - Item: Star_Of_Speed1 - Chance: 4000 - - Item: Star_Of_Vital1 - Chance: 4000 - - Item: Star_Of_Spirit1 - Chance: 4000 - - Item: Star_Of_Mettle2 - Chance: 2000 - - Item: Star_Of_MasterArcher2 - Chance: 2000 - - Item: Star_Of_Sharp2 - Chance: 2000 - - Item: Star_Of_Spell2 - Chance: 2000 - - Item: Star_Of_Speed2 - Chance: 2000 - - Item: Star_Of_Vital2 - Chance: 2000 - - Item: Star_Of_Spirit2 - Chance: 2000 - - Item: Star_Of_Mettle3 - Chance: 1250 - - Item: Star_Of_MasterArcher3 - Chance: 1250 - - Item: Star_Of_Sharp3 - Chance: 1250 - - Item: Star_Of_Spell3 - Chance: 1250 - - Item: Star_Of_Speed3 - Chance: 1250 - - Item: Star_Of_Vital3 - Chance: 1250 - - Item: Star_Of_Spirit3 - Chance: 1250 - - Item: Star_Of_Mettle4 - Chance: 250 - - Item: Star_Of_MasterArcher4 - Chance: 250 - - Item: Star_Of_Sharp4 - Chance: 250 - - Item: Star_Of_Spell4 - Chance: 250 - - Item: Star_Of_Speed4 - Chance: 250 - - Item: Star_Of_Vital4 - Chance: 250 - - Item: Star_Of_Spirit4 - Chance: 250 - - Item: Star_Of_Mettle5 - Chance: 50 - - Item: Star_Of_MasterArcher5 - Chance: 50 - - Item: Star_Of_Sharp5 - Chance: 50 - - Item: Star_Of_Spell5 - Chance: 50 - - Item: Star_Of_Speed5 - Chance: 50 - - Item: Star_Of_Vital5 - Chance: 50 - - Item: Star_Of_Spirit5 - Chance: 50 +# - Id: 13 # Skipped (some fields are not supported on rAthena for now) +# TargetItems: +# Signet_Of_Pow_Star: true +# Signet_Of_Sta_Star: true +# Signet_Of_Con_Star: true +# Signet_Of_Crt_Star: true +# Signet_Of_Spl_Star: true +# Signet_Of_Wis_Star: true +# Reset: +# Chance: 80000 +# Price: 500000 +# Materials: +# - Material: Meteorite_Dust +# Amount: 30 +# Order: +# - Slot: 3 +# - Slot: 2 +# - Slot: 1 +# Slots: +# - Slot: 3 +# Price: 300000 +# Materials: +# - Material: Meteorite_Fragment +# Amount: 5 +# Enchants: +# - Enchantgrade: 0 +# Items: +# - Item: Spell3 +# Chance: 10000 +# - Item: Expert_Archer3 +# Chance: 10050 +# - Item: Fighting_Spirit3 +# Chance: 10050 +# - Item: Sharp3 +# Chance: 10050 +# - Item: Spell4 +# Chance: 1750 +# - Item: Expert_Archer4 +# Chance: 1750 +# - Item: Fighting_Spirit4 +# Chance: 1750 +# - Item: Sharp4 +# Chance: 1750 +# - Item: Star_Of_Mettle1 +# Chance: 4000 +# - Item: Star_Of_MasterArcher1 +# Chance: 4000 +# - Item: Star_Of_Sharp1 +# Chance: 4000 +# - Item: Star_Of_Spell1 +# Chance: 4000 +# - Item: Star_Of_Speed1 +# Chance: 4000 +# - Item: Star_Of_Vital1 +# Chance: 4000 +# - Item: Star_Of_Spirit1 +# Chance: 4000 +# - Item: Star_Of_Mettle2 +# Chance: 2000 +# - Item: Star_Of_MasterArcher2 +# Chance: 2000 +# - Item: Star_Of_Sharp2 +# Chance: 2000 +# - Item: Star_Of_Spell2 +# Chance: 2000 +# - Item: Star_Of_Speed2 +# Chance: 2000 +# - Item: Star_Of_Vital2 +# Chance: 2000 +# - Item: Star_Of_Spirit2 +# Chance: 2000 +# - Item: Star_Of_Mettle3 +# Chance: 1250 +# - Item: Star_Of_MasterArcher3 +# Chance: 1250 +# - Item: Star_Of_Sharp3 +# Chance: 1250 +# - Item: Star_Of_Spell3 +# Chance: 1250 +# - Item: Star_Of_Speed3 +# Chance: 1250 +# - Item: Star_Of_Vital3 +# Chance: 1250 +# - Item: Star_Of_Spirit3 +# Chance: 1250 +# - Item: Star_Of_Mettle4 +# Chance: 250 +# - Item: Star_Of_MasterArcher4 +# Chance: 250 +# - Item: Star_Of_Sharp4 +# Chance: 250 +# - Item: Star_Of_Spell4 +# Chance: 250 +# - Item: Star_Of_Speed4 +# Chance: 250 +# - Item: Star_Of_Vital4 +# Chance: 250 +# - Item: Star_Of_Spirit4 +# Chance: 250 +# - Item: Star_Of_Mettle5 +# Chance: 50 +# - Item: Star_Of_MasterArcher5 +# Chance: 50 +# - Item: Star_Of_Sharp5 +# Chance: 50 +# - Item: Star_Of_Spell5 +# Chance: 50 +# - Item: Star_Of_Speed5 +# Chance: 50 +# - Item: Star_Of_Vital5 +# Chance: 50 +# - Item: Star_Of_Spirit5 +# Chance: 50 +# - Enchantgrade: 1 +# Items: +# - Item: Spell3 +# Chance: 10000 +# - Item: Expert_Archer3 +# Chance: 10050 +# - Item: Fighting_Spirit3 +# Chance: 10050 +# - Item: Sharp3 +# Chance: 10050 +# - Item: Spell4 +# Chance: 1750 +# - Item: Expert_Archer4 +# Chance: 1750 +# - Item: Fighting_Spirit4 +# Chance: 1750 +# - Item: Sharp4 +# Chance: 1750 +# - Item: Star_Of_Mettle1 +# Chance: 4000 +# - Item: Star_Of_MasterArcher1 +# Chance: 4000 +# - Item: Star_Of_Sharp1 +# Chance: 4000 +# - Item: Star_Of_Spell1 +# Chance: 4000 +# - Item: Star_Of_Speed1 +# Chance: 4000 +# - Item: Star_Of_Vital1 +# Chance: 4000 +# - Item: Star_Of_Spirit1 +# Chance: 4000 +# - Item: Star_Of_Mettle2 +# Chance: 2000 +# - Item: Star_Of_MasterArcher2 +# Chance: 2000 +# - Item: Star_Of_Sharp2 +# Chance: 2000 +# - Item: Star_Of_Spell2 +# Chance: 2000 +# - Item: Star_Of_Speed2 +# Chance: 2000 +# - Item: Star_Of_Vital2 +# Chance: 2000 +# - Item: Star_Of_Spirit2 +# Chance: 2000 +# - Item: Star_Of_Mettle3 +# Chance: 1250 +# - Item: Star_Of_MasterArcher3 +# Chance: 1250 +# - Item: Star_Of_Sharp3 +# Chance: 1250 +# - Item: Star_Of_Spell3 +# Chance: 1250 +# - Item: Star_Of_Speed3 +# Chance: 1250 +# - Item: Star_Of_Vital3 +# Chance: 1250 +# - Item: Star_Of_Spirit3 +# Chance: 1250 +# - Item: Star_Of_Mettle4 +# Chance: 250 +# - Item: Star_Of_MasterArcher4 +# Chance: 250 +# - Item: Star_Of_Sharp4 +# Chance: 250 +# - Item: Star_Of_Spell4 +# Chance: 250 +# - Item: Star_Of_Speed4 +# Chance: 250 +# - Item: Star_Of_Vital4 +# Chance: 250 +# - Item: Star_Of_Spirit4 +# Chance: 250 +# - Item: Star_Of_Mettle5 +# Chance: 50 +# - Item: Star_Of_MasterArcher5 +# Chance: 50 +# - Item: Star_Of_Sharp5 +# Chance: 50 +# - Item: Star_Of_Spell5 +# Chance: 50 +# - Item: Star_Of_Speed5 +# Chance: 50 +# - Item: Star_Of_Vital5 +# Chance: 50 +# - Item: Star_Of_Spirit5 +# Chance: 50 +# - Enchantgrade: 2 +# Items: +# - Item: Spell3 +# Chance: 10000 +# - Item: Expert_Archer3 +# Chance: 10050 +# - Item: Fighting_Spirit3 +# Chance: 10050 +# - Item: Sharp3 +# Chance: 10050 +# - Item: Spell4 +# Chance: 1750 +# - Item: Expert_Archer4 +# Chance: 1750 +# - Item: Fighting_Spirit4 +# Chance: 1750 +# - Item: Sharp4 +# Chance: 1750 +# - Item: Star_Of_Mettle1 +# Chance: 4000 +# - Item: Star_Of_MasterArcher1 +# Chance: 4000 +# - Item: Star_Of_Sharp1 +# Chance: 4000 +# - Item: Star_Of_Spell1 +# Chance: 4000 +# - Item: Star_Of_Speed1 +# Chance: 4000 +# - Item: Star_Of_Vital1 +# Chance: 4000 +# - Item: Star_Of_Spirit1 +# Chance: 4000 +# - Item: Star_Of_Mettle2 +# Chance: 2000 +# - Item: Star_Of_MasterArcher2 +# Chance: 2000 +# - Item: Star_Of_Sharp2 +# Chance: 2000 +# - Item: Star_Of_Spell2 +# Chance: 2000 +# - Item: Star_Of_Speed2 +# Chance: 2000 +# - Item: Star_Of_Vital2 +# Chance: 2000 +# - Item: Star_Of_Spirit2 +# Chance: 2000 +# - Item: Star_Of_Mettle3 +# Chance: 1250 +# - Item: Star_Of_MasterArcher3 +# Chance: 1250 +# - Item: Star_Of_Sharp3 +# Chance: 1250 +# - Item: Star_Of_Spell3 +# Chance: 1250 +# - Item: Star_Of_Speed3 +# Chance: 1250 +# - Item: Star_Of_Vital3 +# Chance: 1250 +# - Item: Star_Of_Spirit3 +# Chance: 1250 +# - Item: Star_Of_Mettle4 +# Chance: 250 +# - Item: Star_Of_MasterArcher4 +# Chance: 250 +# - Item: Star_Of_Sharp4 +# Chance: 250 +# - Item: Star_Of_Spell4 +# Chance: 250 +# - Item: Star_Of_Speed4 +# Chance: 250 +# - Item: Star_Of_Vital4 +# Chance: 250 +# - Item: Star_Of_Spirit4 +# Chance: 250 +# - Item: Star_Of_Mettle5 +# Chance: 50 +# - Item: Star_Of_MasterArcher5 +# Chance: 50 +# - Item: Star_Of_Sharp5 +# Chance: 50 +# - Item: Star_Of_Spell5 +# Chance: 50 +# - Item: Star_Of_Speed5 +# Chance: 50 +# - Item: Star_Of_Vital5 +# Chance: 50 +# - Item: Star_Of_Spirit5 +# Chance: 50 +# - Enchantgrade: 3 +# Items: +# - Item: Spell3 +# Chance: 10000 +# - Item: Expert_Archer3 +# Chance: 10050 +# - Item: Fighting_Spirit3 +# Chance: 10050 +# - Item: Sharp3 +# Chance: 10050 +# - Item: Spell4 +# Chance: 1750 +# - Item: Expert_Archer4 +# Chance: 1750 +# - Item: Fighting_Spirit4 +# Chance: 1750 +# - Item: Sharp4 +# Chance: 1750 +# - Item: Star_Of_Mettle1 +# Chance: 4000 +# - Item: Star_Of_MasterArcher1 +# Chance: 4000 +# - Item: Star_Of_Sharp1 +# Chance: 4000 +# - Item: Star_Of_Spell1 +# Chance: 4000 +# - Item: Star_Of_Speed1 +# Chance: 4000 +# - Item: Star_Of_Vital1 +# Chance: 4000 +# - Item: Star_Of_Spirit1 +# Chance: 4000 +# - Item: Star_Of_Mettle2 +# Chance: 2000 +# - Item: Star_Of_MasterArcher2 +# Chance: 2000 +# - Item: Star_Of_Sharp2 +# Chance: 2000 +# - Item: Star_Of_Spell2 +# Chance: 2000 +# - Item: Star_Of_Speed2 +# Chance: 2000 +# - Item: Star_Of_Vital2 +# Chance: 2000 +# - Item: Star_Of_Spirit2 +# Chance: 2000 +# - Item: Star_Of_Mettle3 +# Chance: 1250 +# - Item: Star_Of_MasterArcher3 +# Chance: 1250 +# - Item: Star_Of_Sharp3 +# Chance: 1250 +# - Item: Star_Of_Spell3 +# Chance: 1250 +# - Item: Star_Of_Speed3 +# Chance: 1250 +# - Item: Star_Of_Vital3 +# Chance: 1250 +# - Item: Star_Of_Spirit3 +# Chance: 1250 +# - Item: Star_Of_Mettle4 +# Chance: 250 +# - Item: Star_Of_MasterArcher4 +# Chance: 250 +# - Item: Star_Of_Sharp4 +# Chance: 250 +# - Item: Star_Of_Spell4 +# Chance: 250 +# - Item: Star_Of_Speed4 +# Chance: 250 +# - Item: Star_Of_Vital4 +# Chance: 250 +# - Item: Star_Of_Spirit4 +# Chance: 250 +# - Item: Star_Of_Mettle5 +# Chance: 50 +# - Item: Star_Of_MasterArcher5 +# Chance: 50 +# - Item: Star_Of_Sharp5 +# Chance: 50 +# - Item: Star_Of_Spell5 +# Chance: 50 +# - Item: Star_Of_Speed5 +# Chance: 50 +# - Item: Star_Of_Vital5 +# Chance: 50 +# - Item: Star_Of_Spirit5 +# Chance: 50 +# - Enchantgrade: 4 +# Items: +# - Item: Spell3 +# Chance: 10000 +# - Item: Expert_Archer3 +# Chance: 10050 +# - Item: Fighting_Spirit3 +# Chance: 10050 +# - Item: Sharp3 +# Chance: 10050 +# - Item: Spell4 +# Chance: 1750 +# - Item: Expert_Archer4 +# Chance: 1750 +# - Item: Fighting_Spirit4 +# Chance: 1750 +# - Item: Sharp4 +# Chance: 1750 +# - Item: Star_Of_Mettle1 +# Chance: 4000 +# - Item: Star_Of_MasterArcher1 +# Chance: 4000 +# - Item: Star_Of_Sharp1 +# Chance: 4000 +# - Item: Star_Of_Spell1 +# Chance: 4000 +# - Item: Star_Of_Speed1 +# Chance: 4000 +# - Item: Star_Of_Vital1 +# Chance: 4000 +# - Item: Star_Of_Spirit1 +# Chance: 4000 +# - Item: Star_Of_Mettle2 +# Chance: 2000 +# - Item: Star_Of_MasterArcher2 +# Chance: 2000 +# - Item: Star_Of_Sharp2 +# Chance: 2000 +# - Item: Star_Of_Spell2 +# Chance: 2000 +# - Item: Star_Of_Speed2 +# Chance: 2000 +# - Item: Star_Of_Vital2 +# Chance: 2000 +# - Item: Star_Of_Spirit2 +# Chance: 2000 +# - Item: Star_Of_Mettle3 +# Chance: 1250 +# - Item: Star_Of_MasterArcher3 +# Chance: 1250 +# - Item: Star_Of_Sharp3 +# Chance: 1250 +# - Item: Star_Of_Spell3 +# Chance: 1250 +# - Item: Star_Of_Speed3 +# Chance: 1250 +# - Item: Star_Of_Vital3 +# Chance: 1250 +# - Item: Star_Of_Spirit3 +# Chance: 1250 +# - Item: Star_Of_Mettle4 +# Chance: 250 +# - Item: Star_Of_MasterArcher4 +# Chance: 250 +# - Item: Star_Of_Sharp4 +# Chance: 250 +# - Item: Star_Of_Spell4 +# Chance: 250 +# - Item: Star_Of_Speed4 +# Chance: 250 +# - Item: Star_Of_Vital4 +# Chance: 250 +# - Item: Star_Of_Spirit4 +# Chance: 250 +# - Item: Star_Of_Mettle5 +# Chance: 50 +# - Item: Star_Of_MasterArcher5 +# Chance: 50 +# - Item: Star_Of_Sharp5 +# Chance: 50 +# - Item: Star_Of_Spell5 +# Chance: 50 +# - Item: Star_Of_Speed5 +# Chance: 50 +# - Item: Star_Of_Vital5 +# Chance: 50 +# - Item: Star_Of_Spirit5 +# Chance: 50 +# - Slot: 2 +# Price: 500000 +# Materials: +# - Material: Meteorite_Fragment +# Amount: 10 +# Enchants: +# - Enchantgrade: 0 +# Items: +# - Item: Spell3 +# Chance: 10000 +# - Item: Expert_Archer3 +# Chance: 10050 +# - Item: Fighting_Spirit3 +# Chance: 10050 +# - Item: Sharp3 +# Chance: 10050 +# - Item: Spell4 +# Chance: 1750 +# - Item: Expert_Archer4 +# Chance: 1750 +# - Item: Fighting_Spirit4 +# Chance: 1750 +# - Item: Sharp4 +# Chance: 1750 +# - Item: Star_Of_Mettle1 +# Chance: 4000 +# - Item: Star_Of_MasterArcher1 +# Chance: 4000 +# - Item: Star_Of_Sharp1 +# Chance: 4000 +# - Item: Star_Of_Spell1 +# Chance: 4000 +# - Item: Star_Of_Speed1 +# Chance: 4000 +# - Item: Star_Of_Vital1 +# Chance: 4000 +# - Item: Star_Of_Spirit1 +# Chance: 4000 +# - Item: Star_Of_Mettle2 +# Chance: 2000 +# - Item: Star_Of_MasterArcher2 +# Chance: 2000 +# - Item: Star_Of_Sharp2 +# Chance: 2000 +# - Item: Star_Of_Spell2 +# Chance: 2000 +# - Item: Star_Of_Speed2 +# Chance: 2000 +# - Item: Star_Of_Vital2 +# Chance: 2000 +# - Item: Star_Of_Spirit2 +# Chance: 2000 +# - Item: Star_Of_Mettle3 +# Chance: 1250 +# - Item: Star_Of_MasterArcher3 +# Chance: 1250 +# - Item: Star_Of_Sharp3 +# Chance: 1250 +# - Item: Star_Of_Spell3 +# Chance: 1250 +# - Item: Star_Of_Speed3 +# Chance: 1250 +# - Item: Star_Of_Vital3 +# Chance: 1250 +# - Item: Star_Of_Spirit3 +# Chance: 1250 +# - Item: Star_Of_Mettle4 +# Chance: 250 +# - Item: Star_Of_MasterArcher4 +# Chance: 250 +# - Item: Star_Of_Sharp4 +# Chance: 250 +# - Item: Star_Of_Spell4 +# Chance: 250 +# - Item: Star_Of_Speed4 +# Chance: 250 +# - Item: Star_Of_Vital4 +# Chance: 250 +# - Item: Star_Of_Spirit4 +# Chance: 250 +# - Item: Star_Of_Mettle5 +# Chance: 50 +# - Item: Star_Of_MasterArcher5 +# Chance: 50 +# - Item: Star_Of_Sharp5 +# Chance: 50 +# - Item: Star_Of_Spell5 +# Chance: 50 +# - Item: Star_Of_Speed5 +# Chance: 50 +# - Item: Star_Of_Vital5 +# Chance: 50 +# - Item: Star_Of_Spirit5 +# Chance: 50 +# - Enchantgrade: 1 +# Items: +# - Item: Spell3 +# Chance: 10000 +# - Item: Expert_Archer3 +# Chance: 10050 +# - Item: Fighting_Spirit3 +# Chance: 10050 +# - Item: Sharp3 +# Chance: 10050 +# - Item: Spell4 +# Chance: 1750 +# - Item: Expert_Archer4 +# Chance: 1750 +# - Item: Fighting_Spirit4 +# Chance: 1750 +# - Item: Sharp4 +# Chance: 1750 +# - Item: Star_Of_Mettle1 +# Chance: 4000 +# - Item: Star_Of_MasterArcher1 +# Chance: 4000 +# - Item: Star_Of_Sharp1 +# Chance: 4000 +# - Item: Star_Of_Spell1 +# Chance: 4000 +# - Item: Star_Of_Speed1 +# Chance: 4000 +# - Item: Star_Of_Vital1 +# Chance: 4000 +# - Item: Star_Of_Spirit1 +# Chance: 4000 +# - Item: Star_Of_Mettle2 +# Chance: 2000 +# - Item: Star_Of_MasterArcher2 +# Chance: 2000 +# - Item: Star_Of_Sharp2 +# Chance: 2000 +# - Item: Star_Of_Spell2 +# Chance: 2000 +# - Item: Star_Of_Speed2 +# Chance: 2000 +# - Item: Star_Of_Vital2 +# Chance: 2000 +# - Item: Star_Of_Spirit2 +# Chance: 2000 +# - Item: Star_Of_Mettle3 +# Chance: 1250 +# - Item: Star_Of_MasterArcher3 +# Chance: 1250 +# - Item: Star_Of_Sharp3 +# Chance: 1250 +# - Item: Star_Of_Spell3 +# Chance: 1250 +# - Item: Star_Of_Speed3 +# Chance: 1250 +# - Item: Star_Of_Vital3 +# Chance: 1250 +# - Item: Star_Of_Spirit3 +# Chance: 1250 +# - Item: Star_Of_Mettle4 +# Chance: 250 +# - Item: Star_Of_MasterArcher4 +# Chance: 250 +# - Item: Star_Of_Sharp4 +# Chance: 250 +# - Item: Star_Of_Spell4 +# Chance: 250 +# - Item: Star_Of_Speed4 +# Chance: 250 +# - Item: Star_Of_Vital4 +# Chance: 250 +# - Item: Star_Of_Spirit4 +# Chance: 250 +# - Item: Star_Of_Mettle5 +# Chance: 50 +# - Item: Star_Of_MasterArcher5 +# Chance: 50 +# - Item: Star_Of_Sharp5 +# Chance: 50 +# - Item: Star_Of_Spell5 +# Chance: 50 +# - Item: Star_Of_Speed5 +# Chance: 50 +# - Item: Star_Of_Vital5 +# Chance: 50 +# - Item: Star_Of_Spirit5 +# Chance: 50 +# - Enchantgrade: 2 +# Items: +# - Item: Spell3 +# Chance: 10000 +# - Item: Expert_Archer3 +# Chance: 10050 +# - Item: Fighting_Spirit3 +# Chance: 10050 +# - Item: Sharp3 +# Chance: 10050 +# - Item: Spell4 +# Chance: 1750 +# - Item: Expert_Archer4 +# Chance: 1750 +# - Item: Fighting_Spirit4 +# Chance: 1750 +# - Item: Sharp4 +# Chance: 1750 +# - Item: Star_Of_Mettle1 +# Chance: 4000 +# - Item: Star_Of_MasterArcher1 +# Chance: 4000 +# - Item: Star_Of_Sharp1 +# Chance: 4000 +# - Item: Star_Of_Spell1 +# Chance: 4000 +# - Item: Star_Of_Speed1 +# Chance: 4000 +# - Item: Star_Of_Vital1 +# Chance: 4000 +# - Item: Star_Of_Spirit1 +# Chance: 4000 +# - Item: Star_Of_Mettle2 +# Chance: 2000 +# - Item: Star_Of_MasterArcher2 +# Chance: 2000 +# - Item: Star_Of_Sharp2 +# Chance: 2000 +# - Item: Star_Of_Spell2 +# Chance: 2000 +# - Item: Star_Of_Speed2 +# Chance: 2000 +# - Item: Star_Of_Vital2 +# Chance: 2000 +# - Item: Star_Of_Spirit2 +# Chance: 2000 +# - Item: Star_Of_Mettle3 +# Chance: 1250 +# - Item: Star_Of_MasterArcher3 +# Chance: 1250 +# - Item: Star_Of_Sharp3 +# Chance: 1250 +# - Item: Star_Of_Spell3 +# Chance: 1250 +# - Item: Star_Of_Speed3 +# Chance: 1250 +# - Item: Star_Of_Vital3 +# Chance: 1250 +# - Item: Star_Of_Spirit3 +# Chance: 1250 +# - Item: Star_Of_Mettle4 +# Chance: 250 +# - Item: Star_Of_MasterArcher4 +# Chance: 250 +# - Item: Star_Of_Sharp4 +# Chance: 250 +# - Item: Star_Of_Spell4 +# Chance: 250 +# - Item: Star_Of_Speed4 +# Chance: 250 +# - Item: Star_Of_Vital4 +# Chance: 250 +# - Item: Star_Of_Spirit4 +# Chance: 250 +# - Item: Star_Of_Mettle5 +# Chance: 50 +# - Item: Star_Of_MasterArcher5 +# Chance: 50 +# - Item: Star_Of_Sharp5 +# Chance: 50 +# - Item: Star_Of_Spell5 +# Chance: 50 +# - Item: Star_Of_Speed5 +# Chance: 50 +# - Item: Star_Of_Vital5 +# Chance: 50 +# - Item: Star_Of_Spirit5 +# Chance: 50 +# - Enchantgrade: 3 +# Items: +# - Item: Spell3 +# Chance: 10000 +# - Item: Expert_Archer3 +# Chance: 10050 +# - Item: Fighting_Spirit3 +# Chance: 10050 +# - Item: Sharp3 +# Chance: 10050 +# - Item: Spell4 +# Chance: 1750 +# - Item: Expert_Archer4 +# Chance: 1750 +# - Item: Fighting_Spirit4 +# Chance: 1750 +# - Item: Sharp4 +# Chance: 1750 +# - Item: Star_Of_Mettle1 +# Chance: 4000 +# - Item: Star_Of_MasterArcher1 +# Chance: 4000 +# - Item: Star_Of_Sharp1 +# Chance: 4000 +# - Item: Star_Of_Spell1 +# Chance: 4000 +# - Item: Star_Of_Speed1 +# Chance: 4000 +# - Item: Star_Of_Vital1 +# Chance: 4000 +# - Item: Star_Of_Spirit1 +# Chance: 4000 +# - Item: Star_Of_Mettle2 +# Chance: 2000 +# - Item: Star_Of_MasterArcher2 +# Chance: 2000 +# - Item: Star_Of_Sharp2 +# Chance: 2000 +# - Item: Star_Of_Spell2 +# Chance: 2000 +# - Item: Star_Of_Speed2 +# Chance: 2000 +# - Item: Star_Of_Vital2 +# Chance: 2000 +# - Item: Star_Of_Spirit2 +# Chance: 2000 +# - Item: Star_Of_Mettle3 +# Chance: 1250 +# - Item: Star_Of_MasterArcher3 +# Chance: 1250 +# - Item: Star_Of_Sharp3 +# Chance: 1250 +# - Item: Star_Of_Spell3 +# Chance: 1250 +# - Item: Star_Of_Speed3 +# Chance: 1250 +# - Item: Star_Of_Vital3 +# Chance: 1250 +# - Item: Star_Of_Spirit3 +# Chance: 1250 +# - Item: Star_Of_Mettle4 +# Chance: 250 +# - Item: Star_Of_MasterArcher4 +# Chance: 250 +# - Item: Star_Of_Sharp4 +# Chance: 250 +# - Item: Star_Of_Spell4 +# Chance: 250 +# - Item: Star_Of_Speed4 +# Chance: 250 +# - Item: Star_Of_Vital4 +# Chance: 250 +# - Item: Star_Of_Spirit4 +# Chance: 250 +# - Item: Star_Of_Mettle5 +# Chance: 50 +# - Item: Star_Of_MasterArcher5 +# Chance: 50 +# - Item: Star_Of_Sharp5 +# Chance: 50 +# - Item: Star_Of_Spell5 +# Chance: 50 +# - Item: Star_Of_Speed5 +# Chance: 50 +# - Item: Star_Of_Vital5 +# Chance: 50 +# - Item: Star_Of_Spirit5 +# Chance: 50 +# - Enchantgrade: 4 +# Items: +# - Item: Spell3 +# Chance: 10000 +# - Item: Expert_Archer3 +# Chance: 10050 +# - Item: Fighting_Spirit3 +# Chance: 10050 +# - Item: Sharp3 +# Chance: 10050 +# - Item: Spell4 +# Chance: 1750 +# - Item: Expert_Archer4 +# Chance: 1750 +# - Item: Fighting_Spirit4 +# Chance: 1750 +# - Item: Sharp4 +# Chance: 1750 +# - Item: Star_Of_Mettle1 +# Chance: 4000 +# - Item: Star_Of_MasterArcher1 +# Chance: 4000 +# - Item: Star_Of_Sharp1 +# Chance: 4000 +# - Item: Star_Of_Spell1 +# Chance: 4000 +# - Item: Star_Of_Speed1 +# Chance: 4000 +# - Item: Star_Of_Vital1 +# Chance: 4000 +# - Item: Star_Of_Spirit1 +# Chance: 4000 +# - Item: Star_Of_Mettle2 +# Chance: 2000 +# - Item: Star_Of_MasterArcher2 +# Chance: 2000 +# - Item: Star_Of_Sharp2 +# Chance: 2000 +# - Item: Star_Of_Spell2 +# Chance: 2000 +# - Item: Star_Of_Speed2 +# Chance: 2000 +# - Item: Star_Of_Vital2 +# Chance: 2000 +# - Item: Star_Of_Spirit2 +# Chance: 2000 +# - Item: Star_Of_Mettle3 +# Chance: 1250 +# - Item: Star_Of_MasterArcher3 +# Chance: 1250 +# - Item: Star_Of_Sharp3 +# Chance: 1250 +# - Item: Star_Of_Spell3 +# Chance: 1250 +# - Item: Star_Of_Speed3 +# Chance: 1250 +# - Item: Star_Of_Vital3 +# Chance: 1250 +# - Item: Star_Of_Spirit3 +# Chance: 1250 +# - Item: Star_Of_Mettle4 +# Chance: 250 +# - Item: Star_Of_MasterArcher4 +# Chance: 250 +# - Item: Star_Of_Sharp4 +# Chance: 250 +# - Item: Star_Of_Spell4 +# Chance: 250 +# - Item: Star_Of_Speed4 +# Chance: 250 +# - Item: Star_Of_Vital4 +# Chance: 250 +# - Item: Star_Of_Spirit4 +# Chance: 250 +# - Item: Star_Of_Mettle5 +# Chance: 50 +# - Item: Star_Of_MasterArcher5 +# Chance: 50 +# - Item: Star_Of_Sharp5 +# Chance: 50 +# - Item: Star_Of_Spell5 +# Chance: 50 +# - Item: Star_Of_Speed5 +# Chance: 50 +# - Item: Star_Of_Vital5 +# Chance: 50 +# - Item: Star_Of_Spirit5 +# Chance: 50 +# - Slot: 1 +# PerfectEnchants: +# - Item: Star_Cluster_Of_Str1 +# Price: 5000000 +# Materials: +# - Material: Unknown_Meteorite_F +# Amount: 20 +# - Material: Pow_Meteorite_Fragment +# Amount: 15 +# - Material: Wis_Meteorite_Fragment +# Amount: 15 +# - Material: Con_Meteorite_Fragment +# Amount: 10 +# - Item: Star_Cluster_Of_Luk1 +# Price: 5000000 +# Materials: +# - Material: Unknown_Meteorite_F +# Amount: 20 +# - Material: Crt_Meteorite_Fragment +# Amount: 15 +# - Material: Spl_Meteorite_Fragment +# Amount: 15 +# - Material: Pow_Meteorite_Fragment +# Amount: 10 +# - Item: Star_Cluster_Of_Int1 +# Price: 5000000 +# Materials: +# - Material: Unknown_Meteorite_F +# Amount: 20 +# - Material: Spl_Meteorite_Fragment +# Amount: 15 +# - Material: Sta_Meteorite_Fragment +# Amount: 15 +# - Material: Con_Meteorite_Fragment +# Amount: 10 +# - Item: Star_Cluster_Of_Res1 +# Price: 5000000 +# Materials: +# - Material: Unknown_Meteorite_F +# Amount: 20 +# - Material: Sta_Meteorite_Fragment +# Amount: 15 +# - Material: Crt_Meteorite_Fragment +# Amount: 15 +# - Material: Wis_Meteorite_Fragment +# Amount: 10 - Id: 14 TargetItems: Octopus_Leg_In_Mouth: true @@ -29953,3 +30704,1349 @@ Body: - Material: GH_Cursed_Crystal Amount: 50 - Material: Enchant_Ticket + - Id: 137 + TargetItems: + Gray_W_Suits: true + Gray_W_Robe: true + MinimumRefine: 7 + Order: + - Slot: 3 + - Slot: 2 + - Slot: 1 + Slots: + - Slot: 3 + PerfectEnchants: + - Item: Wolf_Orb_Str_2 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Dex_2 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Agi_2 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Int_2 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Vit_2 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_luk_2 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Def_2 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Mdef_2 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Ran_2 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_War_2 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Mag_2 + Materials: + - Material: Sp_Amethyst_Fragment + - Slot: 2 + PerfectEnchants: + - Item: Wolf_Orb_Str_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Dex_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Agi_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Int_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Vit_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_luk_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Def_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Mdef_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Ran_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_War_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Mag_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_S_Delay + Materials: + - Material: Sp_Amethyst_Fragment + - Slot: 1 + PerfectEnchants: + - Item: Wolf_Orb_R_Reject_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Force + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_1 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_2 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_4 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_5 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_6 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_7 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_8 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_9 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_10 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_11 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_12 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_13 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_14 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_15 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_16 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_17 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_18 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_19 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_20 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_21 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_22 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_23 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_24 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_25 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_26 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_27 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_28 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_29 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_30 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_31 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_32 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_33 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_34 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_35 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_36 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_37 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_38 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_39 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_40 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_41 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_42 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_43 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_44 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_45 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_46 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_47 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_48 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_49 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_50 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Skill_51 + Materials: + - Material: Sp_Amethyst_Fragment + - Id: 138 + TargetItems: + Gray_W_Manteau: true + Gray_W_Muffler: true + MinimumRefine: 7 + Order: + - Slot: 3 + - Slot: 2 + - Slot: 1 + Slots: + - Slot: 3 + PerfectEnchants: + - Item: Wolf_Orb_Str_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Dex_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Agi_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Int_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Vit_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_luk_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Slot: 2 + PerfectEnchants: + - Item: Wolf_Orb_Speed_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Caster_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Critical_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Guide_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Slot: 1 + PerfectEnchants: + - Item: Wolf_Orb_Above_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_P_Full_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_M_Counter_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Id: 139 + TargetItems: + Gray_W_Boots: true + Gray_W_Shoes: true + MinimumRefine: 7 + Order: + - Slot: 3 + - Slot: 2 + - Slot: 1 + Slots: + - Slot: 3 + PerfectEnchants: + - Item: Wolf_Orb_Hp_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Sp_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Heal_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Robust_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Slot: 2 + PerfectEnchants: + - Item: Wolf_Orb_F_Cast_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_M_F_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_P_F_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Slot: 1 + PerfectEnchants: + - Item: Wolf_Orb_Un_Vit + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Sp_Int + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Fi_Dex + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Ov_Str + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Fa_Agi + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Lu_Luk + Materials: + - Material: Sp_Amethyst_Fragment + - Id: 140 + TargetItems: + Gray_W_Pendant: true + Gray_W_Earing: true + Order: + - Slot: 3 + - Slot: 2 + - Slot: 1 + Slots: + - Slot: 3 + PerfectEnchants: + - Item: Wolf_Orb_Str_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Dex_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Agi_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Int_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Vit_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_luk_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Slot: 2 + PerfectEnchants: + - Item: Wolf_Orb_HealHP_4 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_HealSP_4 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_E_Archer_4 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Fatal_4 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_F_Spirit_4 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Spell_4 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_A_Delay_4 + Materials: + - Material: Sp_Amethyst_Fragment + - Slot: 1 + PerfectEnchants: + - Item: Wolf_Orb_Life + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_M_Heal + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_A_Force + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_A_Delay_4 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_E_Archer_4 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Fatal_4 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_F_Spirit_4 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Spell_4 + Materials: + - Material: Sp_Amethyst_Fragment + - Id: 141 + TargetItems: + Gray_W_Ring: true + Gray_W_Necklace: true + Order: + - Slot: 3 + - Slot: 2 + - Slot: 1 + Slots: + - Slot: 3 + PerfectEnchants: + - Item: Wolf_Orb_Str_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Dex_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Agi_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Int_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Vit_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_luk_3 + Materials: + - Material: Sp_Amethyst_Fragment + - Slot: 2 + PerfectEnchants: + - Item: Wolf_Orb_HealHP_4 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_HealSP_4 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_E_Archer_4 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Fatal_4 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_F_Spirit_4 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Spell_4 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_A_Delay_4 + Materials: + - Material: Sp_Amethyst_Fragment + - Slot: 1 + PerfectEnchants: + - Item: Wolf_Orb_Soul + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_M_Soul + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_A_Force + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_A_Delay_4 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_E_Archer_4 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Fatal_4 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_F_Spirit_4 + Materials: + - Material: Sp_Amethyst_Fragment + - Item: Wolf_Orb_Spell_4 + Materials: + - Material: Sp_Amethyst_Fragment +# - Id: 142 # Skipped (some fields are not supported on rAthena for now) +# TargetItems: +# Signet_Of_Spring: true +# Signet_Of_Summer: true +# Signet_Of_Autumn: true +# Signet_Of_Winter: true +# Reset: +# Chance: 80000 +# Price: 500000 +# Materials: +# - Material: Energy_Of_Elemental +# Amount: 20 +# - Material: Circul_Of_Life +# Amount: 10 +# Order: +# - Slot: 3 +# - Slot: 2 +# Slots: +# - Slot: 3 +# PerfectEnchants: +# - Item: Token_Of_Life +# Price: 500000 +# Materials: +# - Material: Circul_Of_Life +# Amount: 15 +# - Material: Fruit_Of_Birth +# Amount: 5 +# - Material: Fruit_Of_Extinction +# Amount: 5 +# - Material: Energy_Of_Spring +# Amount: 10 +# - Material: Energy_Of_Summer +# Amount: 10 +# - Material: Energy_Of_Autumn +# Amount: 10 +# - Material: Energy_Of_Winter +# Amount: 10 +# - Material: Grace_Of_Spirit +# Amount: 30 +# - Slot: 2 +# Price: 1000000 +# Materials: +# - Material: Circul_Of_Life +# Amount: 10 +# Enchants: +# - Enchantgrade: 0 +# Items: +# - Item: Spell3 +# Chance: 11750 +# - Item: Expert_Archer3 +# Chance: 11750 +# - Item: Hit_Plus3 +# Chance: 11750 +# - Item: Sharp3 +# Chance: 11750 +# - Item: Spell4 +# Chance: 3500 +# - Item: Expert_Archer4 +# Chance: 3500 +# - Item: Hit_Plus4 +# Chance: 3500 +# - Item: Sharp4 +# Chance: 3500 +# - Item: Signet_Of_Pow1 +# Chance: 6000 +# - Item: Signet_Of_Con1 +# Chance: 6000 +# - Item: Signet_Of_Sta1 +# Chance: 6000 +# - Item: Signet_Of_Spl1 +# Chance: 6000 +# - Item: Signet_Of_Crt1 +# Chance: 6000 +# - Item: Signet_Of_Wis1 +# Chance: 6000 +# - Item: Signet_Of_Pow2 +# Chance: 500 +# - Item: Signet_Of_Con2 +# Chance: 500 +# - Item: Signet_Of_Sta2 +# Chance: 500 +# - Item: Signet_Of_Spl2 +# Chance: 500 +# - Item: Signet_Of_Crt2 +# Chance: 500 +# - Item: Signet_Of_Wis2 +# Chance: 500 +# - Enchantgrade: 1 +# Items: +# - Item: Spell3 +# Chance: 11750 +# - Item: Expert_Archer3 +# Chance: 11750 +# - Item: Hit_Plus3 +# Chance: 11750 +# - Item: Sharp3 +# Chance: 11750 +# - Item: Spell4 +# Chance: 3500 +# - Item: Expert_Archer4 +# Chance: 3500 +# - Item: Hit_Plus4 +# Chance: 3500 +# - Item: Sharp4 +# Chance: 3500 +# - Item: Signet_Of_Pow1 +# Chance: 6000 +# - Item: Signet_Of_Con1 +# Chance: 6000 +# - Item: Signet_Of_Sta1 +# Chance: 6000 +# - Item: Signet_Of_Spl1 +# Chance: 6000 +# - Item: Signet_Of_Crt1 +# Chance: 6000 +# - Item: Signet_Of_Wis1 +# Chance: 6000 +# - Item: Signet_Of_Pow2 +# Chance: 500 +# - Item: Signet_Of_Con2 +# Chance: 500 +# - Item: Signet_Of_Sta2 +# Chance: 500 +# - Item: Signet_Of_Spl2 +# Chance: 500 +# - Item: Signet_Of_Crt2 +# Chance: 500 +# - Item: Signet_Of_Wis2 +# Chance: 500 +# - Enchantgrade: 2 +# Items: +# - Item: Spell3 +# Chance: 11750 +# - Item: Expert_Archer3 +# Chance: 11750 +# - Item: Hit_Plus3 +# Chance: 11750 +# - Item: Sharp3 +# Chance: 11750 +# - Item: Spell4 +# Chance: 3500 +# - Item: Expert_Archer4 +# Chance: 3500 +# - Item: Hit_Plus4 +# Chance: 3500 +# - Item: Sharp4 +# Chance: 3500 +# - Item: Signet_Of_Pow1 +# Chance: 6000 +# - Item: Signet_Of_Con1 +# Chance: 6000 +# - Item: Signet_Of_Sta1 +# Chance: 6000 +# - Item: Signet_Of_Spl1 +# Chance: 6000 +# - Item: Signet_Of_Crt1 +# Chance: 6000 +# - Item: Signet_Of_Wis1 +# Chance: 6000 +# - Item: Signet_Of_Pow2 +# Chance: 500 +# - Item: Signet_Of_Con2 +# Chance: 500 +# - Item: Signet_Of_Sta2 +# Chance: 500 +# - Item: Signet_Of_Spl2 +# Chance: 500 +# - Item: Signet_Of_Crt2 +# Chance: 500 +# - Item: Signet_Of_Wis2 +# Chance: 500 +# - Enchantgrade: 3 +# Items: +# - Item: Spell3 +# Chance: 11750 +# - Item: Expert_Archer3 +# Chance: 11750 +# - Item: Hit_Plus3 +# Chance: 11750 +# - Item: Sharp3 +# Chance: 11750 +# - Item: Spell4 +# Chance: 3500 +# - Item: Expert_Archer4 +# Chance: 3500 +# - Item: Hit_Plus4 +# Chance: 3500 +# - Item: Sharp4 +# Chance: 3500 +# - Item: Signet_Of_Pow1 +# Chance: 6000 +# - Item: Signet_Of_Con1 +# Chance: 6000 +# - Item: Signet_Of_Sta1 +# Chance: 6000 +# - Item: Signet_Of_Spl1 +# Chance: 6000 +# - Item: Signet_Of_Crt1 +# Chance: 6000 +# - Item: Signet_Of_Wis1 +# Chance: 6000 +# - Item: Signet_Of_Pow2 +# Chance: 500 +# - Item: Signet_Of_Con2 +# Chance: 500 +# - Item: Signet_Of_Sta2 +# Chance: 500 +# - Item: Signet_Of_Spl2 +# Chance: 500 +# - Item: Signet_Of_Crt2 +# Chance: 500 +# - Item: Signet_Of_Wis2 +# Chance: 500 +# - Enchantgrade: 4 +# Items: +# - Item: Spell3 +# Chance: 11750 +# - Item: Expert_Archer3 +# Chance: 11750 +# - Item: Hit_Plus3 +# Chance: 11750 +# - Item: Sharp3 +# Chance: 11750 +# - Item: Spell4 +# Chance: 3500 +# - Item: Expert_Archer4 +# Chance: 3500 +# - Item: Hit_Plus4 +# Chance: 3500 +# - Item: Sharp4 +# Chance: 3500 +# - Item: Signet_Of_Pow1 +# Chance: 6000 +# - Item: Signet_Of_Con1 +# Chance: 6000 +# - Item: Signet_Of_Sta1 +# Chance: 6000 +# - Item: Signet_Of_Spl1 +# Chance: 6000 +# - Item: Signet_Of_Crt1 +# Chance: 6000 +# - Item: Signet_Of_Wis1 +# Chance: 6000 +# - Item: Signet_Of_Pow2 +# Chance: 500 +# - Item: Signet_Of_Con2 +# Chance: 500 +# - Item: Signet_Of_Sta2 +# Chance: 500 +# - Item: Signet_Of_Spl2 +# Chance: 500 +# - Item: Signet_Of_Crt2 +# Chance: 500 +# - Item: Signet_Of_Wis2 +# Chance: 500 + - Id: 147 + TargetItems: + StormBow_Furious: true + TornadoBow_Furious: true + SaintBook_Furious: true + SaintWand_Furious: true + SunBook_Furious: true + MoonBook_Furious: true + Slayer_Furious: true + Trident_Furious: true + Demonius_Furious: true + Demonsword_Furious: true + Foxtail_Furious: true + Setaria_Furious: true + Reset: + Chance: 80000 + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + Order: + - Slot: 3 + - Slot: 2 + Slots: + - Slot: 3 + PerfectEnchants: + - Item: FuriousMaterial_Not + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Item: FuriousMaterial_Wat + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Item: FuriousMaterial_Win + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Item: FuriousMaterial_Fir + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Item: FuriousMaterial_Gro + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Item: FuriousMaterial_Und + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Item: FuriousMaterial_Dar + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Item: FuriousMaterial_Tel + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Item: FuriousMaterial_Sai + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Item: FuriousMaterial_Poi + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Slot: 2 + PerfectEnchants: + - Item: FuriousEnergy_Not + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Item: FuriousEnergy_Hum + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Item: FuriousEnergy_Dra + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Item: FuriousEnergy_Pla + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Item: FuriousEnergy_Ins + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Item: FuriousEnergy_Ani + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Item: FuriousEnergy_Fis + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Item: FuriousEnergy_Ang + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Item: FuriousEnergy_Dem + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Item: FuriousEnergy_Und + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Id: 148 + TargetItems: + FuriousCirclet_WH: true + FuriousCirclet_CD: true + FuriousCirclet_SKE: true + FuriousCirclet_DK: true + FuriousCirclet_ABC: true + FuriousCirclet_SH: true + Reset: + Chance: 80000 + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Material: EP20_D_P_Crystal + Amount: 30 + Order: + - Slot: 3 + - Slot: 2 + Slots: + - Slot: 3 + PerfectEnchants: + - Item: Pow_Assist + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Material: EP20_D_P_Crystal + Amount: 30 + - Item: Pow_Enforce + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Material: EP20_D_P_Crystal + Amount: 30 + - Item: SPL_Assist + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Material: EP20_D_P_Crystal + Amount: 30 + - Item: SPL_Enforce + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Material: EP20_D_P_Crystal + Amount: 30 + - Item: STA_Assist + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Material: EP20_D_P_Crystal + Amount: 30 + - Item: STA_Enforce + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Material: EP20_D_P_Crystal + Amount: 30 + - Item: WIS_Assist + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Material: EP20_D_P_Crystal + Amount: 30 + - Item: WIS_Enforce + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Material: EP20_D_P_Crystal + Amount: 30 + - Item: CON_Assist + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Material: EP20_D_P_Crystal + Amount: 30 + - Item: CON_Enforce_Melee + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Material: EP20_D_P_Crystal + Amount: 30 + - Item: CON_Enforce_Magic + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Material: EP20_D_P_Crystal + Amount: 30 + - Item: CRT_Assist + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Material: EP20_D_P_Crystal + Amount: 30 + - Item: CRT_Enforce + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Material: EP20_D_P_Crystal + Amount: 30 + - Slot: 2 + PerfectEnchants: + - Item: Mettle1 + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Material: EP20_D_P_Crystal + Amount: 30 + - Item: Tenacity1 + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Material: EP20_D_P_Crystal + Amount: 30 + - Item: MasterArcher1 + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Material: EP20_D_P_Crystal + Amount: 30 + - Item: Acute1 + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Material: EP20_D_P_Crystal + Amount: 30 + - Item: MagicEessence1 + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Material: EP20_D_P_Crystal + Amount: 30 + - Item: Spell1 + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Material: EP20_D_P_Crystal + Amount: 30 + Upgrades: + - Enchant: Mettle1 + Upgrade: Mettle2 + Materials: + - Material: EP19_D_P_Stone + - Enchant: Tenacity1 + Upgrade: Tenacity2 + Materials: + - Material: EP19_D_P_Stone + - Enchant: MasterArcher1 + Upgrade: MasterArcher2 + Materials: + - Material: EP19_D_P_Stone + - Enchant: Acute1 + Upgrade: Acute2 + Materials: + - Material: EP19_D_P_Stone + - Enchant: MagicEessence1 + Upgrade: MagicEessence2 + Materials: + - Material: EP19_D_P_Stone + - Enchant: Spell1 + Upgrade: Spell2 + Materials: + - Material: EP19_D_P_Stone + - Enchant: Mettle2 + Upgrade: Mettle3 + Materials: + - Material: EP19_D_P_Stone + Amount: 3 + - Enchant: Tenacity2 + Upgrade: Tenacity3 + Materials: + - Material: EP19_D_P_Stone + Amount: 3 + - Enchant: MasterArcher2 + Upgrade: MasterArcher3 + Materials: + - Material: EP19_D_P_Stone + Amount: 3 + - Enchant: Acute2 + Upgrade: Acute3 + Materials: + - Material: EP19_D_P_Stone + Amount: 3 + - Enchant: MagicEessence2 + Upgrade: MagicEessence3 + Materials: + - Material: EP19_D_P_Stone + Amount: 3 + - Enchant: Spell2 + Upgrade: Spell3 + Materials: + - Material: EP19_D_P_Stone + Amount: 3 + - Id: 149 + TargetItems: + FuriousBoots: true + Reset: + Chance: 80000 + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + Order: + - Slot: 3 + - Slot: 2 + Slots: + - Slot: 3 + PerfectEnchants: + - Item: FuriousMaterial_Not + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Item: FuriousMaterial_Wat + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Item: FuriousMaterial_Win + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Item: FuriousMaterial_Fir + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Item: FuriousMaterial_Gro + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Item: FuriousMaterial_Und + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Item: FuriousMaterial_Dar + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Item: FuriousMaterial_Tel + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Item: FuriousMaterial_Sai + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Item: FuriousMaterial_Poi + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Slot: 2 + PerfectEnchants: + - Item: FuriousEnergy_Not + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Item: FuriousEnergy_Hum + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Item: FuriousEnergy_Dra + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Item: FuriousEnergy_Pla + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Item: FuriousEnergy_Ins + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Item: FuriousEnergy_Ani + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Item: FuriousEnergy_Fis + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Item: FuriousEnergy_Ang + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Item: FuriousEnergy_Dem + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 + - Item: FuriousEnergy_Und + Price: 500000 + Materials: + - Material: EP19_D_P_Crystal + Amount: 30 + - Material: EP19_N_P_Crystal + Amount: 30 diff --git a/db/re/item_reform.yml b/db/re/item_reform.yml index ccbc205fcb..6ec5ddb77c 100644 --- a/db/re/item_reform.yml +++ b/db/re/item_reform.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2022 rAthena Development Team +# Copyright(C) 2024 rAthena Development Team # https://rathena.org - https://github.com/rathena # # This program is free software: you can redistribute it and/or modify @@ -44,3080 +44,29 @@ Header: Version: 1 Body: - - Item: C_Weapon_Reform_1 - BaseItems: - - BaseItem: Up_Saint_Hall - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 50 - - Material: Weapon_Stone_1 - Amount: 100 - ResultItem: Saint_Hall_LT - ChangeRefine: -5 - - BaseItem: Up_Undine_Spear_K - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 50 - - Material: Weapon_Stone_1 - Amount: 100 - ResultItem: Undine_Spear_K_LT - ChangeRefine: -5 - - BaseItem: Up_Demon_Hunting_Bible - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 50 - - Material: Weapon_Stone_1 - Amount: 100 - ResultItem: Demon_Hunting_Bible_LT - ChangeRefine: -5 - - BaseItem: Up_Light_Blade - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 50 - - Material: Weapon_Stone_1 - Amount: 100 - ResultItem: Light_Blade_LT - ChangeRefine: -5 - - BaseItem: Up_Magic_Sword - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 50 - - Material: Weapon_Stone_1 - Amount: 100 - ResultItem: Magic_Sword_LT - ChangeRefine: -5 - - BaseItem: Up_Fatalist - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 50 - - Material: Weapon_Stone_1 - Amount: 100 - ResultItem: Fatalist_LT - ChangeRefine: -5 - - BaseItem: Up_Iron_Staff - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 50 - - Material: Weapon_Stone_1 - Amount: 100 - ResultItem: Iron_Staff_LT - ChangeRefine: -5 - - BaseItem: Up_Blue_Crystal_Staff - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 50 - - Material: Weapon_Stone_1 - Amount: 100 - ResultItem: Blue_Crystal_Staff_LT - ChangeRefine: -5 - - BaseItem: Up_Shadow_Staff_K - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 50 - - Material: Weapon_Stone_1 - Amount: 100 - ResultItem: Shadow_Staff_K_LT - ChangeRefine: -5 - - BaseItem: Up_Freezing_Rod - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 50 - - Material: Weapon_Stone_1 - Amount: 100 - ResultItem: Freezing_Rod_LT - ChangeRefine: -5 - - BaseItem: Up_Iron_Nail_K - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 50 - - Material: Weapon_Stone_1 - Amount: 100 - ResultItem: Iron_Nail_K_LT - ChangeRefine: -5 - - BaseItem: Up_Ray_Knuckle - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 50 - - Material: Weapon_Stone_1 - Amount: 100 - ResultItem: Ray_Knuckle_LT - ChangeRefine: -5 - - BaseItem: Up_Sword_Of_Bluefire - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 50 - - Material: Weapon_Stone_1 - Amount: 100 - ResultItem: Sword_Of_Bluefire_LT - ChangeRefine: -5 - - BaseItem: Up_Slate_Sword - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 50 - - Material: Weapon_Stone_1 - Amount: 100 - ResultItem: Slate_Sword_LT - ChangeRefine: -5 - - BaseItem: Up_Royal_Bow_K - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 50 - - Material: Weapon_Stone_1 - Amount: 100 - ResultItem: Royal_Bow_K_LT - ChangeRefine: -5 - - BaseItem: Up_Scalet_Dragon_L_Bow - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 50 - - Material: Weapon_Stone_1 - Amount: 100 - ResultItem: Scalet_Dragon_L_Bow_LT - ChangeRefine: -5 - - BaseItem: Up_Trumpet_Shell_K - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 50 - - Material: Weapon_Stone_1 - Amount: 100 - ResultItem: Trumpet_Shell_K_LT - ChangeRefine: -5 - - BaseItem: Up_Barb_Wire_K - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 50 - - Material: Weapon_Stone_1 - Amount: 100 - ResultItem: Barb_Wire_K_LT - ChangeRefine: -5 - - BaseItem: Up_Narcis_Bow - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 50 - - Material: Weapon_Stone_1 - Amount: 100 - ResultItem: Narcis_Bow_LT - ChangeRefine: -5 - - BaseItem: Up_Avenger - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 50 - - Material: Weapon_Stone_1 - Amount: 100 - ResultItem: Avenger_LT - ChangeRefine: -5 - - BaseItem: Up_Meteor_Striker - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 50 - - Material: Weapon_Stone_1 - Amount: 100 - ResultItem: Meteor_Striker_LT - ChangeRefine: -5 - - BaseItem: Up_Blade_Katar - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 50 - - Material: Weapon_Stone_1 - Amount: 100 - ResultItem: Blade_Katar_LT - ChangeRefine: -5 - - BaseItem: Up_Shiver_Katar_K - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 50 - - Material: Weapon_Stone_1 - Amount: 100 - ResultItem: Shiver_Katar_K_LT - ChangeRefine: -5 - - BaseItem: Up_Dragonic_Slayer - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 50 - - Material: Weapon_Stone_1 - Amount: 100 - ResultItem: Dragonic_Slayer_LT - ChangeRefine: -5 - - BaseItem: Up_Oriental_Sword - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 50 - - Material: Weapon_Stone_1 - Amount: 100 - ResultItem: Oriental_Sword_LT - ChangeRefine: -5 - - BaseItem: Up_Fog_Dew_Sword - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 50 - - Material: Weapon_Stone_1 - Amount: 100 - ResultItem: Fog_Dew_Sword_LT - ChangeRefine: -5 - - BaseItem: Up_Humma_Clear - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 50 - - Material: Weapon_Stone_1 - Amount: 100 - ResultItem: Humma_Clear_LT - ChangeRefine: -5 - - BaseItem: Up_The_Black_Gatling - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 50 - - Material: Weapon_Stone_1 - Amount: 100 - ResultItem: The_Black_Gatling_LT - ChangeRefine: -5 - - BaseItem: Up_Crimson_Rose - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 50 - - Material: Weapon_Stone_1 - Amount: 100 - ResultItem: Crimson_Rose_LT - ChangeRefine: -5 - - BaseItem: Up_Demon_S_Shot - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 50 - - Material: Weapon_Stone_1 - Amount: 100 - ResultItem: Demon_S_Shot_LT - ChangeRefine: -5 - - BaseItem: Up_OneSkyOneSun - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 50 - - Material: Weapon_Stone_1 - Amount: 100 - ResultItem: OneSkyOneSun_LT - ChangeRefine: -5 - - BaseItem: Up_Golden_L_Launcher - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 50 - - Material: Weapon_Stone_1 - Amount: 100 - ResultItem: Golden_L_Launcher_LT - ChangeRefine: -5 - - BaseItem: Up_Master_Soul_Rifle - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 50 - - Material: Weapon_Stone_1 - Amount: 100 - ResultItem: Master_Soul_Rifle_LT - ChangeRefine: -5 - - BaseItem: Up_SoulWeight - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 50 - - Material: Weapon_Stone_1 - Amount: 100 - ResultItem: SoulWeight_LT - ChangeRefine: -5 - - BaseItem: Up_MeawFoxtail - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 50 - - Material: Weapon_Stone_1 - Amount: 100 - ResultItem: MeawFoxtail_LT - ChangeRefine: -5 -# - BaseItem: Up_Freedom_Stick -# MinimumRefine: 9 -# CardsAllowed: false -# Materials: -# - Material: Bio_Test_Fragment -# Amount: 100 -# - Material: Bio_Reseearch_Docu -# Amount: 50 -# - Material: Weapon_Stone_1 -# Amount: 100 -# ResultItem: Freedom_Stick_LT -# ChangeRefine: -5 -# - BaseItem: Up_Blessed_Knife -# MinimumRefine: 9 -# CardsAllowed: false -# Materials: -# - Material: Bio_Test_Fragment -# Amount: 100 -# - Material: Bio_Reseearch_Docu -# Amount: 50 -# - Material: Weapon_Stone_1 -# Amount: 100 -# ResultItem: Blessed_Knife_LT -# ChangeRefine: -5 - - Item: Consecrate_Weapon_2 - BaseItems: - - BaseItem: Adulter_F_T_Sword - MinimumRefine: 9 - Materials: - - Material: Conse_F_T_Sword - Amount: 30 - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Purificatory_Holy_W - Amount: 200 - ResultItem: Vivatus_F_T_Sword - ChangeRefine: -1 - - BaseItem: Adulter_F_Lance - MinimumRefine: 9 - Materials: - - Material: Conse_F_Lance - Amount: 30 - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Purificatory_Holy_W - Amount: 200 - ResultItem: Vivatus_F_Lance - ChangeRefine: -1 - - BaseItem: Adulter_F_G_Sword - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Conse_F_G_Sword - Amount: 30 - - Material: Purificatory_Holy_W - Amount: 200 - ResultItem: Vivatus_F_G_Sword - ChangeRefine: -1 - - BaseItem: Adulter_F_G_Spear - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Purificatory_Holy_W - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Conse_F_G_Spear - Amount: 30 - ResultItem: Vivatus_F_G_Spear - ChangeRefine: -1 - - BaseItem: Adulter_F_Axe - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Conse_F_Axe - Amount: 30 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Purificatory_Holy_W - Amount: 200 - ResultItem: Vivatus_F_Axe - ChangeRefine: -1 - - BaseItem: Adulter_F_Mace - MinimumRefine: 9 - Materials: - - Material: Conse_F_Mace - Amount: 30 - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Purificatory_Holy_W - Amount: 200 - ResultItem: Vivatus_F_Mace - ChangeRefine: -1 - - BaseItem: Adulter_F_Lapier - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Conse_F_Lapier - Amount: 30 - - Material: Purificatory_Holy_W - Amount: 200 - ResultItem: Vivatus_F_Lapier - ChangeRefine: -1 - - BaseItem: Adulter_F_Hall - MinimumRefine: 9 - Materials: - - Material: Conse_F_Hall - Amount: 30 - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Purificatory_Holy_W - Amount: 200 - ResultItem: Vivatus_F_Hall - ChangeRefine: -1 - - BaseItem: Adulter_F_Cakram - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Conse_F_Cakram - Amount: 30 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Purificatory_Holy_W - Amount: 200 - ResultItem: Vivatus_F_Cakram - ChangeRefine: -1 - - BaseItem: Adulter_F_Katar - MinimumRefine: 9 - Materials: - - Material: Conse_F_Katar - Amount: 30 - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Purificatory_Holy_W - Amount: 200 - ResultItem: Vivatus_F_Katar - ChangeRefine: -1 - - BaseItem: Adulter_F_Dagger - MinimumRefine: 9 - Materials: - - Material: Conse_F_Dagger - Amount: 30 - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Purificatory_Holy_W - Amount: 200 - ResultItem: Vivatus_F_Dagger - ChangeRefine: -1 - - BaseItem: Adulter_F_C_Bow - MinimumRefine: 9 - Materials: - - Material: Conse_F_C_Bow - Amount: 30 - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Purificatory_Holy_W - Amount: 200 - ResultItem: Vivatus_F_C_Bow - ChangeRefine: -1 - - BaseItem: Adulter_F_T_Staff - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Purificatory_Holy_W - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Conse_F_T_Staff - Amount: 30 - ResultItem: Vivatus_F_T_Staff - ChangeRefine: -1 - - BaseItem: Adulter_F_Rod - MinimumRefine: 9 - Materials: - - Material: Conse_F_Rod - Amount: 30 - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Purificatory_Holy_W - Amount: 200 - ResultItem: Vivatus_F_Rod - ChangeRefine: -1 - - BaseItem: Adulter_F_M_Book - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Conse_F_M_Book - Amount: 30 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Purificatory_Holy_W - Amount: 200 - ResultItem: Vivatus_F_M_Book - ChangeRefine: -1 - - BaseItem: Adulter_F_P_Book - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Conse_F_P_Book - Amount: 30 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Purificatory_Holy_W - Amount: 200 - ResultItem: Vivatus_F_P_Book - ChangeRefine: -1 - - BaseItem: Adulter_F_Bible - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Conse_F_Bible - Amount: 30 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Purificatory_Holy_W - Amount: 200 - ResultItem: Vivatus_F_Bible - ChangeRefine: -1 - - BaseItem: Adulter_F_Wand - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Purificatory_Holy_W - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Conse_F_Wand - Amount: 30 - ResultItem: Vivatus_F_Wand - ChangeRefine: -1 - - BaseItem: Adulter_F_Knuckle - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Purificatory_Holy_W - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Conse_F_Knuckle - Amount: 30 - ResultItem: Vivatus_F_Knuckle - ChangeRefine: -1 - - BaseItem: Adulter_F_Claw - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Conse_F_Claw - Amount: 30 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Purificatory_Holy_W - Amount: 200 - ResultItem: Vivatus_F_Claw - ChangeRefine: -1 - - BaseItem: Adulter_F_Ballista - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Conse_F_Ballista - Amount: 30 - - Material: Purificatory_Holy_W - Amount: 200 - ResultItem: Vivatus_F_Ballista - ChangeRefine: -1 - - BaseItem: Adulter_F_A_Bow - MinimumRefine: 9 - Materials: - - Material: Conse_F_A_Bow - Amount: 30 - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Purificatory_Holy_W - Amount: 200 - ResultItem: Vivatus_F_A_Bow - ChangeRefine: -1 - - BaseItem: Adulter_F_Violin - MinimumRefine: 9 - Materials: - - Material: Conse_F_Violin - Amount: 30 - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Purificatory_Holy_W - Amount: 200 - ResultItem: Vivatus_F_Violin - ChangeRefine: -1 - - BaseItem: Adulter_F_C_Rope - MinimumRefine: 9 - Materials: - - Material: Conse_F_C_Rope - Amount: 30 - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Purificatory_Holy_W - Amount: 200 - ResultItem: Vivatus_F_C_Rope - ChangeRefine: -1 - - BaseItem: Adulter_F_Harp - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Conse_F_Harp - Amount: 30 - - Material: Purificatory_Holy_W - Amount: 200 - ResultItem: Vivatus_F_Harp - ChangeRefine: -1 - - BaseItem: Adulter_F_Ribbon - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Conse_F_Ribbon - Amount: 30 - - Material: Purificatory_Holy_W - Amount: 200 - ResultItem: Vivatus_F_Ribbon - ChangeRefine: -1 - - BaseItem: Adulter_F_Humma - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Conse_F_Humma - Amount: 30 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Purificatory_Holy_W - Amount: 200 - ResultItem: Vivatus_F_Lance - ChangeRefine: -1 - - BaseItem: Adulter_F_C_Humma - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Conse_F_C_Humma - Amount: 30 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Purificatory_Holy_W - Amount: 200 - ResultItem: Vivatus_F_Lance - ChangeRefine: -1 - - BaseItem: Adulter_F_Revolver - MinimumRefine: 9 - Materials: - - Material: Conse_F_Revolver - Amount: 30 - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Purificatory_Holy_W - Amount: 200 - ResultItem: Vivatus_F_Lance - ChangeRefine: -1 - - BaseItem: Adulter_F_Rifle - MinimumRefine: 9 - Materials: - - Material: Conse_F_Rifle - Amount: 30 - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Purificatory_Holy_W - Amount: 200 - ResultItem: Vivatus_F_Lance - ChangeRefine: -1 - - BaseItem: Adulter_F_Gatling - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Purificatory_Holy_W - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Conse_F_Gatling - Amount: 30 - ResultItem: Vivatus_F_Lance - ChangeRefine: -1 - - BaseItem: Adulter_F_Launcher - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Purificatory_Holy_W - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Conse_F_Launcher - Amount: 30 - ResultItem: Vivatus_F_Lance - ChangeRefine: -1 - - BaseItem: Adulter_F_Moon_B - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Conse_F_Moon_B - Amount: 30 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Purificatory_Holy_W - Amount: 200 - ResultItem: Vivatus_F_Lance - ChangeRefine: -1 - - BaseItem: Adulter_F_Star_B - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Conse_F_Star_B - Amount: 30 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Purificatory_Holy_W - Amount: 200 - ResultItem: Vivatus_F_Lance - ChangeRefine: -1 - - BaseItem: Adulter_F_S_Stick - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Conse_F_S_Stick - Amount: 30 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Purificatory_Holy_W - Amount: 200 - ResultItem: Vivatus_F_Lance - ChangeRefine: -1 - - BaseItem: Adulter_F_D_Wand - MinimumRefine: 9 - Materials: - - Material: Conse_F_D_Wand - Amount: 30 - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Purificatory_Holy_W - Amount: 200 - ResultItem: Vivatus_F_Lance - ChangeRefine: -1 - - BaseItem: Adulter_F_F_Wand - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Conse_F_F_Wand - Amount: 30 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Purificatory_Holy_W - Amount: 200 - ResultItem: Vivatus_F_Lance - ChangeRefine: -1 - - BaseItem: Adulter_F_F_model - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Conse_F_F_model - Amount: 30 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Purificatory_Holy_W - Amount: 200 - ResultItem: Vivatus_F_Lance - ChangeRefine: -1 - - BaseItem: Adulter_F_Shotgun - MinimumRefine: 9 - Materials: - - Material: Conse_F_Shotgun - Amount: 30 - - Material: Ep18_Amethyst_Fragment - Amount: 400 - - Material: Purificatory_Holy_O - Amount: 200 - - Material: Sanctuary_Sudarium - Amount: 200 - - Material: Purificatory_Holy_W - Amount: 200 - ResultItem: Vivatus_F_Shotgun - ChangeRefine: -1 - - Item: Hero_Weapon_Hammer_2 - BaseItems: - - BaseItem: Iron_Staff_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Iron_Staff_LT - ChangeRefine: 1 - - BaseItem: Blue_Crystal_Staff_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Blue_Crystal_Staff_LT - ChangeRefine: 1 - - BaseItem: Shadow_Staff_K_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Shadow_Staff_K_LT - ChangeRefine: 1 - - BaseItem: Freezing_Rod_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Freezing_Rod_LT - ChangeRefine: 1 - - BaseItem: Iron_Nail_K_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Iron_Nail_K_LT - ChangeRefine: 1 - - BaseItem: Ray_Knuckle_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Ray_Knuckle_LT - ChangeRefine: 1 -# - Item: Barmund_Plain_Reform -# BaseItems: -# - BaseItem: Barmund_Plain_Armor -# MinimumRefine: 7 -# Materials: -# - Material: Armor_Stone_4 -# Amount: 100 -# - Material: Barmund_Plain_Essence -# Amount: 50 -# - Material: Zelunium -# Amount: 300 -# - Material: Plain_Barmund_Rune2 -# Amount: 20 -# - Material: BarMealTicket -# Amount: 500 -# ResultItem: Plain_Rune_Armor -# - BaseItem: Barmund_Plain_Boots -# MinimumRefine: 7 -# Materials: -# - Material: Armor_Stone_4 -# Amount: 100 -# - Material: Barmund_Plain_Essence -# Amount: 50 -# - Material: Zelunium -# Amount: 300 -# - Material: Plain_Barmund_Rune2 -# Amount: 20 -# - Material: BarMealTicket -# Amount: 500 -# ResultItem: Plain_Rune_Boots -# - BaseItem: Barmund_Plain_Hood -# MinimumRefine: 7 -# Materials: -# - Material: Armor_Stone_4 -# Amount: 100 -# - Material: Barmund_Plain_Essence -# Amount: 50 -# - Material: Zelunium -# Amount: 300 -# - Material: Plain_Barmund_Rune2 -# Amount: 20 -# - Material: BarMealTicket -# Amount: 500 -# ResultItem: Plain_Rune_Hood - - Item: Vivatus_Weapon_Hammer - BaseItems: - - BaseItem: Vivatus_F_M_Book - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_M_Book - ChangeRefine: 1 - - BaseItem: Vivatus_F_P_Book - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_P_Book - ChangeRefine: 1 - - BaseItem: Vivatus_F_Bible - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_Bible - ChangeRefine: 1 - - BaseItem: Vivatus_F_Ribbon - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_Ribbon - ChangeRefine: 1 - - BaseItem: Vivatus_F_Harp - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_Harp - ChangeRefine: 1 - - BaseItem: Vivatus_F_Claw - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_Claw - ChangeRefine: 1 - - BaseItem: Vivatus_F_C_Rope - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_C_Rope - ChangeRefine: 1 - - BaseItem: Vivatus_F_Violin - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_Violin - ChangeRefine: 1 - - BaseItem: Vivatus_F_A_Bow - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_A_Bow - ChangeRefine: 1 - - BaseItem: Vivatus_F_Ballista - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_Ballista - ChangeRefine: 1 - - BaseItem: Vivatus_F_Knuckle - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_Knuckle - ChangeRefine: 1 - - BaseItem: Vivatus_F_Wand - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_Wand - ChangeRefine: 1 - - BaseItem: Vivatus_F_Rod - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_Rod - ChangeRefine: 1 - - BaseItem: Vivatus_F_T_Staff - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_T_Staff - ChangeRefine: 1 - - BaseItem: Vivatus_F_C_Bow - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_C_Bow - ChangeRefine: 1 - - BaseItem: Vivatus_F_Cakram - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_Cakram - ChangeRefine: 1 - - BaseItem: Vivatus_F_Hall - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_Hall - ChangeRefine: 1 - - BaseItem: Vivatus_F_Dagger - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_Dagger - ChangeRefine: 1 - - BaseItem: Vivatus_F_Katar - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_Katar - ChangeRefine: 1 - - BaseItem: Vivatus_F_Lapier - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_Lapier - ChangeRefine: 1 - - BaseItem: Vivatus_F_Mace - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_Mace - ChangeRefine: 1 - - BaseItem: Vivatus_F_G_Sword - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_G_Sword - ChangeRefine: 1 - - BaseItem: Vivatus_F_Axe - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_Axe - ChangeRefine: 1 - - BaseItem: Vivatus_F_G_Spear - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_G_Spear - ChangeRefine: 1 - - BaseItem: Vivatus_F_Lance - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_Lance - ChangeRefine: 1 - - BaseItem: Vivatus_F_T_Sword - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_T_Sword - ChangeRefine: 1 - - BaseItem: Vivatus_F_Humma - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_Humma - ChangeRefine: 1 - - BaseItem: Vivatus_F_C_Humma - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_C_Humma - ChangeRefine: 1 - - BaseItem: Vivatus_F_Revolver - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_Revolver - ChangeRefine: 1 - - BaseItem: Vivatus_F_Rifle - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_Rifle - ChangeRefine: 1 - - BaseItem: Vivatus_F_Gatling - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_Gatling - ChangeRefine: 1 - - BaseItem: Vivatus_F_Launcher - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_Launcher - ChangeRefine: 1 - - BaseItem: Vivatus_F_Moon_B - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_Moon_B - ChangeRefine: 1 - - BaseItem: Vivatus_F_Star_B - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_Star_B - ChangeRefine: 1 - - BaseItem: Vivatus_F_S_Stick - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_S_Stick - ChangeRefine: 1 - - BaseItem: Vivatus_F_D_Wand - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_D_Wand - ChangeRefine: 1 - - BaseItem: Vivatus_F_F_Wand - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_F_Wand - ChangeRefine: 1 - - BaseItem: Vivatus_F_Shotgun - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_Shotgun - ChangeRefine: 1 - - BaseItem: Vivatus_F_F_model - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Vivatus_F_F_model - ChangeRefine: 1 - - Item: C_Weapon_Reform_2 - BaseItems: - - BaseItem: Up_Saint_Hall - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: Saint_Hall_LT - ChangeRefine: -1 - - BaseItem: Up_Undine_Spear_K - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: Undine_Spear_K_LT - ChangeRefine: -1 - - BaseItem: Up_Demon_Hunting_Bible - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: Demon_Hunting_Bible_LT - ChangeRefine: -1 - - BaseItem: Up_Light_Blade - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: Light_Blade_LT - ChangeRefine: -1 - - BaseItem: Up_Magic_Sword - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: Magic_Sword_LT - ChangeRefine: -1 - - BaseItem: Up_Fatalist - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: Fatalist_LT - ChangeRefine: -1 - - BaseItem: Up_Iron_Staff - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: Iron_Staff_LT - ChangeRefine: -1 - - BaseItem: Up_Blue_Crystal_Staff - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: Blue_Crystal_Staff_LT - ChangeRefine: -1 - - BaseItem: Up_Shadow_Staff_K - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: Shadow_Staff_K_LT - ChangeRefine: -1 - - BaseItem: Up_Freezing_Rod - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: Freezing_Rod_LT - ChangeRefine: -1 - - BaseItem: Up_Iron_Nail_K - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: Iron_Nail_K_LT - ChangeRefine: -1 - - BaseItem: Up_Ray_Knuckle - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: Ray_Knuckle_LT - ChangeRefine: -1 - - BaseItem: Up_Sword_Of_Bluefire - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: Sword_Of_Bluefire_LT - ChangeRefine: -1 - - BaseItem: Up_Slate_Sword - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: Slate_Sword_LT - ChangeRefine: -1 - - BaseItem: Up_Royal_Bow_K - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: Royal_Bow_K_LT - ChangeRefine: -1 - - BaseItem: Up_Scalet_Dragon_L_Bow - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: Scalet_Dragon_L_Bow_LT - ChangeRefine: -1 - - BaseItem: Up_Trumpet_Shell_K - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: Trumpet_Shell_K_LT - ChangeRefine: -1 - - BaseItem: Up_Barb_Wire_K - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: Barb_Wire_K_LT - ChangeRefine: -1 - - BaseItem: Up_Narcis_Bow - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: Narcis_Bow_LT - ChangeRefine: -1 - - BaseItem: Up_Avenger - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: Avenger_LT - ChangeRefine: -1 - - BaseItem: Up_Meteor_Striker - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: Meteor_Striker_LT - ChangeRefine: -1 - - BaseItem: Up_Blade_Katar - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: Blade_Katar_LT - ChangeRefine: -1 - - BaseItem: Up_Shiver_Katar_K - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: Shiver_Katar_K_LT - ChangeRefine: -1 - - BaseItem: Up_Dragonic_Slayer - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: Dragonic_Slayer_LT - ChangeRefine: -1 - - BaseItem: Up_Oriental_Sword - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: Oriental_Sword_LT - ChangeRefine: -1 - - BaseItem: Up_Fog_Dew_Sword - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: Fog_Dew_Sword_LT - ChangeRefine: -1 - - BaseItem: Up_Humma_Clear - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: Humma_Clear_LT - ChangeRefine: -1 - - BaseItem: Up_The_Black_Gatling - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: The_Black_Gatling_LT - ChangeRefine: -1 - - BaseItem: Up_Crimson_Rose - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: Crimson_Rose_LT - ChangeRefine: -1 - - BaseItem: Up_Demon_S_Shot - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: Demon_S_Shot_LT - ChangeRefine: -1 - - BaseItem: Up_OneSkyOneSun - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: OneSkyOneSun_LT - ChangeRefine: -1 - - BaseItem: Up_Golden_L_Launcher - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: Golden_L_Launcher_LT - ChangeRefine: -1 - - BaseItem: Up_Master_Soul_Rifle - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: Master_Soul_Rifle_LT - ChangeRefine: -1 - - BaseItem: Up_SoulWeight - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: SoulWeight_LT - ChangeRefine: -1 - - BaseItem: Up_MeawFoxtail - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: MeawFoxtail_LT - ChangeRefine: -1 -# - BaseItem: Up_Freedom_Stick -# MinimumRefine: 9 -# CardsAllowed: false -# Materials: -# - Material: Weapon_Stone_2 -# Amount: 100 -# - Material: Bio_Test_Fragment -# Amount: 300 -# - Material: Bio_Reseearch_Docu -# Amount: 150 -# ResultItem: Freedom_Stick_LT -# ChangeRefine: -1 -# - BaseItem: Up_Blessed_Knife -# MinimumRefine: 9 -# CardsAllowed: false -# Materials: -# - Material: Weapon_Stone_2 -# Amount: 100 -# - Material: Bio_Test_Fragment -# Amount: 300 -# - Material: Bio_Reseearch_Docu -# Amount: 150 -# ResultItem: Blessed_Knife_LT -# ChangeRefine: -1 -# - Item: Helm_Of_Faith_Hammer -# BaseItems: -# - BaseItem: Viva_Adul_Hat_WL1 -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Viva_Adul_Hat_WL1 -# ChangeRefine: 1 -# - BaseItem: Viva_Adul_Hat_WL2 -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Viva_Adul_Hat_WL2 -# ChangeRefine: 1 -# - BaseItem: Viva_Adul_Hat_SR1 -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Viva_Adul_Hat_SR1 -# ChangeRefine: 1 -# - BaseItem: Viva_Adul_Hat_SR2 -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Viva_Adul_Hat_SR2 -# ChangeRefine: 1 -# - BaseItem: Viva_Adul_Hat_AB1 -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Viva_Adul_Hat_AB1 -# ChangeRefine: 1 -# - BaseItem: Viva_Adul_Hat_AB2 -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Viva_Adul_Hat_AB2 -# ChangeRefine: 1 -# - BaseItem: Viva_Adul_Hat_SC1 -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Viva_Adul_Hat_SC1 -# ChangeRefine: 1 -# - BaseItem: Viva_Adul_Hat_SC2 -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Viva_Adul_Hat_SC2 -# ChangeRefine: 1 -# - BaseItem: Viva_Adul_Hat_RA1 -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Viva_Adul_Hat_RA1 -# ChangeRefine: 1 -# - BaseItem: Viva_Adul_Hat_RA2 -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Viva_Adul_Hat_RA2 -# ChangeRefine: 1 -# - BaseItem: Viva_Adul_Hat_LG1 -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Viva_Adul_Hat_LG1 -# ChangeRefine: 1 -# - BaseItem: Viva_Adul_Hat_LG2 -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Viva_Adul_Hat_LG2 -# ChangeRefine: 1 -# - BaseItem: Viva_Adul_Hat_GC1 -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Viva_Adul_Hat_GC1 -# ChangeRefine: 1 -# - BaseItem: Viva_Adul_Hat_GC2 -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Viva_Adul_Hat_GC2 -# ChangeRefine: 1 -# - BaseItem: Viva_Adul_Hat_SO1 -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Viva_Adul_Hat_SO1 -# ChangeRefine: 1 -# - BaseItem: Viva_Adul_Hat_SO2 -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Viva_Adul_Hat_SO2 -# ChangeRefine: 1 -# - BaseItem: Viva_Adul_Hat_RK1 -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Viva_Adul_Hat_RK1 -# ChangeRefine: 1 -# - BaseItem: Viva_Adul_Hat_RK2 -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Viva_Adul_Hat_RK2 -# ChangeRefine: 1 -# - BaseItem: Viva_Adul_Hat_WM1 -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Viva_Adul_Hat_WM1 -# ChangeRefine: 1 -# - BaseItem: Viva_Adul_Hat_WM2 -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Viva_Adul_Hat_WM2 -# ChangeRefine: 1 -# - BaseItem: Viva_Adul_Hat_NC1 -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Viva_Adul_Hat_NC1 -# ChangeRefine: 1 -# - BaseItem: Viva_Adul_Hat_NC2 -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Viva_Adul_Hat_NC2 -# ChangeRefine: 1 -# - BaseItem: Viva_Adul_Hat_GN1 -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Viva_Adul_Hat_GN1 -# ChangeRefine: 1 -# - BaseItem: Viva_Adul_Hat_GN2 -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Viva_Adul_Hat_GN2 -# ChangeRefine: 1 -# - BaseItem: Viva_Adul_Hat_KO1 -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Viva_Adul_Hat_KO1 -# ChangeRefine: 1 -# - BaseItem: Viva_Adul_Hat_KO2 -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Viva_Adul_Hat_KO2 -# ChangeRefine: 1 -# - BaseItem: Viva_Adul_Hat_RL1 -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Viva_Adul_Hat_RL1 -# ChangeRefine: 1 -# - BaseItem: Viva_Adul_Hat_RL2 -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Viva_Adul_Hat_RL2 -# ChangeRefine: 1 -# - BaseItem: Viva_Adul_Hat_SP1 -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Viva_Adul_Hat_SP1 -# ChangeRefine: 1 -# - BaseItem: Viva_Adul_Hat_SP2 -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Viva_Adul_Hat_SP2 -# ChangeRefine: 1 -# - BaseItem: Viva_Adul_Hat_SJ1 -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Viva_Adul_Hat_SJ1 -# ChangeRefine: 1 -# - BaseItem: Viva_Adul_Hat_SJ2 -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Viva_Adul_Hat_SJ2 -# ChangeRefine: 1 -# - BaseItem: Viva_Adul_Hat_SU1 -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Viva_Adul_Hat_SU1 -# ChangeRefine: 1 -# - BaseItem: Viva_Adul_Hat_SU2 -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Viva_Adul_Hat_SU2 -# ChangeRefine: 1 - - Item: Hero_Weapon_Up_Box_6 - BaseItems: - - BaseItem: Up_Humma_Clear - ResultItem: Humma_Clear_LT - - BaseItem: Up_Fog_Dew_Sword - ResultItem: Fog_Dew_Sword_LT - - BaseItem: Up_Crimson_Rose - ResultItem: Crimson_Rose_LT - - BaseItem: Up_Master_Soul_Rifle - ResultItem: Master_Soul_Rifle_LT - - BaseItem: Up_Demon_S_Shot - ResultItem: Demon_S_Shot_LT - - BaseItem: Up_The_Black_Gatling - ResultItem: The_Black_Gatling_LT - - BaseItem: Up_Golden_L_Launcher - ResultItem: Golden_L_Launcher_LT - - BaseItem: Up_MeawFoxtail - ResultItem: MeawFoxtail_LT - - BaseItem: Up_OneSkyOneSun - ResultItem: OneSkyOneSun_LT - - BaseItem: Up_SoulWeight - ResultItem: SoulWeight_LT -# - BaseItem: Up_Freedom_Stick -# ResultItem: Freedom_Stick_LT -# - BaseItem: Up_Blessed_Knife -# ResultItem: Blessed_Knife_LT -# - Item: Barmund_Flame_Reform -# BaseItems: -# - BaseItem: Barmund_Flame_Armor -# MinimumRefine: 7 -# Materials: -# - Material: Armor_Stone_4 -# Amount: 100 -# - Material: Zelunium -# Amount: 300 -# - Material: Barmund_Flame_Essence -# Amount: 50 -# - Material: Flame_Barmund_Rune2 -# Amount: 20 -# - Material: BarMealTicket -# Amount: 500 -# ResultItem: Flame_Rune_Armor -# - BaseItem: Barmund_Flame_Boots -# MinimumRefine: 7 -# Materials: -# - Material: Armor_Stone_4 -# Amount: 100 -# - Material: Zelunium -# Amount: 300 -# - Material: Barmund_Flame_Essence -# Amount: 50 -# - Material: Flame_Barmund_Rune2 -# Amount: 20 -# - Material: BarMealTicket -# Amount: 500 -# ResultItem: Flame_Rune_Boots -# - BaseItem: Barmund_Flame_Hood -# MinimumRefine: 7 -# Materials: -# - Material: Armor_Stone_4 -# Amount: 100 -# - Material: Zelunium -# Amount: 300 -# - Material: Barmund_Flame_Essence -# Amount: 50 -# - Material: Flame_Barmund_Rune2 -# Amount: 20 -# - Material: BarMealTicket -# Amount: 500 -# ResultItem: Flame_Rune_Hood - - Item: Adulter_Weapon_Up_Box - BaseItems: - - BaseItem: Adulter_F_M_Book - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_M_Book - - BaseItem: Adulter_F_P_Book - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_P_Book - - BaseItem: Adulter_F_Bible - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_Bible - - BaseItem: Adulter_F_Ribbon - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_Ribbon - - BaseItem: Adulter_F_Harp - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_Harp - - BaseItem: Adulter_F_Claw - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_Claw - - BaseItem: Adulter_F_C_Rope - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_C_Rope - - BaseItem: Adulter_F_Violin - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_Violin - - BaseItem: Adulter_F_A_Bow - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_A_Bow - - BaseItem: Adulter_F_Ballista - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_Ballista - - BaseItem: Adulter_F_Knuckle - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_Knuckle - - BaseItem: Adulter_F_Wand - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_Wand - - BaseItem: Adulter_F_Rod - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_Rod - - BaseItem: Adulter_F_T_Staff - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_T_Staff - - BaseItem: Adulter_F_C_Bow - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_C_Bow - - BaseItem: Adulter_F_Cakram - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_Cakram - - BaseItem: Adulter_F_Hall - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_Hall - - BaseItem: Adulter_F_Dagger - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_Dagger - - BaseItem: Adulter_F_Katar - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_Katar - - BaseItem: Adulter_F_Lapier - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_Lapier - - BaseItem: Adulter_F_Mace - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_Mace - - BaseItem: Adulter_F_G_Sword - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_G_Sword - - BaseItem: Adulter_F_Axe - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_Axe - - BaseItem: Adulter_F_G_Spear - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_G_Spear - - BaseItem: Adulter_F_Lance - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_Lance - - BaseItem: Adulter_F_T_Sword - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_T_Sword - - BaseItem: Adulter_F_Humma - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_Humma - - BaseItem: Adulter_F_C_Humma - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_C_Humma - - BaseItem: Adulter_F_Revolver - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_Revolver - - BaseItem: Adulter_F_Rifle - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_Rifle - - BaseItem: Adulter_F_Gatling - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_Gatling - - BaseItem: Adulter_F_Launcher - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_Launcher - - BaseItem: Adulter_F_Moon_B - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_Moon_B - - BaseItem: Adulter_F_Star_B - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_Star_B - - BaseItem: Adulter_F_S_Stick - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_S_Stick - - BaseItem: Adulter_F_D_Wand - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_D_Wand - - BaseItem: Adulter_F_F_Wand - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_F_Wand - - BaseItem: Adulter_F_F_model - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_F_model - - BaseItem: Adulter_F_Shotgun - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 400 - ResultItem: Vivatus_F_Shotgun -# - Item: OS_Weapon_Hammer -# BaseItems: -# - BaseItem: Beam_Claymore_AD -# MaximumRefine: 11 -# Materials: -# - Material: EP17_1_EVT39 -# Amount: 30 -# - Material: Zelunium -# Amount: 30 -# ResultItem: Beam_Claymore_AD -# ChangeRefine: 1 -# - BaseItem: Meuchler_AD -# MaximumRefine: 11 -# Materials: -# - Material: EP17_1_EVT39 -# Amount: 30 -# - Material: Zelunium -# Amount: 30 -# ResultItem: Meuchler_AD -# ChangeRefine: 1 -# - BaseItem: Blasti_AD -# MaximumRefine: 11 -# Materials: -# - Material: EP17_1_EVT39 -# Amount: 30 -# - Material: Zelunium -# Amount: 30 -# ResultItem: Blasti_AD -# ChangeRefine: 1 -# - BaseItem: Virtual_Bow_AD -# MaximumRefine: 11 -# Materials: -# - Material: EP17_1_EVT39 -# Amount: 30 -# - Material: Zelunium -# Amount: 30 -# ResultItem: Virtual_Bow_AD -# ChangeRefine: 1 -# - BaseItem: MH_P89_AD -# MaximumRefine: 11 -# Materials: -# - Material: EP17_1_EVT39 -# Amount: 30 -# - Material: Zelunium -# Amount: 30 -# ResultItem: MH_P89_AD -# ChangeRefine: 1 -# - BaseItem: AC_B44_AD -# MaximumRefine: 11 -# Materials: -# - Material: EP17_1_EVT39 -# Amount: 30 -# - Material: Zelunium -# Amount: 30 -# ResultItem: AC_B44_AD -# ChangeRefine: 1 -# - BaseItem: HR_S55_AD -# MaximumRefine: 11 -# Materials: -# - Material: EP17_1_EVT39 -# Amount: 30 -# - Material: Zelunium -# Amount: 30 -# ResultItem: HR_S55_AD -# ChangeRefine: 1 -# - BaseItem: Burning_Knuckle_AD -# MaximumRefine: 11 -# Materials: -# - Material: EP17_1_EVT39 -# Amount: 30 -# - Material: Zelunium -# Amount: 30 -# ResultItem: Burning_Knuckle_AD -# ChangeRefine: 1 -# - BaseItem: Cannon_Rapier_AD -# MaximumRefine: 11 -# Materials: -# - Material: EP17_1_EVT39 -# Amount: 30 -# - Material: Zelunium -# Amount: 30 -# ResultItem: Cannon_Rapier_AD -# ChangeRefine: 1 -# - BaseItem: Saphir_Hall_AD -# MaximumRefine: 11 -# Materials: -# - Material: EP17_1_EVT39 -# Amount: 30 -# - Material: Zelunium -# Amount: 30 -# ResultItem: Saphir_Hall_AD -# ChangeRefine: 1 -# - BaseItem: Ultio_Spes_AD -# MaximumRefine: 11 -# Materials: -# - Material: EP17_1_EVT39 -# Amount: 30 -# - Material: Zelunium -# Amount: 30 -# ResultItem: Ultio_Spes_AD -# ChangeRefine: 1 -# - BaseItem: Rutilus_Stick_AD -# MaximumRefine: 11 -# Materials: -# - Material: EP17_1_EVT39 -# Amount: 30 -# - Material: Zelunium -# Amount: 30 -# ResultItem: Rutilus_Stick_AD -# ChangeRefine: 1 -# - BaseItem: ElectricFox_AD -# MaximumRefine: 11 -# Materials: -# - Material: EP17_1_EVT39 -# Amount: 30 -# - Material: Zelunium -# Amount: 30 -# ResultItem: ElectricFox_AD -# ChangeRefine: 1 -# - BaseItem: Circuit_Board_AD -# MaximumRefine: 11 -# Materials: -# - Material: EP17_1_EVT39 -# Amount: 30 -# - Material: Zelunium -# Amount: 30 -# ResultItem: Circuit_Board_AD -# ChangeRefine: 1 -# - BaseItem: Kuroiro_AD -# MaximumRefine: 11 -# Materials: -# - Material: EP17_1_EVT39 -# Amount: 30 -# - Material: Zelunium -# Amount: 30 -# ResultItem: Kuroiro_AD -# ChangeRefine: 1 -# - BaseItem: Boost_Lance_AD -# MaximumRefine: 11 -# Materials: -# - Material: EP17_1_EVT39 -# Amount: 30 -# - Material: Zelunium -# Amount: 30 -# ResultItem: Boost_Lance_AD -# ChangeRefine: 1 - - Item: Thanos_W_Reform_2 - BaseItems: - - BaseItem: Thanos_Sword - MinimumRefine: 9 - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Gray_Shard - Amount: 300 - ResultItem: Thanos_Sword_AD - ChangeRefine: -1 - - BaseItem: Thanos_Great_Sword - MinimumRefine: 9 - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Gray_Shard - Amount: 300 - ResultItem: Thanos_TSword_AD - ChangeRefine: -1 - - BaseItem: Thanos_Hammer - MinimumRefine: 9 - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Gray_Shard - Amount: 300 - ResultItem: Thanos_Hammer_AD - ChangeRefine: -1 - - BaseItem: Thanos_Dagger - MinimumRefine: 9 - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Gray_Shard - Amount: 300 - ResultItem: Thanos_Dagger_AD - ChangeRefine: -1 - - BaseItem: Thanos_Rod - MinimumRefine: 9 - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Gray_Shard - Amount: 300 - ResultItem: Thanos_Rod_AD - ChangeRefine: -1 - - BaseItem: Thanos_Whip - MinimumRefine: 9 - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Gray_Shard - Amount: 300 - ResultItem: Thanos_Whip_AD - ChangeRefine: -1 - - BaseItem: Thanos_Violin - MinimumRefine: 9 - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Gray_Shard - Amount: 300 - ResultItem: Thanos_Violin_AD - ChangeRefine: -1 - - BaseItem: Thanos_Staff - MinimumRefine: 9 - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Gray_Shard - Amount: 300 - ResultItem: Thanos_Staff_AD - ChangeRefine: -1 - - BaseItem: Thanos_Spear - MinimumRefine: 9 - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Gray_Shard - Amount: 300 - ResultItem: Thanos_Spear_AD - ChangeRefine: -1 - - BaseItem: Thanos_Katar - MinimumRefine: 9 - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Gray_Shard - Amount: 300 - ResultItem: Thanos_Katar_AD - ChangeRefine: -1 - - BaseItem: Thanos_Axe - MinimumRefine: 9 - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Gray_Shard - Amount: 300 - ResultItem: Thanos_Axe_AD - ChangeRefine: -1 - - BaseItem: Thanos_Bow - MinimumRefine: 9 - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Gray_Shard - Amount: 300 - ResultItem: Thanos_Bow_AD - ChangeRefine: -1 - - BaseItem: Thanos_Knuckle - MinimumRefine: 9 - Materials: - - Material: Weapon_Stone_2 - Amount: 100 - - Material: Gray_Shard - Amount: 300 - ResultItem: Thanos_Knuckle_AD - ChangeRefine: -1 -# - Item: Barmund_Death_Reform -# BaseItems: -# - BaseItem: Barmund_Death_Armor -# MinimumRefine: 7 -# Materials: -# - Material: Armor_Stone_4 -# Amount: 100 -# - Material: Zelunium -# Amount: 300 -# - Material: Barmund_Death_Essence -# Amount: 50 -# - Material: Death_Barmund_Rune2 -# Amount: 20 -# - Material: BarMealTicket -# Amount: 500 -# ResultItem: Death_Rune_Armor -# - BaseItem: Barmund_Death_Boots -# MinimumRefine: 7 -# Materials: -# - Material: Armor_Stone_4 -# Amount: 100 -# - Material: Zelunium -# Amount: 300 -# - Material: Barmund_Death_Essence -# Amount: 50 -# - Material: Death_Barmund_Rune2 -# Amount: 20 -# - Material: BarMealTicket -# Amount: 500 -# ResultItem: Death_Rune_Boots -# - BaseItem: Barmund_Death_Hood -# MinimumRefine: 7 -# Materials: -# - Material: Armor_Stone_4 -# Amount: 100 -# - Material: Zelunium -# Amount: 300 -# - Material: Barmund_Death_Essence -# Amount: 50 -# - Material: Death_Barmund_Rune2 -# Amount: 20 -# - Material: BarMealTicket -# Amount: 500 -# ResultItem: Death_Rune_Hood - - Item: Poenitentia_Hammer - BaseItems: - - BaseItem: Poenitentia_Gladius - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Poenitentia_Gladius - ChangeRefine: 1 - - BaseItem: Poenitentia_Ligula - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Poenitentia_Ligula - ChangeRefine: 1 - - BaseItem: Poenitentia_Orbis - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Poenitentia_Orbis - ChangeRefine: 1 - - BaseItem: Poenitentia_Mucro - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Poenitentia_Mucro - ChangeRefine: 1 - - BaseItem: Poenitentia_Sol - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Poenitentia_Sol - ChangeRefine: 1 - - BaseItem: Poenitentia_Jana - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Poenitentia_Jana - ChangeRefine: 1 - - BaseItem: Poenitentia_Hasta - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Poenitentia_Hasta - ChangeRefine: 1 - - BaseItem: Poenitentia_Codex - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Poenitentia_Codex - ChangeRefine: 1 - - BaseItem: Poenitentia_Liber - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Poenitentia_Liber - ChangeRefine: 1 - - BaseItem: Poenitentia_Radius - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Poenitentia_Radius - ChangeRefine: 1 - - BaseItem: Poenitentia_Scipio - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Poenitentia_Scipio - ChangeRefine: 1 - - BaseItem: Poenitentia_Crystallum - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Poenitentia_Crystallum - ChangeRefine: 1 - - BaseItem: Poenitentia_Ramus - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Poenitentia_Ramus - ChangeRefine: 1 - - BaseItem: Poenitentia_Planta - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Poenitentia_Planta - ChangeRefine: 1 - - BaseItem: Poenitentia_Ferrum - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Poenitentia_Ferrum - ChangeRefine: 1 - - BaseItem: Poenitentia_Caestus - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Poenitentia_Caestus - ChangeRefine: 1 - - BaseItem: Poenitentia_Ungula - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Poenitentia_Ungula - ChangeRefine: 1 - - BaseItem: Poenitentia_Chorda - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Poenitentia_Chorda - ChangeRefine: 1 - - BaseItem: Poenitentia_Flagellum - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Poenitentia_Flagellum - ChangeRefine: 1 - - BaseItem: Poenitentia_Clava - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Poenitentia_Clava - ChangeRefine: 1 - - BaseItem: Poenitentia_Pendulus - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Poenitentia_Pendulus - ChangeRefine: 1 - - BaseItem: Poenitentia_Ensis - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Poenitentia_Ensis - ChangeRefine: 1 - - BaseItem: Poenitentia_Manus - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Poenitentia_Manus - ChangeRefine: 1 - - BaseItem: Poenitentia_Ascia - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Poenitentia_Ascia - ChangeRefine: 1 - - BaseItem: Poenitentia_Catapulta - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Poenitentia_Catapulta - ChangeRefine: 1 - - BaseItem: Poenitentia_Termes - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Poenitentia_Termes - ChangeRefine: 1 - - BaseItem: Poenitentia_Virga - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Poenitentia_Virga - ChangeRefine: 1 - - BaseItem: Poenitentia_Tenon - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Poenitentia_Tenon - ChangeRefine: 1 - - BaseItem: Poenitentia_Nervus - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Poenitentia_Nervus - ChangeRefine: 1 - - BaseItem: Poenitentia_Foramen - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Poenitentia_Foramen - ChangeRefine: 1 - - BaseItem: Poenitentia_Penet - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Poenitentia_Penet - ChangeRefine: 1 - - BaseItem: Poenitentia_Veloci - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Poenitentia_Veloci - ChangeRefine: 1 - - BaseItem: Poenitentia_Ruina - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Poenitentia_Ruina - ChangeRefine: 1 - - BaseItem: Poenetentia_Vatia - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Poenetentia_Vatia - ChangeRefine: 1 - - BaseItem: Poenetentia_Attendo - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Poenetentia_Attendo - ChangeRefine: 1 - - BaseItem: Poenetentia_Dilacero - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Poenetentia_Dilacero - ChangeRefine: 1 - - Item: Hero_Weapon_Up_Box_4 - BaseItems: - - BaseItem: Up_Trumpet_Shell_K - ResultItem: Trumpet_Shell_K_LT - - BaseItem: Up_Barb_Wire_K - ResultItem: Barb_Wire_K_LT - - BaseItem: Up_Narcis_Bow - ResultItem: Narcis_Bow_LT - - BaseItem: Up_Avenger - ResultItem: Avenger_LT - - BaseItem: Up_Meteor_Striker - ResultItem: Meteor_Striker_LT - - Item: Shadow_Changer_A_W - BaseItems: - - BaseItem: S_CriticalHit_Armor - MaximumRefine: 10 - Materials: - - Material: Shadowdecon - Amount: 10 - ResultItem: S_CriticalHit_Weapon - - BaseItem: S_KingbirdAncient_Armor - MaximumRefine: 10 - Materials: - - Material: Shadowdecon - Amount: 10 - ResultItem: S_KingbirdAnc_Weapon - Item: IDTest_Special BaseItems: - BaseItem: C_Hill_Wind_Mask + MaximumRefine: 0 ResultItem: Club__ ChangeRefine: 1 #RandomOptionGroup: BP # TODO: translate to our group names ClearSlots: true - RemoveGrade: true + RemoveEnchantgrade: true - BaseItem: C_Valkyrie_Circlet + MaximumRefine: 0 CardsAllowed: false ResultItem: Club_ ChangeRefine: 2 RandomOptionGroup: Group_0 ClearSlots: true - RemoveGrade: true + RemoveEnchantgrade: true - BaseItem: Avd_Knife MinimumRefine: 1 MaximumRefine: 5 Materials: - - Material: Jellopy - Amount: 10 + - Material: Jellopy + Amount: 10 ResultItem: Tsurugi_ ChangeRefine: 3 #RandomOptionGroup: BP # TODO: translate to our group names @@ -3128,3058 +77,3654 @@ Body: ChangeRefine: -2 - BaseItem: Ring Materials: - - Material: Jellopy - Amount: 10 - - Material: Fluff - Amount: 10 + - Material: Jellopy + Amount: 10 + - Material: Fluff + Amount: 10 ResultItem: Clothes_Of_The_Lord ClearSlots: true - RemoveGrade: true + RemoveEnchantgrade: true - BaseItem: Tsurugi_ CardsAllowed: false ResultItem: Tsurugi ChangeRefine: -20 RandomOptionGroup: Group_0 - BaseItem: C_Hill_Wind_Mask + MaximumRefine: 0 ResultItem: Katar ChangeRefine: 5 RandomOptionGroup: Group_0 - RemoveGrade: true + RemoveEnchantgrade: true - BaseItem: SeeOtter_Fan Materials: - - Material: Jellopy - Amount: 100 + - Material: Jellopy + Amount: 100 ResultItem: Poring_Card ChangeRefine: 1 - BaseItem: SeeOtter_Fan Materials: - - Material: Fluff - Amount: 100 + - Material: Fluff + Amount: 100 ResultItem: Poring_Card ChangeRefine: 1 - BaseItem: Ora_Ora + MaximumRefine: 0 CardsAllowed: false Materials: - - Material: Hinalle - Amount: 3 - - Material: Clover - Amount: 5 - - Material: Singing_Plant - - Material: Aloe - Amount: 10 - - Material: Ment - Amount: 3 - - Material: Animal_Blood - Amount: 3 + - Material: Animal_Blood + Amount: 3 + - Material: Hinalle + Amount: 3 + - Material: Aloe + Amount: 10 + - Material: Clover + Amount: 5 + - Material: Singing_Plant + - Material: Ment + Amount: 3 ResultItem: Shoot ChangeRefine: 1 - BaseItem: Emperium Materials: - - Material: Hinalle - Amount: 3 - - Material: Clover - Amount: 5 - - Material: Singing_Plant - - Material: Aloe - Amount: 10 - - Material: Ment - Amount: 3 - - Material: Animal_Blood - Amount: 3 + - Material: Animal_Blood + Amount: 3 + - Material: Hinalle + Amount: 3 + - Material: Aloe + Amount: 10 + - Material: Clover + Amount: 5 + - Material: Singing_Plant + - Material: Ment + Amount: 3 ResultItem: Blue_Gemstone ChangeRefine: 1 #RandomOptionGroup: BP # TODO: translate to our group names -# - Item: Barmund_Ice_Reform -# BaseItems: -# - BaseItem: Barmund_Ice_Armor -# MinimumRefine: 7 -# Materials: -# - Material: Armor_Stone_4 -# Amount: 100 -# - Material: Barmund_Ice_Essence -# Amount: 50 -# - Material: BarMealTicket -# Amount: 500 -# - Material: Zelunium -# Amount: 300 -# - Material: Ice_Barmund_Rune2 -# Amount: 20 -# ResultItem: Ice_Rune_Armor -# - BaseItem: Barmund_Ice_Boots -# MinimumRefine: 7 -# Materials: -# - Material: Armor_Stone_4 -# Amount: 100 -# - Material: Barmund_Ice_Essence -# Amount: 50 -# - Material: BarMealTicket -# Amount: 500 -# - Material: Zelunium -# Amount: 300 -# - Material: Ice_Barmund_Rune2 -# Amount: 20 -# ResultItem: Ice_Rune_Boots -# - BaseItem: Barmund_Ice_Hood -# MinimumRefine: 7 -# Materials: -# - Material: Armor_Stone_4 -# Amount: 100 -# - Material: Barmund_Ice_Essence -# Amount: 50 -# - Material: BarMealTicket -# Amount: 500 -# - Material: Zelunium -# Amount: 300 -# - Material: Ice_Barmund_Rune2 -# Amount: 20 -# ResultItem: Ice_Rune_Hood -# - Item: OS_Helm_Hammer -# BaseItems: -# - BaseItem: Sagittarius_DiademK_LT -# MaximumRefine: 11 -# Materials: -# - Material: Shadowdecon -# Amount: 30 -# - Material: EP17_1_EVT39 -# Amount: 30 -# ResultItem: Sagittarius_DiademK_LT -# ChangeRefine: 1 -# - BaseItem: Scorpio_Diadem_K_LT -# MaximumRefine: 11 -# Materials: -# - Material: Shadowdecon -# Amount: 30 -# - Material: EP17_1_EVT39 -# Amount: 30 -# ResultItem: Scorpio_Diadem_K_LT -# ChangeRefine: 1 -# - BaseItem: Large_Sorcerer_Crown_LT -# MaximumRefine: 11 -# Materials: -# - Material: Shadowdecon -# Amount: 30 -# - Material: EP17_1_EVT39 -# Amount: 30 -# ResultItem: Large_Sorcerer_Crown_LT -# ChangeRefine: 1 -# - BaseItem: Stripe_Hat_LT -# MaximumRefine: 11 -# Materials: -# - Material: Shadowdecon -# Amount: 30 -# - Material: EP17_1_EVT39 -# Amount: 30 -# ResultItem: Stripe_Hat_LT -# ChangeRefine: 1 -# - BaseItem: Phantom_Cap_LT -# MaximumRefine: 11 -# Materials: -# - Material: Shadowdecon -# Amount: 30 -# - Material: EP17_1_EVT39 -# Amount: 30 -# ResultItem: Phantom_Cap_LT -# ChangeRefine: 1 -# - BaseItem: Ignis_CapK_LT -# MaximumRefine: 11 -# Materials: -# - Material: Shadowdecon -# Amount: 30 -# - Material: EP17_1_EVT39 -# Amount: 30 -# ResultItem: Ignis_CapK_LT -# ChangeRefine: 1 -# - BaseItem: Clock_Casket_RD_LT -# MaximumRefine: 11 -# Materials: -# - Material: Shadowdecon -# Amount: 30 -# - Material: EP17_1_EVT39 -# Amount: 30 -# ResultItem: Clock_Casket_RD_LT -# ChangeRefine: 1 - Item: Thanos_W_Reform_1 BaseItems: - BaseItem: Thanos_Sword MinimumRefine: 9 Materials: - - Material: Gray_Shard - Amount: 100 - - Material: Weapon_Stone_1 - Amount: 100 + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Gray_Shard + Amount: 100 ResultItem: Thanos_Sword_AD ChangeRefine: -5 - BaseItem: Thanos_Great_Sword MinimumRefine: 9 Materials: - - Material: Gray_Shard - Amount: 100 - - Material: Weapon_Stone_1 - Amount: 100 + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Gray_Shard + Amount: 100 ResultItem: Thanos_TSword_AD ChangeRefine: -5 - BaseItem: Thanos_Hammer MinimumRefine: 9 Materials: - - Material: Gray_Shard - Amount: 100 - - Material: Weapon_Stone_1 - Amount: 100 + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Gray_Shard + Amount: 100 ResultItem: Thanos_Hammer_AD ChangeRefine: -5 - BaseItem: Thanos_Dagger MinimumRefine: 9 Materials: - - Material: Gray_Shard - Amount: 100 - - Material: Weapon_Stone_1 - Amount: 100 + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Gray_Shard + Amount: 100 ResultItem: Thanos_Dagger_AD ChangeRefine: -5 - BaseItem: Thanos_Rod MinimumRefine: 9 Materials: - - Material: Gray_Shard - Amount: 100 - - Material: Weapon_Stone_1 - Amount: 100 + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Gray_Shard + Amount: 100 ResultItem: Thanos_Rod_AD ChangeRefine: -5 - BaseItem: Thanos_Whip MinimumRefine: 9 Materials: - - Material: Gray_Shard - Amount: 100 - - Material: Weapon_Stone_1 - Amount: 100 + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Gray_Shard + Amount: 100 ResultItem: Thanos_Whip_AD ChangeRefine: -5 - BaseItem: Thanos_Violin MinimumRefine: 9 Materials: - - Material: Gray_Shard - Amount: 100 - - Material: Weapon_Stone_1 - Amount: 100 + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Gray_Shard + Amount: 100 ResultItem: Thanos_Violin_AD ChangeRefine: -5 - BaseItem: Thanos_Staff MinimumRefine: 9 Materials: - - Material: Gray_Shard - Amount: 100 - - Material: Weapon_Stone_1 - Amount: 100 + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Gray_Shard + Amount: 100 ResultItem: Thanos_Staff_AD ChangeRefine: -5 - BaseItem: Thanos_Spear MinimumRefine: 9 Materials: - - Material: Gray_Shard - Amount: 100 - - Material: Weapon_Stone_1 - Amount: 100 + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Gray_Shard + Amount: 100 ResultItem: Thanos_Spear_AD ChangeRefine: -5 - BaseItem: Thanos_Katar MinimumRefine: 9 Materials: - - Material: Gray_Shard - Amount: 100 - - Material: Weapon_Stone_1 - Amount: 100 + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Gray_Shard + Amount: 100 ResultItem: Thanos_Katar_AD ChangeRefine: -5 - BaseItem: Thanos_Axe MinimumRefine: 9 Materials: - - Material: Gray_Shard - Amount: 100 - - Material: Weapon_Stone_1 - Amount: 100 + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Gray_Shard + Amount: 100 ResultItem: Thanos_Axe_AD ChangeRefine: -5 - BaseItem: Thanos_Bow MinimumRefine: 9 Materials: - - Material: Gray_Shard - Amount: 100 - - Material: Weapon_Stone_1 - Amount: 100 + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Gray_Shard + Amount: 100 ResultItem: Thanos_Bow_AD ChangeRefine: -5 - BaseItem: Thanos_Knuckle MinimumRefine: 9 Materials: - - Material: Gray_Shard - Amount: 100 - - Material: Weapon_Stone_1 - Amount: 100 + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Gray_Shard + Amount: 100 ResultItem: Thanos_Knuckle_AD ChangeRefine: -5 - - Item: C_Armor_Reform_1 - BaseItems: - - BaseItem: Thanos_Helm_1 - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Armor_Stone_1 - Amount: 100 - - Material: Gray_Shard - Amount: 100 - ResultItem: Thanos_Helm1_LT - ChangeRefine: -5 - - BaseItem: Thanos_Helm_2 - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Armor_Stone_1 - Amount: 100 - - Material: Gray_Shard - Amount: 100 - ResultItem: Thanos_Helm2_LT - ChangeRefine: -5 - - BaseItem: Thanos_Helm_3 - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Armor_Stone_1 - Amount: 100 - - Material: Gray_Shard - Amount: 100 - ResultItem: Thanos_Helm3_LT - ChangeRefine: -5 - - BaseItem: Great_Hero_Boots - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 100 - - Material: Armor_Stone_1 - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 50 - ResultItem: Hero_Boots_LT - ChangeRefine: -5 - - BaseItem: Smoky_TransformHat - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Armor_Stone_1 - Amount: 100 - - Material: Raccoon_Leaf - Amount: 150 - ResultItem: Smoky_TransformHat_LT - ChangeRefine: -5 - - BaseItem: Whikebain_Ears_K - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Armor_Stone_1 - Amount: 100 - - Material: Black_Kitty_Doll - Amount: 50 - ResultItem: Whikebain_Ears_K_LT - ChangeRefine: -5 - - BaseItem: Survive_Circlet_K - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Armor_Stone_1 - Amount: 100 - - Material: Soft_Silk_Cloth - Amount: 100 - ResultItem: Survive_Circlet_K_LT - ChangeRefine: -5 - - BaseItem: GoldFish_Hat - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Armor_Stone_1 - Amount: 100 - - Material: Shining_Scales - Amount: 150 - ResultItem: GoldFish_Hat_LT - ChangeRefine: -5 - - BaseItem: Imp_Hat - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Armor_Stone_1 - Amount: 100 - - Material: Hot_Hair - Amount: 150 - ResultItem: Imp_Hat_LT - ChangeRefine: -5 - - BaseItem: Thanos_Helm_4 - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Armor_Stone_1 - Amount: 100 - - Material: Gray_Shard - Amount: 100 - ResultItem: Thanos_Helm4_LT - ChangeRefine: -5 - - BaseItem: Whikebain_Ears - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Armor_Stone_1 - Amount: 100 - - Material: Black_Kitty_Doll - Amount: 50 - ResultItem: Whikebain_Ears_K_LT - ChangeRefine: -5 - - BaseItem: Mad_Bunny_K_ - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Soft_Feather - Amount: 100 - - Material: Armor_Stone_1 - Amount: 100 - - Material: Feather - Amount: 100 - ResultItem: Mad_Bunny_K_LT - ChangeRefine: -5 - - BaseItem: King_Tiger_Doll_Hat - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Armor_Stone_1 - Amount: 100 - - Material: Tiger_Footskin - Amount: 40 - ResultItem: King_Tiger_Doll_Hat_LT - ChangeRefine: -5 - - BaseItem: Zaha_Doll_Hat - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Limpid_Celestial_Robe - Amount: 200 - - Material: Armor_Stone_1 - Amount: 100 - - Material: Soft_Silk_Cloth - Amount: 100 - ResultItem: Baksojin_Hat_LT - ChangeRefine: -5 -# - BaseItem: Sagittarius_DiademK -# MinimumRefine: 9 -# CardsAllowed: false -# Materials: -# - Material: EP17_1_EVT02 -# Amount: 100 -# - Material: Armor_Stone_1 -# Amount: 100 -# - Material: EP17_1_EVT39 -# Amount: 20 -# ResultItem: Sagittarius_DiademK_LT -# ChangeRefine: -5 -# - BaseItem: Scorpio_Diadem_K -# MinimumRefine: 9 -# CardsAllowed: false -# Materials: -# - Material: EP17_1_EVT02 -# Amount: 100 -# - Material: Armor_Stone_1 -# Amount: 100 -# - Material: EP17_1_EVT39 -# Amount: 20 -# ResultItem: Scorpio_Diadem_K_LT -# ChangeRefine: -5 -# - BaseItem: Large_Sorcerer_Crown -# MinimumRefine: 9 -# CardsAllowed: false -# Materials: -# - Material: EP17_1_EVT02 -# Amount: 100 -# - Material: Armor_Stone_1 -# Amount: 100 -# - Material: EP17_1_EVT39 -# Amount: 20 -# ResultItem: Large_Sorcerer_Crown_LT -# ChangeRefine: -5 -# - BaseItem: Stripe_Hat -# MinimumRefine: 9 -# CardsAllowed: false -# Materials: -# - Material: EP17_1_EVT02 -# Amount: 100 -# - Material: Armor_Stone_1 -# Amount: 100 -# - Material: EP17_1_EVT39 -# Amount: 20 -# ResultItem: Stripe_Hat_LT -# ChangeRefine: -5 -# - BaseItem: Phantom_Cap -# MinimumRefine: 9 -# CardsAllowed: false -# Materials: -# - Material: EP17_1_EVT02 -# Amount: 100 -# - Material: Armor_Stone_1 -# Amount: 100 -# - Material: EP17_1_EVT39 -# Amount: 20 -# ResultItem: Phantom_Cap_LT -# ChangeRefine: -5 -# - BaseItem: Ignis_CapK -# MinimumRefine: 9 -# CardsAllowed: false -# Materials: -# - Material: EP17_1_EVT02 -# Amount: 100 -# - Material: Armor_Stone_1 -# Amount: 100 -# - Material: EP17_1_EVT39 -# Amount: 20 -# ResultItem: Ignis_CapK_LT -# ChangeRefine: -5 -# - BaseItem: Clock_Casket_RD -# MinimumRefine: 9 -# CardsAllowed: false -# Materials: -# - Material: EP17_1_EVT02 -# Amount: 100 -# - Material: Armor_Stone_1 -# Amount: 100 -# - Material: EP17_1_EVT39 -# Amount: 20 -# ResultItem: Clock_Casket_RD_LT -# ChangeRefine: -5 -# - Item: Clock_Tower_W_Hammer -# BaseItems: -# - BaseItem: Precision_Bow -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Precision_Bow -# ChangeRefine: 1 -# - BaseItem: Precision_Fist -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Precision_Fist -# ChangeRefine: 1 -# - BaseItem: Precision_Fuuma -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Precision_Fuuma -# ChangeRefine: 1 -# - BaseItem: Precision_Gatling -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Precision_Gatling -# ChangeRefine: 1 -# - BaseItem: Precision_Grenade -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Precision_Grenade -# ChangeRefine: 1 -# - BaseItem: Precision_Lute -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Precision_Lute -# ChangeRefine: 1 -# - BaseItem: Precision_Pistol -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Precision_Pistol -# ChangeRefine: 1 -# - BaseItem: Precision_Rifle -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Precision_Rifle -# ChangeRefine: 1 -# - BaseItem: Precision_Shotgun -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Precision_Shotgun -# ChangeRefine: 1 -# - BaseItem: Precision_Whip -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Precision_Whip -# ChangeRefine: 1 -# - BaseItem: Solid_Claymore -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Solid_Claymore -# ChangeRefine: 1 -# - BaseItem: Solid_Dagger -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Solid_Dagger -# ChangeRefine: 1 -# - BaseItem: Solid_Edge -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Solid_Edge -# ChangeRefine: 1 -# - BaseItem: Solid_Manual -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Solid_Manual -# ChangeRefine: 1 -# - BaseItem: Solid_Rod -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Solid_Rod -# ChangeRefine: 1 -# - BaseItem: Solid_Spear -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Solid_Spear -# ChangeRefine: 1 -# - BaseItem: Solid_Staff -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Solid_Staff -# ChangeRefine: 1 -# - BaseItem: Solid_Wand -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Solid_Wand -# ChangeRefine: 1 -# - BaseItem: Wicked_Axe -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Wicked_Axe -# ChangeRefine: 1 -# - BaseItem: Wicked_Blade -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Wicked_Blade -# ChangeRefine: 1 -# - BaseItem: Wicked_Book -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Wicked_Book -# ChangeRefine: 1 -# - BaseItem: Wicked_Cross -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Wicked_Cross -# ChangeRefine: 1 -# - BaseItem: Wicked_Dagger -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Wicked_Dagger -# ChangeRefine: 1 -# - BaseItem: Wicked_Edge -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Wicked_Edge -# ChangeRefine: 1 -# - BaseItem: Wicked_Katar -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Wicked_Katar -# ChangeRefine: 1 -# - BaseItem: Wicked_Plant -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Wicked_Plant -# ChangeRefine: 1 - - Item: Thanos_Upgrade_Box + - Item: Thanos_W_Reform_2 BaseItems: - BaseItem: Thanos_Sword + MinimumRefine: 9 + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Gray_Shard + Amount: 300 ResultItem: Thanos_Sword_AD + ChangeRefine: -1 - BaseItem: Thanos_Great_Sword + MinimumRefine: 9 + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Gray_Shard + Amount: 300 ResultItem: Thanos_TSword_AD + ChangeRefine: -1 - BaseItem: Thanos_Hammer + MinimumRefine: 9 + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Gray_Shard + Amount: 300 ResultItem: Thanos_Hammer_AD + ChangeRefine: -1 - BaseItem: Thanos_Dagger + MinimumRefine: 9 + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Gray_Shard + Amount: 300 ResultItem: Thanos_Dagger_AD + ChangeRefine: -1 - BaseItem: Thanos_Rod + MinimumRefine: 9 + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Gray_Shard + Amount: 300 ResultItem: Thanos_Rod_AD + ChangeRefine: -1 - BaseItem: Thanos_Whip + MinimumRefine: 9 + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Gray_Shard + Amount: 300 ResultItem: Thanos_Whip_AD + ChangeRefine: -1 - BaseItem: Thanos_Violin + MinimumRefine: 9 + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Gray_Shard + Amount: 300 ResultItem: Thanos_Violin_AD + ChangeRefine: -1 - BaseItem: Thanos_Staff + MinimumRefine: 9 + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Gray_Shard + Amount: 300 ResultItem: Thanos_Staff_AD + ChangeRefine: -1 - BaseItem: Thanos_Spear + MinimumRefine: 9 + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Gray_Shard + Amount: 300 ResultItem: Thanos_Spear_AD + ChangeRefine: -1 - BaseItem: Thanos_Katar + MinimumRefine: 9 + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Gray_Shard + Amount: 300 ResultItem: Thanos_Katar_AD + ChangeRefine: -1 - BaseItem: Thanos_Axe + MinimumRefine: 9 + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Gray_Shard + Amount: 300 ResultItem: Thanos_Axe_AD + ChangeRefine: -1 - BaseItem: Thanos_Bow + MinimumRefine: 9 + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Gray_Shard + Amount: 300 ResultItem: Thanos_Bow_AD + ChangeRefine: -1 - BaseItem: Thanos_Knuckle + MinimumRefine: 9 + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Gray_Shard + Amount: 300 ResultItem: Thanos_Knuckle_AD - - BaseItem: Thanos_Helm_1 - ResultItem: Thanos_Helm1_LT - - BaseItem: Thanos_Helm_2 - ResultItem: Thanos_Helm2_LT - - BaseItem: Thanos_Helm_3 - ResultItem: Thanos_Helm3_LT - - BaseItem: Thanos_Helm_4 - ResultItem: Thanos_Helm4_LT - - Item: Hero_Weapon_Hammer_1 - BaseItems: - - BaseItem: Saint_Hall_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Saint_Hall_LT - ChangeRefine: 1 - - BaseItem: Undine_Spear_K_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Undine_Spear_K_LT - ChangeRefine: 1 - - BaseItem: Demon_Hunting_Bible_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Demon_Hunting_Bible_LT - ChangeRefine: 1 - - BaseItem: Light_Blade_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Light_Blade_LT - ChangeRefine: 1 - - BaseItem: Magic_Sword_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Magic_Sword_LT - ChangeRefine: 1 - - BaseItem: Fatalist_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Fatalist_LT - ChangeRefine: 1 - - Item: C_Armor_Reform_2 - BaseItems: - - BaseItem: Thanos_Helm_1 - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Gray_Shard - Amount: 300 - - Material: Armor_Stone_2 - Amount: 100 - ResultItem: Thanos_Helm1_LT ChangeRefine: -1 - - BaseItem: Thanos_Helm_2 - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Gray_Shard - Amount: 300 - - Material: Armor_Stone_2 - Amount: 100 - ResultItem: Thanos_Helm2_LT - ChangeRefine: -1 - - BaseItem: Thanos_Helm_3 - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Gray_Shard - Amount: 300 - - Material: Armor_Stone_2 - Amount: 100 - ResultItem: Thanos_Helm3_LT - ChangeRefine: -1 - - BaseItem: Great_Hero_Boots - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Bio_Reseearch_Docu - Amount: 150 - - Material: Armor_Stone_2 - Amount: 100 - ResultItem: Hero_Boots_LT - ChangeRefine: -1 - - BaseItem: Smoky_TransformHat - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Raccoon_Leaf - Amount: 300 - - Material: Armor_Stone_2 - Amount: 100 - ResultItem: Smoky_TransformHat_LT - ChangeRefine: -1 - - BaseItem: Whikebain_Ears_K - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Black_Kitty_Doll - Amount: 100 - - Material: Armor_Stone_2 - Amount: 100 - ResultItem: Whikebain_Ears_K_LT - ChangeRefine: -1 - - BaseItem: Survive_Circlet_K - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Soft_Silk_Cloth - Amount: 200 - - Material: Armor_Stone_2 - Amount: 100 - ResultItem: Survive_Circlet_K_LT - ChangeRefine: -1 - - BaseItem: GoldFish_Hat - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Shining_Scales - Amount: 300 - - Material: Armor_Stone_2 - Amount: 100 - ResultItem: GoldFish_Hat_LT - ChangeRefine: -1 - - BaseItem: Imp_Hat - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Hot_Hair - Amount: 300 - - Material: Armor_Stone_2 - Amount: 100 - ResultItem: Imp_Hat_LT - ChangeRefine: -1 - - BaseItem: Thanos_Helm_4 - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Gray_Shard - Amount: 300 - - Material: Armor_Stone_2 - Amount: 100 - ResultItem: Thanos_Helm4_LT - ChangeRefine: -1 - - BaseItem: Whikebain_Ears - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Black_Kitty_Doll - Amount: 100 - - Material: Armor_Stone_2 - Amount: 100 - ResultItem: Whikebain_Ears_K_LT - ChangeRefine: -1 - - BaseItem: Mad_Bunny_K_ - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Soft_Feather - Amount: 200 - - Material: Feather - Amount: 200 - - Material: Armor_Stone_2 - Amount: 100 - ResultItem: Mad_Bunny_K_LT - ChangeRefine: -1 - - BaseItem: King_Tiger_Doll_Hat - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Tiger_Footskin - Amount: 80 - - Material: Armor_Stone_2 - Amount: 100 - ResultItem: King_Tiger_Doll_Hat_LT - ChangeRefine: -1 - - BaseItem: Zaha_Doll_Hat - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Soft_Silk_Cloth - Amount: 200 - - Material: Limpid_Celestial_Robe - Amount: 400 - - Material: Armor_Stone_2 - Amount: 100 - ResultItem: Baksojin_Hat_LT - ChangeRefine: -1 - - Item: Barmund_Hammer - BaseItems: - - BaseItem: Barmund_Ice_Hood - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Barmund_Ice_Hood - ChangeRefine: 1 - - BaseItem: Barmund_Death_Hood - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Barmund_Death_Hood - ChangeRefine: 1 - - BaseItem: Barmund_Flame_Hood - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Barmund_Flame_Hood - ChangeRefine: 1 - - BaseItem: Barmund_Plain_Hood - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Barmund_Plain_Hood - ChangeRefine: 1 - - BaseItem: Barmund_Ice_Boots - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Barmund_Ice_Boots - ChangeRefine: 1 - - BaseItem: Barmund_Death_Boots - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Barmund_Death_Boots - ChangeRefine: 1 - - BaseItem: Barmund_Flame_Boots - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Barmund_Flame_Boots - ChangeRefine: 1 - - BaseItem: Barmund_Plain_Boots - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Barmund_Plain_Boots - ChangeRefine: 1 - - BaseItem: Barmund_Ice_Armor - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Barmund_Ice_Armor - ChangeRefine: 1 - - BaseItem: Barmund_Death_Armor - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Barmund_Death_Armor - ChangeRefine: 1 - - BaseItem: Barmund_Plain_Armor - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Barmund_Plain_Armor - ChangeRefine: 1 - - BaseItem: Barmund_Flame_Armor - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Barmund_Flame_Armor - ChangeRefine: 1 -# - BaseItem: Sagittarius_DiademK -# MinimumRefine: 9 -# CardsAllowed: false -# Materials: -# - Material: EP17_1_EVT02 -# Amount: 300 -# - Material: EP17_1_EVT39 -# Amount: 60 -# - Material: Armor_Stone_2 -# Amount: 100 -# ResultItem: Sagittarius_DiademK_LT -# ChangeRefine: -1 -# - BaseItem: Scorpio_Diadem_K -# MinimumRefine: 9 -# CardsAllowed: false -# Materials: -# - Material: EP17_1_EVT02 -# Amount: 300 -# - Material: EP17_1_EVT39 -# Amount: 60 -# - Material: Armor_Stone_2 -# Amount: 100 -# ResultItem: Scorpio_Diadem_K_LT -# ChangeRefine: -1 -# - BaseItem: Large_Sorcerer_Crown -# MinimumRefine: 9 -# CardsAllowed: false -# Materials: -# - Material: EP17_1_EVT02 -# Amount: 300 -# - Material: EP17_1_EVT39 -# Amount: 60 -# - Material: Armor_Stone_2 -# Amount: 100 -# ResultItem: Large_Sorcerer_Crown_LT -# ChangeRefine: -1 -# - BaseItem: Stripe_Hat -# MinimumRefine: 9 -# CardsAllowed: false -# Materials: -# - Material: EP17_1_EVT02 -# Amount: 300 -# - Material: EP17_1_EVT39 -# Amount: 60 -# - Material: Armor_Stone_2 -# Amount: 100 -# ResultItem: Stripe_Hat_LT -# ChangeRefine: -1 -# - BaseItem: Phantom_Cap -# MinimumRefine: 9 -# CardsAllowed: false -# Materials: -# - Material: EP17_1_EVT02 -# Amount: 300 -# - Material: EP17_1_EVT39 -# Amount: 60 -# - Material: Armor_Stone_2 -# Amount: 100 -# ResultItem: Phantom_Cap_LT -# ChangeRefine: -1 -# - BaseItem: Ignis_CapK -# MinimumRefine: 9 -# CardsAllowed: false -# Materials: -# - Material: EP17_1_EVT02 -# Amount: 300 -# - Material: EP17_1_EVT39 -# Amount: 60 -# - Material: Armor_Stone_2 -# Amount: 100 -# ResultItem: Ignis_CapK_LT -# ChangeRefine: -1 -# - BaseItem: Clock_Casket_RD -# MinimumRefine: 9 -# CardsAllowed: false -# Materials: -# - Material: EP17_1_EVT02 -# Amount: 300 -# - Material: EP17_1_EVT39 -# Amount: 60 -# - Material: Armor_Stone_2 -# Amount: 100 -# ResultItem: Clock_Casket_RD_LT -# ChangeRefine: -1 -# - Item: EP19_DGW_Refine -# BaseItems: -# - BaseItem: D_Glacier_T_Sword -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Ep19_Snow_Flower -# Amount: 40 -# - Material: EP19_N_P_Crystal -# Amount: 10 -# - Material: EP19_D_P_Crystal -# Amount: 10 -# ResultItem: D_Glacier_T_Sword -# ChangeRefine: 1 -# - BaseItem: D_Glacier_Katar -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Ep19_Snow_Flower -# Amount: 40 -# - Material: EP19_N_P_Crystal -# Amount: 10 -# - Material: EP19_D_P_Crystal -# Amount: 10 -# ResultItem: D_Glacier_Katar -# ChangeRefine: 1 -# - BaseItem: D_Glacier_T_Axe -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Ep19_Snow_Flower -# Amount: 40 -# - Material: EP19_N_P_Crystal -# Amount: 10 -# - Material: EP19_D_P_Crystal -# Amount: 10 -# ResultItem: D_Glacier_T_Axe -# ChangeRefine: 1 -# - BaseItem: D_Glacier_Lance -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Ep19_Snow_Flower -# Amount: 40 -# - Material: EP19_N_P_Crystal -# Amount: 10 -# - Material: EP19_D_P_Crystal -# Amount: 10 -# ResultItem: D_Glacier_Lance -# ChangeRefine: 1 -# - BaseItem: D_Glacier_Staff -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Ep19_Snow_Flower -# Amount: 40 -# - Material: EP19_N_P_Crystal -# Amount: 10 -# - Material: EP19_D_P_Crystal -# Amount: 10 -# ResultItem: D_Glacier_Staff -# ChangeRefine: 1 -# - BaseItem: D_Glacier_Humma -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Ep19_Snow_Flower -# Amount: 40 -# - Material: EP19_N_P_Crystal -# Amount: 10 -# - Material: EP19_D_P_Crystal -# Amount: 10 -# ResultItem: D_Glacier_Humma -# ChangeRefine: 1 -# - BaseItem: D_Glacier_Bow -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Ep19_Snow_Flower -# Amount: 40 -# - Material: EP19_N_P_Crystal -# Amount: 10 -# - Material: EP19_D_P_Crystal -# Amount: 10 -# ResultItem: D_Glacier_Bow -# ChangeRefine: 1 -# - BaseItem: D_Glacier_Revolver -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Ep19_Snow_Flower -# Amount: 40 -# - Material: EP19_N_P_Crystal -# Amount: 10 -# - Material: EP19_D_P_Crystal -# Amount: 10 -# ResultItem: D_Glacier_Revolver -# ChangeRefine: 1 -# - BaseItem: D_Glacier_Rifle -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Ep19_Snow_Flower -# Amount: 40 -# - Material: EP19_N_P_Crystal -# Amount: 10 -# - Material: EP19_D_P_Crystal -# Amount: 10 -# ResultItem: D_Glacier_Rifle -# ChangeRefine: 1 -# - BaseItem: D_Glacier_Shotgun -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Ep19_Snow_Flower -# Amount: 40 -# - Material: EP19_N_P_Crystal -# Amount: 10 -# - Material: EP19_D_P_Crystal -# Amount: 10 -# ResultItem: D_Glacier_Shotgun -# ChangeRefine: 1 -# - BaseItem: D_Glacier_Gatling -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Ep19_Snow_Flower -# Amount: 40 -# - Material: EP19_N_P_Crystal -# Amount: 10 -# - Material: EP19_D_P_Crystal -# Amount: 10 -# ResultItem: D_Glacier_Gatling -# ChangeRefine: 1 -# - BaseItem: D_Glacier_Launcher -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Ep19_Snow_Flower -# Amount: 40 -# - Material: EP19_N_P_Crystal -# Amount: 10 -# - Material: EP19_D_P_Crystal -# Amount: 10 -# ResultItem: D_Glacier_Launcher -# ChangeRefine: 1 -# - BaseItem: D_Glacier_Sword -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Ep19_Snow_Flower -# Amount: 40 -# - Material: EP19_N_P_Crystal -# Amount: 10 -# - Material: EP19_D_P_Crystal -# Amount: 10 -# ResultItem: D_Glacier_Sword -# ChangeRefine: 1 -# - BaseItem: D_Glacier_B_Sword -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Ep19_Snow_Flower -# Amount: 40 -# - Material: EP19_N_P_Crystal -# Amount: 10 -# - Material: EP19_D_P_Crystal -# Amount: 10 -# ResultItem: D_Glacier_B_Sword -# ChangeRefine: 1 -# - BaseItem: D_Glacier_R_Knife -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Ep19_Snow_Flower -# Amount: 40 -# - Material: EP19_N_P_Crystal -# Amount: 10 -# - Material: EP19_D_P_Crystal -# Amount: 10 -# ResultItem: D_Glacier_R_Knife -# ChangeRefine: 1 -# - BaseItem: D_Glacier_B_Knife -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Ep19_Snow_Flower -# Amount: 40 -# - Material: EP19_N_P_Crystal -# Amount: 10 -# - Material: EP19_D_P_Crystal -# Amount: 10 -# ResultItem: D_Glacier_B_Knife -# ChangeRefine: 1 -# - BaseItem: D_Glacier_Axe -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Ep19_Snow_Flower -# Amount: 40 -# - Material: EP19_N_P_Crystal -# Amount: 10 -# - Material: EP19_D_P_Crystal -# Amount: 10 -# ResultItem: D_Glacier_Axe -# ChangeRefine: 1 -# - BaseItem: D_Glacier_Spear -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Ep19_Snow_Flower -# Amount: 40 -# - Material: EP19_N_P_Crystal -# Amount: 10 -# - Material: EP19_D_P_Crystal -# Amount: 10 -# ResultItem: D_Glacier_Spear -# ChangeRefine: 1 -# - BaseItem: D_Glacier_Book -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Ep19_Snow_Flower -# Amount: 40 -# - Material: EP19_N_P_Crystal -# Amount: 10 -# - Material: EP19_D_P_Crystal -# Amount: 10 -# ResultItem: D_Glacier_Book -# ChangeRefine: 1 -# - BaseItem: D_Glacier_Wand -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Ep19_Snow_Flower -# Amount: 40 -# - Material: EP19_N_P_Crystal -# Amount: 10 -# - Material: EP19_D_P_Crystal -# Amount: 10 -# ResultItem: D_Glacier_Wand -# ChangeRefine: 1 -# - BaseItem: D_Glacier_Foxtail -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Ep19_Snow_Flower -# Amount: 40 -# - Material: EP19_N_P_Crystal -# Amount: 10 -# - Material: EP19_D_P_Crystal -# Amount: 10 -# ResultItem: D_Glacier_Foxtail -# ChangeRefine: 1 -# - BaseItem: D_Glacier_Knuckle -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Ep19_Snow_Flower -# Amount: 40 -# - Material: EP19_N_P_Crystal -# Amount: 10 -# - Material: EP19_D_P_Crystal -# Amount: 10 -# ResultItem: D_Glacier_Knuckle -# ChangeRefine: 1 -# - BaseItem: D_Glacier_Violin -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Ep19_Snow_Flower -# Amount: 40 -# - Material: EP19_N_P_Crystal -# Amount: 10 -# - Material: EP19_D_P_Crystal -# Amount: 10 -# ResultItem: D_Glacier_Violin -# ChangeRefine: 1 -# - BaseItem: D_Glacier_Whip -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Ep19_Snow_Flower -# Amount: 40 -# - Material: EP19_N_P_Crystal -# Amount: 10 -# - Material: EP19_D_P_Crystal -# Amount: 10 -# ResultItem: D_Glacier_Whip -# ChangeRefine: 1 -# - BaseItem: D_Glacier_Mace -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Ep19_Snow_Flower -# Amount: 40 -# - Material: EP19_N_P_Crystal -# Amount: 10 -# - Material: EP19_D_P_Crystal -# Amount: 10 -# ResultItem: D_Glacier_Mace -# ChangeRefine: 1 -# - BaseItem: D_Glacier_M_Mace -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Ep19_Snow_Flower -# Amount: 40 -# - Material: EP19_N_P_Crystal -# Amount: 10 -# - Material: EP19_D_P_Crystal -# Amount: 10 -# ResultItem: D_Glacier_M_Mace -# ChangeRefine: 1 - - Item: OS_Weapon_Reform - BaseItems: - - BaseItem: Beam_Claymore_OS - MinimumRefine: 7 - CardsAllowed: false - Materials: - - Material: EP17_1_EVT02 - Amount: 200 - - Material: EP17_1_EVT39 - Amount: 40 - - Material: Weapon_Stone_1 - Amount: 70 - ResultItem: Beam_Claymore_AD - RandomOptionGroup: Group_0 - - BaseItem: Meuchler_OS - MinimumRefine: 7 - CardsAllowed: false - Materials: - - Material: EP17_1_EVT02 - Amount: 200 - - Material: EP17_1_EVT39 - Amount: 40 - - Material: Weapon_Stone_1 - Amount: 70 - ResultItem: Meuchler_AD - RandomOptionGroup: Group_0 - - BaseItem: Blasti_OS - MinimumRefine: 7 - CardsAllowed: false - Materials: - - Material: EP17_1_EVT02 - Amount: 200 - - Material: EP17_1_EVT39 - Amount: 40 - - Material: Weapon_Stone_1 - Amount: 70 - ResultItem: Blasti_AD - RandomOptionGroup: Group_0 - - BaseItem: Virtual_Bow_OS - MinimumRefine: 7 - CardsAllowed: false - Materials: - - Material: EP17_1_EVT02 - Amount: 200 - - Material: EP17_1_EVT39 - Amount: 40 - - Material: Weapon_Stone_1 - Amount: 70 - ResultItem: Virtual_Bow_AD - RandomOptionGroup: Group_0 - - BaseItem: MH_P89_OS - MinimumRefine: 7 - CardsAllowed: false - Materials: - - Material: EP17_1_EVT02 - Amount: 200 - - Material: EP17_1_EVT39 - Amount: 40 - - Material: Weapon_Stone_1 - Amount: 70 - ResultItem: MH_P89_AD - RandomOptionGroup: Group_0 - - BaseItem: AC_B44_OS - MinimumRefine: 7 - CardsAllowed: false - Materials: - - Material: EP17_1_EVT02 - Amount: 200 - - Material: EP17_1_EVT39 - Amount: 40 - - Material: Weapon_Stone_1 - Amount: 70 - ResultItem: AC_B44_AD - RandomOptionGroup: Group_0 - - BaseItem: HR_S55_OS - MinimumRefine: 7 - CardsAllowed: false - Materials: - - Material: EP17_1_EVT02 - Amount: 200 - - Material: EP17_1_EVT39 - Amount: 40 - - Material: Weapon_Stone_1 - Amount: 70 - ResultItem: HR_S55_AD - RandomOptionGroup: Group_0 - - BaseItem: Burning_Knuckle_OS - MinimumRefine: 7 - CardsAllowed: false - Materials: - - Material: EP17_1_EVT02 - Amount: 200 - - Material: EP17_1_EVT39 - Amount: 40 - - Material: Weapon_Stone_1 - Amount: 70 - ResultItem: Burning_Knuckle_AD - RandomOptionGroup: Group_0 - - BaseItem: Cannon_Rapier_OS - MinimumRefine: 7 - CardsAllowed: false - Materials: - - Material: EP17_1_EVT02 - Amount: 200 - - Material: EP17_1_EVT39 - Amount: 40 - - Material: Weapon_Stone_1 - Amount: 70 - ResultItem: Cannon_Rapier_AD - RandomOptionGroup: Group_0 - - BaseItem: Saphir_Hall_OS - MinimumRefine: 7 - CardsAllowed: false - Materials: - - Material: EP17_1_EVT02 - Amount: 200 - - Material: EP17_1_EVT39 - Amount: 40 - - Material: Weapon_Stone_1 - Amount: 70 - ResultItem: Saphir_Hall_AD - RandomOptionGroup: Group_0 - - BaseItem: Ultio_Spes_OS - MinimumRefine: 7 - CardsAllowed: false - Materials: - - Material: EP17_1_EVT02 - Amount: 200 - - Material: EP17_1_EVT39 - Amount: 40 - - Material: Weapon_Stone_1 - Amount: 70 - ResultItem: Ultio_Spes_AD - RandomOptionGroup: Group_0 - - BaseItem: Rutilus_Stick_OS - MinimumRefine: 7 - CardsAllowed: false - Materials: - - Material: EP17_1_EVT02 - Amount: 200 - - Material: EP17_1_EVT39 - Amount: 40 - - Material: Weapon_Stone_1 - Amount: 70 - ResultItem: Rutilus_Stick_AD - RandomOptionGroup: Group_0 - - BaseItem: ElectricFox_OS - MinimumRefine: 7 - CardsAllowed: false - Materials: - - Material: EP17_1_EVT02 - Amount: 200 - - Material: EP17_1_EVT39 - Amount: 40 - - Material: Weapon_Stone_1 - Amount: 70 - ResultItem: ElectricFox_AD - RandomOptionGroup: Group_0 - - BaseItem: Circuit_Board_OS - MinimumRefine: 7 - CardsAllowed: false - Materials: - - Material: EP17_1_EVT02 - Amount: 200 - - Material: EP17_1_EVT39 - Amount: 40 - - Material: Weapon_Stone_1 - Amount: 70 - ResultItem: Circuit_Board_AD - RandomOptionGroup: Group_0 - - BaseItem: Kuroiro_OS - MinimumRefine: 7 - CardsAllowed: false - Materials: - - Material: EP17_1_EVT02 - Amount: 200 - - Material: EP17_1_EVT39 - Amount: 40 - - Material: Weapon_Stone_1 - Amount: 70 - ResultItem: Kuroiro_AD - RandomOptionGroup: Group_0 - - BaseItem: Boost_Lance_OS - MinimumRefine: 7 - CardsAllowed: false - Materials: - - Material: EP17_1_EVT02 - Amount: 200 - - Material: EP17_1_EVT39 - Amount: 40 - - Material: Weapon_Stone_1 - Amount: 70 - ResultItem: Boost_Lance_AD - RandomOptionGroup: Group_0 - - Item: Hero_Weapon_Up_Box_5 - BaseItems: - - BaseItem: Up_Blade_Katar - ResultItem: Blade_Katar_LT - - BaseItem: Up_Shiver_Katar_K - ResultItem: Shiver_Katar_K_LT - - BaseItem: Up_Dragonic_Slayer - ResultItem: Dragonic_Slayer_LT - - BaseItem: Up_Oriental_Sword - ResultItem: Oriental_Sword_LT - - Item: Special_Hat_Hammer - BaseItems: - - BaseItem: King_Tiger_Doll_Hat_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: King_Tiger_Doll_Hat_LT - ChangeRefine: 1 - - BaseItem: Baksojin_Hat_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Baksojin_Hat_LT - ChangeRefine: 1 - - BaseItem: Smoky_TransformHat_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Smoky_TransformHat_LT - ChangeRefine: 1 - - BaseItem: Whikebain_Ears_K_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Whikebain_Ears_K_LT - ChangeRefine: 1 - - BaseItem: Survive_Circlet_K_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Survive_Circlet_K_LT - ChangeRefine: 1 - - BaseItem: GoldFish_Hat_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: GoldFish_Hat_LT - ChangeRefine: 1 - - BaseItem: Imp_Hat_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Imp_Hat_LT - ChangeRefine: 1 - - Item: Shadow_Changer_NPC - BaseItems: - - BaseItem: S_FullPene_Armor - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_FullPene_Earring - - BaseItem: S_FullPene_Earring - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_FullPene_Shoes - - BaseItem: S_FullPene_Shoes - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_FullPene_Pendant - - BaseItem: S_FullPene_Pendant - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_FullPene_Armor - - BaseItem: S_FullTemp_Armor - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_FullTemp_Earring - - BaseItem: S_FullTemp_Earring - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_FullTemp_Shoes - - BaseItem: S_FullTemp_Shoes - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_FullTemp_Pendant - - BaseItem: S_FullTemp_Pendant - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_FullTemp_Armor - - BaseItem: S_TrueGem_Armor - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_TrueGem_Earring - - BaseItem: S_TrueGem_Earring - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_TrueGem_Shoes - - BaseItem: S_TrueGem_Shoes - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_TrueGem_Pendant - - BaseItem: S_TrueGem_Pendant - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_TrueGem_Armor - - BaseItem: S_CriticalHit_Weapon - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_CriticalHit_Armor - - BaseItem: S_CriticalHit_Armor - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_CriticalHit_Weapon - - BaseItem: S_M_AutoSpell_Armor - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_M_AutoSpell_Earring - - BaseItem: S_M_AutoSpell_Earring - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_M_AutoSpell_Shoes - - BaseItem: S_M_AutoSpell_Shoes - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_M_AutoSpell_Pendant - - BaseItem: S_M_AutoSpell_Pendant - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_M_AutoSpell_Armor - - BaseItem: S_Clever_Weapon - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_Clever_Shield - - BaseItem: S_Clever_Shield - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_Clever_Weapon - - BaseItem: S_Durable_Weapon - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_Durable_Shield - - BaseItem: S_Durable_Shield - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_Durable_Weapon - - BaseItem: S_Infinity_Weapon - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_Infinity_Shield - - BaseItem: S_Infinity_Shield - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_Infinity_Weapon - - BaseItem: S_Hasty_Weapon - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_Hasty_Shield - - BaseItem: S_Hasty_Shield - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_Hasty_Weapon - - BaseItem: S_PerfectSize_Weapon - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_PerfectSize_Armor - - BaseItem: S_PerfectSize_Armor - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_PerfectSize_Weapon - - BaseItem: S_R_Bearers_Armor - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_R_Bearers_Earring - - BaseItem: S_R_Bearers_Earring - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_R_Bearers_Shoes - - BaseItem: S_R_Bearers_Shoes - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_R_Bearers_Pendant - - BaseItem: S_R_Bearers_Pendant - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_R_Bearers_Armor - - BaseItem: S_SpellCaster_Armor - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_SpellCaster_Earring - - BaseItem: S_SpellCaster_Earring - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_SpellCaster_Shoes - - BaseItem: S_SpellCaster_Shoes - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_SpellCaster_Pendant - - BaseItem: S_SpellCaster_Pendant - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_SpellCaster_Armor - - BaseItem: S_Mega_Blitz_Shield - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_Mega_Blitz_Weapon - - BaseItem: S_Mega_Blitz_Weapon - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_Mega_Blitz_Shield - - BaseItem: S_Absorb_Shield - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_Absorb_Weapon - - BaseItem: S_Absorb_Weapon - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_Absorb_Shield - - BaseItem: S_M_Mammoth_Armor - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_M_Mammoth_Earring - - BaseItem: S_M_Mammoth_Earring - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_M_Mammoth_Shoes - - BaseItem: S_M_Mammoth_Shoes - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_M_Mammoth_Pendant - - BaseItem: S_M_Mammoth_Pendant - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_M_Mammoth_Armor - - BaseItem: S_AllMighty_Pendant - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_AllMighty_Earring - - BaseItem: S_AllMighty_Earring - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_AllMighty_Pendant - - BaseItem: S_KingbirdAnc_Weapon - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_KingbirdAncient_Armor - - BaseItem: S_KingbirdAncient_Armor - MaximumRefine: 10 - CardsAllowed: false - Materials: - - Material: Shadow_Exchange_Ticket - ResultItem: S_KingbirdAnc_Weapon -# - BaseItem: S_EXP_Shield -# MaximumRefine: 10 -# CardsAllowed: false -# Materials: -# - Material: Shadow_Exchange_Ticket -# ResultItem: S_EXP_Weapon -# - BaseItem: S_EXP_Weapon -# MaximumRefine: 10 -# CardsAllowed: false -# Materials: -# - Material: Shadow_Exchange_Ticket -# ResultItem: S_EXP_Shield - - Item: Consecrate_Weapon_1 - BaseItems: - - BaseItem: Adulter_F_T_Sword - MinimumRefine: 9 - Materials: - - Material: Conse_F_T_Sword - Amount: 10 - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Purificatory_Holy_W - Amount: 50 - ResultItem: Vivatus_F_T_Sword - ChangeRefine: -5 - - BaseItem: Adulter_F_Lance - MinimumRefine: 9 - Materials: - - Material: Conse_F_Lance - Amount: 10 - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Purificatory_Holy_W - Amount: 50 - ResultItem: Vivatus_F_Lance - ChangeRefine: -5 - - BaseItem: Adulter_F_G_Sword - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Conse_F_G_Sword - Amount: 10 - - Material: Purificatory_Holy_W - Amount: 50 - ResultItem: Vivatus_F_G_Sword - ChangeRefine: -5 - - BaseItem: Adulter_F_G_Spear - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Purificatory_Holy_W - Amount: 50 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Conse_F_G_Spear - Amount: 10 - ResultItem: Vivatus_F_G_Spear - ChangeRefine: -5 - - BaseItem: Adulter_F_Axe - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Conse_F_Axe - Amount: 10 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Purificatory_Holy_W - Amount: 50 - ResultItem: Vivatus_F_Axe - ChangeRefine: -5 - - BaseItem: Adulter_F_Mace - MinimumRefine: 9 - Materials: - - Material: Conse_F_Mace - Amount: 10 - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Purificatory_Holy_W - Amount: 50 - ResultItem: Vivatus_F_Mace - ChangeRefine: -5 - - BaseItem: Adulter_F_Lapier - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Conse_F_Lapier - Amount: 10 - - Material: Purificatory_Holy_W - Amount: 50 - ResultItem: Vivatus_F_Lapier - ChangeRefine: -5 - - BaseItem: Adulter_F_Hall - MinimumRefine: 9 - Materials: - - Material: Conse_F_Hall - Amount: 10 - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Purificatory_Holy_W - Amount: 50 - ResultItem: Vivatus_F_Hall - ChangeRefine: -5 - - BaseItem: Adulter_F_Cakram - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Conse_F_Cakram - Amount: 10 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Purificatory_Holy_W - Amount: 50 - ResultItem: Vivatus_F_Cakram - ChangeRefine: -5 - - BaseItem: Adulter_F_Katar - MinimumRefine: 9 - Materials: - - Material: Conse_F_Katar - Amount: 10 - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Purificatory_Holy_W - Amount: 50 - ResultItem: Vivatus_F_Katar - ChangeRefine: -5 - - BaseItem: Adulter_F_Dagger - MinimumRefine: 9 - Materials: - - Material: Conse_F_Dagger - Amount: 10 - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Purificatory_Holy_W - Amount: 50 - ResultItem: Vivatus_F_Dagger - ChangeRefine: -5 - - BaseItem: Adulter_F_C_Bow - MinimumRefine: 9 - Materials: - - Material: Conse_F_C_Bow - Amount: 10 - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Purificatory_Holy_W - Amount: 50 - ResultItem: Vivatus_F_C_Bow - ChangeRefine: -5 - - BaseItem: Adulter_F_T_Staff - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Purificatory_Holy_W - Amount: 50 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Conse_F_T_Staff - Amount: 10 - ResultItem: Vivatus_F_T_Staff - ChangeRefine: -5 - - BaseItem: Adulter_F_Rod - MinimumRefine: 9 - Materials: - - Material: Conse_F_Rod - Amount: 10 - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Purificatory_Holy_W - Amount: 50 - ResultItem: Vivatus_F_Rod - ChangeRefine: -5 - - BaseItem: Adulter_F_M_Book - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Conse_F_M_Book - Amount: 10 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Purificatory_Holy_W - Amount: 50 - ResultItem: Vivatus_F_M_Book - ChangeRefine: -5 - - BaseItem: Adulter_F_P_Book - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Conse_F_P_Book - Amount: 10 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Purificatory_Holy_W - Amount: 50 - ResultItem: Vivatus_F_P_Book - ChangeRefine: -5 - - BaseItem: Adulter_F_Bible - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Conse_F_Bible - Amount: 10 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Purificatory_Holy_W - Amount: 50 - ResultItem: Vivatus_F_Bible - ChangeRefine: -5 - - BaseItem: Adulter_F_Wand - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Purificatory_Holy_W - Amount: 50 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Conse_F_Wand - Amount: 10 - ResultItem: Vivatus_F_Wand - ChangeRefine: -5 - - BaseItem: Adulter_F_Knuckle - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Purificatory_Holy_W - Amount: 50 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Conse_F_Knuckle - Amount: 10 - ResultItem: Vivatus_F_Knuckle - ChangeRefine: -5 - - BaseItem: Adulter_F_Claw - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Conse_F_Claw - Amount: 10 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Purificatory_Holy_W - Amount: 50 - ResultItem: Vivatus_F_Claw - ChangeRefine: -5 - - BaseItem: Adulter_F_Ballista - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Conse_F_Ballista - Amount: 10 - - Material: Purificatory_Holy_W - Amount: 50 - ResultItem: Vivatus_F_Ballista - ChangeRefine: -5 - - BaseItem: Adulter_F_A_Bow - MinimumRefine: 9 - Materials: - - Material: Conse_F_A_Bow - Amount: 10 - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Purificatory_Holy_W - Amount: 50 - ResultItem: Vivatus_F_A_Bow - ChangeRefine: -5 - - BaseItem: Adulter_F_Violin - MinimumRefine: 9 - Materials: - - Material: Conse_F_Violin - Amount: 10 - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Purificatory_Holy_W - Amount: 50 - ResultItem: Vivatus_F_Violin - ChangeRefine: -5 - - BaseItem: Adulter_F_C_Rope - MinimumRefine: 9 - Materials: - - Material: Conse_F_C_Rope - Amount: 10 - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Purificatory_Holy_W - Amount: 50 - ResultItem: Vivatus_F_C_Rope - ChangeRefine: -5 - - BaseItem: Adulter_F_Harp - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Conse_F_Harp - Amount: 10 - - Material: Purificatory_Holy_W - Amount: 50 - ResultItem: Vivatus_F_Harp - ChangeRefine: -5 - - BaseItem: Adulter_F_Ribbon - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Conse_F_Ribbon - Amount: 10 - - Material: Purificatory_Holy_W - Amount: 50 - ResultItem: Vivatus_F_Ribbon - ChangeRefine: -5 - - BaseItem: Adulter_F_Humma - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Conse_F_Humma - Amount: 10 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Purificatory_Holy_W - Amount: 50 - ResultItem: Vivatus_F_Humma - ChangeRefine: -5 - - BaseItem: Adulter_F_C_Humma - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Conse_F_C_Humma - Amount: 10 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Purificatory_Holy_W - Amount: 50 - ResultItem: Vivatus_F_C_Humma - ChangeRefine: -5 - - BaseItem: Adulter_F_Revolver - MinimumRefine: 9 - Materials: - - Material: Conse_F_Revolver - Amount: 10 - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Purificatory_Holy_W - Amount: 50 - ResultItem: Vivatus_F_Revolver - ChangeRefine: -5 - - BaseItem: Adulter_F_Rifle - MinimumRefine: 9 - Materials: - - Material: Conse_F_Rifle - Amount: 10 - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Purificatory_Holy_W - Amount: 50 - ResultItem: Vivatus_F_Rifle - ChangeRefine: -5 - - BaseItem: Adulter_F_Gatling - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Purificatory_Holy_W - Amount: 50 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Conse_F_Gatling - Amount: 10 - ResultItem: Vivatus_F_Gatling - ChangeRefine: -5 - - BaseItem: Adulter_F_Launcher - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Purificatory_Holy_W - Amount: 50 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Conse_F_Launcher - Amount: 10 - ResultItem: Vivatus_F_Launcher - ChangeRefine: -5 - - BaseItem: Adulter_F_Moon_B - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Conse_F_Moon_B - Amount: 10 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Purificatory_Holy_W - Amount: 50 - ResultItem: Vivatus_F_Moon_B - ChangeRefine: -5 - - BaseItem: Adulter_F_Star_B - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Conse_F_Star_B - Amount: 10 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Purificatory_Holy_W - Amount: 50 - ResultItem: Vivatus_F_Star_B - ChangeRefine: -5 - - BaseItem: Adulter_F_S_Stick - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Conse_F_S_Stick - Amount: 10 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Purificatory_Holy_W - Amount: 50 - ResultItem: Vivatus_F_S_Stick - ChangeRefine: -5 - - BaseItem: Adulter_F_D_Wand - MinimumRefine: 9 - Materials: - - Material: Conse_F_D_Wand - Amount: 10 - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Purificatory_Holy_W - Amount: 50 - ResultItem: Vivatus_F_D_Wand - ChangeRefine: -5 - - BaseItem: Adulter_F_F_Wand - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Conse_F_F_Wand - Amount: 10 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Purificatory_Holy_W - Amount: 50 - ResultItem: Vivatus_F_F_Wand - ChangeRefine: -5 - - BaseItem: Adulter_F_F_model - MinimumRefine: 9 - Materials: - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Conse_F_F_model - Amount: 10 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Purificatory_Holy_W - Amount: 50 - ResultItem: Vivatus_F_F_model - ChangeRefine: -5 - - BaseItem: Adulter_F_Shotgun - MinimumRefine: 9 - Materials: - - Material: Conse_F_Shotgun - Amount: 10 - - Material: Ep18_Amethyst_Fragment - Amount: 200 - - Material: Purificatory_Holy_O - Amount: 50 - - Material: Sanctuary_Sudarium - Amount: 50 - - Material: Purificatory_Holy_W - Amount: 50 - ResultItem: Vivatus_F_Shotgun - ChangeRefine: -5 - - Item: Hero_Weapon_Hammer_6 - BaseItems: - - BaseItem: Humma_Clear_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Humma_Clear_LT - ChangeRefine: 1 - - BaseItem: Fog_Dew_Sword_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Fog_Dew_Sword_LT - ChangeRefine: 1 - - BaseItem: Crimson_Rose_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Crimson_Rose_LT - ChangeRefine: 1 - - BaseItem: Master_Soul_Rifle_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Master_Soul_Rifle_LT - ChangeRefine: 1 - - BaseItem: Demon_S_Shot_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Demon_S_Shot_LT - ChangeRefine: 1 - - BaseItem: The_Black_Gatling_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: The_Black_Gatling_LT - ChangeRefine: 1 - - BaseItem: Golden_L_Launcher_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Golden_L_Launcher_LT - ChangeRefine: 1 - - BaseItem: MeawFoxtail_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: MeawFoxtail_LT - ChangeRefine: 1 - - BaseItem: OneSkyOneSun_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: OneSkyOneSun_LT - ChangeRefine: 1 - - BaseItem: SoulWeight_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: SoulWeight_LT - ChangeRefine: 1 -# - BaseItem: Freedom_Stick_LT -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Freedom_Stick_LT -# ChangeRefine: 1 -# - BaseItem: Blessed_Knife_LT -# MinimumRefine: 9 -# MaximumRefine: 11 -# Materials: -# - Material: Blacksmith_Blessing -# Amount: 14 -# ResultItem: Blessed_Knife_LT -# ChangeRefine: 1 - - Item: Shadow_Changer_W_Shi - BaseItems: - - BaseItem: S_Hasty_Weapon - MaximumRefine: 10 - Materials: - - Material: Shadowdecon - Amount: 10 - ResultItem: S_Hasty_Shield - - BaseItem: S_Infinity_Weapon - MaximumRefine: 10 - Materials: - - Material: Shadowdecon - Amount: 10 - ResultItem: S_Infinity_Shield - - Item: Hero_Weapon_Hammer_5 - BaseItems: - - BaseItem: Blade_Katar_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Blade_Katar_LT - ChangeRefine: 1 - - BaseItem: Shiver_Katar_K_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Shiver_Katar_K_LT - ChangeRefine: 1 - - BaseItem: Dragonic_Slayer_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Dragonic_Slayer_LT - ChangeRefine: 1 - - BaseItem: Oriental_Sword_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Oriental_Sword_LT - ChangeRefine: 1 - - Item: Hero_Weapon_Hammer_4 - BaseItems: - - BaseItem: Trumpet_Shell_K_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Trumpet_Shell_K_LT - ChangeRefine: 1 - - BaseItem: Barb_Wire_K_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Barb_Wire_K_LT - ChangeRefine: 1 - - BaseItem: Narcis_Bow_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Narcis_Bow_LT - ChangeRefine: 1 - - BaseItem: Avenger_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Avenger_LT - ChangeRefine: 1 - - BaseItem: Meteor_Striker_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Meteor_Striker_LT - ChangeRefine: 1 - - Item: Hero_Weapon_Hammer_3 - BaseItems: - - BaseItem: Sword_Of_Bluefire_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Sword_Of_Bluefire_LT - ChangeRefine: 1 - - BaseItem: Slate_Sword_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Slate_Sword_LT - ChangeRefine: 1 - - BaseItem: Royal_Bow_K_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Royal_Bow_K_LT - ChangeRefine: 1 - - BaseItem: Scalet_Dragon_L_Bow_LT - MinimumRefine: 9 - MaximumRefine: 11 - Materials: - - Material: Blacksmith_Blessing - Amount: 14 - ResultItem: Scalet_Dragon_L_Bow_LT - ChangeRefine: 1 - - Item: Hero_Weapon_Up_Box_1 - BaseItems: - - BaseItem: Up_Saint_Hall - ResultItem: Saint_Hall_LT - - BaseItem: Up_Undine_Spear_K - ResultItem: Undine_Spear_K_LT - - BaseItem: Up_Demon_Hunting_Bible - ResultItem: Demon_Hunting_Bible_LT - - BaseItem: Up_Light_Blade - ResultItem: Light_Blade_LT - - BaseItem: Up_Magic_Sword - ResultItem: Magic_Sword_LT - - BaseItem: Up_Fatalist - ResultItem: Fatalist_LT - - Item: C_Armor_Reform_3 - BaseItems: - - BaseItem: SurviveOrb_K - CardsAllowed: false - Materials: - - Material: Armor_Stone_3 - Amount: 100 - - Material: Fragment_Of_Crystal - Amount: 450 - ResultItem: SurviveOrb_K_LT - - Item: Hero_Weapon_Up_Box_3 - BaseItems: - - BaseItem: Up_Sword_Of_Bluefire - ResultItem: Sword_Of_Bluefire_LT - - BaseItem: Up_Slate_Sword - ResultItem: Slate_Sword_LT - - BaseItem: Up_Royal_Bow_K - ResultItem: Royal_Bow_K_LT - - BaseItem: Up_Scalet_Dragon_L_Bow - ResultItem: Scalet_Dragon_L_Bow_LT - Item: Thanos_Refine_Hammer BaseItems: - BaseItem: Thanos_Sword_AD MinimumRefine: 9 MaximumRefine: 11 Materials: - - Material: Blacksmith_Blessing - Amount: 14 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Thanos_Sword_AD ChangeRefine: 1 - BaseItem: Thanos_Dagger_AD MinimumRefine: 9 MaximumRefine: 11 Materials: - - Material: Blacksmith_Blessing - Amount: 14 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Thanos_Dagger_AD ChangeRefine: 1 - BaseItem: Thanos_Spear_AD MinimumRefine: 9 MaximumRefine: 11 Materials: - - Material: Blacksmith_Blessing - Amount: 14 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Thanos_Spear_AD ChangeRefine: 1 - BaseItem: Thanos_Staff_AD MinimumRefine: 9 MaximumRefine: 11 Materials: - - Material: Blacksmith_Blessing - Amount: 14 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Thanos_Staff_AD ChangeRefine: 1 - BaseItem: Thanos_Knuckle_AD MinimumRefine: 9 MaximumRefine: 11 Materials: - - Material: Blacksmith_Blessing - Amount: 14 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Thanos_Knuckle_AD ChangeRefine: 1 - BaseItem: Thanos_Violin_AD MinimumRefine: 9 MaximumRefine: 11 Materials: - - Material: Blacksmith_Blessing - Amount: 14 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Thanos_Violin_AD ChangeRefine: 1 - BaseItem: Thanos_Whip_AD MinimumRefine: 9 MaximumRefine: 11 Materials: - - Material: Blacksmith_Blessing - Amount: 14 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Thanos_Whip_AD ChangeRefine: 1 - BaseItem: Thanos_Hammer_AD MinimumRefine: 9 MaximumRefine: 11 Materials: - - Material: Blacksmith_Blessing - Amount: 14 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Thanos_Hammer_AD ChangeRefine: 1 - BaseItem: Thanos_TSword_AD MinimumRefine: 9 MaximumRefine: 11 Materials: - - Material: Blacksmith_Blessing - Amount: 14 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Thanos_TSword_AD ChangeRefine: 1 - BaseItem: Thanos_Katar_AD MinimumRefine: 9 MaximumRefine: 11 Materials: - - Material: Blacksmith_Blessing - Amount: 14 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Thanos_Katar_AD ChangeRefine: 1 - BaseItem: Thanos_Axe_AD MinimumRefine: 9 MaximumRefine: 11 Materials: - - Material: Blacksmith_Blessing - Amount: 14 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Thanos_Axe_AD ChangeRefine: 1 - BaseItem: Thanos_Rod_AD MinimumRefine: 9 MaximumRefine: 11 Materials: - - Material: Blacksmith_Blessing - Amount: 14 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Thanos_Rod_AD ChangeRefine: 1 - BaseItem: Thanos_Bow_AD MinimumRefine: 9 MaximumRefine: 11 Materials: - - Material: Blacksmith_Blessing - Amount: 14 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Thanos_Bow_AD ChangeRefine: 1 - BaseItem: Thanos_Helm_1 MinimumRefine: 9 MaximumRefine: 11 Materials: - - Material: Blacksmith_Blessing - Amount: 14 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Thanos_Helm_1 ChangeRefine: 1 - BaseItem: Thanos_Helm1_LT MinimumRefine: 9 MaximumRefine: 11 Materials: - - Material: Blacksmith_Blessing - Amount: 14 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Thanos_Helm1_LT ChangeRefine: 1 - BaseItem: Thanos_Helm_2 MinimumRefine: 9 MaximumRefine: 11 Materials: - - Material: Blacksmith_Blessing - Amount: 14 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Thanos_Helm_2 ChangeRefine: 1 - BaseItem: Thanos_Helm2_LT MinimumRefine: 9 MaximumRefine: 11 Materials: - - Material: Blacksmith_Blessing - Amount: 14 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Thanos_Helm2_LT ChangeRefine: 1 - BaseItem: Thanos_Helm_3 MinimumRefine: 9 MaximumRefine: 11 Materials: - - Material: Blacksmith_Blessing - Amount: 14 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Thanos_Helm_3 ChangeRefine: 1 - BaseItem: Thanos_Helm3_LT MinimumRefine: 9 MaximumRefine: 11 Materials: - - Material: Blacksmith_Blessing - Amount: 14 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Thanos_Helm3_LT ChangeRefine: 1 - BaseItem: Thanos_Helm_4 MinimumRefine: 9 MaximumRefine: 11 Materials: - - Material: Blacksmith_Blessing - Amount: 14 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Thanos_Helm_4 ChangeRefine: 1 - BaseItem: Thanos_Helm4_LT MinimumRefine: 9 MaximumRefine: 11 Materials: - - Material: Blacksmith_Blessing - Amount: 14 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Thanos_Helm4_LT ChangeRefine: 1 - - Item: Hero_Weapon_Up_Box_2 + - Item: Consecrate_Weapon_1 BaseItems: + - BaseItem: Adulter_F_T_Sword + MinimumRefine: 9 + Materials: + - Material: Conse_F_T_Sword + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_T_Sword + ChangeRefine: -5 + - BaseItem: Adulter_F_Lance + MinimumRefine: 9 + Materials: + - Material: Conse_F_Lance + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_Lance + ChangeRefine: -5 + - BaseItem: Adulter_F_G_Sword + MinimumRefine: 9 + Materials: + - Material: Conse_F_G_Sword + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_G_Sword + ChangeRefine: -5 + - BaseItem: Adulter_F_G_Spear + MinimumRefine: 9 + Materials: + - Material: Conse_F_G_Spear + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_G_Spear + ChangeRefine: -5 + - BaseItem: Adulter_F_Axe + MinimumRefine: 9 + Materials: + - Material: Conse_F_Axe + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_Axe + ChangeRefine: -5 + - BaseItem: Adulter_F_Mace + MinimumRefine: 9 + Materials: + - Material: Conse_F_Mace + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_Mace + ChangeRefine: -5 + - BaseItem: Adulter_F_Lapier + MinimumRefine: 9 + Materials: + - Material: Conse_F_Lapier + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_Lapier + ChangeRefine: -5 + - BaseItem: Adulter_F_Hall + MinimumRefine: 9 + Materials: + - Material: Conse_F_Hall + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_Hall + ChangeRefine: -5 + - BaseItem: Adulter_F_Cakram + MinimumRefine: 9 + Materials: + - Material: Conse_F_Cakram + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_Cakram + ChangeRefine: -5 + - BaseItem: Adulter_F_Katar + MinimumRefine: 9 + Materials: + - Material: Conse_F_Katar + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_Katar + ChangeRefine: -5 + - BaseItem: Adulter_F_Dagger + MinimumRefine: 9 + Materials: + - Material: Conse_F_Dagger + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_Dagger + ChangeRefine: -5 + - BaseItem: Adulter_F_C_Bow + MinimumRefine: 9 + Materials: + - Material: Conse_F_C_Bow + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_C_Bow + ChangeRefine: -5 + - BaseItem: Adulter_F_T_Staff + MinimumRefine: 9 + Materials: + - Material: Conse_F_T_Staff + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_T_Staff + ChangeRefine: -5 + - BaseItem: Adulter_F_Rod + MinimumRefine: 9 + Materials: + - Material: Conse_F_Rod + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_Rod + ChangeRefine: -5 + - BaseItem: Adulter_F_M_Book + MinimumRefine: 9 + Materials: + - Material: Conse_F_M_Book + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_M_Book + ChangeRefine: -5 + - BaseItem: Adulter_F_P_Book + MinimumRefine: 9 + Materials: + - Material: Conse_F_P_Book + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_P_Book + ChangeRefine: -5 + - BaseItem: Adulter_F_Bible + MinimumRefine: 9 + Materials: + - Material: Conse_F_Bible + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_Bible + ChangeRefine: -5 + - BaseItem: Adulter_F_Wand + MinimumRefine: 9 + Materials: + - Material: Conse_F_Wand + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_Wand + ChangeRefine: -5 + - BaseItem: Adulter_F_Knuckle + MinimumRefine: 9 + Materials: + - Material: Conse_F_Knuckle + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_Knuckle + ChangeRefine: -5 + - BaseItem: Adulter_F_Claw + MinimumRefine: 9 + Materials: + - Material: Conse_F_Claw + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_Claw + ChangeRefine: -5 + - BaseItem: Adulter_F_Ballista + MinimumRefine: 9 + Materials: + - Material: Conse_F_Ballista + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_Ballista + ChangeRefine: -5 + - BaseItem: Adulter_F_A_Bow + MinimumRefine: 9 + Materials: + - Material: Conse_F_A_Bow + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_A_Bow + ChangeRefine: -5 + - BaseItem: Adulter_F_Violin + MinimumRefine: 9 + Materials: + - Material: Conse_F_Violin + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_Violin + ChangeRefine: -5 + - BaseItem: Adulter_F_C_Rope + MinimumRefine: 9 + Materials: + - Material: Conse_F_C_Rope + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_C_Rope + ChangeRefine: -5 + - BaseItem: Adulter_F_Harp + MinimumRefine: 9 + Materials: + - Material: Conse_F_Harp + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_Harp + ChangeRefine: -5 + - BaseItem: Adulter_F_Ribbon + MinimumRefine: 9 + Materials: + - Material: Conse_F_Ribbon + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_Ribbon + ChangeRefine: -5 + - BaseItem: Adulter_F_Humma + MinimumRefine: 9 + Materials: + - Material: Conse_F_Humma + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_Humma + ChangeRefine: -5 + - BaseItem: Adulter_F_C_Humma + MinimumRefine: 9 + Materials: + - Material: Conse_F_C_Humma + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_C_Humma + ChangeRefine: -5 + - BaseItem: Adulter_F_Revolver + MinimumRefine: 9 + Materials: + - Material: Conse_F_Revolver + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_Revolver + ChangeRefine: -5 + - BaseItem: Adulter_F_Rifle + MinimumRefine: 9 + Materials: + - Material: Conse_F_Rifle + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_Rifle + ChangeRefine: -5 + - BaseItem: Adulter_F_Gatling + MinimumRefine: 9 + Materials: + - Material: Conse_F_Gatling + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_Gatling + ChangeRefine: -5 + - BaseItem: Adulter_F_Launcher + MinimumRefine: 9 + Materials: + - Material: Conse_F_Launcher + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_Launcher + ChangeRefine: -5 + - BaseItem: Adulter_F_Moon_B + MinimumRefine: 9 + Materials: + - Material: Conse_F_Moon_B + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_Moon_B + ChangeRefine: -5 + - BaseItem: Adulter_F_Star_B + MinimumRefine: 9 + Materials: + - Material: Conse_F_Star_B + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_Star_B + ChangeRefine: -5 + - BaseItem: Adulter_F_S_Stick + MinimumRefine: 9 + Materials: + - Material: Conse_F_S_Stick + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_S_Stick + ChangeRefine: -5 + - BaseItem: Adulter_F_D_Wand + MinimumRefine: 9 + Materials: + - Material: Conse_F_D_Wand + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_D_Wand + ChangeRefine: -5 + - BaseItem: Adulter_F_F_Wand + MinimumRefine: 9 + Materials: + - Material: Conse_F_F_Wand + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_F_Wand + ChangeRefine: -5 + - BaseItem: Adulter_F_F_model + MinimumRefine: 9 + Materials: + - Material: Conse_F_F_model + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_F_model + ChangeRefine: -5 + - BaseItem: Adulter_F_Shotgun + MinimumRefine: 9 + Materials: + - Material: Conse_F_Shotgun + Amount: 10 + - Material: Purificatory_Holy_O + Amount: 50 + - Material: Purificatory_Holy_W + Amount: 50 + - Material: Sanctuary_Sudarium + Amount: 50 + - Material: Ep18_Amethyst_Fragment + Amount: 200 + ResultItem: Vivatus_F_Shotgun + ChangeRefine: -5 + - Item: Consecrate_Weapon_2 + BaseItems: + - BaseItem: Adulter_F_T_Sword + MinimumRefine: 9 + Materials: + - Material: Conse_F_T_Sword + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_T_Sword + ChangeRefine: -1 + - BaseItem: Adulter_F_Lance + MinimumRefine: 9 + Materials: + - Material: Conse_F_Lance + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Lance + ChangeRefine: -1 + - BaseItem: Adulter_F_G_Sword + MinimumRefine: 9 + Materials: + - Material: Conse_F_G_Sword + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_G_Sword + ChangeRefine: -1 + - BaseItem: Adulter_F_G_Spear + MinimumRefine: 9 + Materials: + - Material: Conse_F_G_Spear + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_G_Spear + ChangeRefine: -1 + - BaseItem: Adulter_F_Axe + MinimumRefine: 9 + Materials: + - Material: Conse_F_Axe + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Axe + ChangeRefine: -1 + - BaseItem: Adulter_F_Mace + MinimumRefine: 9 + Materials: + - Material: Conse_F_Mace + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Mace + ChangeRefine: -1 + - BaseItem: Adulter_F_Lapier + MinimumRefine: 9 + Materials: + - Material: Conse_F_Lapier + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Lapier + ChangeRefine: -1 + - BaseItem: Adulter_F_Hall + MinimumRefine: 9 + Materials: + - Material: Conse_F_Hall + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Hall + ChangeRefine: -1 + - BaseItem: Adulter_F_Cakram + MinimumRefine: 9 + Materials: + - Material: Conse_F_Cakram + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Cakram + ChangeRefine: -1 + - BaseItem: Adulter_F_Katar + MinimumRefine: 9 + Materials: + - Material: Conse_F_Katar + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Katar + ChangeRefine: -1 + - BaseItem: Adulter_F_Dagger + MinimumRefine: 9 + Materials: + - Material: Conse_F_Dagger + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Dagger + ChangeRefine: -1 + - BaseItem: Adulter_F_C_Bow + MinimumRefine: 9 + Materials: + - Material: Conse_F_C_Bow + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_C_Bow + ChangeRefine: -1 + - BaseItem: Adulter_F_T_Staff + MinimumRefine: 9 + Materials: + - Material: Conse_F_T_Staff + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_T_Staff + ChangeRefine: -1 + - BaseItem: Adulter_F_Rod + MinimumRefine: 9 + Materials: + - Material: Conse_F_Rod + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Rod + ChangeRefine: -1 + - BaseItem: Adulter_F_M_Book + MinimumRefine: 9 + Materials: + - Material: Conse_F_M_Book + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_M_Book + ChangeRefine: -1 + - BaseItem: Adulter_F_P_Book + MinimumRefine: 9 + Materials: + - Material: Conse_F_P_Book + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_P_Book + ChangeRefine: -1 + - BaseItem: Adulter_F_Bible + MinimumRefine: 9 + Materials: + - Material: Conse_F_Bible + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Bible + ChangeRefine: -1 + - BaseItem: Adulter_F_Wand + MinimumRefine: 9 + Materials: + - Material: Conse_F_Wand + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Wand + ChangeRefine: -1 + - BaseItem: Adulter_F_Knuckle + MinimumRefine: 9 + Materials: + - Material: Conse_F_Knuckle + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Knuckle + ChangeRefine: -1 + - BaseItem: Adulter_F_Claw + MinimumRefine: 9 + Materials: + - Material: Conse_F_Claw + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Claw + ChangeRefine: -1 + - BaseItem: Adulter_F_Ballista + MinimumRefine: 9 + Materials: + - Material: Conse_F_Ballista + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Ballista + ChangeRefine: -1 + - BaseItem: Adulter_F_A_Bow + MinimumRefine: 9 + Materials: + - Material: Conse_F_A_Bow + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_A_Bow + ChangeRefine: -1 + - BaseItem: Adulter_F_Violin + MinimumRefine: 9 + Materials: + - Material: Conse_F_Violin + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Violin + ChangeRefine: -1 + - BaseItem: Adulter_F_C_Rope + MinimumRefine: 9 + Materials: + - Material: Conse_F_C_Rope + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_C_Rope + ChangeRefine: -1 + - BaseItem: Adulter_F_Harp + MinimumRefine: 9 + Materials: + - Material: Conse_F_Harp + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Harp + ChangeRefine: -1 + - BaseItem: Adulter_F_Ribbon + MinimumRefine: 9 + Materials: + - Material: Conse_F_Ribbon + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Ribbon + ChangeRefine: -1 + - BaseItem: Adulter_F_Humma + MinimumRefine: 9 + Materials: + - Material: Conse_F_Humma + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Humma + ChangeRefine: -1 + - BaseItem: Adulter_F_C_Humma + MinimumRefine: 9 + Materials: + - Material: Conse_F_C_Humma + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_C_Humma + ChangeRefine: -1 + - BaseItem: Adulter_F_Revolver + MinimumRefine: 9 + Materials: + - Material: Conse_F_Revolver + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Revolver + ChangeRefine: -1 + - BaseItem: Adulter_F_Rifle + MinimumRefine: 9 + Materials: + - Material: Conse_F_Rifle + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Rifle + ChangeRefine: -1 + - BaseItem: Adulter_F_Gatling + MinimumRefine: 9 + Materials: + - Material: Conse_F_Gatling + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Gatling + ChangeRefine: -1 + - BaseItem: Adulter_F_Launcher + MinimumRefine: 9 + Materials: + - Material: Conse_F_Launcher + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Launcher + ChangeRefine: -1 + - BaseItem: Adulter_F_Moon_B + MinimumRefine: 9 + Materials: + - Material: Conse_F_Moon_B + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Moon_B + ChangeRefine: -1 + - BaseItem: Adulter_F_Star_B + MinimumRefine: 9 + Materials: + - Material: Conse_F_Star_B + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Star_B + ChangeRefine: -1 + - BaseItem: Adulter_F_S_Stick + MinimumRefine: 9 + Materials: + - Material: Conse_F_S_Stick + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_S_Stick + ChangeRefine: -1 + - BaseItem: Adulter_F_D_Wand + MinimumRefine: 9 + Materials: + - Material: Conse_F_D_Wand + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_D_Wand + ChangeRefine: -1 + - BaseItem: Adulter_F_F_Wand + MinimumRefine: 9 + Materials: + - Material: Conse_F_F_Wand + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_F_Wand + ChangeRefine: -1 + - BaseItem: Adulter_F_F_model + MinimumRefine: 9 + Materials: + - Material: Conse_F_F_model + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_F_model + ChangeRefine: -1 + - BaseItem: Adulter_F_Shotgun + MinimumRefine: 9 + Materials: + - Material: Conse_F_Shotgun + Amount: 30 + - Material: Purificatory_Holy_O + Amount: 200 + - Material: Purificatory_Holy_W + Amount: 200 + - Material: Sanctuary_Sudarium + Amount: 200 + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Shotgun + ChangeRefine: -1 + - Item: C_Armor_Reform_1 + BaseItems: + - BaseItem: Thanos_Helm_1 + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_1 + Amount: 100 + - Material: Gray_Shard + Amount: 100 + ResultItem: Thanos_Helm1_LT + ChangeRefine: -5 + - BaseItem: Thanos_Helm_2 + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_1 + Amount: 100 + - Material: Gray_Shard + Amount: 100 + ResultItem: Thanos_Helm2_LT + ChangeRefine: -5 + - BaseItem: Thanos_Helm_3 + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_1 + Amount: 100 + - Material: Gray_Shard + Amount: 100 + ResultItem: Thanos_Helm3_LT + ChangeRefine: -5 + - BaseItem: Great_Hero_Boots + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 + ResultItem: Hero_Boots_LT + ChangeRefine: -5 + - BaseItem: Smoky_TransformHat + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_1 + Amount: 100 + - Material: Raccoon_Leaf + Amount: 150 + ResultItem: Smoky_TransformHat_LT + ChangeRefine: -5 + - BaseItem: Whikebain_Ears_K + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_1 + Amount: 100 + - Material: Black_Kitty_Doll + Amount: 50 + ResultItem: Whikebain_Ears_K_LT + ChangeRefine: -5 + - BaseItem: Survive_Circlet_K + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_1 + Amount: 100 + - Material: Soft_Silk_Cloth + Amount: 100 + ResultItem: Survive_Circlet_K_LT + ChangeRefine: -5 + - BaseItem: GoldFish_Hat + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_1 + Amount: 100 + - Material: Shining_Scales + Amount: 150 + ResultItem: GoldFish_Hat_LT + ChangeRefine: -5 + - BaseItem: Imp_Hat + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_1 + Amount: 100 + - Material: Hot_Hair + Amount: 150 + ResultItem: Imp_Hat_LT + ChangeRefine: -5 + - BaseItem: Thanos_Helm_4 + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_1 + Amount: 100 + - Material: Gray_Shard + Amount: 100 + ResultItem: Thanos_Helm4_LT + ChangeRefine: -5 + - BaseItem: Whikebain_Ears + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_1 + Amount: 100 + - Material: Black_Kitty_Doll + Amount: 50 + ResultItem: Whikebain_Ears_K_LT + ChangeRefine: -5 + - BaseItem: Mad_Bunny_K_ + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_1 + Amount: 100 + - Material: Feather + Amount: 100 + - Material: Soft_Feather + Amount: 100 + ResultItem: Mad_Bunny_K_LT + ChangeRefine: -5 + - BaseItem: King_Tiger_Doll_Hat + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_1 + Amount: 100 + - Material: Tiger_Footskin + Amount: 40 + ResultItem: King_Tiger_Doll_Hat_LT + ChangeRefine: -5 + - BaseItem: Zaha_Doll_Hat + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_1 + Amount: 100 + - Material: Limpid_Celestial_Robe + Amount: 200 + - Material: Soft_Silk_Cloth + Amount: 100 + ResultItem: Baksojin_Hat_LT + ChangeRefine: -5 + - BaseItem: Sagittarius_DiademK + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_1 + Amount: 100 + - Material: EP17_1_EVT02 + Amount: 100 + - Material: EP17_1_EVT39 + Amount: 20 + ResultItem: Sagittarius_DiademK_LT + ChangeRefine: -5 + - BaseItem: Scorpio_Diadem_K + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_1 + Amount: 100 + - Material: EP17_1_EVT02 + Amount: 100 + - Material: EP17_1_EVT39 + Amount: 20 + ResultItem: Scorpio_Diadem_K_LT + ChangeRefine: -5 + - BaseItem: Large_Sorcerer_Crown + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_1 + Amount: 100 + - Material: EP17_1_EVT02 + Amount: 100 + - Material: EP17_1_EVT39 + Amount: 20 + ResultItem: Large_Sorcerer_Crown_LT + ChangeRefine: -5 + - BaseItem: Stripe_Hat + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_1 + Amount: 100 + - Material: EP17_1_EVT02 + Amount: 100 + - Material: EP17_1_EVT39 + Amount: 20 + ResultItem: Stripe_Hat_LT + ChangeRefine: -5 + - BaseItem: Phantom_Cap + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_1 + Amount: 100 + - Material: EP17_1_EVT02 + Amount: 100 + - Material: EP17_1_EVT39 + Amount: 20 + ResultItem: Phantom_Cap_LT + ChangeRefine: -5 + - BaseItem: Ignis_CapK + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_1 + Amount: 100 + - Material: EP17_1_EVT02 + Amount: 100 + - Material: EP17_1_EVT39 + Amount: 20 + ResultItem: Ignis_CapK_LT + ChangeRefine: -5 + - BaseItem: Clock_Casket_RD + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_1 + Amount: 100 + - Material: EP17_1_EVT02 + Amount: 100 + - Material: EP17_1_EVT39 + Amount: 20 + ResultItem: Clock_Casket_RD_LT + ChangeRefine: -5 + - BaseItem: Officer_Cap + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_1 + Amount: 100 + - Material: Black_Bear's_Skin + Amount: 100 + ResultItem: Officer_Cap_LT + ChangeRefine: -5 + - BaseItem: Dolor_HatK + MinimumRefine: 9 + Materials: + - Material: Armor_Stone_1 + Amount: 150 + - Material: Polluted_Spell + Amount: 15 + - Material: Coagulated_Spell + Amount: 100 + ResultItem: Dolor_HatK_LT + ChangeRefine: -5 + RandomOptionGroup: Group_0 + - Item: C_Armor_Reform_2 + BaseItems: + - BaseItem: Thanos_Helm_1 + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_2 + Amount: 100 + - Material: Gray_Shard + Amount: 300 + ResultItem: Thanos_Helm1_LT + ChangeRefine: -1 + - BaseItem: Thanos_Helm_2 + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_2 + Amount: 100 + - Material: Gray_Shard + Amount: 300 + ResultItem: Thanos_Helm2_LT + ChangeRefine: -1 + - BaseItem: Thanos_Helm_3 + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_2 + Amount: 100 + - Material: Gray_Shard + Amount: 300 + ResultItem: Thanos_Helm3_LT + ChangeRefine: -1 + - BaseItem: Great_Hero_Boots + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: Hero_Boots_LT + ChangeRefine: -1 + - BaseItem: Smoky_TransformHat + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_2 + Amount: 100 + - Material: Raccoon_Leaf + Amount: 300 + ResultItem: Smoky_TransformHat_LT + ChangeRefine: -1 + - BaseItem: Whikebain_Ears_K + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_2 + Amount: 100 + - Material: Black_Kitty_Doll + Amount: 100 + ResultItem: Whikebain_Ears_K_LT + ChangeRefine: -1 + - BaseItem: Survive_Circlet_K + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_2 + Amount: 100 + - Material: Soft_Silk_Cloth + Amount: 200 + ResultItem: Survive_Circlet_K_LT + ChangeRefine: -1 + - BaseItem: GoldFish_Hat + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_2 + Amount: 100 + - Material: Shining_Scales + Amount: 300 + ResultItem: GoldFish_Hat_LT + ChangeRefine: -1 + - BaseItem: Imp_Hat + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_2 + Amount: 100 + - Material: Hot_Hair + Amount: 300 + ResultItem: Imp_Hat_LT + ChangeRefine: -1 + - BaseItem: Thanos_Helm_4 + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_2 + Amount: 100 + - Material: Gray_Shard + Amount: 300 + ResultItem: Thanos_Helm4_LT + ChangeRefine: -1 + - BaseItem: Whikebain_Ears + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_2 + Amount: 100 + - Material: Black_Kitty_Doll + Amount: 100 + ResultItem: Whikebain_Ears_K_LT + ChangeRefine: -1 + - BaseItem: Mad_Bunny_K_ + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_2 + Amount: 100 + - Material: Feather + Amount: 200 + - Material: Soft_Feather + Amount: 200 + ResultItem: Mad_Bunny_K_LT + ChangeRefine: -1 + - BaseItem: King_Tiger_Doll_Hat + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_2 + Amount: 100 + - Material: Tiger_Footskin + Amount: 80 + ResultItem: King_Tiger_Doll_Hat_LT + ChangeRefine: -1 + - BaseItem: Zaha_Doll_Hat + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_2 + Amount: 100 + - Material: Limpid_Celestial_Robe + Amount: 400 + - Material: Soft_Silk_Cloth + Amount: 200 + ResultItem: Baksojin_Hat_LT + ChangeRefine: -1 + - BaseItem: Sagittarius_DiademK + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_2 + Amount: 100 + - Material: EP17_1_EVT02 + Amount: 300 + - Material: EP17_1_EVT39 + Amount: 60 + ResultItem: Sagittarius_DiademK_LT + ChangeRefine: -1 + - BaseItem: Scorpio_Diadem_K + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_2 + Amount: 100 + - Material: EP17_1_EVT02 + Amount: 300 + - Material: EP17_1_EVT39 + Amount: 60 + ResultItem: Scorpio_Diadem_K_LT + ChangeRefine: -1 + - BaseItem: Large_Sorcerer_Crown + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_2 + Amount: 100 + - Material: EP17_1_EVT02 + Amount: 300 + - Material: EP17_1_EVT39 + Amount: 60 + ResultItem: Large_Sorcerer_Crown_LT + ChangeRefine: -1 + - BaseItem: Stripe_Hat + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_2 + Amount: 100 + - Material: EP17_1_EVT02 + Amount: 300 + - Material: EP17_1_EVT39 + Amount: 60 + ResultItem: Stripe_Hat_LT + ChangeRefine: -1 + - BaseItem: Phantom_Cap + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_2 + Amount: 100 + - Material: EP17_1_EVT02 + Amount: 300 + - Material: EP17_1_EVT39 + Amount: 60 + ResultItem: Phantom_Cap_LT + ChangeRefine: -1 + - BaseItem: Ignis_CapK + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_2 + Amount: 100 + - Material: EP17_1_EVT02 + Amount: 300 + - Material: EP17_1_EVT39 + Amount: 60 + ResultItem: Ignis_CapK_LT + ChangeRefine: -1 + - BaseItem: Clock_Casket_RD + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_2 + Amount: 100 + - Material: EP17_1_EVT02 + Amount: 300 + - Material: EP17_1_EVT39 + Amount: 60 + ResultItem: Clock_Casket_RD_LT + ChangeRefine: -1 + - BaseItem: Officer_Cap + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Armor_Stone_2 + Amount: 100 + - Material: Black_Bear's_Skin + Amount: 200 + ResultItem: Officer_Cap_LT + ChangeRefine: -1 + - BaseItem: Dolor_HatK + MinimumRefine: 9 + Materials: + - Material: Armor_Stone_2 + Amount: 150 + - Material: Polluted_Spell + Amount: 30 + - Material: Coagulated_Spell + Amount: 200 + ResultItem: Dolor_HatK_LT + ChangeRefine: -1 + RandomOptionGroup: Group_0 + - Item: C_Armor_Reform_3 + BaseItems: + - BaseItem: SurviveOrb_K + MaximumRefine: 0 + CardsAllowed: false + Materials: + - Material: Armor_Stone_3 + Amount: 100 + - Material: Fragment_Of_Crystal + Amount: 450 + ResultItem: SurviveOrb_K_LT + - BaseItem: SeeOtter_Fan + MaximumRefine: 0 + CardsAllowed: false + Materials: + - Material: Acc_Stone_3 + Amount: 100 + - Material: Sea_Otter_Leather + Amount: 300 + ResultItem: SeeOtter_Fan_LT + - BaseItem: FurSeal_Fan + MaximumRefine: 0 + CardsAllowed: false + Materials: + - Material: Acc_Stone_3 + Amount: 100 + - Material: Sea_Otter_Leather + Amount: 300 + ResultItem: FurSeal_Fan_LT + - BaseItem: Red_Force_Pendant + Materials: + - Material: Acc_Stone_3 + Amount: 150 + - Material: GH_Cursed_Crystal + Amount: 350 + - Material: GH_Cursed_Gemstone + Amount: 350 + ResultItem: Red_Force_Pendant_LT + RandomOptionGroup: Group_0 + - BaseItem: Blue_Mental_Pendant + Materials: + - Material: Acc_Stone_3 + Amount: 150 + - Material: GH_Cursed_Crystal + Amount: 350 + - Material: GH_Cursed_Gemstone + Amount: 350 + ResultItem: Blue_Mental_Pendant_LT + RandomOptionGroup: Group_0 + - Item: FA_Armor_Reform_1 + BaseItems: + - BaseItem: Thanatos_Sword + MinimumRefine: 9 + Materials: + - Material: Armor_Stone_1 + Amount: 200 + - Material: Piece_Of_Bone_Armor + Amount: 15 + - Material: Mine_As + Amount: 50 + - Material: Sakray_Fury2 + Amount: 5 + - Material: Sakray_Regret2 + Amount: 5 + ResultItem: Thanatos_Sword_FA + ChangeRefine: -5 + - Item: FA_Armor_Reform_2 + BaseItems: + - BaseItem: Thanatos_Sword + MinimumRefine: 9 + Materials: + - Material: Armor_Stone_2 + Amount: 200 + - Material: Piece_Of_Bone_Armor + Amount: 30 + - Material: Mine_As + Amount: 100 + - Material: Sakray_Fury2 + Amount: 9 + - Material: Sakray_Regret2 + Amount: 9 + ResultItem: Thanatos_Sword_FA + ChangeRefine: -1 + - Item: C_Weapon_Reform_1 + BaseItems: + - BaseItem: Up_Saint_Hall + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 + ResultItem: Saint_Hall_LT + ChangeRefine: -5 + - BaseItem: Up_Undine_Spear_K + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 + ResultItem: Undine_Spear_K_LT + ChangeRefine: -5 + - BaseItem: Up_Demon_Hunting_Bible + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 + ResultItem: Demon_Hunting_Bible_LT + ChangeRefine: -5 + - BaseItem: Up_Light_Blade + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 + ResultItem: Light_Blade_LT + ChangeRefine: -5 + - BaseItem: Up_Magic_Sword + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 + ResultItem: Magic_Sword_LT + ChangeRefine: -5 + - BaseItem: Up_Fatalist + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 + ResultItem: Fatalist_LT + ChangeRefine: -5 - BaseItem: Up_Iron_Staff + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 ResultItem: Iron_Staff_LT + ChangeRefine: -5 - BaseItem: Up_Blue_Crystal_Staff + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 ResultItem: Blue_Crystal_Staff_LT + ChangeRefine: -5 - BaseItem: Up_Shadow_Staff_K + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 ResultItem: Shadow_Staff_K_LT + ChangeRefine: -5 - BaseItem: Up_Freezing_Rod + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 ResultItem: Freezing_Rod_LT + ChangeRefine: -5 - BaseItem: Up_Iron_Nail_K + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 ResultItem: Iron_Nail_K_LT + ChangeRefine: -5 - BaseItem: Up_Ray_Knuckle + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 ResultItem: Ray_Knuckle_LT + ChangeRefine: -5 + - BaseItem: Up_Sword_Of_Bluefire + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 + ResultItem: Sword_Of_Bluefire_LT + ChangeRefine: -5 + - BaseItem: Up_Slate_Sword + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 + ResultItem: Slate_Sword_LT + ChangeRefine: -5 + - BaseItem: Up_Royal_Bow_K + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 + ResultItem: Royal_Bow_K_LT + ChangeRefine: -5 + - BaseItem: Up_Scalet_Dragon_L_Bow + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 + ResultItem: Scalet_Dragon_L_Bow_LT + ChangeRefine: -5 + - BaseItem: Up_Trumpet_Shell_K + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 + ResultItem: Trumpet_Shell_K_LT + ChangeRefine: -5 + - BaseItem: Up_Barb_Wire_K + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 + ResultItem: Barb_Wire_K_LT + ChangeRefine: -5 + - BaseItem: Up_Narcis_Bow + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 + ResultItem: Narcis_Bow_LT + ChangeRefine: -5 + - BaseItem: Up_Avenger + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 + ResultItem: Avenger_LT + ChangeRefine: -5 + - BaseItem: Up_Meteor_Striker + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 + ResultItem: Meteor_Striker_LT + ChangeRefine: -5 + - BaseItem: Up_Blade_Katar + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 + ResultItem: Blade_Katar_LT + ChangeRefine: -5 + - BaseItem: Up_Shiver_Katar_K + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 + ResultItem: Shiver_Katar_K_LT + ChangeRefine: -5 + - BaseItem: Up_Dragonic_Slayer + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 + ResultItem: Dragonic_Slayer_LT + ChangeRefine: -5 + - BaseItem: Up_Oriental_Sword + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 + ResultItem: Oriental_Sword_LT + ChangeRefine: -5 + - BaseItem: Up_Fog_Dew_Sword + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 + ResultItem: Fog_Dew_Sword_LT + ChangeRefine: -5 + - BaseItem: Up_Humma_Clear + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 + ResultItem: Humma_Clear_LT + ChangeRefine: -5 + - BaseItem: Up_The_Black_Gatling + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 + ResultItem: The_Black_Gatling_LT + ChangeRefine: -5 + - BaseItem: Up_Crimson_Rose + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 + ResultItem: Crimson_Rose_LT + ChangeRefine: -5 + - BaseItem: Up_Demon_S_Shot + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 + ResultItem: Demon_S_Shot_LT + ChangeRefine: -5 + - BaseItem: Up_OneSkyOneSun + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 + ResultItem: OneSkyOneSun_LT + ChangeRefine: -5 + - BaseItem: Up_Golden_L_Launcher + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 + ResultItem: Golden_L_Launcher_LT + ChangeRefine: -5 + - BaseItem: Up_Master_Soul_Rifle + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 + ResultItem: Master_Soul_Rifle_LT + ChangeRefine: -5 + - BaseItem: Up_SoulWeight + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 + ResultItem: SoulWeight_LT + ChangeRefine: -5 + - BaseItem: Up_MeawFoxtail + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 + ResultItem: MeawFoxtail_LT + ChangeRefine: -5 + - BaseItem: Up_Freedom_Stick + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 + ResultItem: Freedom_Stick_LT + ChangeRefine: -5 + - BaseItem: Up_Blessed_Knife + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 100 + - Material: Bio_Reseearch_Docu + Amount: 50 + ResultItem: Blessed_Knife_LT + ChangeRefine: -5 + - Item: C_Weapon_Reform_2 + BaseItems: + - BaseItem: Up_Saint_Hall + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: Saint_Hall_LT + ChangeRefine: -1 + - BaseItem: Up_Undine_Spear_K + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: Undine_Spear_K_LT + ChangeRefine: -1 + - BaseItem: Up_Demon_Hunting_Bible + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: Demon_Hunting_Bible_LT + ChangeRefine: -1 + - BaseItem: Up_Light_Blade + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: Light_Blade_LT + ChangeRefine: -1 + - BaseItem: Up_Magic_Sword + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: Magic_Sword_LT + ChangeRefine: -1 + - BaseItem: Up_Fatalist + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: Fatalist_LT + ChangeRefine: -1 + - BaseItem: Up_Iron_Staff + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: Iron_Staff_LT + ChangeRefine: -1 + - BaseItem: Up_Blue_Crystal_Staff + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: Blue_Crystal_Staff_LT + ChangeRefine: -1 + - BaseItem: Up_Shadow_Staff_K + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: Shadow_Staff_K_LT + ChangeRefine: -1 + - BaseItem: Up_Freezing_Rod + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: Freezing_Rod_LT + ChangeRefine: -1 + - BaseItem: Up_Iron_Nail_K + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: Iron_Nail_K_LT + ChangeRefine: -1 + - BaseItem: Up_Ray_Knuckle + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: Ray_Knuckle_LT + ChangeRefine: -1 + - BaseItem: Up_Sword_Of_Bluefire + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: Sword_Of_Bluefire_LT + ChangeRefine: -1 + - BaseItem: Up_Slate_Sword + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: Slate_Sword_LT + ChangeRefine: -1 + - BaseItem: Up_Royal_Bow_K + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: Royal_Bow_K_LT + ChangeRefine: -1 + - BaseItem: Up_Scalet_Dragon_L_Bow + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: Scalet_Dragon_L_Bow_LT + ChangeRefine: -1 + - BaseItem: Up_Trumpet_Shell_K + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: Trumpet_Shell_K_LT + ChangeRefine: -1 + - BaseItem: Up_Barb_Wire_K + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: Barb_Wire_K_LT + ChangeRefine: -1 + - BaseItem: Up_Narcis_Bow + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: Narcis_Bow_LT + ChangeRefine: -1 + - BaseItem: Up_Avenger + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: Avenger_LT + ChangeRefine: -1 + - BaseItem: Up_Meteor_Striker + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: Meteor_Striker_LT + ChangeRefine: -1 + - BaseItem: Up_Blade_Katar + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: Blade_Katar_LT + ChangeRefine: -1 + - BaseItem: Up_Shiver_Katar_K + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: Shiver_Katar_K_LT + ChangeRefine: -1 + - BaseItem: Up_Dragonic_Slayer + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: Dragonic_Slayer_LT + ChangeRefine: -1 + - BaseItem: Up_Oriental_Sword + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: Oriental_Sword_LT + ChangeRefine: -1 + - BaseItem: Up_Fog_Dew_Sword + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: Fog_Dew_Sword_LT + ChangeRefine: -1 + - BaseItem: Up_Humma_Clear + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: Humma_Clear_LT + ChangeRefine: -1 + - BaseItem: Up_The_Black_Gatling + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: The_Black_Gatling_LT + ChangeRefine: -1 + - BaseItem: Up_Crimson_Rose + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: Crimson_Rose_LT + ChangeRefine: -1 + - BaseItem: Up_Demon_S_Shot + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: Demon_S_Shot_LT + ChangeRefine: -1 + - BaseItem: Up_OneSkyOneSun + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: OneSkyOneSun_LT + ChangeRefine: -1 + - BaseItem: Up_Golden_L_Launcher + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: Golden_L_Launcher_LT + ChangeRefine: -1 + - BaseItem: Up_Master_Soul_Rifle + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: Master_Soul_Rifle_LT + ChangeRefine: -1 + - BaseItem: Up_SoulWeight + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: SoulWeight_LT + ChangeRefine: -1 + - BaseItem: Up_MeawFoxtail + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: MeawFoxtail_LT + ChangeRefine: -1 + - BaseItem: Up_Freedom_Stick + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: Freedom_Stick_LT + ChangeRefine: -1 + - BaseItem: Up_Blessed_Knife + MinimumRefine: 9 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_2 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + ResultItem: Blessed_Knife_LT + ChangeRefine: -1 + - Item: C_Weapon_Reform_3 + BaseItems: + - BaseItem: Up_Saint_Hall + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: Saint_Hall_LT + ChangeRefine: 1 + - BaseItem: Up_Undine_Spear_K + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: Undine_Spear_K_LT + ChangeRefine: 1 + - BaseItem: Up_Demon_Hunting_Bible + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: Demon_Hunting_Bible_LT + ChangeRefine: 1 + - BaseItem: Up_Light_Blade + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: Light_Blade_LT + ChangeRefine: 1 + - BaseItem: Up_Magic_Sword + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: Magic_Sword_LT + ChangeRefine: 1 + - BaseItem: Up_Fatalist + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: Fatalist_LT + ChangeRefine: 1 + - BaseItem: Up_Iron_Staff + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: Iron_Staff_LT + ChangeRefine: 1 + - BaseItem: Up_Blue_Crystal_Staff + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: Blue_Crystal_Staff_LT + ChangeRefine: 1 + - BaseItem: Up_Shadow_Staff_K + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: Shadow_Staff_K_LT + ChangeRefine: 1 + - BaseItem: Up_Freezing_Rod + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: Freezing_Rod_LT + ChangeRefine: 1 + - BaseItem: Up_Iron_Nail_K + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: Iron_Nail_K_LT + ChangeRefine: 1 + - BaseItem: Up_Ray_Knuckle + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: Ray_Knuckle_LT + ChangeRefine: 1 + - BaseItem: Up_Sword_Of_Bluefire + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: Sword_Of_Bluefire_LT + ChangeRefine: 1 + - BaseItem: Up_Slate_Sword + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: Slate_Sword_LT + ChangeRefine: 1 + - BaseItem: Up_Royal_Bow_K + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: Royal_Bow_K_LT + ChangeRefine: 1 + - BaseItem: Up_Scalet_Dragon_L_Bow + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: Scalet_Dragon_L_Bow_LT + ChangeRefine: 1 + - BaseItem: Up_Trumpet_Shell_K + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: Trumpet_Shell_K_LT + ChangeRefine: 1 + - BaseItem: Up_Barb_Wire_K + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: Barb_Wire_K_LT + ChangeRefine: 1 + - BaseItem: Up_Narcis_Bow + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: Narcis_Bow_LT + ChangeRefine: 1 + - BaseItem: Up_Avenger + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: Avenger_LT + ChangeRefine: 1 + - BaseItem: Up_Meteor_Striker + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: Meteor_Striker_LT + ChangeRefine: 1 + - BaseItem: Up_Blade_Katar + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: Blade_Katar_LT + ChangeRefine: 1 + - BaseItem: Up_Shiver_Katar_K + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: Shiver_Katar_K_LT + ChangeRefine: 1 + - BaseItem: Up_Dragonic_Slayer + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: Dragonic_Slayer_LT + ChangeRefine: 1 + - BaseItem: Up_Oriental_Sword + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: Oriental_Sword_LT + ChangeRefine: 1 + - BaseItem: Up_Fog_Dew_Sword + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: Fog_Dew_Sword_LT + ChangeRefine: 1 + - BaseItem: Up_Humma_Clear + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: Humma_Clear_LT + ChangeRefine: 1 + - BaseItem: Up_The_Black_Gatling + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: The_Black_Gatling_LT + ChangeRefine: 1 + - BaseItem: Up_Crimson_Rose + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: Crimson_Rose_LT + ChangeRefine: 1 + - BaseItem: Up_Demon_S_Shot + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: Demon_S_Shot_LT + ChangeRefine: 1 + - BaseItem: Up_OneSkyOneSun + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: OneSkyOneSun_LT + ChangeRefine: 1 + - BaseItem: Up_Golden_L_Launcher + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: Golden_L_Launcher_LT + ChangeRefine: 1 + - BaseItem: Up_Master_Soul_Rifle + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: Master_Soul_Rifle_LT + ChangeRefine: 1 + - BaseItem: Up_SoulWeight + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: SoulWeight_LT + ChangeRefine: 1 + - BaseItem: Up_MeawFoxtail + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: MeawFoxtail_LT + ChangeRefine: 1 + - BaseItem: Up_Freedom_Stick + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: Freedom_Stick_LT + ChangeRefine: 1 + - BaseItem: Up_Blessed_Knife + MinimumRefine: 9 + MaximumRefine: 19 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_3 + Amount: 100 + - Material: Bio_Test_Fragment + Amount: 300 + - Material: Bio_Reseearch_Docu + Amount: 150 + - Material: M_Dimension_Essence + ResultItem: Blessed_Knife_LT + ChangeRefine: 1 - Item: Hero_Equipment_Cube BaseItems: - BaseItem: Royal_Bow_K @@ -6362,583 +3907,3165 @@ Body: CardsAllowed: false ResultItem: Great_Hero_Boots ChangeRefine: -2 -# - BaseItem: Freedom_Stick -# MinimumRefine: 7 -# CardsAllowed: false -# ResultItem: Up_Freedom_Stick -# ChangeRefine: -2 -# - BaseItem: Blessed_Knife -# MinimumRefine: 7 -# CardsAllowed: false -# ResultItem: Up_Blessed_Knife -# ChangeRefine: -2 - - Item: C_Weapon_Reform_3 + - BaseItem: Freedom_Stick + MinimumRefine: 7 + CardsAllowed: false + ResultItem: Up_Freedom_Stick + ChangeRefine: -2 + - BaseItem: Blessed_Knife + MinimumRefine: 7 + CardsAllowed: false + ResultItem: Up_Blessed_Knife + ChangeRefine: -2 + - Item: Shadow_Changer_W_Shi + BaseItems: + - BaseItem: S_Hasty_Weapon + MaximumRefine: 10 + Materials: + - Material: Shadowdecon + Amount: 10 + ResultItem: S_Hasty_Shield + - BaseItem: S_Infinity_Weapon + MaximumRefine: 10 + Materials: + - Material: Shadowdecon + Amount: 10 + ResultItem: S_Infinity_Shield + - Item: Thanos_Upgrade_Box + BaseItems: + - BaseItem: Thanos_Sword + ResultItem: Thanos_Sword_AD + - BaseItem: Thanos_Great_Sword + ResultItem: Thanos_TSword_AD + - BaseItem: Thanos_Hammer + ResultItem: Thanos_Hammer_AD + - BaseItem: Thanos_Dagger + ResultItem: Thanos_Dagger_AD + - BaseItem: Thanos_Rod + ResultItem: Thanos_Rod_AD + - BaseItem: Thanos_Whip + ResultItem: Thanos_Whip_AD + - BaseItem: Thanos_Violin + ResultItem: Thanos_Violin_AD + - BaseItem: Thanos_Staff + ResultItem: Thanos_Staff_AD + - BaseItem: Thanos_Spear + ResultItem: Thanos_Spear_AD + - BaseItem: Thanos_Katar + ResultItem: Thanos_Katar_AD + - BaseItem: Thanos_Axe + ResultItem: Thanos_Axe_AD + - BaseItem: Thanos_Bow + ResultItem: Thanos_Bow_AD + - BaseItem: Thanos_Knuckle + ResultItem: Thanos_Knuckle_AD + - BaseItem: Thanos_Helm_1 + ResultItem: Thanos_Helm1_LT + - BaseItem: Thanos_Helm_2 + ResultItem: Thanos_Helm2_LT + - BaseItem: Thanos_Helm_3 + ResultItem: Thanos_Helm3_LT + - BaseItem: Thanos_Helm_4 + ResultItem: Thanos_Helm4_LT + - Item: Hero_Weapon_Up_Box_1 BaseItems: - BaseItem: Up_Saint_Hall + ResultItem: Saint_Hall_LT + - BaseItem: Up_Undine_Spear_K + ResultItem: Undine_Spear_K_LT + - BaseItem: Up_Demon_Hunting_Bible + ResultItem: Demon_Hunting_Bible_LT + - BaseItem: Up_Light_Blade + ResultItem: Light_Blade_LT + - BaseItem: Up_Magic_Sword + ResultItem: Magic_Sword_LT + - BaseItem: Up_Fatalist + ResultItem: Fatalist_LT + - Item: Hero_Weapon_Up_Box_2 + BaseItems: + - BaseItem: Up_Iron_Staff + ResultItem: Iron_Staff_LT + - BaseItem: Up_Blue_Crystal_Staff + ResultItem: Blue_Crystal_Staff_LT + - BaseItem: Up_Shadow_Staff_K + ResultItem: Shadow_Staff_K_LT + - BaseItem: Up_Freezing_Rod + ResultItem: Freezing_Rod_LT + - BaseItem: Up_Iron_Nail_K + ResultItem: Iron_Nail_K_LT + - BaseItem: Up_Ray_Knuckle + ResultItem: Ray_Knuckle_LT + - Item: Hero_Weapon_Hammer_1 + BaseItems: + - BaseItem: Saint_Hall_LT MinimumRefine: 9 - MaximumRefine: 19 - CardsAllowed: false + MaximumRefine: 11 Materials: - - Material: M_Dimension_Essence - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Weapon_Stone_3 - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 150 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Saint_Hall_LT ChangeRefine: 1 - - BaseItem: Up_Undine_Spear_K + - BaseItem: Undine_Spear_K_LT MinimumRefine: 9 - MaximumRefine: 19 - CardsAllowed: false + MaximumRefine: 11 Materials: - - Material: M_Dimension_Essence - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Weapon_Stone_3 - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 150 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Undine_Spear_K_LT ChangeRefine: 1 - - BaseItem: Up_Demon_Hunting_Bible + - BaseItem: Demon_Hunting_Bible_LT MinimumRefine: 9 - MaximumRefine: 19 - CardsAllowed: false + MaximumRefine: 11 Materials: - - Material: M_Dimension_Essence - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Weapon_Stone_3 - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 150 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Demon_Hunting_Bible_LT ChangeRefine: 1 - - BaseItem: Up_Light_Blade + - BaseItem: Light_Blade_LT MinimumRefine: 9 - MaximumRefine: 19 - CardsAllowed: false + MaximumRefine: 11 Materials: - - Material: M_Dimension_Essence - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Weapon_Stone_3 - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 150 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Light_Blade_LT ChangeRefine: 1 - - BaseItem: Up_Magic_Sword + - BaseItem: Magic_Sword_LT MinimumRefine: 9 - MaximumRefine: 19 - CardsAllowed: false + MaximumRefine: 11 Materials: - - Material: M_Dimension_Essence - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Weapon_Stone_3 - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 150 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Magic_Sword_LT ChangeRefine: 1 - - BaseItem: Up_Fatalist + - BaseItem: Fatalist_LT MinimumRefine: 9 - MaximumRefine: 19 - CardsAllowed: false + MaximumRefine: 11 Materials: - - Material: M_Dimension_Essence - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Weapon_Stone_3 - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 150 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Fatalist_LT ChangeRefine: 1 - - BaseItem: Up_Iron_Staff + - Item: Hero_Weapon_Hammer_2 + BaseItems: + - BaseItem: Iron_Staff_LT MinimumRefine: 9 - MaximumRefine: 19 - CardsAllowed: false + MaximumRefine: 11 Materials: - - Material: M_Dimension_Essence - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Weapon_Stone_3 - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 150 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Iron_Staff_LT ChangeRefine: 1 - - BaseItem: Up_Blue_Crystal_Staff + - BaseItem: Blue_Crystal_Staff_LT MinimumRefine: 9 - MaximumRefine: 19 - CardsAllowed: false + MaximumRefine: 11 Materials: - - Material: M_Dimension_Essence - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Weapon_Stone_3 - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 150 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Blue_Crystal_Staff_LT ChangeRefine: 1 - - BaseItem: Up_Shadow_Staff_K + - BaseItem: Shadow_Staff_K_LT MinimumRefine: 9 - MaximumRefine: 19 - CardsAllowed: false + MaximumRefine: 11 Materials: - - Material: M_Dimension_Essence - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Weapon_Stone_3 - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 150 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Shadow_Staff_K_LT ChangeRefine: 1 - - BaseItem: Up_Freezing_Rod + - BaseItem: Freezing_Rod_LT MinimumRefine: 9 - MaximumRefine: 19 - CardsAllowed: false + MaximumRefine: 11 Materials: - - Material: M_Dimension_Essence - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Weapon_Stone_3 - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 150 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Freezing_Rod_LT ChangeRefine: 1 - - BaseItem: Up_Iron_Nail_K + - BaseItem: Iron_Nail_K_LT MinimumRefine: 9 - MaximumRefine: 19 - CardsAllowed: false + MaximumRefine: 11 Materials: - - Material: M_Dimension_Essence - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Weapon_Stone_3 - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 150 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Iron_Nail_K_LT ChangeRefine: 1 - - BaseItem: Up_Ray_Knuckle + - BaseItem: Ray_Knuckle_LT MinimumRefine: 9 - MaximumRefine: 19 - CardsAllowed: false + MaximumRefine: 11 Materials: - - Material: M_Dimension_Essence - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Weapon_Stone_3 - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 150 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Ray_Knuckle_LT ChangeRefine: 1 + - Item: Hero_Weapon_Up_Box_3 + BaseItems: - BaseItem: Up_Sword_Of_Bluefire + ResultItem: Sword_Of_Bluefire_LT + - BaseItem: Up_Slate_Sword + ResultItem: Slate_Sword_LT + - BaseItem: Up_Royal_Bow_K + ResultItem: Royal_Bow_K_LT + - BaseItem: Up_Scalet_Dragon_L_Bow + ResultItem: Scalet_Dragon_L_Bow_LT + - Item: Hero_Weapon_Hammer_3 + BaseItems: + - BaseItem: Sword_Of_Bluefire_LT MinimumRefine: 9 - MaximumRefine: 19 - CardsAllowed: false + MaximumRefine: 11 Materials: - - Material: M_Dimension_Essence - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Weapon_Stone_3 - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 150 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Sword_Of_Bluefire_LT ChangeRefine: 1 - - BaseItem: Up_Slate_Sword + - BaseItem: Slate_Sword_LT MinimumRefine: 9 - MaximumRefine: 19 - CardsAllowed: false + MaximumRefine: 11 Materials: - - Material: M_Dimension_Essence - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Weapon_Stone_3 - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 150 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Slate_Sword_LT ChangeRefine: 1 - - BaseItem: Up_Royal_Bow_K + - BaseItem: Royal_Bow_K_LT MinimumRefine: 9 - MaximumRefine: 19 - CardsAllowed: false + MaximumRefine: 11 Materials: - - Material: M_Dimension_Essence - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Weapon_Stone_3 - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 150 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Royal_Bow_K_LT ChangeRefine: 1 - - BaseItem: Up_Scalet_Dragon_L_Bow + - BaseItem: Scalet_Dragon_L_Bow_LT MinimumRefine: 9 - MaximumRefine: 19 - CardsAllowed: false + MaximumRefine: 11 Materials: - - Material: M_Dimension_Essence - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Weapon_Stone_3 - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 150 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Scalet_Dragon_L_Bow_LT ChangeRefine: 1 - - BaseItem: Up_Trumpet_Shell_K - MinimumRefine: 9 - MaximumRefine: 19 - CardsAllowed: false + - Item: Shadow_Changer_A_W + BaseItems: + - BaseItem: S_CriticalHit_Armor + MaximumRefine: 10 Materials: - - Material: M_Dimension_Essence - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Weapon_Stone_3 - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 150 + - Material: Shadowdecon + Amount: 10 + ResultItem: S_CriticalHit_Weapon + - BaseItem: S_KingbirdAncient_Armor + MaximumRefine: 10 + Materials: + - Material: Shadowdecon + Amount: 10 + ResultItem: S_KingbirdAnc_Weapon + - Item: Hero_Weapon_Up_Box_4 + BaseItems: + - BaseItem: Up_Trumpet_Shell_K + ResultItem: Trumpet_Shell_K_LT + - BaseItem: Up_Barb_Wire_K + ResultItem: Barb_Wire_K_LT + - BaseItem: Up_Narcis_Bow + ResultItem: Narcis_Bow_LT + - BaseItem: Up_Avenger + ResultItem: Avenger_LT + - BaseItem: Up_Meteor_Striker + ResultItem: Meteor_Striker_LT + - Item: Hero_Weapon_Hammer_4 + BaseItems: + - BaseItem: Trumpet_Shell_K_LT + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Trumpet_Shell_K_LT ChangeRefine: 1 - - BaseItem: Up_Barb_Wire_K + - BaseItem: Barb_Wire_K_LT MinimumRefine: 9 - MaximumRefine: 19 - CardsAllowed: false + MaximumRefine: 11 Materials: - - Material: M_Dimension_Essence - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Weapon_Stone_3 - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 150 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Barb_Wire_K_LT ChangeRefine: 1 - - BaseItem: Up_Narcis_Bow + - BaseItem: Narcis_Bow_LT MinimumRefine: 9 - MaximumRefine: 19 - CardsAllowed: false + MaximumRefine: 11 Materials: - - Material: M_Dimension_Essence - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Weapon_Stone_3 - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 150 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Narcis_Bow_LT ChangeRefine: 1 - - BaseItem: Up_Avenger + - BaseItem: Avenger_LT MinimumRefine: 9 - MaximumRefine: 19 - CardsAllowed: false + MaximumRefine: 11 Materials: - - Material: M_Dimension_Essence - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Weapon_Stone_3 - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 150 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Avenger_LT ChangeRefine: 1 - - BaseItem: Up_Meteor_Striker + - BaseItem: Meteor_Striker_LT MinimumRefine: 9 - MaximumRefine: 19 - CardsAllowed: false + MaximumRefine: 11 Materials: - - Material: M_Dimension_Essence - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Weapon_Stone_3 - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 150 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Meteor_Striker_LT ChangeRefine: 1 + - Item: Hero_Weapon_Up_Box_5 + BaseItems: - BaseItem: Up_Blade_Katar + ResultItem: Blade_Katar_LT + - BaseItem: Up_Shiver_Katar_K + ResultItem: Shiver_Katar_K_LT + - BaseItem: Up_Dragonic_Slayer + ResultItem: Dragonic_Slayer_LT + - BaseItem: Up_Oriental_Sword + ResultItem: Oriental_Sword_LT + - Item: Hero_Weapon_Hammer_5 + BaseItems: + - BaseItem: Blade_Katar_LT MinimumRefine: 9 - MaximumRefine: 19 - CardsAllowed: false + MaximumRefine: 11 Materials: - - Material: M_Dimension_Essence - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Weapon_Stone_3 - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 150 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Blade_Katar_LT ChangeRefine: 1 - - BaseItem: Up_Shiver_Katar_K + - BaseItem: Shiver_Katar_K_LT MinimumRefine: 9 - MaximumRefine: 19 - CardsAllowed: false + MaximumRefine: 11 Materials: - - Material: M_Dimension_Essence - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Weapon_Stone_3 - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 150 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Shiver_Katar_K_LT ChangeRefine: 1 - - BaseItem: Up_Dragonic_Slayer + - BaseItem: Dragonic_Slayer_LT MinimumRefine: 9 - MaximumRefine: 19 - CardsAllowed: false + MaximumRefine: 11 Materials: - - Material: M_Dimension_Essence - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Weapon_Stone_3 - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 150 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Dragonic_Slayer_LT ChangeRefine: 1 - - BaseItem: Up_Oriental_Sword + - BaseItem: Oriental_Sword_LT MinimumRefine: 9 - MaximumRefine: 19 - CardsAllowed: false + MaximumRefine: 11 Materials: - - Material: M_Dimension_Essence - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Weapon_Stone_3 - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 150 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Oriental_Sword_LT ChangeRefine: 1 - - BaseItem: Up_Fog_Dew_Sword + - Item: Vivatus_Weapon_Hammer + BaseItems: + - BaseItem: Vivatus_F_M_Book MinimumRefine: 9 - MaximumRefine: 19 - CardsAllowed: false + MaximumRefine: 11 Materials: - - Material: M_Dimension_Essence - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Weapon_Stone_3 - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: Fog_Dew_Sword_LT + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_M_Book ChangeRefine: 1 - - BaseItem: Up_Humma_Clear + - BaseItem: Vivatus_F_P_Book MinimumRefine: 9 - MaximumRefine: 19 - CardsAllowed: false + MaximumRefine: 11 Materials: - - Material: M_Dimension_Essence - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Weapon_Stone_3 - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 150 + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_P_Book + ChangeRefine: 1 + - BaseItem: Vivatus_F_Bible + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_Bible + ChangeRefine: 1 + - BaseItem: Vivatus_F_Ribbon + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_Ribbon + ChangeRefine: 1 + - BaseItem: Vivatus_F_Harp + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_Harp + ChangeRefine: 1 + - BaseItem: Vivatus_F_Claw + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_Claw + ChangeRefine: 1 + - BaseItem: Vivatus_F_C_Rope + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_C_Rope + ChangeRefine: 1 + - BaseItem: Vivatus_F_Violin + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_Violin + ChangeRefine: 1 + - BaseItem: Vivatus_F_A_Bow + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_A_Bow + ChangeRefine: 1 + - BaseItem: Vivatus_F_Ballista + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_Ballista + ChangeRefine: 1 + - BaseItem: Vivatus_F_Knuckle + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_Knuckle + ChangeRefine: 1 + - BaseItem: Vivatus_F_Wand + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_Wand + ChangeRefine: 1 + - BaseItem: Vivatus_F_Rod + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_Rod + ChangeRefine: 1 + - BaseItem: Vivatus_F_T_Staff + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_T_Staff + ChangeRefine: 1 + - BaseItem: Vivatus_F_C_Bow + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_C_Bow + ChangeRefine: 1 + - BaseItem: Vivatus_F_Cakram + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_Cakram + ChangeRefine: 1 + - BaseItem: Vivatus_F_Hall + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_Hall + ChangeRefine: 1 + - BaseItem: Vivatus_F_Dagger + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_Dagger + ChangeRefine: 1 + - BaseItem: Vivatus_F_Katar + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_Katar + ChangeRefine: 1 + - BaseItem: Vivatus_F_Lapier + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_Lapier + ChangeRefine: 1 + - BaseItem: Vivatus_F_Mace + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_Mace + ChangeRefine: 1 + - BaseItem: Vivatus_F_G_Sword + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_G_Sword + ChangeRefine: 1 + - BaseItem: Vivatus_F_Axe + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_Axe + ChangeRefine: 1 + - BaseItem: Vivatus_F_G_Spear + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_G_Spear + ChangeRefine: 1 + - BaseItem: Vivatus_F_Lance + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_Lance + ChangeRefine: 1 + - BaseItem: Vivatus_F_T_Sword + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_T_Sword + ChangeRefine: 1 + - BaseItem: Vivatus_F_Humma + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_Humma + ChangeRefine: 1 + - BaseItem: Vivatus_F_C_Humma + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_C_Humma + ChangeRefine: 1 + - BaseItem: Vivatus_F_Revolver + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_Revolver + ChangeRefine: 1 + - BaseItem: Vivatus_F_Rifle + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_Rifle + ChangeRefine: 1 + - BaseItem: Vivatus_F_Gatling + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_Gatling + ChangeRefine: 1 + - BaseItem: Vivatus_F_Launcher + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_Launcher + ChangeRefine: 1 + - BaseItem: Vivatus_F_Moon_B + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_Moon_B + ChangeRefine: 1 + - BaseItem: Vivatus_F_Star_B + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_Star_B + ChangeRefine: 1 + - BaseItem: Vivatus_F_S_Stick + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_S_Stick + ChangeRefine: 1 + - BaseItem: Vivatus_F_D_Wand + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_D_Wand + ChangeRefine: 1 + - BaseItem: Vivatus_F_F_Wand + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_F_Wand + ChangeRefine: 1 + - BaseItem: Vivatus_F_Shotgun + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_Shotgun + ChangeRefine: 1 + - BaseItem: Vivatus_F_F_model + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Vivatus_F_F_model + ChangeRefine: 1 + - Item: Adulter_Weapon_Up_Box + BaseItems: + - BaseItem: Adulter_F_M_Book + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_M_Book + - BaseItem: Adulter_F_P_Book + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_P_Book + - BaseItem: Adulter_F_Bible + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Bible + - BaseItem: Adulter_F_Ribbon + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Ribbon + - BaseItem: Adulter_F_Harp + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Harp + - BaseItem: Adulter_F_Claw + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Claw + - BaseItem: Adulter_F_C_Rope + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_C_Rope + - BaseItem: Adulter_F_Violin + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Violin + - BaseItem: Adulter_F_A_Bow + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_A_Bow + - BaseItem: Adulter_F_Ballista + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Ballista + - BaseItem: Adulter_F_Knuckle + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Knuckle + - BaseItem: Adulter_F_Wand + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Wand + - BaseItem: Adulter_F_Rod + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Rod + - BaseItem: Adulter_F_T_Staff + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_T_Staff + - BaseItem: Adulter_F_C_Bow + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_C_Bow + - BaseItem: Adulter_F_Cakram + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Cakram + - BaseItem: Adulter_F_Hall + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Hall + - BaseItem: Adulter_F_Dagger + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Dagger + - BaseItem: Adulter_F_Katar + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Katar + - BaseItem: Adulter_F_Lapier + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Lapier + - BaseItem: Adulter_F_Mace + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Mace + - BaseItem: Adulter_F_G_Sword + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_G_Sword + - BaseItem: Adulter_F_Axe + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Axe + - BaseItem: Adulter_F_G_Spear + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_G_Spear + - BaseItem: Adulter_F_Lance + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Lance + - BaseItem: Adulter_F_T_Sword + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_T_Sword + - BaseItem: Adulter_F_Humma + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Humma + - BaseItem: Adulter_F_C_Humma + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_C_Humma + - BaseItem: Adulter_F_Revolver + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Revolver + - BaseItem: Adulter_F_Rifle + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Rifle + - BaseItem: Adulter_F_Gatling + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Gatling + - BaseItem: Adulter_F_Launcher + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Launcher + - BaseItem: Adulter_F_Moon_B + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Moon_B + - BaseItem: Adulter_F_Star_B + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Star_B + - BaseItem: Adulter_F_S_Stick + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_S_Stick + - BaseItem: Adulter_F_D_Wand + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_D_Wand + - BaseItem: Adulter_F_F_Wand + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_F_Wand + - BaseItem: Adulter_F_F_model + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_F_model + - BaseItem: Adulter_F_Shotgun + Materials: + - Material: Ep18_Amethyst_Fragment + Amount: 400 + ResultItem: Vivatus_F_Shotgun + - Item: Hero_Weapon_Up_Box_6 + BaseItems: + - BaseItem: Up_Humma_Clear + ResultItem: Humma_Clear_LT + - BaseItem: Up_Fog_Dew_Sword + ResultItem: Fog_Dew_Sword_LT + - BaseItem: Up_Crimson_Rose + ResultItem: Crimson_Rose_LT + - BaseItem: Up_Master_Soul_Rifle + ResultItem: Master_Soul_Rifle_LT + - BaseItem: Up_Demon_S_Shot + ResultItem: Demon_S_Shot_LT + - BaseItem: Up_The_Black_Gatling + ResultItem: The_Black_Gatling_LT + - BaseItem: Up_Golden_L_Launcher + ResultItem: Golden_L_Launcher_LT + - BaseItem: Up_MeawFoxtail + ResultItem: MeawFoxtail_LT + - BaseItem: Up_OneSkyOneSun + ResultItem: OneSkyOneSun_LT + - BaseItem: Up_SoulWeight + ResultItem: SoulWeight_LT + - BaseItem: Up_Freedom_Stick + ResultItem: Freedom_Stick_LT + - BaseItem: Up_Blessed_Knife + ResultItem: Blessed_Knife_LT + - Item: Hero_Weapon_Hammer_6 + BaseItems: + - BaseItem: Humma_Clear_LT + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Humma_Clear_LT ChangeRefine: 1 - - BaseItem: Up_The_Black_Gatling + - BaseItem: Fog_Dew_Sword_LT MinimumRefine: 9 - MaximumRefine: 19 - CardsAllowed: false + MaximumRefine: 11 Materials: - - Material: M_Dimension_Essence - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Weapon_Stone_3 - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: The_Black_Gatling_LT + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Fog_Dew_Sword_LT ChangeRefine: 1 - - BaseItem: Up_Crimson_Rose + - BaseItem: Crimson_Rose_LT MinimumRefine: 9 - MaximumRefine: 19 - CardsAllowed: false + MaximumRefine: 11 Materials: - - Material: M_Dimension_Essence - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Weapon_Stone_3 - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 150 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Crimson_Rose_LT ChangeRefine: 1 - - BaseItem: Up_Demon_S_Shot + - BaseItem: Master_Soul_Rifle_LT MinimumRefine: 9 - MaximumRefine: 19 - CardsAllowed: false + MaximumRefine: 11 Materials: - - Material: M_Dimension_Essence - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Weapon_Stone_3 - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: Demon_S_Shot_LT - ChangeRefine: 1 - - BaseItem: Up_OneSkyOneSun - MinimumRefine: 9 - MaximumRefine: 19 - CardsAllowed: false - Materials: - - Material: M_Dimension_Essence - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Weapon_Stone_3 - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: OneSkyOneSun_LT - ChangeRefine: 1 - - BaseItem: Up_Golden_L_Launcher - MinimumRefine: 9 - MaximumRefine: 19 - CardsAllowed: false - Materials: - - Material: M_Dimension_Essence - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Weapon_Stone_3 - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: Golden_L_Launcher_LT - ChangeRefine: 1 - - BaseItem: Up_Master_Soul_Rifle - MinimumRefine: 9 - MaximumRefine: 19 - CardsAllowed: false - Materials: - - Material: M_Dimension_Essence - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Weapon_Stone_3 - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 150 + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: Master_Soul_Rifle_LT ChangeRefine: 1 - - BaseItem: Up_SoulWeight + - BaseItem: Demon_S_Shot_LT MinimumRefine: 9 - MaximumRefine: 19 - CardsAllowed: false + MaximumRefine: 11 Materials: - - Material: M_Dimension_Essence - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Weapon_Stone_3 - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 150 - ResultItem: SoulWeight_LT + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Demon_S_Shot_LT ChangeRefine: 1 - - BaseItem: Up_MeawFoxtail + - BaseItem: The_Black_Gatling_LT MinimumRefine: 9 - MaximumRefine: 19 - CardsAllowed: false + MaximumRefine: 11 Materials: - - Material: M_Dimension_Essence - - Material: Bio_Test_Fragment - Amount: 300 - - Material: Weapon_Stone_3 - Amount: 100 - - Material: Bio_Reseearch_Docu - Amount: 150 + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: The_Black_Gatling_LT + ChangeRefine: 1 + - BaseItem: Golden_L_Launcher_LT + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Golden_L_Launcher_LT + ChangeRefine: 1 + - BaseItem: MeawFoxtail_LT + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 ResultItem: MeawFoxtail_LT ChangeRefine: 1 -# - BaseItem: Up_Freedom_Stick -# MinimumRefine: 9 -# MaximumRefine: 19 -# CardsAllowed: false -# Materials: -# - Material: M_Dimension_Essence -# - Material: Bio_Test_Fragment -# Amount: 300 -# - Material: Weapon_Stone_3 -# Amount: 100 -# - Material: Bio_Reseearch_Docu -# Amount: 150 -# ResultItem: Freedom_Stick_LT -# ChangeRefine: 1 -# - BaseItem: Up_Blessed_Knife -# MinimumRefine: 9 -# MaximumRefine: 19 -# CardsAllowed: false -# Materials: -# - Material: M_Dimension_Essence -# - Material: Bio_Test_Fragment -# Amount: 300 -# - Material: Weapon_Stone_3 -# Amount: 100 -# - Material: Bio_Reseearch_Docu -# Amount: 150 -# ResultItem: Blessed_Knife_LT -# ChangeRefine: 1 + - BaseItem: OneSkyOneSun_LT + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: OneSkyOneSun_LT + ChangeRefine: 1 + - BaseItem: SoulWeight_LT + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: SoulWeight_LT + ChangeRefine: 1 + - BaseItem: Freedom_Stick_LT + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Freedom_Stick_LT + ChangeRefine: 1 + - BaseItem: Blessed_Knife_LT + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Blessed_Knife_LT + ChangeRefine: 1 + - Item: Shadow_Changer_NPC + BaseItems: + - BaseItem: S_FullPene_Armor + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_FullPene_Earring + - BaseItem: S_FullPene_Earring + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_FullPene_Shoes + - BaseItem: S_FullPene_Shoes + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_FullPene_Pendant + - BaseItem: S_FullPene_Pendant + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_FullPene_Armor + - BaseItem: S_FullTemp_Armor + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_FullTemp_Earring + - BaseItem: S_FullTemp_Earring + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_FullTemp_Shoes + - BaseItem: S_FullTemp_Shoes + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_FullTemp_Pendant + - BaseItem: S_FullTemp_Pendant + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_FullTemp_Armor + - BaseItem: S_TrueGem_Armor + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_TrueGem_Earring + - BaseItem: S_TrueGem_Earring + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_TrueGem_Shoes + - BaseItem: S_TrueGem_Shoes + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_TrueGem_Pendant + - BaseItem: S_TrueGem_Pendant + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_TrueGem_Armor + - BaseItem: S_CriticalHit_Weapon + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_CriticalHit_Armor + - BaseItem: S_CriticalHit_Armor + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_CriticalHit_Weapon + - BaseItem: S_M_AutoSpell_Armor + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_M_AutoSpell_Earring + - BaseItem: S_M_AutoSpell_Earring + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_M_AutoSpell_Shoes + - BaseItem: S_M_AutoSpell_Shoes + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_M_AutoSpell_Pendant + - BaseItem: S_M_AutoSpell_Pendant + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_M_AutoSpell_Armor + - BaseItem: S_Clever_Weapon + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_Clever_Shield + - BaseItem: S_Clever_Shield + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_Clever_Weapon + - BaseItem: S_Durable_Weapon + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_Durable_Shield + - BaseItem: S_Durable_Shield + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_Durable_Weapon + - BaseItem: S_Infinity_Weapon + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_Infinity_Shield + - BaseItem: S_Infinity_Shield + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_Infinity_Weapon + - BaseItem: S_Hasty_Weapon + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_Hasty_Shield + - BaseItem: S_Hasty_Shield + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_Hasty_Weapon + - BaseItem: S_PerfectSize_Weapon + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_PerfectSize_Armor + - BaseItem: S_PerfectSize_Armor + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_PerfectSize_Weapon + - BaseItem: S_R_Bearers_Armor + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_R_Bearers_Earring + - BaseItem: S_R_Bearers_Earring + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_R_Bearers_Shoes + - BaseItem: S_R_Bearers_Shoes + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_R_Bearers_Pendant + - BaseItem: S_R_Bearers_Pendant + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_R_Bearers_Armor + - BaseItem: S_SpellCaster_Armor + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_SpellCaster_Earring + - BaseItem: S_SpellCaster_Earring + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_SpellCaster_Shoes + - BaseItem: S_SpellCaster_Shoes + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_SpellCaster_Pendant + - BaseItem: S_SpellCaster_Pendant + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_SpellCaster_Armor + - BaseItem: S_Mega_Blitz_Shield + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_Mega_Blitz_Weapon + - BaseItem: S_Mega_Blitz_Weapon + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_Mega_Blitz_Shield + - BaseItem: S_Absorb_Shield + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_Absorb_Weapon + - BaseItem: S_Absorb_Weapon + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_Absorb_Shield + - BaseItem: S_M_Mammoth_Armor + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_M_Mammoth_Earring + - BaseItem: S_M_Mammoth_Earring + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_M_Mammoth_Shoes + - BaseItem: S_M_Mammoth_Shoes + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_M_Mammoth_Pendant + - BaseItem: S_M_Mammoth_Pendant + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_M_Mammoth_Armor + - BaseItem: S_AllMighty_Pendant + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_AllMighty_Earring + - BaseItem: S_AllMighty_Earring + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_AllMighty_Pendant + - BaseItem: S_KingbirdAnc_Weapon + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_KingbirdAncient_Armor + - BaseItem: S_KingbirdAncient_Armor + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_KingbirdAnc_Weapon + - BaseItem: S_EXP_Shield + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_EXP_Weapon + - BaseItem: S_EXP_Weapon + MaximumRefine: 10 + CardsAllowed: false + Materials: + - Material: Shadow_Exchange_Ticket + ResultItem: S_EXP_Shield + - Item: Special_Hat_Hammer + BaseItems: + - BaseItem: King_Tiger_Doll_Hat_LT + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: King_Tiger_Doll_Hat_LT + ChangeRefine: 1 + - BaseItem: Baksojin_Hat_LT + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Baksojin_Hat_LT + ChangeRefine: 1 + - BaseItem: Smoky_TransformHat_LT + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Smoky_TransformHat_LT + ChangeRefine: 1 + - BaseItem: Whikebain_Ears_K_LT + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Whikebain_Ears_K_LT + ChangeRefine: 1 + - BaseItem: Survive_Circlet_K_LT + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Survive_Circlet_K_LT + ChangeRefine: 1 + - BaseItem: GoldFish_Hat_LT + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: GoldFish_Hat_LT + ChangeRefine: 1 + - BaseItem: Imp_Hat_LT + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Imp_Hat_LT + ChangeRefine: 1 + - BaseItem: Officer_Cap_LT + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Officer_Cap_LT + ChangeRefine: 1 + - BaseItem: Dolor_HatK_LT + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Dolor_HatK_LT + ChangeRefine: 1 + - Item: Poenitentia_Hammer + BaseItems: + - BaseItem: Poenitentia_Gladius + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Poenitentia_Gladius + ChangeRefine: 1 + - BaseItem: Poenitentia_Ligula + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Poenitentia_Ligula + ChangeRefine: 1 + - BaseItem: Poenitentia_Orbis + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Poenitentia_Orbis + ChangeRefine: 1 + - BaseItem: Poenitentia_Mucro + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Poenitentia_Mucro + ChangeRefine: 1 + - BaseItem: Poenitentia_Sol + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Poenitentia_Sol + ChangeRefine: 1 + - BaseItem: Poenitentia_Jana + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Poenitentia_Jana + ChangeRefine: 1 + - BaseItem: Poenitentia_Hasta + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Poenitentia_Hasta + ChangeRefine: 1 + - BaseItem: Poenitentia_Codex + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Poenitentia_Codex + ChangeRefine: 1 + - BaseItem: Poenitentia_Liber + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Poenitentia_Liber + ChangeRefine: 1 + - BaseItem: Poenitentia_Radius + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Poenitentia_Radius + ChangeRefine: 1 + - BaseItem: Poenitentia_Scipio + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Poenitentia_Scipio + ChangeRefine: 1 + - BaseItem: Poenitentia_Crystallum + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Poenitentia_Crystallum + ChangeRefine: 1 + - BaseItem: Poenitentia_Ramus + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Poenitentia_Ramus + ChangeRefine: 1 + - BaseItem: Poenitentia_Planta + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Poenitentia_Planta + ChangeRefine: 1 + - BaseItem: Poenitentia_Ferrum + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Poenitentia_Ferrum + ChangeRefine: 1 + - BaseItem: Poenitentia_Caestus + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Poenitentia_Caestus + ChangeRefine: 1 + - BaseItem: Poenitentia_Ungula + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Poenitentia_Ungula + ChangeRefine: 1 + - BaseItem: Poenitentia_Chorda + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Poenitentia_Chorda + ChangeRefine: 1 + - BaseItem: Poenitentia_Flagellum + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Poenitentia_Flagellum + ChangeRefine: 1 + - BaseItem: Poenitentia_Clava + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Poenitentia_Clava + ChangeRefine: 1 + - BaseItem: Poenitentia_Pendulus + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Poenitentia_Pendulus + ChangeRefine: 1 + - BaseItem: Poenitentia_Ensis + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Poenitentia_Ensis + ChangeRefine: 1 + - BaseItem: Poenitentia_Manus + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Poenitentia_Manus + ChangeRefine: 1 + - BaseItem: Poenitentia_Ascia + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Poenitentia_Ascia + ChangeRefine: 1 + - BaseItem: Poenitentia_Catapulta + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Poenitentia_Catapulta + ChangeRefine: 1 + - BaseItem: Poenitentia_Termes + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Poenitentia_Termes + ChangeRefine: 1 + - BaseItem: Poenitentia_Virga + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Poenitentia_Virga + ChangeRefine: 1 + - BaseItem: Poenitentia_Tenon + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Poenitentia_Tenon + ChangeRefine: 1 + - BaseItem: Poenitentia_Nervus + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Poenitentia_Nervus + ChangeRefine: 1 + - BaseItem: Poenitentia_Foramen + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Poenitentia_Foramen + ChangeRefine: 1 + - BaseItem: Poenitentia_Penet + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Poenitentia_Penet + ChangeRefine: 1 + - BaseItem: Poenitentia_Veloci + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Poenitentia_Veloci + ChangeRefine: 1 + - BaseItem: Poenitentia_Ruina + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Poenitentia_Ruina + ChangeRefine: 1 + - BaseItem: Poenetentia_Vatia + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Poenetentia_Vatia + ChangeRefine: 1 + - BaseItem: Poenetentia_Attendo + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Poenetentia_Attendo + ChangeRefine: 1 + - BaseItem: Poenetentia_Dilacero + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Poenetentia_Dilacero + ChangeRefine: 1 + - Item: Barmund_Hammer + BaseItems: + - BaseItem: Barmund_Ice_Hood + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Barmund_Ice_Hood + ChangeRefine: 1 + - BaseItem: Barmund_Death_Hood + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Barmund_Death_Hood + ChangeRefine: 1 + - BaseItem: Barmund_Flame_Hood + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Barmund_Flame_Hood + ChangeRefine: 1 + - BaseItem: Barmund_Plain_Hood + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Barmund_Plain_Hood + ChangeRefine: 1 + - BaseItem: Barmund_Ice_Boots + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Barmund_Ice_Boots + ChangeRefine: 1 + - BaseItem: Barmund_Death_Boots + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Barmund_Death_Boots + ChangeRefine: 1 + - BaseItem: Barmund_Flame_Boots + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Barmund_Flame_Boots + ChangeRefine: 1 + - BaseItem: Barmund_Plain_Boots + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Barmund_Plain_Boots + ChangeRefine: 1 + - BaseItem: Barmund_Ice_Armor + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Barmund_Ice_Armor + ChangeRefine: 1 + - BaseItem: Barmund_Death_Armor + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Barmund_Death_Armor + ChangeRefine: 1 + - BaseItem: Barmund_Plain_Armor + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Barmund_Plain_Armor + ChangeRefine: 1 + - BaseItem: Barmund_Flame_Armor + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Barmund_Flame_Armor + ChangeRefine: 1 + - Item: OS_Weapon_Reform + BaseItems: + - BaseItem: Beam_Claymore_OS + MinimumRefine: 7 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 70 + - Material: EP17_1_EVT02 + Amount: 200 + - Material: EP17_1_EVT39 + Amount: 40 + ResultItem: Beam_Claymore_AD + RandomOptionGroup: Group_0 + - BaseItem: Meuchler_OS + MinimumRefine: 7 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 70 + - Material: EP17_1_EVT02 + Amount: 200 + - Material: EP17_1_EVT39 + Amount: 40 + ResultItem: Meuchler_AD + RandomOptionGroup: Group_0 + - BaseItem: Blasti_OS + MinimumRefine: 7 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 70 + - Material: EP17_1_EVT02 + Amount: 200 + - Material: EP17_1_EVT39 + Amount: 40 + ResultItem: Blasti_AD + RandomOptionGroup: Group_0 + - BaseItem: Virtual_Bow_OS + MinimumRefine: 7 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 70 + - Material: EP17_1_EVT02 + Amount: 200 + - Material: EP17_1_EVT39 + Amount: 40 + ResultItem: Virtual_Bow_AD + RandomOptionGroup: Group_0 + - BaseItem: MH_P89_OS + MinimumRefine: 7 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 70 + - Material: EP17_1_EVT02 + Amount: 200 + - Material: EP17_1_EVT39 + Amount: 40 + ResultItem: MH_P89_AD + RandomOptionGroup: Group_0 + - BaseItem: AC_B44_OS + MinimumRefine: 7 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 70 + - Material: EP17_1_EVT02 + Amount: 200 + - Material: EP17_1_EVT39 + Amount: 40 + ResultItem: AC_B44_AD + RandomOptionGroup: Group_0 + - BaseItem: HR_S55_OS + MinimumRefine: 7 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 70 + - Material: EP17_1_EVT02 + Amount: 200 + - Material: EP17_1_EVT39 + Amount: 40 + ResultItem: HR_S55_AD + RandomOptionGroup: Group_0 + - BaseItem: Burning_Knuckle_OS + MinimumRefine: 7 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 70 + - Material: EP17_1_EVT02 + Amount: 200 + - Material: EP17_1_EVT39 + Amount: 40 + ResultItem: Burning_Knuckle_AD + RandomOptionGroup: Group_0 + - BaseItem: Cannon_Rapier_OS + MinimumRefine: 7 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 70 + - Material: EP17_1_EVT02 + Amount: 200 + - Material: EP17_1_EVT39 + Amount: 40 + ResultItem: Cannon_Rapier_AD + RandomOptionGroup: Group_0 + - BaseItem: Saphir_Hall_OS + MinimumRefine: 7 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 70 + - Material: EP17_1_EVT02 + Amount: 200 + - Material: EP17_1_EVT39 + Amount: 40 + ResultItem: Saphir_Hall_AD + RandomOptionGroup: Group_0 + - BaseItem: Ultio_Spes_OS + MinimumRefine: 7 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 70 + - Material: EP17_1_EVT02 + Amount: 200 + - Material: EP17_1_EVT39 + Amount: 40 + ResultItem: Ultio_Spes_AD + RandomOptionGroup: Group_0 + - BaseItem: Rutilus_Stick_OS + MinimumRefine: 7 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 70 + - Material: EP17_1_EVT02 + Amount: 200 + - Material: EP17_1_EVT39 + Amount: 40 + ResultItem: Rutilus_Stick_AD + RandomOptionGroup: Group_0 + - BaseItem: ElectricFox_OS + MinimumRefine: 7 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 70 + - Material: EP17_1_EVT02 + Amount: 200 + - Material: EP17_1_EVT39 + Amount: 40 + ResultItem: ElectricFox_AD + RandomOptionGroup: Group_0 + - BaseItem: Circuit_Board_OS + MinimumRefine: 7 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 70 + - Material: EP17_1_EVT02 + Amount: 200 + - Material: EP17_1_EVT39 + Amount: 40 + ResultItem: Circuit_Board_AD + RandomOptionGroup: Group_0 + - BaseItem: Kuroiro_OS + MinimumRefine: 7 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 70 + - Material: EP17_1_EVT02 + Amount: 200 + - Material: EP17_1_EVT39 + Amount: 40 + ResultItem: Kuroiro_AD + RandomOptionGroup: Group_0 + - BaseItem: Boost_Lance_OS + MinimumRefine: 7 + CardsAllowed: false + Materials: + - Material: Weapon_Stone_1 + Amount: 70 + - Material: EP17_1_EVT02 + Amount: 200 + - Material: EP17_1_EVT39 + Amount: 40 + ResultItem: Boost_Lance_AD + RandomOptionGroup: Group_0 + - Item: OS_Helm_Hammer + BaseItems: + - BaseItem: Sagittarius_DiademK_LT + MaximumRefine: 11 + Materials: + - Material: Shadowdecon + Amount: 30 + - Material: EP17_1_EVT39 + Amount: 30 + ResultItem: Sagittarius_DiademK_LT + ChangeRefine: 1 + - BaseItem: Scorpio_Diadem_K_LT + MaximumRefine: 11 + Materials: + - Material: Shadowdecon + Amount: 30 + - Material: EP17_1_EVT39 + Amount: 30 + ResultItem: Scorpio_Diadem_K_LT + ChangeRefine: 1 + - BaseItem: Large_Sorcerer_Crown_LT + MaximumRefine: 11 + Materials: + - Material: Shadowdecon + Amount: 30 + - Material: EP17_1_EVT39 + Amount: 30 + ResultItem: Large_Sorcerer_Crown_LT + ChangeRefine: 1 + - BaseItem: Stripe_Hat_LT + MaximumRefine: 11 + Materials: + - Material: Shadowdecon + Amount: 30 + - Material: EP17_1_EVT39 + Amount: 30 + ResultItem: Stripe_Hat_LT + ChangeRefine: 1 + - BaseItem: Phantom_Cap_LT + MaximumRefine: 11 + Materials: + - Material: Shadowdecon + Amount: 30 + - Material: EP17_1_EVT39 + Amount: 30 + ResultItem: Phantom_Cap_LT + ChangeRefine: 1 + - BaseItem: Ignis_CapK_LT + MaximumRefine: 11 + Materials: + - Material: Shadowdecon + Amount: 30 + - Material: EP17_1_EVT39 + Amount: 30 + ResultItem: Ignis_CapK_LT + ChangeRefine: 1 + - BaseItem: Clock_Casket_RD_LT + MaximumRefine: 11 + Materials: + - Material: Shadowdecon + Amount: 30 + - Material: EP17_1_EVT39 + Amount: 30 + ResultItem: Clock_Casket_RD_LT + ChangeRefine: 1 + - Item: OS_Weapon_Hammer + BaseItems: + - BaseItem: Beam_Claymore_AD + MaximumRefine: 11 + Materials: + - Material: Zelunium + Amount: 30 + - Material: EP17_1_EVT39 + Amount: 30 + ResultItem: Beam_Claymore_AD + ChangeRefine: 1 + - BaseItem: Meuchler_AD + MaximumRefine: 11 + Materials: + - Material: Zelunium + Amount: 30 + - Material: EP17_1_EVT39 + Amount: 30 + ResultItem: Meuchler_AD + ChangeRefine: 1 + - BaseItem: Blasti_AD + MaximumRefine: 11 + Materials: + - Material: Zelunium + Amount: 30 + - Material: EP17_1_EVT39 + Amount: 30 + ResultItem: Blasti_AD + ChangeRefine: 1 + - BaseItem: Virtual_Bow_AD + MaximumRefine: 11 + Materials: + - Material: Zelunium + Amount: 30 + - Material: EP17_1_EVT39 + Amount: 30 + ResultItem: Virtual_Bow_AD + ChangeRefine: 1 + - BaseItem: MH_P89_AD + MaximumRefine: 11 + Materials: + - Material: Zelunium + Amount: 30 + - Material: EP17_1_EVT39 + Amount: 30 + ResultItem: MH_P89_AD + ChangeRefine: 1 + - BaseItem: AC_B44_AD + MaximumRefine: 11 + Materials: + - Material: Zelunium + Amount: 30 + - Material: EP17_1_EVT39 + Amount: 30 + ResultItem: AC_B44_AD + ChangeRefine: 1 + - BaseItem: HR_S55_AD + MaximumRefine: 11 + Materials: + - Material: Zelunium + Amount: 30 + - Material: EP17_1_EVT39 + Amount: 30 + ResultItem: HR_S55_AD + ChangeRefine: 1 + - BaseItem: Burning_Knuckle_AD + MaximumRefine: 11 + Materials: + - Material: Zelunium + Amount: 30 + - Material: EP17_1_EVT39 + Amount: 30 + ResultItem: Burning_Knuckle_AD + ChangeRefine: 1 + - BaseItem: Cannon_Rapier_AD + MaximumRefine: 11 + Materials: + - Material: Zelunium + Amount: 30 + - Material: EP17_1_EVT39 + Amount: 30 + ResultItem: Cannon_Rapier_AD + ChangeRefine: 1 + - BaseItem: Saphir_Hall_AD + MaximumRefine: 11 + Materials: + - Material: Zelunium + Amount: 30 + - Material: EP17_1_EVT39 + Amount: 30 + ResultItem: Saphir_Hall_AD + ChangeRefine: 1 + - BaseItem: Ultio_Spes_AD + MaximumRefine: 11 + Materials: + - Material: Zelunium + Amount: 30 + - Material: EP17_1_EVT39 + Amount: 30 + ResultItem: Ultio_Spes_AD + ChangeRefine: 1 + - BaseItem: Rutilus_Stick_AD + MaximumRefine: 11 + Materials: + - Material: Zelunium + Amount: 30 + - Material: EP17_1_EVT39 + Amount: 30 + ResultItem: Rutilus_Stick_AD + ChangeRefine: 1 + - BaseItem: ElectricFox_AD + MaximumRefine: 11 + Materials: + - Material: Zelunium + Amount: 30 + - Material: EP17_1_EVT39 + Amount: 30 + ResultItem: ElectricFox_AD + ChangeRefine: 1 + - BaseItem: Circuit_Board_AD + MaximumRefine: 11 + Materials: + - Material: Zelunium + Amount: 30 + - Material: EP17_1_EVT39 + Amount: 30 + ResultItem: Circuit_Board_AD + ChangeRefine: 1 + - BaseItem: Kuroiro_AD + MaximumRefine: 11 + Materials: + - Material: Zelunium + Amount: 30 + - Material: EP17_1_EVT39 + Amount: 30 + ResultItem: Kuroiro_AD + ChangeRefine: 1 + - BaseItem: Boost_Lance_AD + MaximumRefine: 11 + Materials: + - Material: Zelunium + Amount: 30 + - Material: EP17_1_EVT39 + Amount: 30 + ResultItem: Boost_Lance_AD + ChangeRefine: 1 + - Item: Helm_Of_Faith_Hammer + BaseItems: + - BaseItem: Viva_Adul_Hat_WL1 + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Viva_Adul_Hat_WL1 + ChangeRefine: 1 + - BaseItem: Viva_Adul_Hat_WL2 + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Viva_Adul_Hat_WL2 + ChangeRefine: 1 + - BaseItem: Viva_Adul_Hat_SR1 + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Viva_Adul_Hat_SR1 + ChangeRefine: 1 + - BaseItem: Viva_Adul_Hat_SR2 + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Viva_Adul_Hat_SR2 + ChangeRefine: 1 + - BaseItem: Viva_Adul_Hat_AB1 + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Viva_Adul_Hat_AB1 + ChangeRefine: 1 + - BaseItem: Viva_Adul_Hat_AB2 + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Viva_Adul_Hat_AB2 + ChangeRefine: 1 + - BaseItem: Viva_Adul_Hat_SC1 + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Viva_Adul_Hat_SC1 + ChangeRefine: 1 + - BaseItem: Viva_Adul_Hat_SC2 + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Viva_Adul_Hat_SC2 + ChangeRefine: 1 + - BaseItem: Viva_Adul_Hat_RA1 + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Viva_Adul_Hat_RA1 + ChangeRefine: 1 + - BaseItem: Viva_Adul_Hat_RA2 + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Viva_Adul_Hat_RA2 + ChangeRefine: 1 + - BaseItem: Viva_Adul_Hat_LG1 + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Viva_Adul_Hat_LG1 + ChangeRefine: 1 + - BaseItem: Viva_Adul_Hat_LG2 + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Viva_Adul_Hat_LG2 + ChangeRefine: 1 + - BaseItem: Viva_Adul_Hat_GC1 + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Viva_Adul_Hat_GC1 + ChangeRefine: 1 + - BaseItem: Viva_Adul_Hat_GC2 + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Viva_Adul_Hat_GC2 + ChangeRefine: 1 + - BaseItem: Viva_Adul_Hat_SO1 + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Viva_Adul_Hat_SO1 + ChangeRefine: 1 + - BaseItem: Viva_Adul_Hat_SO2 + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Viva_Adul_Hat_SO2 + ChangeRefine: 1 + - BaseItem: Viva_Adul_Hat_RK1 + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Viva_Adul_Hat_RK1 + ChangeRefine: 1 + - BaseItem: Viva_Adul_Hat_RK2 + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Viva_Adul_Hat_RK2 + ChangeRefine: 1 + - BaseItem: Viva_Adul_Hat_WM1 + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Viva_Adul_Hat_WM1 + ChangeRefine: 1 + - BaseItem: Viva_Adul_Hat_WM2 + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Viva_Adul_Hat_WM2 + ChangeRefine: 1 + - BaseItem: Viva_Adul_Hat_NC1 + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Viva_Adul_Hat_NC1 + ChangeRefine: 1 + - BaseItem: Viva_Adul_Hat_NC2 + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Viva_Adul_Hat_NC2 + ChangeRefine: 1 + - BaseItem: Viva_Adul_Hat_GN1 + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Viva_Adul_Hat_GN1 + ChangeRefine: 1 + - BaseItem: Viva_Adul_Hat_GN2 + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Viva_Adul_Hat_GN2 + ChangeRefine: 1 + - BaseItem: Viva_Adul_Hat_KO1 + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Viva_Adul_Hat_KO1 + ChangeRefine: 1 + - BaseItem: Viva_Adul_Hat_KO2 + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Viva_Adul_Hat_KO2 + ChangeRefine: 1 + - BaseItem: Viva_Adul_Hat_RL1 + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Viva_Adul_Hat_RL1 + ChangeRefine: 1 + - BaseItem: Viva_Adul_Hat_RL2 + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Viva_Adul_Hat_RL2 + ChangeRefine: 1 + - BaseItem: Viva_Adul_Hat_SP1 + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Viva_Adul_Hat_SP1 + ChangeRefine: 1 + - BaseItem: Viva_Adul_Hat_SP2 + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Viva_Adul_Hat_SP2 + ChangeRefine: 1 + - BaseItem: Viva_Adul_Hat_SJ1 + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Viva_Adul_Hat_SJ1 + ChangeRefine: 1 + - BaseItem: Viva_Adul_Hat_SJ2 + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Viva_Adul_Hat_SJ2 + ChangeRefine: 1 + - BaseItem: Viva_Adul_Hat_SU1 + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Viva_Adul_Hat_SU1 + ChangeRefine: 1 + - BaseItem: Viva_Adul_Hat_SU2 + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Viva_Adul_Hat_SU2 + ChangeRefine: 1 + - Item: Clock_Tower_W_Hammer + BaseItems: + - BaseItem: Precision_Bow + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Precision_Bow + ChangeRefine: 1 + - BaseItem: Precision_Fist + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Precision_Fist + ChangeRefine: 1 + - BaseItem: Precision_Fuuma + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Precision_Fuuma + ChangeRefine: 1 + - BaseItem: Precision_Gatling + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Precision_Gatling + ChangeRefine: 1 + - BaseItem: Precision_Grenade + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Precision_Grenade + ChangeRefine: 1 + - BaseItem: Precision_Lute + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Precision_Lute + ChangeRefine: 1 + - BaseItem: Precision_Pistol + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Precision_Pistol + ChangeRefine: 1 + - BaseItem: Precision_Rifle + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Precision_Rifle + ChangeRefine: 1 + - BaseItem: Precision_Shotgun + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Precision_Shotgun + ChangeRefine: 1 + - BaseItem: Precision_Whip + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Precision_Whip + ChangeRefine: 1 + - BaseItem: Solid_Claymore + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Solid_Claymore + ChangeRefine: 1 + - BaseItem: Solid_Dagger + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Solid_Dagger + ChangeRefine: 1 + - BaseItem: Solid_Edge + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Solid_Edge + ChangeRefine: 1 + - BaseItem: Solid_Manual + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Solid_Manual + ChangeRefine: 1 + - BaseItem: Solid_Rod + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Solid_Rod + ChangeRefine: 1 + - BaseItem: Solid_Spear + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Solid_Spear + ChangeRefine: 1 + - BaseItem: Solid_Staff + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Solid_Staff + ChangeRefine: 1 + - BaseItem: Solid_Wand + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Solid_Wand + ChangeRefine: 1 + - BaseItem: Wicked_Axe + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Wicked_Axe + ChangeRefine: 1 + - BaseItem: Wicked_Blade + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Wicked_Blade + ChangeRefine: 1 + - BaseItem: Wicked_Book + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Wicked_Book + ChangeRefine: 1 + - BaseItem: Wicked_Cross + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Wicked_Cross + ChangeRefine: 1 + - BaseItem: Wicked_Dagger + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Wicked_Dagger + ChangeRefine: 1 + - BaseItem: Wicked_Edge + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Wicked_Edge + ChangeRefine: 1 + - BaseItem: Wicked_Katar + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Wicked_Katar + ChangeRefine: 1 + - BaseItem: Wicked_Plant + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: Wicked_Plant + ChangeRefine: 1 + - Item: EP19_DGW_Refine + BaseItems: + - BaseItem: D_Glacier_T_Sword + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Ep19_Snow_Flower + Amount: 40 + - Material: EP19_D_P_Crystal + Amount: 10 + - Material: EP19_N_P_Crystal + Amount: 10 + ResultItem: D_Glacier_T_Sword + ChangeRefine: 1 + - BaseItem: D_Glacier_Katar + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Ep19_Snow_Flower + Amount: 40 + - Material: EP19_D_P_Crystal + Amount: 10 + - Material: EP19_N_P_Crystal + Amount: 10 + ResultItem: D_Glacier_Katar + ChangeRefine: 1 + - BaseItem: D_Glacier_T_Axe + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Ep19_Snow_Flower + Amount: 40 + - Material: EP19_D_P_Crystal + Amount: 10 + - Material: EP19_N_P_Crystal + Amount: 10 + ResultItem: D_Glacier_T_Axe + ChangeRefine: 1 + - BaseItem: D_Glacier_Lance + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Ep19_Snow_Flower + Amount: 40 + - Material: EP19_D_P_Crystal + Amount: 10 + - Material: EP19_N_P_Crystal + Amount: 10 + ResultItem: D_Glacier_Lance + ChangeRefine: 1 + - BaseItem: D_Glacier_Staff + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Ep19_Snow_Flower + Amount: 40 + - Material: EP19_D_P_Crystal + Amount: 10 + - Material: EP19_N_P_Crystal + Amount: 10 + ResultItem: D_Glacier_Staff + ChangeRefine: 1 + - BaseItem: D_Glacier_Humma + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Ep19_Snow_Flower + Amount: 40 + - Material: EP19_D_P_Crystal + Amount: 10 + - Material: EP19_N_P_Crystal + Amount: 10 + ResultItem: D_Glacier_Humma + ChangeRefine: 1 + - BaseItem: D_Glacier_Bow + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Ep19_Snow_Flower + Amount: 40 + - Material: EP19_D_P_Crystal + Amount: 10 + - Material: EP19_N_P_Crystal + Amount: 10 + ResultItem: D_Glacier_Bow + ChangeRefine: 1 + - BaseItem: D_Glacier_Revolver + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Ep19_Snow_Flower + Amount: 40 + - Material: EP19_D_P_Crystal + Amount: 10 + - Material: EP19_N_P_Crystal + Amount: 10 + ResultItem: D_Glacier_Revolver + ChangeRefine: 1 + - BaseItem: D_Glacier_Rifle + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Ep19_Snow_Flower + Amount: 40 + - Material: EP19_D_P_Crystal + Amount: 10 + - Material: EP19_N_P_Crystal + Amount: 10 + ResultItem: D_Glacier_Rifle + ChangeRefine: 1 + - BaseItem: D_Glacier_Shotgun + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Ep19_Snow_Flower + Amount: 40 + - Material: EP19_D_P_Crystal + Amount: 10 + - Material: EP19_N_P_Crystal + Amount: 10 + ResultItem: D_Glacier_Shotgun + ChangeRefine: 1 + - BaseItem: D_Glacier_Gatling + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Ep19_Snow_Flower + Amount: 40 + - Material: EP19_D_P_Crystal + Amount: 10 + - Material: EP19_N_P_Crystal + Amount: 10 + ResultItem: D_Glacier_Gatling + ChangeRefine: 1 + - BaseItem: D_Glacier_Launcher + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Ep19_Snow_Flower + Amount: 40 + - Material: EP19_D_P_Crystal + Amount: 10 + - Material: EP19_N_P_Crystal + Amount: 10 + ResultItem: D_Glacier_Launcher + ChangeRefine: 1 + - BaseItem: D_Glacier_Sword + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Ep19_Snow_Flower + Amount: 40 + - Material: EP19_D_P_Crystal + Amount: 10 + - Material: EP19_N_P_Crystal + Amount: 10 + ResultItem: D_Glacier_Sword + ChangeRefine: 1 + - BaseItem: D_Glacier_B_Sword + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Ep19_Snow_Flower + Amount: 40 + - Material: EP19_D_P_Crystal + Amount: 10 + - Material: EP19_N_P_Crystal + Amount: 10 + ResultItem: D_Glacier_B_Sword + ChangeRefine: 1 + - BaseItem: D_Glacier_R_Knife + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Ep19_Snow_Flower + Amount: 40 + - Material: EP19_D_P_Crystal + Amount: 10 + - Material: EP19_N_P_Crystal + Amount: 10 + ResultItem: D_Glacier_R_Knife + ChangeRefine: 1 + - BaseItem: D_Glacier_B_Knife + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Ep19_Snow_Flower + Amount: 40 + - Material: EP19_D_P_Crystal + Amount: 10 + - Material: EP19_N_P_Crystal + Amount: 10 + ResultItem: D_Glacier_B_Knife + ChangeRefine: 1 + - BaseItem: D_Glacier_Axe + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Ep19_Snow_Flower + Amount: 40 + - Material: EP19_D_P_Crystal + Amount: 10 + - Material: EP19_N_P_Crystal + Amount: 10 + ResultItem: D_Glacier_Axe + ChangeRefine: 1 + - BaseItem: D_Glacier_Spear + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Ep19_Snow_Flower + Amount: 40 + - Material: EP19_D_P_Crystal + Amount: 10 + - Material: EP19_N_P_Crystal + Amount: 10 + ResultItem: D_Glacier_Spear + ChangeRefine: 1 + - BaseItem: D_Glacier_Book + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Ep19_Snow_Flower + Amount: 40 + - Material: EP19_D_P_Crystal + Amount: 10 + - Material: EP19_N_P_Crystal + Amount: 10 + ResultItem: D_Glacier_Book + ChangeRefine: 1 + - BaseItem: D_Glacier_Wand + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Ep19_Snow_Flower + Amount: 40 + - Material: EP19_D_P_Crystal + Amount: 10 + - Material: EP19_N_P_Crystal + Amount: 10 + ResultItem: D_Glacier_Wand + ChangeRefine: 1 + - BaseItem: D_Glacier_Foxtail + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Ep19_Snow_Flower + Amount: 40 + - Material: EP19_D_P_Crystal + Amount: 10 + - Material: EP19_N_P_Crystal + Amount: 10 + ResultItem: D_Glacier_Foxtail + ChangeRefine: 1 + - BaseItem: D_Glacier_Knuckle + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Ep19_Snow_Flower + Amount: 40 + - Material: EP19_D_P_Crystal + Amount: 10 + - Material: EP19_N_P_Crystal + Amount: 10 + ResultItem: D_Glacier_Knuckle + ChangeRefine: 1 + - BaseItem: D_Glacier_Violin + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Ep19_Snow_Flower + Amount: 40 + - Material: EP19_D_P_Crystal + Amount: 10 + - Material: EP19_N_P_Crystal + Amount: 10 + ResultItem: D_Glacier_Violin + ChangeRefine: 1 + - BaseItem: D_Glacier_Whip + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Ep19_Snow_Flower + Amount: 40 + - Material: EP19_D_P_Crystal + Amount: 10 + - Material: EP19_N_P_Crystal + Amount: 10 + ResultItem: D_Glacier_Whip + ChangeRefine: 1 + - BaseItem: D_Glacier_Mace + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Ep19_Snow_Flower + Amount: 40 + - Material: EP19_D_P_Crystal + Amount: 10 + - Material: EP19_N_P_Crystal + Amount: 10 + ResultItem: D_Glacier_Mace + ChangeRefine: 1 + - BaseItem: D_Glacier_M_Mace + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Ep19_Snow_Flower + Amount: 40 + - Material: EP19_D_P_Crystal + Amount: 10 + - Material: EP19_N_P_Crystal + Amount: 10 + ResultItem: D_Glacier_M_Mace + ChangeRefine: 1 + - Item: Barmund_Flame_Reform + BaseItems: + - BaseItem: Barmund_Flame_Armor + MinimumRefine: 7 + Materials: + - Material: Armor_Stone_4 + Amount: 100 + - Material: Flame_Barmund_Rune2 + Amount: 20 + - Material: Barmund_Flame_Essence + Amount: 50 + - Material: Zelunium + Amount: 300 + - Material: BarMealTicket + Amount: 500 + ResultItem: Flame_Rune_Armor + - BaseItem: Barmund_Flame_Boots + MinimumRefine: 7 + Materials: + - Material: Armor_Stone_4 + Amount: 100 + - Material: Flame_Barmund_Rune2 + Amount: 20 + - Material: Barmund_Flame_Essence + Amount: 50 + - Material: Zelunium + Amount: 300 + - Material: BarMealTicket + Amount: 500 + ResultItem: Flame_Rune_Boots + - BaseItem: Barmund_Flame_Hood + MinimumRefine: 7 + Materials: + - Material: Armor_Stone_4 + Amount: 100 + - Material: Flame_Barmund_Rune2 + Amount: 20 + - Material: Barmund_Flame_Essence + Amount: 50 + - Material: Zelunium + Amount: 300 + - Material: BarMealTicket + Amount: 500 + ResultItem: Flame_Rune_Hood + - Item: Barmund_Plain_Reform + BaseItems: + - BaseItem: Barmund_Plain_Armor + MinimumRefine: 7 + Materials: + - Material: Armor_Stone_4 + Amount: 100 + - Material: Plain_Barmund_Rune2 + Amount: 20 + - Material: Barmund_Plain_Essence + Amount: 50 + - Material: Zelunium + Amount: 300 + - Material: BarMealTicket + Amount: 500 + ResultItem: Plain_Rune_Armor + - BaseItem: Barmund_Plain_Boots + MinimumRefine: 7 + Materials: + - Material: Armor_Stone_4 + Amount: 100 + - Material: Plain_Barmund_Rune2 + Amount: 20 + - Material: Barmund_Plain_Essence + Amount: 50 + - Material: Zelunium + Amount: 300 + - Material: BarMealTicket + Amount: 500 + ResultItem: Plain_Rune_Boots + - BaseItem: Barmund_Plain_Hood + MinimumRefine: 7 + Materials: + - Material: Armor_Stone_4 + Amount: 100 + - Material: Plain_Barmund_Rune2 + Amount: 20 + - Material: Barmund_Plain_Essence + Amount: 50 + - Material: Zelunium + Amount: 300 + - Material: BarMealTicket + Amount: 500 + ResultItem: Plain_Rune_Hood + - Item: Barmund_Ice_Reform + BaseItems: + - BaseItem: Barmund_Ice_Armor + MinimumRefine: 7 + Materials: + - Material: Armor_Stone_4 + Amount: 100 + - Material: Ice_Barmund_Rune2 + Amount: 20 + - Material: Barmund_Ice_Essence + Amount: 50 + - Material: Zelunium + Amount: 300 + - Material: BarMealTicket + Amount: 500 + ResultItem: Ice_Rune_Armor + - BaseItem: Barmund_Ice_Boots + MinimumRefine: 7 + Materials: + - Material: Armor_Stone_4 + Amount: 100 + - Material: Ice_Barmund_Rune2 + Amount: 20 + - Material: Barmund_Ice_Essence + Amount: 50 + - Material: Zelunium + Amount: 300 + - Material: BarMealTicket + Amount: 500 + ResultItem: Ice_Rune_Boots + - BaseItem: Barmund_Ice_Hood + MinimumRefine: 7 + Materials: + - Material: Armor_Stone_4 + Amount: 100 + - Material: Ice_Barmund_Rune2 + Amount: 20 + - Material: Barmund_Ice_Essence + Amount: 50 + - Material: Zelunium + Amount: 300 + - Material: BarMealTicket + Amount: 500 + ResultItem: Ice_Rune_Hood + - Item: Barmund_Death_Reform + BaseItems: + - BaseItem: Barmund_Death_Armor + MinimumRefine: 7 + Materials: + - Material: Armor_Stone_4 + Amount: 100 + - Material: Death_Barmund_Rune2 + Amount: 20 + - Material: Barmund_Death_Essence + Amount: 50 + - Material: Zelunium + Amount: 300 + - Material: BarMealTicket + Amount: 500 + ResultItem: Death_Rune_Armor + - BaseItem: Barmund_Death_Boots + MinimumRefine: 7 + Materials: + - Material: Armor_Stone_4 + Amount: 100 + - Material: Death_Barmund_Rune2 + Amount: 20 + - Material: Barmund_Death_Essence + Amount: 50 + - Material: Zelunium + Amount: 300 + - Material: BarMealTicket + Amount: 500 + ResultItem: Death_Rune_Boots + - BaseItem: Barmund_Death_Hood + MinimumRefine: 7 + Materials: + - Material: Armor_Stone_4 + Amount: 100 + - Material: Death_Barmund_Rune2 + Amount: 20 + - Material: Barmund_Death_Essence + Amount: 50 + - Material: Zelunium + Amount: 300 + - Material: BarMealTicket + Amount: 500 + ResultItem: Death_Rune_Hood - Item: Dimmen_A_Reform BaseItems: - BaseItem: Under_Seal_D_Key MaximumRefine: 0 - CardsAllowed: false Materials: - Material: Dimmension_Jewel - Amount: 1 - Material: Dimmension_Jewelry - Amount: 1 - Material: Herosria_Jewel - Amount: 1 - Material: Creed_Of_Herosria - Amount: 1 ResultItem: Dimmension_W_Key + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Under_Seal_D_Padlock MaximumRefine: 0 - CardsAllowed: false Materials: - Material: Dimmension_Jewel - Amount: 1 - Material: Dimmension_Jewelry - Amount: 1 - Material: Herosria_Jewel - Amount: 1 - Material: Justice_Of_Herosria - Amount: 1 ResultItem: Dimmension_W_Padlock + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Under_Seal_D_keyring MaximumRefine: 0 - CardsAllowed: false Materials: - Material: Dimmension_Jewel - Amount: 1 - Material: Dimmension_Jewelry - Amount: 1 - Material: Herosria_Jewel - Amount: 1 - Material: Glory_Of_Herosria - Amount: 1 ResultItem: Dimmension_W_Keyring + ClearSlots: true + RemoveEnchantgrade: true - Item: Dimmen_A_Refine BaseItems: - BaseItem: Dimmension_W_Key MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Heros_Gold_Bar Amount: 50 @@ -6953,7 +7080,6 @@ Body: - BaseItem: Dimmension_W_Padlock MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Heros_Gold_Bar Amount: 50 @@ -6968,7 +7094,6 @@ Body: - BaseItem: Dimmension_W_Keyring MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Heros_Gold_Bar Amount: 50 @@ -6983,7 +7108,6 @@ Body: - Item: Barmund_Soul_Reform BaseItems: - BaseItem: Barmund_Soul_Ring - CardsAllowed: false Materials: - Material: Acc_Stone_4 Amount: 100 @@ -6999,7 +7123,6 @@ Body: - Item: Barmund_Venom_Reform BaseItems: - BaseItem: Barmund_Venom_Ring - CardsAllowed: false Materials: - Material: Acc_Stone_4 Amount: 100 @@ -7015,7 +7138,6 @@ Body: - Item: Barmund_Temple_Reform BaseItems: - BaseItem: Barmund_Temple_Ring - CardsAllowed: false Materials: - Material: Acc_Stone_4 Amount: 100 @@ -7031,7 +7153,6 @@ Body: - Item: Barmund_S_Reform BaseItems: - BaseItem: Barmund_Soul_Ring - CardsAllowed: false Materials: - Material: Acc_Stone_4 Amount: 100 @@ -7047,7 +7168,6 @@ Body: - Item: Barmund_V_Reform BaseItems: - BaseItem: Barmund_Venom_Ring - CardsAllowed: false Materials: - Material: Acc_Stone_4 Amount: 100 @@ -7063,7 +7183,6 @@ Body: - Item: Barmund_T_Reform BaseItems: - BaseItem: Barmund_Temple_Ring - CardsAllowed: false Materials: - Material: Acc_Stone_4 Amount: 100 @@ -7079,7 +7198,6 @@ Body: - Item: Amp_Blueprint1 BaseItems: - BaseItem: Ein_1HDAGGER - CardsAllowed: false Materials: - Material: Weapon_Stone_3 Amount: 75 @@ -7093,10 +7211,10 @@ Body: Amount: 75 ResultItem: F_Ein_1HDAGGER ChangeRefine: -20 + RandomOptionGroup: Group_0 - Item: Amp_Blueprint2 BaseItems: - BaseItem: Ein_1HMAGGER - CardsAllowed: false Materials: - Material: Weapon_Stone_3 Amount: 100 @@ -7110,10 +7228,10 @@ Body: Amount: 100 ResultItem: F_Ein_1HMAGGER ChangeRefine: -20 + RandomOptionGroup: Group_0 - Item: Amp_Blueprint3 BaseItems: - BaseItem: Ein_1HSWORD - CardsAllowed: false Materials: - Material: Weapon_Stone_3 Amount: 100 @@ -7127,10 +7245,10 @@ Body: Amount: 100 ResultItem: F_Ein_1HSWORD ChangeRefine: -20 + RandomOptionGroup: Group_0 - Item: Amp_Blueprint4 BaseItems: - BaseItem: Ein_1H_Foxtail - CardsAllowed: false Materials: - Material: Weapon_Stone_3 Amount: 100 @@ -7144,10 +7262,10 @@ Body: Amount: 100 ResultItem: F_Ein_1H_Foxtail ChangeRefine: -20 + RandomOptionGroup: Group_0 - Item: Amp_Blueprint5 BaseItems: - BaseItem: Ein_1HSPEAR - CardsAllowed: false Materials: - Material: Weapon_Stone_3 Amount: 100 @@ -7161,10 +7279,10 @@ Body: Amount: 100 ResultItem: F_Ein_1HSPEAR ChangeRefine: -20 + RandomOptionGroup: Group_0 - Item: Amp_Blueprint6 BaseItems: - BaseItem: Ein_BHSWORD - CardsAllowed: false Materials: - Material: Weapon_Stone_3 Amount: 100 @@ -7178,10 +7296,10 @@ Body: Amount: 100 ResultItem: F_Ein_BHSWORD ChangeRefine: -20 + RandomOptionGroup: Group_0 - Item: Amp_Blueprint7 BaseItems: - BaseItem: Ein_1HHAMMER - CardsAllowed: false Materials: - Material: Weapon_Stone_3 Amount: 100 @@ -7195,10 +7313,10 @@ Body: Amount: 100 ResultItem: F_Ein_1HHAMMER ChangeRefine: -20 + RandomOptionGroup: Group_0 - Item: Amp_Blueprint8 BaseItems: - BaseItem: Ein_BHAXE - CardsAllowed: false Materials: - Material: Weapon_Stone_3 Amount: 100 @@ -7212,10 +7330,10 @@ Body: Amount: 100 ResultItem: F_Ein_BHAXE ChangeRefine: -20 + RandomOptionGroup: Group_0 - Item: Amp_Blueprint9 BaseItems: - BaseItem: Ein_1HKNUCK - CardsAllowed: false Materials: - Material: Weapon_Stone_3 Amount: 100 @@ -7229,10 +7347,10 @@ Body: Amount: 100 ResultItem: F_Ein_1HKNUCK ChangeRefine: -20 + RandomOptionGroup: Group_0 - Item: Amp_Blueprint10 BaseItems: - BaseItem: Ein_1HBOOK - CardsAllowed: false Materials: - Material: Weapon_Stone_3 Amount: 100 @@ -7246,10 +7364,10 @@ Body: Amount: 100 ResultItem: F_Ein_1HBOOK ChangeRefine: -20 + RandomOptionGroup: Group_0 - Item: Amp_Blueprint11 BaseItems: - BaseItem: Ein_1HWAND - CardsAllowed: false Materials: - Material: Weapon_Stone_3 Amount: 100 @@ -7263,10 +7381,10 @@ Body: Amount: 100 ResultItem: F_Ein_1HWAND ChangeRefine: -20 + RandomOptionGroup: Group_0 - Item: Amp_Blueprint12 BaseItems: - BaseItem: Ein_BHSTAFF - CardsAllowed: false Materials: - Material: Weapon_Stone_3 Amount: 100 @@ -7280,10 +7398,10 @@ Body: Amount: 100 ResultItem: F_Ein_BHSTAFF ChangeRefine: -20 + RandomOptionGroup: Group_0 - Item: Amp_Blueprint13 BaseItems: - BaseItem: Ein_BHHuuma - CardsAllowed: false Materials: - Material: Weapon_Stone_3 Amount: 100 @@ -7297,10 +7415,10 @@ Body: Amount: 100 ResultItem: F_Ein_BHHuuma ChangeRefine: -20 + RandomOptionGroup: Group_0 - Item: Amp_Blueprint14 BaseItems: - BaseItem: Ein_BHBOW - CardsAllowed: false Materials: - Material: Weapon_Stone_3 Amount: 100 @@ -7314,10 +7432,10 @@ Body: Amount: 100 ResultItem: F_Ein_BHBOW ChangeRefine: -20 + RandomOptionGroup: Group_0 - Item: Amp_Blueprint15 BaseItems: - BaseItem: Ein_BHKATAR - CardsAllowed: false Materials: - Material: Weapon_Stone_3 Amount: 100 @@ -7331,10 +7449,10 @@ Body: Amount: 100 ResultItem: F_Ein_BHKATAR ChangeRefine: -20 + RandomOptionGroup: Group_0 - Item: Amp_Blueprint16 BaseItems: - BaseItem: Ein_1HGUN - CardsAllowed: false Materials: - Material: Weapon_Stone_3 Amount: 100 @@ -7348,10 +7466,10 @@ Body: Amount: 100 ResultItem: F_Ein_1HGUN ChangeRefine: -20 + RandomOptionGroup: Group_0 - Item: Amp_Blueprint17 BaseItems: - BaseItem: Ein_1HWHIP - CardsAllowed: false Materials: - Material: Weapon_Stone_3 Amount: 100 @@ -7365,10 +7483,10 @@ Body: Amount: 100 ResultItem: F_Ein_1HWHIP ChangeRefine: -20 + RandomOptionGroup: Group_0 - Item: Amp_Blueprint18 BaseItems: - BaseItem: Ein_1HLUTE - CardsAllowed: false Materials: - Material: Weapon_Stone_3 Amount: 100 @@ -7382,12 +7500,12 @@ Body: Amount: 100 ResultItem: F_Ein_1HLUTE ChangeRefine: -20 + RandomOptionGroup: Group_0 - Item: Mocadas_Refine_Box BaseItems: - BaseItem: Mocadas_G_Sword MinimumRefine: 9 MaximumRefine: 10 - CardsAllowed: false Materials: - Material: Mocadas_Water Amount: 150 @@ -7398,7 +7516,6 @@ Body: - BaseItem: Mocadas_Spear MinimumRefine: 9 MaximumRefine: 10 - CardsAllowed: false Materials: - Material: Mocadas_Water Amount: 150 @@ -7409,7 +7526,6 @@ Body: - BaseItem: Mocadas_Stem MinimumRefine: 9 MaximumRefine: 10 - CardsAllowed: false Materials: - Material: Mocadas_Water Amount: 150 @@ -7420,7 +7536,6 @@ Body: - BaseItem: Mocadas_Spellbooks MinimumRefine: 9 MaximumRefine: 10 - CardsAllowed: false Materials: - Material: Mocadas_Water Amount: 150 @@ -7431,7 +7546,6 @@ Body: - BaseItem: Mocadas_C_Sword MinimumRefine: 9 MaximumRefine: 10 - CardsAllowed: false Materials: - Material: Mocadas_Water Amount: 150 @@ -7442,7 +7556,6 @@ Body: - BaseItem: Mocadas_Katar MinimumRefine: 9 MaximumRefine: 10 - CardsAllowed: false Materials: - Material: Mocadas_Water Amount: 150 @@ -7453,7 +7566,6 @@ Body: - BaseItem: Mocadas_Axe MinimumRefine: 9 MaximumRefine: 10 - CardsAllowed: false Materials: - Material: Mocadas_Water Amount: 150 @@ -7464,7 +7576,6 @@ Body: - BaseItem: Mocadas_Judgement MinimumRefine: 9 MaximumRefine: 10 - CardsAllowed: false Materials: - Material: Mocadas_Water Amount: 150 @@ -7475,7 +7586,6 @@ Body: - BaseItem: Mocadas_Knuckle MinimumRefine: 9 MaximumRefine: 10 - CardsAllowed: false Materials: - Material: Mocadas_Water Amount: 150 @@ -7486,7 +7596,6 @@ Body: - BaseItem: Mocadas_Rod MinimumRefine: 9 MaximumRefine: 10 - CardsAllowed: false Materials: - Material: Mocadas_Water Amount: 150 @@ -7497,7 +7606,6 @@ Body: - BaseItem: Mocadas_Bow MinimumRefine: 9 MaximumRefine: 10 - CardsAllowed: false Materials: - Material: Mocadas_Water Amount: 150 @@ -7508,7 +7616,6 @@ Body: - BaseItem: Mocadas_Instrument MinimumRefine: 9 MaximumRefine: 10 - CardsAllowed: false Materials: - Material: Mocadas_Water Amount: 150 @@ -7519,7 +7626,6 @@ Body: - BaseItem: Mocadas_Whip MinimumRefine: 9 MaximumRefine: 10 - CardsAllowed: false Materials: - Material: Mocadas_Water Amount: 150 @@ -7530,7 +7636,6 @@ Body: - BaseItem: Mocadas_Foxtail MinimumRefine: 9 MaximumRefine: 10 - CardsAllowed: false Materials: - Material: Mocadas_Water Amount: 150 @@ -7541,7 +7646,6 @@ Body: - BaseItem: Mocadas_Wand MinimumRefine: 9 MaximumRefine: 10 - CardsAllowed: false Materials: - Material: Mocadas_Water Amount: 150 @@ -7552,7 +7656,6 @@ Body: - BaseItem: Mocadas_Book MinimumRefine: 9 MaximumRefine: 10 - CardsAllowed: false Materials: - Material: Mocadas_Water Amount: 150 @@ -7563,7 +7666,6 @@ Body: - BaseItem: Mocadas_Knife MinimumRefine: 9 MaximumRefine: 10 - CardsAllowed: false Materials: - Material: Mocadas_Water Amount: 150 @@ -7574,7 +7676,6 @@ Body: - BaseItem: Mocadas_Hall MinimumRefine: 9 MaximumRefine: 10 - CardsAllowed: false Materials: - Material: Mocadas_Water Amount: 150 @@ -7585,7 +7686,6 @@ Body: - BaseItem: Mocadas_Launcher MinimumRefine: 9 MaximumRefine: 10 - CardsAllowed: false Materials: - Material: Mocadas_Water Amount: 150 @@ -7596,7 +7696,6 @@ Body: - BaseItem: Mocadas_Rifle MinimumRefine: 9 MaximumRefine: 10 - CardsAllowed: false Materials: - Material: Mocadas_Water Amount: 150 @@ -7607,7 +7706,6 @@ Body: - BaseItem: Mocadas_Shotgun MinimumRefine: 9 MaximumRefine: 10 - CardsAllowed: false Materials: - Material: Mocadas_Water Amount: 150 @@ -7618,7 +7716,6 @@ Body: - BaseItem: Mocadas_Gatling MinimumRefine: 9 MaximumRefine: 10 - CardsAllowed: false Materials: - Material: Mocadas_Water Amount: 150 @@ -7631,7 +7728,6 @@ Body: - BaseItem: Punish_Hall MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7640,7 +7736,6 @@ Body: - BaseItem: Saint_Bringer MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7649,7 +7744,6 @@ Body: - BaseItem: Humma_Brilliance MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7658,7 +7752,6 @@ Body: - BaseItem: Luppiter_Spear MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7667,7 +7760,6 @@ Body: - BaseItem: Holy_Raise_Spear MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7676,7 +7768,6 @@ Body: - BaseItem: Lightforce_Foxtail_Wand MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7685,7 +7776,6 @@ Body: - BaseItem: Shining_Light_Katar MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7694,7 +7784,6 @@ Body: - BaseItem: Angel_Wing_Bow MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7703,7 +7792,6 @@ Body: - BaseItem: Guardian_Saber MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7712,7 +7800,6 @@ Body: - BaseItem: Holy_Light_Dagger MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7721,7 +7808,6 @@ Body: - BaseItem: Light_Power_Harp MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7730,7 +7816,6 @@ Body: - BaseItem: Light_Power_Spark MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7739,7 +7824,6 @@ Body: - BaseItem: Lighting_Splatter MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7748,7 +7832,6 @@ Body: - BaseItem: Justice_Bomber MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7757,7 +7840,6 @@ Body: - BaseItem: Last_Dawn MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7766,7 +7848,6 @@ Body: - BaseItem: Devil_Hunter MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7775,7 +7856,6 @@ Body: - BaseItem: Road_Of_Glory MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7784,7 +7864,6 @@ Body: - BaseItem: Victory_Sword MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7793,7 +7872,6 @@ Body: - BaseItem: Divine_Buster MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7802,7 +7880,6 @@ Body: - BaseItem: Orign_Of_Life MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7811,7 +7888,6 @@ Body: - BaseItem: Destiny_Staff MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7820,7 +7896,6 @@ Body: - BaseItem: Blessed_Bible MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7829,7 +7904,6 @@ Body: - BaseItem: Soul_Liberator MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7840,7 +7914,6 @@ Body: - BaseItem: Demonic_Claw MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7849,7 +7922,6 @@ Body: - BaseItem: Sealed_Bible MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7858,7 +7930,6 @@ Body: - BaseItem: Darkness_Tablet MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7867,7 +7938,6 @@ Body: - BaseItem: Devil_Wing_Staff MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7876,7 +7946,6 @@ Body: - BaseItem: Doom_Bible MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7885,7 +7954,6 @@ Body: - BaseItem: Soul_Harvest MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7894,7 +7962,6 @@ Body: - BaseItem: The_Reaper MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7903,7 +7970,6 @@ Body: - BaseItem: Underworld_Knife MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7912,7 +7978,6 @@ Body: - BaseItem: Devil_Cursed_Sword MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7921,7 +7986,6 @@ Body: - BaseItem: Dark_Angel_Ray_Bow MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7930,7 +7994,6 @@ Body: - BaseItem: Crime_Violine MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7939,7 +8002,6 @@ Body: - BaseItem: Crime_Whip MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7948,7 +8010,6 @@ Body: - BaseItem: RG_5649 MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7957,7 +8018,6 @@ Body: - BaseItem: Devil_L_Launcher MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7966,7 +8026,6 @@ Body: - BaseItem: Screaming_Rifle MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7975,7 +8034,6 @@ Body: - BaseItem: Devils_Bullet MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7984,7 +8042,6 @@ Body: - BaseItem: Outlaw_Cursed_Shotgun MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -7993,7 +8050,6 @@ Body: - BaseItem: Blood_Rapier MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8002,7 +8058,6 @@ Body: - BaseItem: Destruction_Axe MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8011,7 +8066,6 @@ Body: - BaseItem: Devil_Claw MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8020,7 +8074,6 @@ Body: - BaseItem: Execution_Great_Sword MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8029,7 +8082,6 @@ Body: - BaseItem: Devil_Guardian_Sword MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8038,7 +8090,6 @@ Body: - BaseItem: Darkness_Foxtail_Model MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8049,7 +8100,6 @@ Body: - BaseItem: GoodnEvil_Circlet_DK MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8058,7 +8108,6 @@ Body: - BaseItem: GoodnEvil_Circlet_IG MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8067,7 +8116,6 @@ Body: - BaseItem: GoodnEvil_Circlet_AG MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8076,7 +8124,6 @@ Body: - BaseItem: GoodnEvil_Circlet_EM MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8085,7 +8132,6 @@ Body: - BaseItem: GoodnEvil_Circlet_CD MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8094,7 +8140,6 @@ Body: - BaseItem: GoodnEvil_Circlet_IQ MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8103,7 +8148,6 @@ Body: - BaseItem: GoodnEvil_Circlet_MT MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8112,7 +8156,6 @@ Body: - BaseItem: GoodnEvil_Circlet_BO MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8121,7 +8164,6 @@ Body: - BaseItem: GoodnEvil_Circlet_SHC MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8130,7 +8172,6 @@ Body: - BaseItem: GoodnEvil_Circlet_ABC MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8139,7 +8180,6 @@ Body: - BaseItem: GoodnEvil_Circlet_WH MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8148,7 +8188,6 @@ Body: - BaseItem: GoodnEvil_Circlet_TR MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8157,7 +8196,6 @@ Body: - BaseItem: GoodnEvil_Circlet_SS MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8166,7 +8204,6 @@ Body: - BaseItem: GoodnEvil_Circlet_SKE MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8175,7 +8212,6 @@ Body: - BaseItem: GoodnEvil_Circlet_SOA MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8184,7 +8220,6 @@ Body: - BaseItem: GoodnEvil_Circlet_HN MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8193,7 +8228,6 @@ Body: - BaseItem: GoodnEvil_Circlet_SH MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8202,7 +8236,6 @@ Body: - BaseItem: GoodnEvil_Circlet_NW MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8211,7 +8244,6 @@ Body: - BaseItem: GoodnEvil_Circlet_NW2 MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8220,7 +8252,6 @@ Body: - BaseItem: GoodnEvil_Circlet_NW3 MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8229,7 +8260,6 @@ Body: - BaseItem: GoodnEvil_Circlet_NW4 MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8238,7 +8268,6 @@ Body: - BaseItem: GoodnEvil_Circlet_NW5 MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8247,7 +8276,6 @@ Body: - Item: Amp_Blueprint19 BaseItems: - BaseItem: Ein_1HDAGGER - CardsAllowed: false Materials: - Material: Weapon_Stone_3 Amount: 25 @@ -8261,12 +8289,13 @@ Body: Amount: 25 ResultItem: F_Ein_1HDAGGER2 ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true - Item: F_Ein_Weapon_Hammer BaseItems: - BaseItem: F_Ein_1HGUN MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8275,7 +8304,6 @@ Body: - BaseItem: F_Ein_BHBOW MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8284,7 +8312,6 @@ Body: - BaseItem: F_Ein_BHHuuma MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8293,7 +8320,6 @@ Body: - BaseItem: F_Ein_BHSTAFF MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8302,7 +8328,6 @@ Body: - BaseItem: F_Ein_BHAXE MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8311,7 +8336,6 @@ Body: - BaseItem: F_Ein_BHKATAR MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8320,7 +8344,6 @@ Body: - BaseItem: F_Ein_BHSWORD MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8329,7 +8352,6 @@ Body: - BaseItem: F_Ein_1HHAMMER MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8338,7 +8360,6 @@ Body: - BaseItem: F_Ein_1HWHIP MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8347,7 +8368,6 @@ Body: - BaseItem: F_Ein_1HLUTE MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8356,7 +8376,6 @@ Body: - BaseItem: F_Ein_1HKNUCK MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8365,7 +8384,6 @@ Body: - BaseItem: F_Ein_1HWAND MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8374,7 +8392,6 @@ Body: - BaseItem: F_Ein_1H_Foxtail MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8383,7 +8400,6 @@ Body: - BaseItem: F_Ein_1HBOOK MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8392,7 +8408,6 @@ Body: - BaseItem: F_Ein_1HSPEAR MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8401,7 +8416,6 @@ Body: - BaseItem: F_Ein_1HDAGGER2 MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8410,7 +8424,6 @@ Body: - BaseItem: F_Ein_1HDAGGER MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8419,7 +8432,6 @@ Body: - BaseItem: F_Ein_1HMAGGER MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8428,7 +8440,6 @@ Body: - BaseItem: F_Ein_1HSWORD MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8438,162 +8449,123 @@ Body: BaseItems: - BaseItem: Royal_Bow_K MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_Royal_Bow_K - BaseItem: Shadow_Staff_K MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_Shadow_Staff_K - BaseItem: Iron_Nail_K MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_Iron_Nail_K - BaseItem: Ancient_Hero_Boots MinimumRefine: 11 - CardsAllowed: false ResultItem: Great_Hero_Boots - BaseItem: Blue_Crystal_Staff MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_Blue_Crystal_Staff - BaseItem: Freezing_Rod MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_Freezing_Rod - BaseItem: Sword_Of_Bluefire MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_Sword_Of_Bluefire - BaseItem: Iron_Staff MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_Iron_Staff - BaseItem: Oriental_Sword MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_Oriental_Sword - BaseItem: Fog_Dew_Sword MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_Fog_Dew_Sword - BaseItem: Humma_Clear MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_Humma_Clear - BaseItem: Narcis_Bow MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_Narcis_Bow - BaseItem: Magic_Sword MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_Magic_Sword - BaseItem: Avenger MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_Avenger - BaseItem: Undine_Spear_K MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_Undine_Spear_K - BaseItem: Demon_Hunting_Bible_K MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_Demon_Hunting_Bible - BaseItem: Shiver_Katar_K MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_Shiver_Katar_K - BaseItem: OneSkyOneSun MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_OneSkyOneSun - BaseItem: SoulWeight MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_SoulWeight - BaseItem: MeawFoxtail MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_MeawFoxtail - BaseItem: Freedom_Stick MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_Freedom_Stick - BaseItem: Blessed_Knife MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_Blessed_Knife - BaseItem: Dragonic_Slayer MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_Dragonic_Slayer - BaseItem: Light_Blade MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_Light_Blade - BaseItem: Slate_Sword MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_Slate_Sword - BaseItem: Trumpet_Shell_K MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_Trumpet_Shell_K - BaseItem: Barb_Wire_K MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_Barb_Wire_K - BaseItem: Meteor_Striker MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_Meteor_Striker - BaseItem: Saint_Hall MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_Saint_Hall - BaseItem: Ray_Knuckle MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_Ray_Knuckle - BaseItem: Blade_Katar MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_Blade_Katar - BaseItem: Fatalist MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_Fatalist - BaseItem: Scalet_Dragon_L_Bow MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_Scalet_Dragon_L_Bow - BaseItem: Crimson_Rose MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_Crimson_Rose - BaseItem: Master_Soul_Rifle MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_Master_Soul_Rifle - BaseItem: Demon_S_Shot MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_Demon_S_Shot - BaseItem: Golden_L_Launcher MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_Golden_L_Launcher - BaseItem: The_Black_Gatling MinimumRefine: 11 - CardsAllowed: false ResultItem: Up_The_Black_Gatling - Item: EP20_DGA_Refine BaseItems: - BaseItem: D_Glacier_Armor MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Ep20_Cat_Whiskers Amount: 40 @@ -8608,7 +8580,6 @@ Body: - BaseItem: D_Glacier_Robe MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Ep20_Cat_Whiskers Amount: 40 @@ -8623,7 +8594,6 @@ Body: - BaseItem: D_Glacier_Manteau MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Ep20_Cat_Whiskers Amount: 40 @@ -8638,7 +8608,6 @@ Body: - BaseItem: D_Glacier_Muffler MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Ep20_Cat_Whiskers Amount: 40 @@ -8653,7 +8622,6 @@ Body: - BaseItem: D_Glacier_Boots MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Ep20_Cat_Whiskers Amount: 40 @@ -8668,7 +8636,6 @@ Body: - BaseItem: D_Glacier_Shoes MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Ep20_Cat_Whiskers Amount: 40 @@ -8685,7 +8652,6 @@ Body: - BaseItem: Glacier_Helm_1 MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8694,7 +8660,6 @@ Body: - BaseItem: Glacier_Helm_2 MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8703,52 +8668,14 @@ Body: - BaseItem: Glacier_Helm_3 MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 ResultItem: Glacier_Helm_3 ChangeRefine: 1 - - Item: FA_Armor_Reform_1 - BaseItems: - - BaseItem: Thanatos_Sword - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Armor_Stone_1 - Amount: 200 - - Material: Piece_Of_Bone_Armor - Amount: 15 - - Material: Mine_As - Amount: 50 - - Material: Sakray_Fury2 - Amount: 5 - - Material: Sakray_Regret2 - Amount: 5 - ResultItem: Thanatos_Sword_FA - ChangeRefine: -5 - - Item: FA_Armor_Reform_2 - BaseItems: - - BaseItem: Thanatos_Sword - MinimumRefine: 9 - CardsAllowed: false - Materials: - - Material: Armor_Stone_2 - Amount: 200 - - Material: Piece_Of_Bone_Armor - Amount: 30 - - Material: Mine_As - Amount: 100 - - Material: Sakray_Fury2 - Amount: 9 - - Material: Sakray_Regret2 - Amount: 9 - ResultItem: Thanatos_Sword_FA - ChangeRefine: -1 - Item: Bar_D_A_Seal BaseItems: - BaseItem: Flame_E_R_Armor - CardsAllowed: false Materials: - Material: Bar_D_Fl_Rune Amount: 30 @@ -8760,7 +8687,6 @@ Body: Amount: 15 ResultItem: Flame_E_R_Armor2 - BaseItem: Ice_S_R_Suits - CardsAllowed: false Materials: - Material: Bar_D_Ic_Rune Amount: 30 @@ -8772,7 +8698,6 @@ Body: Amount: 15 ResultItem: Ice_S_R_Suits2 - BaseItem: Soul_P_R_Robe - CardsAllowed: false Materials: - Material: Bar_D_So_Rune Amount: 30 @@ -8784,7 +8709,6 @@ Body: Amount: 15 ResultItem: Soul_P_R_Robe2 - BaseItem: Corrupt_P_R_Cloth - CardsAllowed: false Materials: - Material: Bar_D_Co_Rune Amount: 30 @@ -8798,7 +8722,6 @@ Body: - Item: Bar_D_A_Unseal BaseItems: - BaseItem: Flame_E_R_Armor2 - CardsAllowed: false Materials: - Material: Bar_D_Fl_Rune Amount: 60 @@ -8810,7 +8733,6 @@ Body: Amount: 30 ResultItem: Flame_E_R_Armor - BaseItem: Ice_S_R_Suits2 - CardsAllowed: false Materials: - Material: Bar_D_Ic_Rune Amount: 60 @@ -8822,7 +8744,6 @@ Body: Amount: 30 ResultItem: Ice_S_R_Suits - BaseItem: Soul_P_R_Robe2 - CardsAllowed: false Materials: - Material: Bar_D_So_Rune Amount: 60 @@ -8834,7 +8755,6 @@ Body: Amount: 30 ResultItem: Soul_P_R_Robe - BaseItem: Corrupt_P_R_Cloth2 - CardsAllowed: false Materials: - Material: Bar_D_Co_Rune Amount: 60 @@ -8850,7 +8770,6 @@ Body: - BaseItem: FateSin_Boots_CD MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8859,7 +8778,6 @@ Body: - BaseItem: FateSin_Boots_IQ MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8868,7 +8786,6 @@ Body: - BaseItem: FateSin_Boots_SOA MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8877,7 +8794,6 @@ Body: - BaseItem: FateSin_Boots_BO MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8886,7 +8802,6 @@ Body: - BaseItem: FateSin_Boots_DK MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8895,7 +8810,6 @@ Body: - BaseItem: FateSin_Boots_SH MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8904,7 +8818,6 @@ Body: - BaseItem: FateSin_Boots_EM MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8913,7 +8826,6 @@ Body: - BaseItem: FateSin_Boots_WH MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 @@ -8922,386 +8834,1870 @@ Body: - BaseItem: FateSin_Boots_SKE MinimumRefine: 9 MaximumRefine: 11 - CardsAllowed: false Materials: - Material: Blacksmith_Blessing Amount: 14 ResultItem: FateSin_Boots_SKE ChangeRefine: 1 + - BaseItem: FateSin_Boots_MT + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: FateSin_Boots_MT + ChangeRefine: 1 + - BaseItem: FateSin_Boots_SHC + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: FateSin_Boots_SHC + ChangeRefine: 1 + - BaseItem: FateSin_Boots_SS + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: FateSin_Boots_SS + ChangeRefine: 1 + - BaseItem: FateSin_Boots_ABC + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: FateSin_Boots_ABC + ChangeRefine: 1 + - BaseItem: FateSin_Boots_TR + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: FateSin_Boots_TR + ChangeRefine: 1 + - BaseItem: FateSin_Boots_HN + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: FateSin_Boots_HN + ChangeRefine: 1 + - BaseItem: FateSin_Boots_IG + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: FateSin_Boots_IG + ChangeRefine: 1 + - BaseItem: FateSin_Boots_AG + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: FateSin_Boots_AG + ChangeRefine: 1 + - BaseItem: FateSin_Boots_NW + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Blacksmith_Blessing + Amount: 14 + ResultItem: FateSin_Boots_NW + ChangeRefine: 1 - Item: R_Ep17_Box BaseItems: - BaseItem: Saphir_Hall_OS - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Saphir_Hall_OS ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: ElectricFox_OS - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_ElectricFox_OS ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Rutilus_Stick_OS - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Rutilus_Stick_OS ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Circuit_Board_OS - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Circuit_Board_OS ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Boost_Lance_OS - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Boost_Lance_OS ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Blasti_OS - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Blasti_OS ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Beam_Claymore_OS - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Beam_Claymore_OS ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Cannon_Rapier_OS - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Cannon_Rapier_OS ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: AC_B44_OS - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_AC_B44_OS ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Virtual_Bow_OS - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Virtual_Bow_OS ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: HR_S55_OS - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_HR_S55_OS ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: MH_P89_OS - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_MH_P89_OS ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Kuroiro_OS - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Kuroiro_OS ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Meuchler_OS - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Meuchler_OS ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Burning_Knuckle_OS - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Burning_Knuckle_OS ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Ultio_Spes_OS - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Ultio_Spes_OS ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Auto_BC_R - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Auto_BC_R ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Auto_B_R - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Auto_B_R ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Auto_Armor_A - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Auto_Armor_A ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Auto_Engine_A - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Auto_Engine_A ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Auto_Leg_A - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Auto_Leg_A ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Auto_BC_L - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Auto_BC_L ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Auto_B_L - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Auto_B_L ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Auto_Armor_B - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Auto_Armor_B ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Auto_Engine_B - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Auto_Engine_B ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Auto_Leg_B - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Auto_Leg_B ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Ep172_1h_Sword - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Ep172_1h_Sword ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Ep172_1h_Wand - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Ep172_1h_Wand ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Ep172_1h_Book - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Ep172_1h_Book ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Ep172_1h_Sword2 - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Ep172_1h_Sword2 ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Ep172_Bh_Bow - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Ep172_Bh_Bow ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Ep172_Bh_Bow2 - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Ep172_Bh_Bow2 ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Ep172_Bh_knuck - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Ep172_Bh_knuck ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Ep172_1h_Spear - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Ep172_1h_Spear ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Ep172_Bh_Spear - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Ep172_Bh_Spear ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Ep172_1h_Dagger - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Ep172_1h_Dagger ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Ep172_Bh_Katar - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Ep172_Bh_Katar ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Ep172_Bh_Staff - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Ep172_Bh_Staff ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Ep172_1h_Book2 - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Ep172_1h_Book2 ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Ep172_1h_Dagger2 - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Ep172_1h_Dagger2 ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Ep172_1h_Whip - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Ep172_1h_Whip ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Ep172_1h_Inst - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Ep172_1h_Inst ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Ep172_Bh_Huuma - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Ep172_Bh_Huuma ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Ep172_1h_Foxtail - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Ep172_1h_Foxtail ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Ep172_1h_Rifle - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Ep172_1h_Rifle ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Ep172_1h_Shotgun - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Ep172_1h_Shotgun ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Ep172_1h_Gatling - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Ep172_1h_Gatling ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Ep172_1h_Grenade - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Ep172_1h_Grenade ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Ep172_1h_Axe - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Ep172_1h_Axe ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Ep172_Bh_Sword - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Ep172_Bh_Sword ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Ep172_Bh_Bow3 - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Ep172_Bh_Bow3 ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Ep172_Bh_Sword - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Ep172_Bh_Sword ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Ep172_1h_Hammer - CardsAllowed: false Materials: - Material: Imperfect_Rune Amount: 10 ResultItem: R_Ep172_1h_Hammer ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true - BaseItem: Card_Coin MaximumRefine: 0 - CardsAllowed: false ResultItem: R_Recycle_Card + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_A_Bow + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_A_Bow + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_T_Sword + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_T_Sword + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_Lance + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_Lance + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_G_Sword + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_G_Sword + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_G_Spear + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_G_Spear + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_Axe + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_Axe + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_Mace + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_Mace + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_Lapier + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_Lapier + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_Hall + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_Hall + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_Cakram + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_Cakram + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_Katar + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_Katar + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_Dagger + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_Dagger + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_C_Bow + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_C_Bow + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_T_Staff + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_T_Staff + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_Rod + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_Rod + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_M_Book + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_M_Book + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_P_Book + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_P_Book + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_Bible + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_Bible + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_Wand + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_Wand + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_Knuckle + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_Knuckle + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_Claw + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_Claw + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_Ballista + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_Ballista + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_Violin + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_Violin + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_C_Rope + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_C_Rope + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_Harp + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_Harp + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_Ribbon + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_Ribbon + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_Humma + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_Humma + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_C_Humma + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_C_Humma + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_Revolver + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_Revolver + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_Shotgun + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_Shotgun + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_Rifle + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_Rifle + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_Gatling + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_Gatling + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_Launcher + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_Launcher + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_Moon_B + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_Moon_B + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_Star_B + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_Star_B + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_S_Stick + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_S_Stick + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_D_Wand + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_D_Wand + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_F_Wand + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_F_Wand + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Adulter_F_F_model + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Adulter_F_F_model + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Gray_W_Suits + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Gray_W_Suits + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Gray_W_Robe + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Gray_W_Robe + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Gray_W_Muffler + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Gray_W_Muffler + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Gray_W_Manteau + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Gray_W_Manteau + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Gray_W_Boots + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Gray_W_Boots + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Gray_W_Shoes + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Gray_W_Shoes + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Gray_W_Pendant + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Gray_W_Pendant + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Gray_W_Ring + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Gray_W_Ring + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Gray_W_Earing + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Gray_W_Earing + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - BaseItem: Gray_W_Necklace + Materials: + - Material: Imperfect_Rune + Amount: 10 + ResultItem: R_Gray_W_Necklace + ChangeRefine: -20 + RandomOptionGroup: Group_0 + ClearSlots: true + RemoveEnchantgrade: true + - Item: Season_H_Upgrade + BaseItems: + - BaseItem: Season_Hood_Spring + Materials: + - Material: Circul_Of_Life + Amount: 30 + - Material: Fruit_Of_Birth + Amount: 15 + - Material: Fruit_Of_Extinction + Amount: 15 + - Material: Pow_Meteorite_Fragment + Amount: 50 + - Material: Sta_Meteorite_Fragment + Amount: 50 + - Material: Wis_Meteorite_Fragment + Amount: 50 + ResultItem: Circul_Of_Life_Spring + - BaseItem: Season_Hood_Summer + Materials: + - Material: Circul_Of_Life + Amount: 30 + - Material: Fruit_Of_Birth + Amount: 15 + - Material: Fruit_Of_Extinction + Amount: 15 + - Material: Con_Meteorite_Fragment + Amount: 50 + - Material: Spl_Meteorite_Fragment + Amount: 50 + - Material: Sta_Meteorite_Fragment + Amount: 50 + ResultItem: Circul_Of_Life_Summer + - BaseItem: Season_Hood_Autumn + Materials: + - Material: Circul_Of_Life + Amount: 30 + - Material: Fruit_Of_Birth + Amount: 15 + - Material: Fruit_Of_Extinction + Amount: 15 + - Material: Spl_Meteorite_Fragment + Amount: 50 + - Material: Crt_Meteorite_Fragment + Amount: 50 + - Material: Wis_Meteorite_Fragment + Amount: 50 + ResultItem: Circul_Of_Life_Autumn + - BaseItem: Season_Hood_Winter + Materials: + - Material: Circul_Of_Life + Amount: 30 + - Material: Fruit_Of_Birth + Amount: 15 + - Material: Fruit_Of_Extinction + Amount: 15 + - Material: Crt_Meteorite_Fragment + Amount: 50 + - Material: Con_Meteorite_Fragment + Amount: 50 + - Material: Pow_Meteorite_Fragment + Amount: 50 + ResultItem: Circul_Of_Life_Winter + - Item: Dimen_W_Refine + BaseItems: + - BaseItem: Dimen_DK_T_Sword + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_DK_T_Sword + ChangeRefine: 1 + - BaseItem: Dimen_DK_Lance + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_DK_Lance + ChangeRefine: 1 + - BaseItem: Dimen_IG_Sword + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_IG_Sword + ChangeRefine: 1 + - BaseItem: Dimen_IG_Spear + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_IG_Spear + ChangeRefine: 1 + - BaseItem: Dimen_MT_Axe + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_MT_Axe + ChangeRefine: 1 + - BaseItem: Dimen_MT_Mace + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_MT_Mace + ChangeRefine: 1 + - BaseItem: Dimen_BO_Sword + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_BO_Sword + ChangeRefine: 1 + - BaseItem: Dimen_BO_Hall + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_BO_Hall + ChangeRefine: 1 + - BaseItem: Dimen_SHC_Katar + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_SHC_Katar + ChangeRefine: 1 + - BaseItem: Dimen_SHC_Cakram + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_SHC_Cakram + ChangeRefine: 1 + - BaseItem: Dimen_ABC_Knife + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_ABC_Knife + ChangeRefine: 1 + - BaseItem: Dimen_ABC_Bow + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_ABC_Bow + ChangeRefine: 1 + - BaseItem: Dimen_AG_Staff + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_AG_Staff + ChangeRefine: 1 + - BaseItem: Dimen_AG_Rod + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_AG_Rod + ChangeRefine: 1 + - BaseItem: Dimen_EM_M_Book + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_EM_M_Book + ChangeRefine: 1 + - BaseItem: Dimen_EM_S_Book + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_EM_S_Book + ChangeRefine: 1 + - BaseItem: Dimen_CD_Rod + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_CD_Rod + ChangeRefine: 1 + - BaseItem: Dimen_CD_Bible + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_CD_Bible + ChangeRefine: 1 + - BaseItem: Dimen_IQ_Knuckle + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_IQ_Knuckle + ChangeRefine: 1 + - BaseItem: Dimen_IQ_Claw + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_IQ_Claw + ChangeRefine: 1 + - BaseItem: Dimen_WH_C_Bow + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_WH_C_Bow + ChangeRefine: 1 + - BaseItem: Dimen_WH_Bow + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_WH_Bow + ChangeRefine: 1 + - BaseItem: Dimen_TR_Harp + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_TR_Harp + ChangeRefine: 1 + - BaseItem: Dimen_TR_Vilolin + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_TR_Vilolin + ChangeRefine: 1 + - BaseItem: Dimen_TR_Ribbon + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_TR_Ribbon + ChangeRefine: 1 + - BaseItem: Dimen_SS_Humma + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_SS_Humma + ChangeRefine: 1 + - BaseItem: Dimen_SS_Wheel + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_SS_Wheel + ChangeRefine: 1 + - BaseItem: Dimen_NW_Rifle + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_NW_Rifle + ChangeRefine: 1 + - BaseItem: Dimen_NW_Launcher + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_NW_Launcher + ChangeRefine: 1 + - BaseItem: Dimen_SKE_M_Book + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_SKE_M_Book + ChangeRefine: 1 + - BaseItem: Dimen_SKE_S_Book + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_SKE_S_Book + ChangeRefine: 1 + - BaseItem: Dimen_SOA_Stick + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_SOA_Stick + ChangeRefine: 1 + - BaseItem: Dimen_SOA_Rod + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_SOA_Rod + ChangeRefine: 1 + - BaseItem: Dimen_HN_Sword + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_HN_Sword + ChangeRefine: 1 + - BaseItem: Dimen_HN_Rod + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_HN_Rod + ChangeRefine: 1 + - BaseItem: Dimen_SH_Foxtail + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_SH_Foxtail + ChangeRefine: 1 + - BaseItem: Dimen_SH_F_Model + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_SH_F_Model + ChangeRefine: 1 + - BaseItem: Dimen_TR_Rope + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: Abyss_Magic_Jewel + Amount: 10 + - Material: Time_Dimension_Jewel + Amount: 10 + - Material: Zelunium + Amount: 75 + - Material: Shadowdecon + Amount: 75 + - Material: Etel_Stone + Amount: 15 + ResultItem: Dimen_TR_Rope + ChangeRefine: 1 + - Item: Refine_Furious + BaseItems: + - BaseItem: StormBow_Furious + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: HD_Etherdeocon + Amount: 10 + - Material: Enriched_Etherdeocon + Amount: 20 + ResultItem: StormBow_Furious + ChangeRefine: 1 + - BaseItem: TornadoBow_Furious + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: HD_Etherdeocon + Amount: 10 + - Material: Enriched_Etherdeocon + Amount: 20 + ResultItem: TornadoBow_Furious + ChangeRefine: 1 + - BaseItem: SaintBook_Furious + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: HD_Etherdeocon + Amount: 10 + - Material: Enriched_Etherdeocon + Amount: 20 + ResultItem: SaintBook_Furious + ChangeRefine: 1 + - BaseItem: SaintWand_Furious + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: HD_Etherdeocon + Amount: 10 + - Material: Enriched_Etherdeocon + Amount: 20 + ResultItem: SaintWand_Furious + ChangeRefine: 1 + - BaseItem: SunBook_Furious + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: HD_Etherdeocon + Amount: 10 + - Material: Enriched_Etherdeocon + Amount: 20 + ResultItem: SunBook_Furious + ChangeRefine: 1 + - BaseItem: MoonBook_Furious + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: HD_Etherdeocon + Amount: 10 + - Material: Enriched_Etherdeocon + Amount: 20 + ResultItem: MoonBook_Furious + ChangeRefine: 1 + - BaseItem: FuriousCirclet_WH + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: HD_Ethernium + Amount: 10 + - Material: Enriched_Ethernium + Amount: 20 + ResultItem: FuriousCirclet_WH + ChangeRefine: 1 + - BaseItem: FuriousCirclet_CD + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: HD_Ethernium + Amount: 10 + - Material: Enriched_Ethernium + Amount: 20 + ResultItem: FuriousCirclet_CD + ChangeRefine: 1 + - BaseItem: FuriousCirclet_SKE + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: HD_Ethernium + Amount: 10 + - Material: Enriched_Ethernium + Amount: 20 + ResultItem: FuriousCirclet_SKE + ChangeRefine: 1 + - BaseItem: FuriousBoots + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: HD_Ethernium + Amount: 10 + - Material: Enriched_Ethernium + Amount: 20 + ResultItem: FuriousBoots + ChangeRefine: 1 + - BaseItem: Slayer_Furious + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: HD_Etherdeocon + Amount: 10 + - Material: Enriched_Etherdeocon + Amount: 20 + ResultItem: Slayer_Furious + ChangeRefine: 1 + - BaseItem: Trident_Furious + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: HD_Etherdeocon + Amount: 10 + - Material: Enriched_Etherdeocon + Amount: 20 + ResultItem: Trident_Furious + ChangeRefine: 1 + - BaseItem: Demonius_Furious + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: HD_Etherdeocon + Amount: 10 + - Material: Enriched_Etherdeocon + Amount: 20 + ResultItem: Demonius_Furious + ChangeRefine: 1 + - BaseItem: Demonsword_Furious + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: HD_Etherdeocon + Amount: 10 + - Material: Enriched_Etherdeocon + Amount: 20 + ResultItem: Demonsword_Furious + ChangeRefine: 1 + - BaseItem: Foxtail_Furious + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: HD_Etherdeocon + Amount: 10 + - Material: Enriched_Etherdeocon + Amount: 20 + ResultItem: Foxtail_Furious + ChangeRefine: 1 + - BaseItem: Setaria_Furious + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: HD_Etherdeocon + Amount: 10 + - Material: Enriched_Etherdeocon + Amount: 20 + ResultItem: Setaria_Furious + ChangeRefine: 1 + - BaseItem: FuriousCirclet_DK + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: HD_Ethernium + Amount: 10 + - Material: Enriched_Ethernium + Amount: 20 + ResultItem: FuriousCirclet_DK + ChangeRefine: 1 + - BaseItem: FuriousCirclet_ABC + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: HD_Ethernium + Amount: 10 + - Material: Enriched_Ethernium + Amount: 20 + ResultItem: FuriousCirclet_ABC + ChangeRefine: 1 + - BaseItem: FuriousCirclet_SH + MinimumRefine: 9 + MaximumRefine: 11 + Materials: + - Material: HD_Ethernium + Amount: 10 + - Material: Enriched_Ethernium + Amount: 20 + ResultItem: FuriousCirclet_SH + ChangeRefine: 1 From 0536323882acd0b8028980412732fe697d04e096 Mon Sep 17 00:00:00 2001 From: Atemo Date: Wed, 13 Mar 2024 00:23:16 +0100 Subject: [PATCH 33/44] Updated the Name of some items in item DB (#8166) * Updated the "Name" of some items in item DB according to https://www.divine-pride.net/ * Truncated "Shinkiro & Shiranui Soul (Huuma Shuriken - Construct)" item name to 49 character --- db/re/item_db_equip.yml | 698 ++++++++--------- db/re/item_db_etc.yml | 1595 +++++++++++++++++++------------------- db/re/item_db_usable.yml | 10 +- 3 files changed, 1152 insertions(+), 1151 deletions(-) diff --git a/db/re/item_db_equip.yml b/db/re/item_db_equip.yml index 8be2f24a59..bd272aa036 100644 --- a/db/re/item_db_equip.yml +++ b/db/re/item_db_equip.yml @@ -57884,7 +57884,7 @@ Body: Type: PetEgg - Id: 9156 AegisName: Sonic_Chao_Egg - Name: Chao's Egg # !todo check english name + Name: Chao Egg Type: PetEgg Trade: NoDrop: true @@ -109241,7 +109241,7 @@ Body: View: 183 - Id: 20626 AegisName: C_ROS2023_Cape_2 - Name: 2023 ROS Figurine Cloak # !todo check english name + Name: 2023 ROS Winning Prize Manteau Type: Armor Locations: Costume_Garment: true @@ -115634,7 +115634,7 @@ Body: ArmorLevel: 1 - Id: 21400 AegisName: aegis_21400 - Name: Costume Blue Dragon Statue # !todo check english name + Name: Costume Blue Dragon Statue Type: Armor Locations: Costume_Head_Top: true @@ -133200,7 +133200,7 @@ Body: bonus2 bExpAddRace,RC_All,(.@r/2); - Id: 24778 AegisName: aegis_24778 - Name: Level 1 Armor Shadow # !todo check english name + Name: 1Lv Shadow Armor Type: ShadowGear Locations: Shadow_Armor: true @@ -133209,7 +133209,7 @@ Body: bonus bMaxHP,getrefine()*10; - Id: 24779 AegisName: aegis_24779 - Name: Level 1 Weapon Shadow # !todo check english name + Name: 1Lv Shadow Weapon Type: ShadowGear Locations: Shadow_Weapon: true @@ -133220,7 +133220,7 @@ Body: bonus bMatk,.@r; - Id: 24780 AegisName: aegis_24780 - Name: Level 1 Shield Shadow # !todo check english name + Name: 1Lv Shadow Shield Type: ShadowGear Locations: Shadow_Shield: true @@ -133229,7 +133229,7 @@ Body: bonus bMaxHP,getrefine()*10; - Id: 24781 AegisName: aegis_24781 - Name: Level 1 Shoes Shadow # !todo check english name + Name: 1Lv Shadow Shoes Type: ShadowGear Locations: Shadow_Shoes: true @@ -133238,7 +133238,7 @@ Body: bonus bMaxHP,getrefine()*10; - Id: 24782 AegisName: aegis_24782 - Name: Level 1 Earring Shadow # !todo check english name + Name: 1Lv Shadow Earring Type: ShadowGear Locations: Shadow_Right_Accessory: true @@ -133247,7 +133247,7 @@ Body: bonus bMaxHP,getrefine()*10; - Id: 24783 AegisName: aegis_24783 - Name: Level 1 Pendant Shadow # !todo check english name + Name: 1Lv Shadow Pendant Type: ShadowGear Locations: Shadow_Left_Accessory: true @@ -148805,7 +148805,7 @@ Body: View: 1486 - Id: 31159 AegisName: C_Jormungandr_Hat - Name: Costume Jormungandr Hat # !todo check english name + Name: Costume Jormungandr Head Type: Armor Locations: Costume_Head_Top: true @@ -152286,7 +152286,7 @@ Body: View: 1350 - Id: 31537 AegisName: C_Return_TW_2th_Hat - Name: Costume Return TW 2th Hat # !todo check english name + Name: "Costume: 2nd Anniversary Hat" Type: Armor Locations: Costume_Head_Top: true @@ -160329,7 +160329,7 @@ Body: } - Id: 400100 AegisName: aegis_400100 - Name: Costume Leon Wig # !todo check english name + Name: Costume Leon Wig Type: Armor Locations: Costume_Head_Low: true @@ -161284,7 +161284,7 @@ Body: } - Id: 400143 AegisName: C_Asgard_Circlet_TW - Name: Costume Valkyrie Circlet # !todo check english name + Name: Costume Crimson Valkyrie Circlet Type: Armor Locations: Costume_Head_Top: true @@ -161679,7 +161679,7 @@ Body: autobonus "{ bonus2 bMagicAtkEle,Ele_Fire,20; }",1,60000,BF_MAGIC; - Id: 400157 AegisName: C_Astrologer_T_Hat - Name: Costume Astrologer T Hat # !todo check english name + Name: Costume Astrologer's Cap Type: Armor Locations: Costume_Head_Top: true @@ -161711,7 +161711,7 @@ Body: View: 2138 - Id: 400161 AegisName: C_Hat_0f_King - Name: Costume Hat 0f King # !todo check english name + Name: Costume Hat of King Type: Armor Locations: Costume_Head_Top: true @@ -161719,7 +161719,7 @@ Body: View: 374 - Id: 400162 AegisName: C_Red_Navy_Hat - Name: Costume Red Navy Hat # !todo check english name + Name: Costume Red Navy Hat Type: Armor Locations: Costume_Head_Top: true @@ -162324,7 +162324,7 @@ Body: bonus bLongAtkRate,7*(.@r/4); - Id: 400193 AegisName: C_Navy_Drooping_Kitty - Name: Costume indigo blue droopy cat # !todo check english name + Name: Costume Navy Drooping Kitty Type: Armor Locations: Costume_Head_Top: true @@ -164185,7 +164185,7 @@ Body: View: 2283 - Id: 400311 AegisName: C_Reliance_Crown - Name: Costume Will coffin # !todo check english name + Name: Costume Helmet of Light and Darkness Type: Armor Locations: Costume_Head_Top: true @@ -164397,7 +164397,7 @@ Body: View: 42 - Id: 400343 AegisName: C_Fox_Bamboo_Hat - Name: Costume Fox Ear Hat # !todo check english name + Name: Costume Fox Bamboo Hat Type: Armor Locations: Costume_Head_Top: true @@ -164444,7 +164444,7 @@ Body: bonus bMaxSP,BaseLevel*2; - Id: 400347 AegisName: aegis_400347 - Name: Costume Necromancer's Hood (Upper) # !todo check english name + Name: Costume Necromancer Hood (Upper) Type: Armor Locations: Costume_Head_Top: true @@ -164484,7 +164484,7 @@ Body: View: 2302 - Id: 400354 AegisName: C_Vanargandr_Helm_GL - Name: Costume Gold Helmet of Vanargand # !todo check english name + Name: Costume Gold Helm of Vanagandr Type: Armor Locations: Costume_Head_Top: true @@ -164492,7 +164492,7 @@ Body: View: 2312 - Id: 400355 AegisName: C_Balloon_Hat_Classical - Name: Costume Classical Balloon Hat # !todo check english name + Name: Costume Classical Balloon Hat Type: Armor Locations: Costume_Head_Top: true @@ -164500,7 +164500,7 @@ Body: View: 2313 - Id: 400356 AegisName: C_Ignis_Cap_BU - Name: Costume Denim Ignis Cap # !todo check english name + Name: Costume Denim Ignis Cap Type: Armor Locations: Costume_Head_Top: true @@ -164524,7 +164524,7 @@ Body: View: 453 - Id: 400359 AegisName: aegis_400359 - Name: Level 1 Hat # !todo check english name + Name: 1Lv Hat Type: Armor Slots: 1 Locations: @@ -167818,7 +167818,7 @@ Body: bonus2 bSkillAtk,"WS_CARTTERMINATION",15; - Id: 400502 AegisName: C_Sonic_Ring - Name: Costume ring # !todo check english name + Name: Costume Ring Type: Armor Locations: Costume_Head_Top: true @@ -168070,7 +168070,7 @@ Body: View: 1800 - Id: 400529 AegisName: Time_DM_R_Crown_DK - Name: Time Dimensions Rune Crown (Dragon Knight) # !todo check english name + Name: Time Dimensions Rune Crown (Dragon Knight) Type: Armor Defense: 50 Slots: 1 @@ -168133,7 +168133,7 @@ Body: } - Id: 400530 AegisName: Time_DM_R_Crown_IG - Name: Time Dimensions Rune Crown (Imperial Guard) # !todo check english name + Name: Time Dimensions Rune Crown (Imperial Guard) Type: Armor Defense: 50 Slots: 1 @@ -168203,7 +168203,7 @@ Body: } - Id: 400531 AegisName: Time_DM_R_Crown_MT - Name: Time Dimensions Rune Crown (Meister) # !todo check english name + Name: Time Dimensions Rune Crown (Meister) Type: Armor Defense: 50 Slots: 1 @@ -168266,7 +168266,7 @@ Body: } - Id: 400532 AegisName: Time_DM_R_Crown_BO - Name: Time Dimensions Rune Crown (Violo) # !todo check english name + Name: Time Dimensions Rune Crown (Biolo) Type: Armor Defense: 50 Slots: 1 @@ -168329,7 +168329,7 @@ Body: } - Id: 400533 AegisName: Time_DM_R_Crown_SHC - Name: Time Dimensions Rune Crown (Shadow Cross) # !todo check english name + Name: Time Dimensions Rune Crown (Shadow Cross) Type: Armor Defense: 50 Slots: 1 @@ -168389,7 +168389,7 @@ Body: } - Id: 400534 AegisName: Time_DM_R_Crown_ABC - Name: Time Dimensions Rune Crown (Abyss Chaser) # !todo check english name + Name: Time Dimensions Rune Crown (Abyss Chaser) Type: Armor Defense: 50 Slots: 1 @@ -168452,7 +168452,7 @@ Body: } - Id: 400535 AegisName: Time_DM_R_Crown_AG - Name: Time Dimensions Rune Crown (Arch Mage) # !todo check english name + Name: Time Dimensions Rune Crown (Arch Mage) Type: Armor Defense: 50 Slots: 1 @@ -168516,7 +168516,7 @@ Body: } - Id: 400536 AegisName: Time_DM_R_Crown_EM - Name: Time Dimensions Rune Crown (Elemental Master) # !todo check english name + Name: Time Dimensions Rune Crown (Elemental Master) Type: Armor Defense: 50 Slots: 1 @@ -168579,7 +168579,7 @@ Body: } - Id: 400537 AegisName: Time_DM_R_Crown_CD - Name: Time Dimensions Rune Crown (Cardinal) # !todo check english name + Name: Time Dimensions Rune Crown (Cardinal) Type: Armor Defense: 50 Slots: 1 @@ -168650,7 +168650,7 @@ Body: } - Id: 400538 AegisName: Time_DM_R_Crown_IQ - Name: Time Dimensions Rune Crown (Inquisitor) # !todo check english name + Name: Time Dimensions Rune Crown (Inquisitor) Type: Armor Defense: 50 Slots: 1 @@ -168713,7 +168713,7 @@ Body: } - Id: 400539 AegisName: Time_DM_R_Crown_WH - Name: Time Dimensions Rune Crown (Windhawk) # !todo check english name + Name: Time Dimensions Rune Crown (Windhawk) Type: Armor Defense: 50 Slots: 1 @@ -168774,7 +168774,7 @@ Body: } - Id: 400540 AegisName: Time_DM_R_Crown_TR - Name: Time Dimensions Rune Crown (Troubadour & Trouver) # !todo check english name + Name: Time Dimensions Rune Crown (Troubadour & Trouvere) Type: Armor Defense: 50 Slots: 1 @@ -168845,7 +168845,7 @@ Body: } - Id: 400541 AegisName: Time_DM_R_Crown_SS - Name: Time Dimensions Rune Crown (Shinkiro & Shiranui) # !todo check english name + Name: Time Dimensions Rune Crown (Shinkiro & Shiranui) Type: Armor Defense: 50 Slots: 1 @@ -168916,7 +168916,7 @@ Body: } - Id: 400542 AegisName: Time_DM_R_Crown_NW - Name: Time Dimensions Rune Crown (Night’s Watch) # !todo check english name + Name: Time Dimensions Rune Crown (Night Watch) Type: Armor Defense: 50 Slots: 1 @@ -168977,7 +168977,7 @@ Body: } - Id: 400543 AegisName: Time_DM_R_Crown_SKE - Name: Time Dimensions Rune Crown (Celestial) # !todo check english name + Name: Time Dimensions Rune Crown (Sky Emperor) Type: Armor Defense: 50 Slots: 1 @@ -169038,7 +169038,7 @@ Body: } - Id: 400544 AegisName: Time_DM_R_Crown_SOA - Name: Time Dimensions Rune Crown (Youngdosa) # !todo check english name + Name: Time Dimensions Rune Crown (Soul Ascetic) Type: Armor Defense: 50 Slots: 1 @@ -169101,7 +169101,7 @@ Body: } - Id: 400545 AegisName: Time_DM_R_Crown_HN - Name: Time Dimensions Rune Crown (Hyper Novice) # !todo check english name + Name: Time Dimensions Rune Crown (Hyper Novice) Type: Armor Defense: 50 Slots: 1 @@ -169172,7 +169172,7 @@ Body: } - Id: 400546 AegisName: Time_DM_R_Crown_SH - Name: Time Dimensions Rune Crown (Spirits) # !todo check english name + Name: Time Dimensions Rune Crown (Spirit Handler) Type: Armor Defense: 50 Slots: 1 @@ -169264,7 +169264,7 @@ Body: bonus2 bSkillAtk,"IQ_EXPOSION_BLASTER",BaseLevel/10; - Id: 400557 AegisName: aegis_400557 - Name: Costume Al Picky Doll # !todo check english name + Name: Costume Egg Picky Doll Type: Armor Locations: Costume_Head_Top: true @@ -169272,7 +169272,7 @@ Body: View: 1001 - Id: 400558 AegisName: aegis_400558 - Name: Costume Snowman Experience # !todo check english name + Name: Costume Snowman Experience Type: Armor Locations: Costume_Head_Top: true @@ -169454,7 +169454,7 @@ Body: } - Id: 400585 AegisName: aegis_400585 - Name: Costume Snowman Hat # !todo check english name + Name: Costume Snowman Hat Type: Armor Locations: Costume_Head_Top: true @@ -169462,7 +169462,7 @@ Body: View: 2488 - Id: 400605 AegisName: C_VIP_Poring_Cake_Cap - Name: Costume Birthday Cake Hat # !todo check english name + Name: Costume Birthday Cake Hat Type: Armor Locations: Costume_Head_Top: true @@ -169478,7 +169478,7 @@ Body: NoAuction: true - Id: 400608 AegisName: FuriousCirclet_WH - Name: Crown of Wrath (Windhawk) # !todo check english name + Name: Furious Crown (Windhawk) Type: Armor Weight: 300 Defense: 30 @@ -169528,7 +169528,7 @@ Body: } - Id: 400609 AegisName: FuriousCirclet_CD - Name: Crown of Wrath (Cardinal) # !todo check english name + Name: Furious Crown (Cardinal) Type: Armor Weight: 300 Defense: 30 @@ -169587,7 +169587,7 @@ Body: } - Id: 400610 AegisName: FuriousCirclet_SKE - Name: Crown of Wrath (Sky Emperor) # !todo check english name + Name: Furious Crown (Sky Emperor) Type: Armor Weight: 300 Defense: 30 @@ -170939,7 +170939,7 @@ Body: hateffect HAT_EF_C_Released_Ground,false; - Id: 410082 AegisName: C_BirthDay_Balloon_TW - Name: Costume Happy Birthday Balloon # !todo check english name + Name: Costume Happy Carnival Balloon Type: Armor Locations: Costume_Head_Mid: true @@ -171833,7 +171833,7 @@ Body: View: 2263 - Id: 410157 AegisName: C_Happening_Clover - Name: Costume Happening Clover # !todo check english name + Name: Costume Happening Clover Type: Armor Locations: Costume_Head_Mid: true @@ -171894,7 +171894,7 @@ Body: View: 1039 - Id: 410169 AegisName: aegis_410169 - Name: Costume Lovely Fox # !todo check english name + Name: Costume Fluffy Lovely Fox Type: Armor Locations: Costume_Head_Mid: true @@ -171985,7 +171985,7 @@ Body: bonus bDelayrate,-15; - Id: 410187 AegisName: C_Diving_Goggles - Name: Costume Diving Hunting Goggles # !todo check english name + Name: Costume Diving Goggles Type: Armor Locations: Costume_Head_Mid: true @@ -171993,7 +171993,7 @@ Body: View: 2116 - Id: 410188 AegisName: C_King_Mini - Name: Costume King Mini Me # !todo check english name + Name: "Costume: King Mini-Me" Type: Armor Locations: Costume_Head_Mid: true @@ -172001,7 +172001,7 @@ Body: View: 2290 - Id: 410189 AegisName: C_Angeling_Mini - Name: Costume Angelling Mini Me # !todo check english name + Name: "Costume: Angeling Mini-Me" Type: Armor Locations: Costume_Head_Mid: true @@ -172009,7 +172009,7 @@ Body: View: 2291 - Id: 410190 AegisName: C_Seyren_Mini - Name: Costume Siren Mini Me # !todo check english name + Name: "Costume: Seyren Mini-Me" Type: Armor Locations: Costume_Head_Mid: true @@ -172033,7 +172033,7 @@ Body: View: 2304 - Id: 410193 AegisName: C_Gulaling_Mini - Name: Costume Gullaring Mini Me # !todo check english name + Name: "Costume: Gularing Mini-Me" Type: Armor Locations: Costume_Head_Mid: true @@ -172130,7 +172130,7 @@ Body: View: 2171 - Id: 410208 AegisName: aegis_410208 - Name: Level 1 Glasses # !todo check english name + Name: 1Lv Glasses Type: Armor Slots: 1 Locations: @@ -172590,7 +172590,7 @@ Body: View: 2421 - Id: 410262 AegisName: C_Sonic_Mini - Name: Costume Sonic Mini Me # !todo check english name + Name: Costume Sonic Mini-Me Type: Armor Locations: Costume_Head_Mid: true @@ -172605,7 +172605,7 @@ Body: NoAuction: true - Id: 410263 AegisName: C_Super_Sonic_Mini - Name: Costume Super Sonic Mini Me # !todo check english name + Name: Costume Super Sonic Mini-Me Type: Armor Locations: Costume_Head_Mid: true @@ -172620,7 +172620,7 @@ Body: NoAuction: true - Id: 410264 AegisName: C_Tails_Mini - Name: Costume Tales Mini Me # !todo check english name + Name: Costume Tails Mini-Me Type: Armor Locations: Costume_Head_Mid: true @@ -172635,7 +172635,7 @@ Body: NoAuction: true - Id: 410265 AegisName: C_S_Attack_Ring - Name: Costume Power Ring Drop # !todo check english name + Name: Costume Power Ring Drop Type: Armor Locations: Costume_Head_Low: true @@ -172889,7 +172889,7 @@ Body: View: 1463 - Id: 410295 AegisName: aegis_410295 - Name: Costume Bells on a Winter Night # !todo check english name + Name: Costume Winter Night Bells Type: Armor Locations: Costume_Head_Mid: true @@ -173609,7 +173609,7 @@ Body: View: 2164 - Id: 420083 AegisName: C_L_Ribbon_M_WH - Name: Costume Large Ribbon Muffler (White) # !todo check english name + Name: Costume Large Ribbon Muffler (White) Type: Armor Locations: Costume_Head_Low: true @@ -174253,7 +174253,7 @@ Body: hateffect HAT_EF_FLUTTER_BUTTERFLY,false; - Id: 420150 AegisName: C_Twinkle_Twin_B - Name: Costume Twinkle Twin (Blue) # !todo check english name + Name: Costume Twinkle Twin (Blue) Type: Armor Locations: Costume_Head_Low: true @@ -174285,7 +174285,7 @@ Body: View: 2273 - Id: 420153 AegisName: Booster_Scarf_A - Name: Booster Scarf Type A # !todo check english name + Name: Booster Scarf A-type Type: Armor Locations: Head_Low: true @@ -174306,7 +174306,7 @@ Body: bonus bShortAtkRate,5; - Id: 420154 AegisName: Booster_Scarf_B - Name: Booster Scarf Type B # !todo check english name + Name: Booster Scarf B-type Type: Armor Locations: Head_Low: true @@ -174326,7 +174326,7 @@ Body: bonus2 bMagicAtkEle,Ele_All,5; - Id: 420155 AegisName: Booster_Scarf_C - Name: Booster Scarf Type C # !todo check english name + Name: Booster Scarf C-type Type: Armor Locations: Head_Low: true @@ -174346,7 +174346,7 @@ Body: bonus bCritAtkRate,5; - Id: 420156 AegisName: C_Flower_L_Knitting - Name: Costume Star Cluster Flower Loose Braid # !todo check english name + Name: Costume Flower Knitting Type: Armor Locations: Costume_Head_Low: true @@ -174388,7 +174388,7 @@ Body: bonus2 bMagicAddSize,Size_All,BaseLevel/10; - Id: 420161 AegisName: C_Starry_Long_Wave - Name: Costume Starry Sky Long Wave # !todo check english name + Name: Costume Starry Long Wave Type: Armor Locations: Costume_Head_Low: true @@ -174396,7 +174396,7 @@ Body: View: 2271 - Id: 420162 AegisName: aegis_420162 - Name: Costume Starry Sky Ribbon Twintails # !todo check english name + Name: Costume Starry Ribbon Twin Tail Type: Armor Locations: Costume_Head_Low: true @@ -174461,7 +174461,7 @@ Body: View: 2295 - Id: 420171 AegisName: aegis_420171 - Name: Costume Scarf of Thorns # !todo check english name + Name: Costume Thorn Scarf Type: Armor Locations: Costume_Head_Low: true @@ -174499,7 +174499,7 @@ Body: View: 2311 - Id: 420178 AegisName: aegis_420178 - Name: 1Lv Mask # !todo check english name + Name: 1Lv Mask Type: Armor Locations: Head_Low: true @@ -174755,7 +174755,7 @@ Body: View: 2365 - Id: 420208 AegisName: aegis_420208 - Name: Costume Chocolat Rabbit Hair # !todo check english name + Name: Costume Chocolate Rabbit Hair Type: Armor Locations: Costume_Head_Low: true @@ -174894,7 +174894,7 @@ Body: View: 2396 - Id: 420231 AegisName: MD_Hol_Protection - Name: Constellation’s Protection # !todo check english name + Name: Constellation's Protection Type: Armor Locations: Head_Low: true @@ -175198,7 +175198,7 @@ Body: View: 2448 - Id: 420303 AegisName: C_Chaos_Emerald - Name: Costume Chaos Emerald # !todo check english name + Name: Costume Chaos Emerald Type: Armor Locations: Costume_Head_Low: true @@ -175213,7 +175213,7 @@ Body: NoAuction: true - Id: 420304 AegisName: aegis_420304 - Name: Costume Routier’s Night Sky # !todo check english name + Name: Costume Night Sky of Lutie Type: Armor Locations: Costume_Head_Low: true @@ -175690,7 +175690,7 @@ Body: View: 2147 - Id: 440012 AegisName: C_Dr_Eggman_Mask - Name: Costume Dr. Eggman Mask # !todo check english name + Name: Costume Dr. Eggman Mask Type: Armor Locations: Costume_Head_Top: true @@ -181497,7 +181497,7 @@ Body: } - Id: 450218 AegisName: E_Auto_Armor_A - Name: Automatic Armor Type A (bind) # !todo check english name + Name: Automatic Armor A-type (Bound) Type: Armor Defense: 135 Slots: 1 @@ -181521,7 +181521,7 @@ Body: } - Id: 450219 AegisName: E_Auto_Armor_B - Name: Automatic Armor Type B (bind) # !todo check english name + Name: Automatic Armor B-type (Bound) Type: Armor MagicAttack: 125 Defense: 135 @@ -181682,7 +181682,7 @@ Body: } - Id: 450229 AegisName: Hs_Mail - Name: Heroria Mail # !todo check english name + Name: Herosria Mail Type: Armor Weight: 2000 Defense: 200 @@ -181700,7 +181700,7 @@ Body: bonus bShortAtkRate,5; - Id: 450230 AegisName: aegis_450230 - Name: Heroria Tides # !todo check english name + Name: Herosria Tights Type: Armor Weight: 1400 Defense: 100 @@ -181719,7 +181719,7 @@ Body: bonus bLongAtkRate,5; - Id: 450231 AegisName: Hs_Suits - Name: Heroria Suits # !todo check english name + Name: Herosria Suit Type: Armor Weight: 1900 Defense: 120 @@ -181738,7 +181738,7 @@ Body: bonus bShortAtkRate,5; - Id: 450232 AegisName: aegis_450232 - Name: Heroria Magic Robe # !todo check english name + Name: Herosria Magic Robe Type: Armor Weight: 1000 Defense: 50 @@ -181757,7 +181757,7 @@ Body: bonus2 bMagicAtkEle,Ele_All,5; - Id: 450233 AegisName: Hs_Plate - Name: Heroria Full Plate # !todo check english name + Name: Herosria Full Plate Type: Armor Weight: 3600 Defense: 450 @@ -182025,7 +182025,7 @@ Body: } - Id: 450249 AegisName: aegis_450249 - Name: Level 1 Shirt # !todo check english name + Name: 1Lv Shirts Type: Armor Slots: 1 Locations: @@ -184001,7 +184001,7 @@ Body: } - Id: 460034 AegisName: aegis_460034 - Name: Heroria Brutal Shield # !todo check english name + Name: Herosria Brutal Shield Type: Armor Weight: 3000 Defense: 140 @@ -184017,7 +184017,7 @@ Body: bonus2 bSubRace,RC_Player_Doram,10; - Id: 460035 AegisName: aegis_460035 - Name: Heroria Cranial Shield # !todo check english name + Name: Herosria Cranial Shield Type: Armor Weight: 3000 Defense: 140 @@ -184033,7 +184033,7 @@ Body: bonus2 bSubRace,RC_Player_Doram,-10; - Id: 460036 AegisName: aegis_460036 - Name: Heroria Brutal Guard # !todo check english name + Name: Herosria Brutal Guard Type: Armor Weight: 1500 Defense: 30 @@ -184051,7 +184051,7 @@ Body: bonus2 bSubRace,RC_Player_Doram,6; - Id: 460037 AegisName: aegis_460037 - Name: Heroria Cranial Guard # !todo check english name + Name: Herosria Cranial Guard Type: Armor Weight: 1500 Defense: 30 @@ -184134,7 +184134,7 @@ Body: } - Id: 460048 AegisName: aegis_460048 - Name: Level 1 Shield # !todo check english name + Name: 1Lv Shield Type: Armor Slots: 1 Locations: @@ -187315,7 +187315,7 @@ Body: } - Id: 470153 AegisName: Hs_Speed_Boots - Name: Heroria Speed ​​Boots # !todo check english name + Name: Herosria Speed Boots Type: Armor Weight: 1000 Defense: 20 @@ -187330,7 +187330,7 @@ Body: bonus bCritical,-10; - Id: 470154 AegisName: Hs_Casting_Shoes - Name: Heroria Casting Shoes # !todo check english name + Name: Herosria Casting Shoes Type: Armor Weight: 1000 Defense: 20 @@ -187345,7 +187345,7 @@ Body: bonus bVariableCastrate,-8; - Id: 470155 AegisName: Hs_Critical_Shoes - Name: Heroria Critical Shoes # !todo check english name + Name: Herosria Critical Shoes Type: Armor Weight: 1000 Defense: 20 @@ -187360,7 +187360,7 @@ Body: bonus bCritical,8; - Id: 470156 AegisName: aegis_470156 - Name: Heroria Fix Sandals # !todo check english name + Name: Herosria Fix Sandals Type: Armor Weight: 1000 Defense: 20 @@ -187375,7 +187375,7 @@ Body: bonus bDelayrate,10; - Id: 470157 AegisName: aegis_470157 - Name: Heroria Cool Sandals # !todo check english name + Name: Herosria Cool Sandals Type: Armor Weight: 1000 Defense: 20 @@ -187897,7 +187897,7 @@ Body: bonus2 bSubRace,RC_All,3; - Id: 470178 AegisName: aegis_470178 - Name: Level 1 Sandals # !todo check english name + Name: 1Lv Sandals Type: Armor Slots: 1 Locations: @@ -189072,7 +189072,7 @@ Body: } - Id: 470221 AegisName: FateSin_Boots_MT - Name: Boots of Good and Evil (Meister) # !todo check english name + Name: Boots of Good and Evil (Meister) Type: Armor Weight: 600 Defense: 20 @@ -189120,7 +189120,7 @@ Body: } - Id: 470222 AegisName: FateSin_Boots_SHC - Name: Boots of Good and Evil (Shadow Cross) # !todo check english name + Name: Boots of Good and Evil (Shadow Cross) Type: Armor Weight: 600 Defense: 20 @@ -189167,7 +189167,7 @@ Body: } - Id: 470223 AegisName: FateSin_Boots_SS - Name: Boots of Good and Evil (Shinkiro & Shiranui) # !todo check english name + Name: Boots of Good and Evil (Shinkiro & Shiranui) Type: Armor Weight: 600 Defense: 20 @@ -189850,7 +189850,7 @@ Body: } - Id: 470265 AegisName: FuriousBoots - Name: Boots of Wrath # !todo check english name + Name: Furious Boots Type: Armor Weight: 1500 Defense: 30 @@ -191557,7 +191557,7 @@ Body: View: 114 - Id: 480119 AegisName: C_Niflheim_Key - Name: Costume Niflheim Key # !todo check english name + Name: Costume Niflheim Key Type: Armor Locations: Costume_Garment: true @@ -192569,7 +192569,7 @@ Body: } - Id: 480185 AegisName: E_Auto_Engine_A - Name: Automatic Engine Wing Type A (Bundled) # !todo check english name + Name: Automatic Engine wing A-type (Bound) Type: Armor Defense: 70 Slots: 1 @@ -192593,7 +192593,7 @@ Body: } - Id: 480186 AegisName: E_Auto_Engine_B - Name: Automatic Engine Wing Type B (Bundled) # !todo check english name + Name: Automatic Engine wing B-type (Bound) Type: Armor Defense: 70 Slots: 1 @@ -192864,7 +192864,7 @@ Body: } - Id: 480198 AegisName: C_20th_Anniversary_Wing - Name: Costume 20th Anniversary Laurel Wings # !todo check english name + Name: Costume 20th Anniversary Wings Type: Armor Locations: Costume_Garment: true @@ -192880,7 +192880,7 @@ Body: View: 139 - Id: 480200 AegisName: C_Guardian_Wing - Name: Costume Guardian wing decoration # !todo check english name + Name: Costume Guardian Angel Wing Ears Type: Armor Locations: Costume_Head_Mid: true @@ -192888,7 +192888,7 @@ Body: View: 2282 - Id: 480201 AegisName: C_Guardian_Angelwing - Name: Costume Guardian Angel Wings # !todo check english name + Name: Costume Guardian Angel Wings Type: Armor Locations: Costume_Garment: true @@ -192896,7 +192896,7 @@ Body: View: 138 - Id: 480202 AegisName: C_Guardian_Butterwing - Name: Costume Guardian Butterfly Wings # !todo check english name + Name: Costume 20th Anniversary Fairy Wing Type: Armor Locations: Costume_Garment: true @@ -192923,7 +192923,7 @@ Body: View: 135 - Id: 480205 AegisName: C_Astra_Blessing - Name: Costume Astra's Protection # !todo check english name + Name: Costume Astra Blessing Type: Armor Locations: Costume_Garment: true @@ -192961,7 +192961,7 @@ Body: bonus bVariableCastrate,-10; - Id: 480207 AegisName: aegis_480207 - Name: Costume Traveler's Universal Bag # !todo check english name + Name: Costume Traveler Bag Type: Armor Locations: Costume_Garment: true @@ -192969,7 +192969,7 @@ Body: View: 137 - Id: 480215 AegisName: Hs_Manteau - Name: Heroria Cloak # !todo check english name + Name: Herosria Manteau Type: Armor Weight: 1600 Defense: 50 @@ -192987,7 +192987,7 @@ Body: bonus bShortAtkRate,3; - Id: 480216 AegisName: Hs_Muffler - Name: Heroria Scarf # !todo check english name + Name: Herosria Muffler Type: Armor Weight: 1000 Defense: 30 @@ -193006,7 +193006,7 @@ Body: bonus bLongAtkRate,3; - Id: 480217 AegisName: aegis_480217 - Name: Heroria Clock # !todo check english name + Name: Herosria Cloak Type: Armor Weight: 1200 Defense: 10 @@ -193025,7 +193025,7 @@ Body: bonus bShortAtkRate,3; - Id: 480218 AegisName: aegis_480218 - Name: Heroria Hood # !todo check english name + Name: Herosria Hood Type: Armor Weight: 600 Defense: 20 @@ -193044,7 +193044,7 @@ Body: bonus2 bMagicAtkEle,Ele_All,3; - Id: 480219 AegisName: aegis_480219 - Name: Heroria Foldrun # !todo check english name + Name: Herosria Pauldron Type: Armor Weight: 2000 Defense: 80 @@ -193608,7 +193608,7 @@ Body: bonus2 bExpAddRace,RC_All,10; - Id: 480249 AegisName: aegis_480249 - Name: Level 1 Hood # !todo check english name + Name: 1Lv Hood Type: Armor Slots: 1 Locations: @@ -195045,7 +195045,7 @@ Body: } - Id: 480345 AegisName: Season_Hood_Spring - Name: "Divine Beast's Cloak: Spring" # !todo check english name + Name: "Manteau of Mystical Beast: Spring" Type: Armor Weight: 700 Defense: 80 @@ -195094,7 +195094,7 @@ Body: } - Id: 480346 AegisName: Season_Hood_Summer - Name: "Divine Beast's Cloak: Summer" # !todo check english name + Name: "Manteau of Mystical Beast: Summer" Type: Armor Weight: 700 Defense: 80 @@ -195143,7 +195143,7 @@ Body: } - Id: 480347 AegisName: Season_Hood_Autumn - Name: "Divine Beast's Cloak: Autumn" # !todo check english name + Name: "Manteau of Mystical Beast: Autumn" Type: Armor Weight: 700 Defense: 80 @@ -195193,7 +195193,7 @@ Body: } - Id: 480348 AegisName: Season_Hood_Winter - Name: "Divine Beast's Cloak: Winter" # !todo check english name + Name: "Manteau of Mystical Beast: Winter" Type: Armor Weight: 700 Defense: 80 @@ -195245,7 +195245,7 @@ Body: } - Id: 480349 AegisName: Circul_Of_Life_Spring - Name: "Cycle of Life: Spring" # !todo check english name + Name: "Circulation of Life: Spring" Type: Armor Weight: 700 Defense: 80 @@ -195301,7 +195301,7 @@ Body: } - Id: 480350 AegisName: Circul_Of_Life_Summer - Name: "Cycle of Life: Summer" # !todo check english name + Name: "Circulation of Life: Summer" Type: Armor Weight: 700 Defense: 80 @@ -195357,7 +195357,7 @@ Body: } - Id: 480351 AegisName: Circul_Of_Life_Autumn - Name: "Cycle of Life: Autumn" # !todo check english name + Name: "Circulation of Life: Autumn" Type: Armor Weight: 700 Defense: 80 @@ -195414,7 +195414,7 @@ Body: } - Id: 480352 AegisName: Circul_Of_Life_Winter - Name: "Cycle of Life: Winter" # !todo check english name + Name: "Circulation of Life: Winter" Type: Armor Weight: 700 Defense: 80 @@ -195655,7 +195655,7 @@ Body: } - Id: 480405 AegisName: aegis_480405 - Name: Costume Santa Teddy Bear Doll Bag # !todo check english name + Name: Costume Santa Teddy Bear Doll Bag Type: Armor Locations: Costume_Garment: true @@ -195663,7 +195663,7 @@ Body: View: 202 - Id: 480408 AegisName: aegis_480408 - Name: Costume Dragon Wings # !todo check english name + Name: Costume Dragon Wing Type: Armor Locations: Costume_Garment: true @@ -198766,7 +198766,7 @@ Body: bonus bMatkRate,10; - Id: 490208 AegisName: Palace_Ring - Name: The Lord of the Rings # !todo check english name + Name: Palace Ring Type: Armor Weight: 100 Slots: 1 @@ -198802,7 +198802,7 @@ Body: bonus bDelayrate,-2*getskilllv("WM_REVERBERATION"); - Id: 490214 AegisName: E_Auto_B_R - Name: Automatic Booster R (bind) # !todo check english name + Name: Automatic Booster R (Bound) Type: Armor Slots: 1 Locations: @@ -198822,7 +198822,7 @@ Body: bonus bMaxHPrate,5; - Id: 490215 AegisName: E_Auto_B_L - Name: Automatic Booster L (bind) # !todo check english name + Name: Automatic Booster L (Bound) Type: Armor Slots: 1 Locations: @@ -198842,7 +198842,7 @@ Body: bonus bMaxSPrate,5; - Id: 490216 AegisName: E_Auto_BC_R - Name: Automatic Battle Chip R (bind) # !todo check english name + Name: Automatic Battle Chip R (Bound) Type: Armor Slots: 1 Locations: @@ -198862,7 +198862,7 @@ Body: bonus bMaxHPrate,5; - Id: 490217 AegisName: E_Auto_BC_L - Name: Automatic Battle Chip L (bind) # !todo check english name + Name: Automatic Battle chip L (Bound) Type: Armor Slots: 1 Locations: @@ -199313,7 +199313,7 @@ Body: bonus bCritAtkRate,.@b; - Id: 490251 AegisName: aegis_490251 - Name: Heroria Ring # !todo check english name + Name: Herosria Ring Type: Armor Weight: 250 Defense: 5 @@ -199326,7 +199326,7 @@ Body: bonus bCritical,-3; - Id: 490252 AegisName: aegis_490252 - Name: Heroria Earrings # !todo check english name + Name: Herosria Earring Type: Armor Weight: 250 Defense: 5 @@ -199339,7 +199339,7 @@ Body: bonus bVariableCastrate,-3; - Id: 490253 AegisName: aegis_490253 - Name: Heroria Necklace # !todo check english name + Name: Herosria Necklace Type: Armor Weight: 250 Defense: 5 @@ -199355,7 +199355,7 @@ Body: bonus bHealPower,3; - Id: 490254 AegisName: aegis_490254 - Name: Heroria Critical Ring # !todo check english name + Name: Herosria Critical Ring Type: Armor Weight: 250 Defense: 5 @@ -199368,7 +199368,7 @@ Body: bonus bCritical,3; - Id: 490255 AegisName: aegis_490255 - Name: Heroria Cool Time Earrings # !todo check english name + Name: Herosria Cool Time Earring Type: Armor Weight: 250 Defense: 5 @@ -199381,7 +199381,7 @@ Body: bonus bVariableCastrate,3; - Id: 490256 AegisName: aegis_490256 - Name: Heroria Defender Necklace # !todo check english name + Name: Herosria Defender Necklace Type: Armor Weight: 250 Defense: 5 @@ -199610,7 +199610,7 @@ Body: bonus bDef,2*readparam(bVit); - Id: 490273 AegisName: Under_Seal_D_Key - Name: Sealed Dimensional Key # !todo check english name + Name: Sealed Dimensional Key Type: Armor Weight: 200 Locations: @@ -199619,7 +199619,7 @@ Body: EquipLevelMin: 240 - Id: 490274 AegisName: Under_Seal_D_Padlock - Name: Sealed Dimensional Lock # !todo check english name + Name: Sealed Dimensional Lock Type: Armor Weight: 200 Locations: @@ -199628,7 +199628,7 @@ Body: EquipLevelMin: 240 - Id: 490275 AegisName: Under_Seal_D_keyring - Name: Sealed Dimensional Keychain # !todo check english name + Name: Sealed Dimensional Keyring Type: Armor Weight: 200 Locations: @@ -199637,7 +199637,7 @@ Body: EquipLevelMin: 240 - Id: 490276 AegisName: Dimmension_W_Key - Name: Dimensional Wanderer's Key # !todo check english name + Name: Dimensional Wanderer's Key Type: Armor Weight: 200 Slots: 1 @@ -199679,7 +199679,7 @@ Body: } - Id: 490277 AegisName: Dimmension_W_Padlock - Name: Dimensional Wanderer's Lock # !todo check english name + Name: Dimensional Wanderer's Lock Type: Armor Weight: 200 Slots: 1 @@ -199721,7 +199721,7 @@ Body: } - Id: 490278 AegisName: Dimmension_W_Keyring - Name: Dimensional Wanderer's Keychain # !todo check english name + Name: Dimensional Wanderer's Keyring Type: Armor Weight: 200 Slots: 1 @@ -199872,7 +199872,7 @@ Body: bonus bMaxSPrate,10; - Id: 490286 AegisName: aegis_490286 - Name: Level 1 Clip # !todo check english name + Name: 1Lv Clip Type: Armor Slots: 1 Locations: @@ -201920,7 +201920,7 @@ Body: bonus bMatkRate,6; - Id: 490483 AegisName: Signet_Of_Spring - Name: "Seal of Circulation: Spring" # !todo check english name + Name: "Signet of Circulation: Spring" Type: Armor Weight: 500 Defense: 10 @@ -201941,7 +201941,7 @@ Body: bonus bVariableCastrate,-10; - Id: 490484 AegisName: Signet_Of_Summer - Name: "Seal of Circulation: Summer" # !todo check english name + Name: "Signet of Circulation: Summer" Type: Armor Weight: 500 Defense: 10 @@ -201962,7 +201962,7 @@ Body: bonus bVariableCastrate,-10; - Id: 490485 AegisName: Signet_Of_Autumn - Name: "Seal of Circulation: Autumn" # !todo check english name + Name: "Signet of Circulation: Autumn" Type: Armor Weight: 500 Defense: 10 @@ -201983,7 +201983,7 @@ Body: bonus bVariableCastrate,-10; - Id: 490486 AegisName: Signet_Of_Winter - Name: "Seal of Circulation: Winter" # !todo check english name + Name: "Signet of Circulation: Winter" Type: Armor Weight: 500 Defense: 10 @@ -203647,7 +203647,7 @@ Body: } - Id: 500057 AegisName: aegis_500057 - Name: Heroria Crusader Sword # !todo check english name + Name: Herosria Crusader Sword Type: Weapon SubType: 1hSword Weight: 1500 @@ -203668,7 +203668,7 @@ Body: bonus bDef,-150; - Id: 500058 AegisName: aegis_500058 - Name: Heroria Guardian Sword # !todo check english name + Name: Herosria Guardian Sword Type: Weapon SubType: 1hSword Weight: 1500 @@ -203694,7 +203694,7 @@ Body: bonus bDef,300; - Id: 500059 AegisName: Hs_Am_Sword - Name: Heroria Alchemic Sword # !todo check english name + Name: Herosria Alchemic Sword Type: Weapon SubType: 1hSword Weight: 1500 @@ -203714,7 +203714,7 @@ Body: bonus bDef,-150; - Id: 500060 AegisName: aegis_500060 - Name: Heroria Basic Sword # !todo check english name + Name: Herosria Basic Sword Type: Weapon SubType: 1hSword Weight: 1500 @@ -203880,7 +203880,7 @@ Body: } - Id: 500065 AegisName: Blood_Rapier - Name: Blood Rapier # !todo check english name + Name: Blood Rapier Type: Weapon SubType: 1hSword Weight: 1500 @@ -203933,7 +203933,7 @@ Body: } - Id: 500066 AegisName: Victory_Sword - Name: Victory Sword # !todo check english name + Name: Victory Sword Type: Weapon SubType: 1hSword Weight: 1500 @@ -203986,7 +203986,7 @@ Body: } - Id: 500067 AegisName: aegis_500067 - Name: Level 1 One-Handed Sword # !todo check english name + Name: 1Lv One-handed Swords Type: Weapon SubType: 1hSword Attack: 10 @@ -204014,7 +204014,7 @@ Body: Refineable: true - Id: 500068 AegisName: aegis_500068 - Name: Level 2 One-Handed Sword # !todo check english name + Name: 2Lv One-handed Swords Type: Weapon SubType: 1hSword Attack: 10 @@ -204042,7 +204042,7 @@ Body: Refineable: true - Id: 500069 AegisName: aegis_500069 - Name: Level 3 One-Handed Sword # !todo check english name + Name: 3Lv One-handed Swords Type: Weapon SubType: 1hSword Attack: 10 @@ -204070,7 +204070,7 @@ Body: Refineable: true - Id: 500070 AegisName: aegis_500070 - Name: Level 4 One-Handed Sword # !todo check english name + Name: 4Lv One-handed Swords Type: Weapon SubType: 1hSword Attack: 10 @@ -204289,7 +204289,7 @@ Body: bonus bAtkRate,5; - Id: 500092 AegisName: Dimen_IG_Sword - Name: Dimensions Imperial Sword # !todo check english name + Name: Dimensions Imperial Sword Type: Weapon SubType: 1hSword Weight: 2300 @@ -204343,7 +204343,7 @@ Body: } - Id: 500093 AegisName: Dimen_BO_Sword - Name: Dimensions Biological Sword # !todo check english name + Name: Dimensions Biological Sword Type: Weapon SubType: 1hSword Weight: 1800 @@ -204393,7 +204393,7 @@ Body: } - Id: 500094 AegisName: Dimen_HN_Sword - Name: Dimensions Hyper Sword # !todo check english name + Name: Dimensions Hyper Sword Type: Weapon SubType: 1hSword Weight: 1800 @@ -206423,7 +206423,7 @@ Body: } - Id: 510079 AegisName: aegis_510079 - Name: Heroria Alchemic Dagger # !todo check english name + Name: Herosria Alchemic Dagger Type: Weapon SubType: Dagger Weight: 1500 @@ -206444,7 +206444,7 @@ Body: bonus bAtkRate,-3; - Id: 510080 AegisName: aegis_510080 - Name: Heroria Assassin Dagger I # !todo check english name + Name: Herosria Assassin Dagger I Type: Weapon SubType: Dagger Weight: 1500 @@ -206459,7 +206459,7 @@ Body: Refineable: true - Id: 510081 AegisName: aegis_510081 - Name: Heroria Assassin Dagger II # !todo check english name + Name: Herosria Assassin Dagger II Type: Weapon SubType: Dagger Weight: 1500 @@ -206474,7 +206474,7 @@ Body: Refineable: true - Id: 510082 AegisName: aegis_510082 - Name: Heroria Assassin Knife I # !todo check english name + Name: Herosria Assassin Knife I Type: Weapon SubType: Dagger Weight: 1500 @@ -206489,7 +206489,7 @@ Body: Refineable: true - Id: 510083 AegisName: aegis_510083 - Name: Heroria Assassin Knife Ⅱ # !todo check english name + Name: Herosria Assassin Knife II Type: Weapon SubType: Dagger Weight: 1500 @@ -206504,7 +206504,7 @@ Body: Refineable: true - Id: 510084 AegisName: aegis_510084 - Name: Heroria Log Knife # !todo check english name + Name: Herosria Rogue Knife Type: Weapon SubType: Dagger Weight: 1500 @@ -206524,7 +206524,7 @@ Body: bonus bBaseAtk,30; - Id: 510085 AegisName: aegis_510085 - Name: Heroria Log Dagger # !todo check english name + Name: Herosria Rogue Dagger Type: Weapon SubType: Dagger Weight: 1500 @@ -206545,7 +206545,7 @@ Body: bonus bVariableCastrate,-10; - Id: 510086 AegisName: aegis_510086 - Name: Heroria Hunter Knife # !todo check english name + Name: Herosria Hunter Knife Type: Weapon SubType: Dagger Weight: 1500 @@ -206566,7 +206566,7 @@ Body: bonus bHit,30; - Id: 510087 AegisName: aegis_510087 - Name: Heroria Ninja Dagger I # !todo check english name + Name: Herosria Ninja Dagger I Type: Weapon SubType: Dagger Weight: 1500 @@ -206582,7 +206582,7 @@ Body: Refineable: true - Id: 510088 AegisName: aegis_510088 - Name: Heroria Ninja Dagger II # !todo check english name + Name: Herosria Ninja Dagger II Type: Weapon SubType: Dagger Weight: 1500 @@ -206598,7 +206598,7 @@ Body: Refineable: true - Id: 510089 AegisName: aegis_510089 - Name: Heroria Ninjudo I # !todo check english name + Name: Herosria Ninja Knife I Type: Weapon SubType: Dagger Weight: 1500 @@ -206615,7 +206615,7 @@ Body: Refineable: true - Id: 510090 AegisName: aegis_510090 - Name: Heroria Ninjudo Ⅱ # !todo check english name + Name: Herosria Ninja Knife II Type: Weapon SubType: Dagger Weight: 1500 @@ -206742,7 +206742,7 @@ Body: } - Id: 510096 AegisName: aegis_510096 - Name: Level 1 Dagger # !todo check english name + Name: 1Lv Dagger Type: Weapon SubType: Dagger Attack: 10 @@ -206774,7 +206774,7 @@ Body: Refineable: true - Id: 510097 AegisName: aegis_510097 - Name: Level 2 Dagger # !todo check english name + Name: 2Lv Dagger Type: Weapon SubType: Dagger Attack: 10 @@ -206806,7 +206806,7 @@ Body: Refineable: true - Id: 510098 AegisName: aegis_510098 - Name: Level 3 Dagger # !todo check english name + Name: 3Lv Dagger Type: Weapon SubType: Dagger Attack: 10 @@ -206838,7 +206838,7 @@ Body: Refineable: true - Id: 510099 AegisName: aegis_510099 - Name: Level 4 Dagger # !todo check english name + Name: 4Lv Dagger Type: Weapon SubType: Dagger Attack: 10 @@ -207113,7 +207113,7 @@ Body: } - Id: 510139 AegisName: Dimen_ABC_Knife - Name: Dimensions Abyss Knife # !todo check english name + Name: Dimensions Abyss Knife Type: Weapon SubType: Dagger Weight: 1800 @@ -207708,7 +207708,7 @@ Body: bonus bUnbreakableWeapon; - Id: 520022 AegisName: Hs_Bs_Axe - Name: Heroria Axe # !todo check english name + Name: Herosria Axe Type: Weapon SubType: 1hAxe Weight: 1500 @@ -207729,7 +207729,7 @@ Body: bonus bDef,-150; - Id: 520024 AegisName: aegis_520024 - Name: Level 1 Axe # !todo check english name + Name: 1Lv One-handed Axe. Type: Weapon SubType: 1hAxe Attack: 10 @@ -207752,7 +207752,7 @@ Body: Refineable: true - Id: 520027 AegisName: aegis_520027 - Name: Level 2 Axe # !todo check english name + Name: 2Lv One-handed Axe. Type: Weapon SubType: 1hAxe Attack: 10 @@ -207775,7 +207775,7 @@ Body: Refineable: true - Id: 520028 AegisName: aegis_520028 - Name: Level 3 Axe # !todo check english name + Name: 3Lv One-handed Axe. Type: Weapon SubType: 1hAxe Attack: 10 @@ -207798,7 +207798,7 @@ Body: Refineable: true - Id: 520029 AegisName: aegis_520029 - Name: Level 4 Axe # !todo check english name + Name: 4Lv One-handed Axe. Type: Weapon SubType: 1hAxe Attack: 10 @@ -208717,7 +208717,7 @@ Body: } - Id: 530036 AegisName: Hs_Cr_Spear - Name: Heroria Spear # !todo check english name + Name: Herosria Spear Type: Weapon SubType: 1hSpear Weight: 1500 @@ -208737,7 +208737,7 @@ Body: bonus bHit,30; - Id: 530040 AegisName: aegis_530040 - Name: Level 1 One-Handed Spear # !todo check english name + Name: 1Lv One-handed Spear Type: Weapon SubType: 1hSpear Attack: 10 @@ -208757,7 +208757,7 @@ Body: Refineable: true - Id: 530041 AegisName: aegis_530041 - Name: Level 2 One-Handed Spear # !todo check english name + Name: 2Lv One-handed Spear Type: Weapon SubType: 1hSpear Attack: 10 @@ -208777,7 +208777,7 @@ Body: Refineable: true - Id: 530042 AegisName: aegis_530042 - Name: Level 3 One-Handed Spear # !todo check english name + Name: 3Lv One-handed Spear Type: Weapon SubType: 1hSpear Attack: 10 @@ -208797,7 +208797,7 @@ Body: Refineable: true - Id: 530043 AegisName: aegis_530043 - Name: Level 4 One-Handed Spear # !todo check english name + Name: 4Lv One-handed Spear Type: Weapon SubType: 1hSpear Attack: 10 @@ -208926,7 +208926,7 @@ Body: } - Id: 530054 AegisName: Dimen_IG_Spear - Name: Dimensions Imperial Spear # !todo check english name + Name: Dimensions Imperial Spear Type: Weapon SubType: 1hSpear Weight: 2500 @@ -210998,7 +210998,7 @@ Body: } - Id: 540061 AegisName: aegis_540061 - Name: Heroria Elemental Book # !todo check english name + Name: Herosria Elemental Book Type: Weapon SubType: Book Weight: 1500 @@ -211021,7 +211021,7 @@ Body: bonus bVariableCastrate,-15; - Id: 540062 AegisName: aegis_540062 - Name: Heroic Sorceric Book # !todo check english name + Name: Herosria Sorceric Book Type: Weapon SubType: Book Weight: 1500 @@ -211044,7 +211044,7 @@ Body: bonus bMatkRate,5; - Id: 540063 AegisName: aegis_540063 - Name: Heroria Demonic Bible # !todo check english name + Name: Herosria Demonic Book Type: Weapon SubType: Book Weight: 1500 @@ -211064,7 +211064,7 @@ Body: bonus bCritical,-5; - Id: 540064 AegisName: aegis_540064 - Name: Heroria Star Book # !todo check english name + Name: Herosria Star Book Type: Weapon SubType: Book Weight: 1500 @@ -211084,7 +211084,7 @@ Body: bonus bAspdRate,10; - Id: 540065 AegisName: aegis_540065 - Name: Heroria Gladiator Book # !todo check english name + Name: Herosria Gladiator Book Type: Weapon SubType: Book Weight: 1500 @@ -211105,7 +211105,7 @@ Body: bonus bHit,-15; - Id: 540066 AegisName: aegis_540066 - Name: Heroic Book of Orders # !todo check english name + Name: Herosria Martial Arts Book Type: Weapon SubType: Book Weight: 1500 @@ -211125,7 +211125,7 @@ Body: bonus bHit,30; - Id: 540068 AegisName: aegis_540068 - Name: Level 1 Book # !todo check english name + Name: 1Lv Book Type: Weapon SubType: Book Attack: 10 @@ -211142,7 +211142,7 @@ Body: Refineable: true - Id: 540069 AegisName: aegis_540069 - Name: Level 2 Book # !todo check english name + Name: 2Lv Book Type: Weapon SubType: Book Attack: 10 @@ -211159,7 +211159,7 @@ Body: Refineable: true - Id: 540071 AegisName: aegis_540071 - Name: Level 3 Book # !todo check english name + Name: 3Lv Book Type: Weapon SubType: Book Attack: 10 @@ -211176,7 +211176,7 @@ Body: Refineable: true - Id: 540072 AegisName: aegis_540072 - Name: Level 4 Book # !todo check english name + Name: 4Lv Book Type: Weapon SubType: Book Attack: 10 @@ -211308,7 +211308,7 @@ Body: } - Id: 540079 AegisName: Dimen_EM_M_Book - Name: Dimensions Elemental Magic Book # !todo check english name + Name: Dimensions Elemental Magic Book Type: Weapon SubType: Book Weight: 1800 @@ -211363,7 +211363,7 @@ Body: } - Id: 540080 AegisName: Dimen_EM_S_Book - Name: Dimensions Elemental Spellbook # !todo check english name + Name: Dimensions Elemental Spell Book Type: Weapon SubType: Book Weight: 1800 @@ -211418,7 +211418,7 @@ Body: } - Id: 540081 AegisName: Dimen_CD_Bible - Name: Dimensions Saint Bible # !todo check english name + Name: Dimensions Saint Bible Type: Weapon SubType: Book Weight: 1800 @@ -211468,7 +211468,7 @@ Body: } - Id: 540082 AegisName: Dimen_SKE_M_Book - Name: Dimensions Emperor Moonbook # !todo check english name + Name: Dimensions Emperor Moon Book Type: Weapon SubType: Book Weight: 1800 @@ -211517,7 +211517,7 @@ Body: } - Id: 540083 AegisName: Dimen_SKE_S_Book - Name: Dimensions Emperor Book of the Sun # !todo check english name + Name: Dimensions Emperor Sun Book Type: Weapon SubType: Book Weight: 2200 @@ -211567,7 +211567,7 @@ Body: } - Id: 540086 AegisName: SaintBook_Furious - Name: Bible of Wrath # !todo check english name + Name: Furious Saint Book Type: Weapon SubType: Book Weight: 1200 @@ -211626,7 +211626,7 @@ Body: } - Id: 540087 AegisName: SunBook_Furious - Name: Sunshine Book of Wrath # !todo check english name + Name: Furious Sun Book Type: Weapon SubType: Book Weight: 1400 @@ -211684,7 +211684,7 @@ Body: } - Id: 540088 AegisName: MoonBook_Furious - Name: Furious Moon Word # !todo check english name + Name: Furious Moon Word Type: Weapon SubType: Book Weight: 1200 @@ -215157,7 +215157,7 @@ Body: } - Id: 550096 AegisName: aegis_550096 - Name: Heroria Wizardry Wand # !todo check english name + Name: Herosria Wizardry Wand Type: Weapon SubType: Staff Weight: 1500 @@ -215181,7 +215181,7 @@ Body: bonus bMatkRate,5; - Id: 550097 AegisName: aegis_550097 - Name: Heroria Spell Wand # !todo check english name + Name: Herosria Spell Wand Type: Weapon SubType: Staff Weight: 1500 @@ -215204,7 +215204,7 @@ Body: bonus bVariableCastrate,5; - Id: 550098 AegisName: Hs_Pr_Holy_Wand - Name: Heroria Holy Wand # !todo check english name + Name: Herosria Holy Wand Type: Weapon SubType: Staff Weight: 1500 @@ -215226,7 +215226,7 @@ Body: bonus bMatkRate,-3; - Id: 550099 AegisName: Hs_Pr_Wand - Name: Heroria Arc Wand # !todo check english name + Name: Herosria Arc Wand Type: Weapon SubType: Staff Weight: 1500 @@ -215249,7 +215249,7 @@ Body: bonus bVariableCastrate,-10; - Id: 550100 AegisName: aegis_550100 - Name: Heroria Soul Stick # !todo check english name + Name: Herosria Soul Stick Type: Weapon SubType: Staff Weight: 1500 @@ -215271,7 +215271,7 @@ Body: bonus bVariableCastrate,-10; - Id: 550101 AegisName: aegis_550101 - Name: Heroria Link Wand # !todo check english name + Name: Herosria Link Wand Type: Weapon SubType: Staff Weight: 1500 @@ -215293,7 +215293,7 @@ Body: bonus bVariableCastrate,5; - Id: 550102 AegisName: aegis_550102 - Name: Heroria Soul Wand # !todo check english name + Name: Herosria Soul Wand Type: Weapon SubType: Staff Weight: 1500 @@ -215315,7 +215315,7 @@ Body: bonus bUseSPrate,5; - Id: 550103 AegisName: aegis_550103 - Name: Heroria Summoner Foxtail # !todo check english name + Name: Herosria Summoner Foxtail Type: Weapon SubType: Staff Weight: 1500 @@ -215338,7 +215338,7 @@ Body: bonus bUseSPrate,5; - Id: 550104 AegisName: aegis_550104 - Name: Heroria foxtail # !todo check english name + Name: Herosria Foxtail Type: Weapon SubType: Staff Weight: 1500 @@ -215360,7 +215360,7 @@ Body: bonus bMatkRate,5; - Id: 550105 AegisName: aegis_550105 - Name: Heroria foxtail model # !todo check english name + Name: Herosria Foxtail Model Type: Weapon SubType: Staff Weight: 1500 @@ -215381,7 +215381,7 @@ Body: bonus bHit,30; - Id: 550106 AegisName: aegis_550106 - Name: Heroria Basic Rod # !todo check english name + Name: Herosria Basic Rod Type: Weapon SubType: Staff Weight: 1500 @@ -215406,7 +215406,7 @@ Body: bonus bVariableCastrate,5; - Id: 550107 AegisName: aegis_550107 - Name: Heroria Basic Wand # !todo check english name + Name: Herosria Basic Wand Type: Weapon SubType: Staff Weight: 1500 @@ -215431,7 +215431,7 @@ Body: bonus bUseSPrate,5; - Id: 550108 AegisName: aegis_550108 - Name: Level 1 Staff # !todo check english name + Name: 1Lv One-handed Staff Type: Weapon SubType: Staff Attack: 10 @@ -215454,7 +215454,7 @@ Body: Refineable: true - Id: 550110 AegisName: aegis_550110 - Name: Level 2 Staff # !todo check english name + Name: 2Lv One-handed Staff Type: Weapon SubType: Staff Attack: 10 @@ -215477,7 +215477,7 @@ Body: Refineable: true - Id: 550111 AegisName: aegis_550111 - Name: Level 3 Staff # !todo check english name + Name: 3Lv One-handed Staff Type: Weapon SubType: Staff Attack: 10 @@ -215500,7 +215500,7 @@ Body: Refineable: true - Id: 550112 AegisName: aegis_550112 - Name: Level 4 Staff # !todo check english name + Name: 4Lv One-handed Staff Type: Weapon SubType: Staff Attack: 10 @@ -215808,7 +215808,7 @@ Body: } - Id: 550130 AegisName: Dimen_CD_Rod - Name: Dimensions St. Road # !todo check english name + Name: Dimensions Saint Rod Type: Weapon SubType: Staff Weight: 2000 @@ -215866,7 +215866,7 @@ Body: } - Id: 550131 AegisName: Dimen_SOA_Stick - Name: Dimensions Soul Stick # !todo check english name + Name: Dimensions Soul Stick Type: Weapon SubType: Staff Weight: 1800 @@ -215920,7 +215920,7 @@ Body: } - Id: 550132 AegisName: Dimen_SOA_Rod - Name: Dimensions Soul Road # !todo check english name + Name: Dimensions Soul Rod Type: Weapon SubType: Staff Weight: 1800 @@ -215974,7 +215974,7 @@ Body: } - Id: 550133 AegisName: Dimen_HN_Rod - Name: Dimensions Hyper Road # !todo check english name + Name: Dimensions Hyper Rod Type: Weapon SubType: Staff Weight: 1800 @@ -216030,7 +216030,7 @@ Body: } - Id: 550134 AegisName: Dimen_SH_Foxtail - Name: Dimensions Spirit Foxtail # !todo check english name + Name: Dimensions Spirit Foxtail Type: Weapon SubType: Staff Weight: 2100 @@ -216081,7 +216081,7 @@ Body: } - Id: 550135 AegisName: Dimen_SH_F_Model - Name: Dimensions Spirit Foxtail Model # !todo check english name + Name: Dimensions Spirit Foxtail Model Type: Weapon SubType: Staff Weight: 1800 @@ -216132,7 +216132,7 @@ Body: } - Id: 550141 AegisName: SaintWand_Furious - Name: Furious Saint Wand # !todo check english name + Name: Furious Saint Wand Type: Weapon SubType: Staff Weight: 1400 @@ -217467,7 +217467,7 @@ Body: } - Id: 560039 AegisName: Hs_Mo_Knuckle - Name: Heroria Knuckles # !todo check english name + Name: Herosria Knuckle Type: Weapon SubType: Knuckle Weight: 1500 @@ -217487,7 +217487,7 @@ Body: bonus bHit,30; - Id: 560040 AegisName: aegis_560040 - Name: Heroria Crowe # !todo check english name + Name: Herosria Claw Type: Weapon SubType: Knuckle Weight: 1500 @@ -217507,7 +217507,7 @@ Body: bonus bCritical,-5; - Id: 560043 AegisName: aegis_560043 - Name: Level 1 Knuckle # !todo check english name + Name: 1Lv Knuckle Type: Weapon SubType: Knuckle Attack: 10 @@ -217523,7 +217523,7 @@ Body: Refineable: true - Id: 560044 AegisName: aegis_560044 - Name: Level 2 Knuckle # !todo check english name + Name: 2Lv Knuckle Type: Weapon SubType: Knuckle Attack: 10 @@ -217539,7 +217539,7 @@ Body: Refineable: true - Id: 560045 AegisName: aegis_560045 - Name: Level 3 Knuckle # !todo check english name + Name: 3Lv Knuckle Type: Weapon SubType: Knuckle Attack: 10 @@ -217555,7 +217555,7 @@ Body: Refineable: true - Id: 560046 AegisName: aegis_560046 - Name: Level 4 Knuckle # !todo check english name + Name: 4Lv Knuckle Type: Weapon SubType: Knuckle Attack: 10 @@ -217663,7 +217663,7 @@ Body: } - Id: 560060 AegisName: Dimen_IQ_Knuckle - Name: Dimensions Judgment Knuckle # !todo check english name + Name: Dimensions Judgment Knuckle Type: Weapon SubType: Knuckle Weight: 2300 @@ -217713,7 +217713,7 @@ Body: } - Id: 560061 AegisName: Dimen_IQ_Claw - Name: Dimensions Judgment Crow # !todo check english name + Name: Dimensions Judgment Claw Type: Weapon SubType: Knuckle Weight: 2500 @@ -218766,7 +218766,7 @@ Body: } - Id: 570034 AegisName: aegis_570034 - Name: Heroria Violin # !todo check english name + Name: Herosria Violin Type: Weapon SubType: Musical Weight: 1500 @@ -218789,7 +218789,7 @@ Body: bonus bVariableCastrate,-10; - Id: 570035 AegisName: Hs_Ba_Guitar - Name: Heroria guitar # !todo check english name + Name: Herosria Guitar Type: Weapon SubType: Musical Weight: 1500 @@ -218922,7 +218922,7 @@ Body: } - Id: 570040 AegisName: aegis_570040 - Name: Level 1 Instrument # !todo check english name + Name: 1Lv Instrument Type: Weapon SubType: Musical Attack: 10 @@ -218938,7 +218938,7 @@ Body: Refineable: true - Id: 570041 AegisName: aegis_570041 - Name: Level 2 Instrument # !todo check english name + Name: 2Lv Instrument Type: Weapon SubType: Musical Attack: 10 @@ -218954,7 +218954,7 @@ Body: Refineable: true - Id: 570042 AegisName: aegis_570042 - Name: Level 3 Instrument # !todo check english name + Name: 3Lv Instrument Type: Weapon SubType: Musical Attack: 10 @@ -218970,7 +218970,7 @@ Body: Refineable: true - Id: 570043 AegisName: aegis_570043 - Name: Level 4 Instrument # !todo check english name + Name: 4Lv Instrument Type: Weapon SubType: Musical Attack: 10 @@ -219049,7 +219049,7 @@ Body: } - Id: 570062 AegisName: Dimen_TR_Vilolin - Name: Dimensions Musical Violin # !todo check english name + Name: Dimensions Musical Violin Type: Weapon SubType: Musical Weight: 1800 @@ -219102,7 +219102,7 @@ Body: } - Id: 570063 AegisName: Dimen_TR_Harp - Name: Dimensions Musical Harp # !todo check english name + Name: Dimensions Musical Harp Type: Weapon SubType: Musical Weight: 1800 @@ -220159,7 +220159,7 @@ Body: } - Id: 580035 AegisName: Hs_Dc_Rope - Name: Heroria Rope # !todo check english name + Name: Herosria Rope Type: Weapon SubType: Whip Weight: 1500 @@ -220185,7 +220185,7 @@ Body: bonus bVariableCastrate,-10; - Id: 580036 AegisName: aegis_580036 - Name: Heroria Whip # !todo check english name + Name: Herosria Whip Type: Weapon SubType: Whip Weight: 1500 @@ -220321,7 +220321,7 @@ Body: } - Id: 580041 AegisName: aegis_580041 - Name: Level 1 Whip # !todo check english name + Name: 1Lv Whip Type: Weapon SubType: Whip Attack: 10 @@ -220340,7 +220340,7 @@ Body: Refineable: true - Id: 580042 AegisName: aegis_580042 - Name: Level 2 Whip # !todo check english name + Name: 2Lv Whip Type: Weapon SubType: Whip Attack: 10 @@ -220359,7 +220359,7 @@ Body: Refineable: true - Id: 580043 AegisName: aegis_580043 - Name: Level 3 Whip # !todo check english name + Name: 3Lv Whip Type: Weapon SubType: Whip Attack: 10 @@ -220378,7 +220378,7 @@ Body: Refineable: true - Id: 580044 AegisName: aegis_580044 - Name: Level 4 Whip # !todo check english name + Name: 4Lv Whip Type: Weapon SubType: Whip Attack: 10 @@ -220463,7 +220463,7 @@ Body: } - Id: 580061 AegisName: Dimen_TR_Ribbon - Name: Dimensions Musical Ribbon # !todo check english name + Name: Dimensions Musical Ribbon Type: Weapon SubType: Whip Weight: 1800 @@ -220516,7 +220516,7 @@ Body: } - Id: 580062 AegisName: Dimen_TR_Rope - Name: Dimensions Musical Rope # !todo check english name + Name: Dimensions Musical Rope Type: Weapon SubType: Whip Weight: 1800 @@ -222060,7 +222060,7 @@ Body: } - Id: 590050 AegisName: Hs_Bs_Mace - Name: Heroria Smith Mace # !todo check english name + Name: Herosria Smith Mace Type: Weapon SubType: Mace Weight: 1500 @@ -222081,7 +222081,7 @@ Body: bonus bVariableCastrate,-10; - Id: 590051 AegisName: aegis_590051 - Name: Heroria Alchemic Mace # !todo check english name + Name: Herosria Alchemic Mace Type: Weapon SubType: Mace Weight: 1500 @@ -222102,7 +222102,7 @@ Body: bonus bVariableCastrate,-10; - Id: 590052 AegisName: aegis_590052 - Name: Heroria Monk Mace # !todo check english name + Name: Herosria Monk Mace Type: Weapon SubType: Mace Weight: 1500 @@ -222125,7 +222125,7 @@ Body: bonus bVariableCastrate,-10; - Id: 590056 AegisName: aegis_590056 - Name: Blunt Weapon Level 1 # !todo check english name + Name: 1Lv One-handed Macee Type: Weapon SubType: Mace Attack: 10 @@ -222150,7 +222150,7 @@ Body: Refineable: true - Id: 590057 AegisName: aegis_590057 - Name: Blunt weapon level 2 # !todo check english name + Name: 2Lv One-handed Macee Type: Weapon SubType: Mace Attack: 10 @@ -222175,7 +222175,7 @@ Body: Refineable: true - Id: 590058 AegisName: aegis_590058 - Name: Blunt Weapon Level 3 # !todo check english name + Name: 3Lv One-handed Macee Type: Weapon SubType: Mace Attack: 10 @@ -222200,7 +222200,7 @@ Body: Refineable: true - Id: 590059 AegisName: aegis_590059 - Name: Blunt weapon level 4 # !todo check english name + Name: 4Lv One-handed Macee Type: Weapon SubType: Mace Attack: 10 @@ -222378,7 +222378,7 @@ Body: } - Id: 590079 AegisName: Dimen_MT_Mace - Name: Dimensions Mechanical Mace # !todo check english name + Name: Dimensions Mechanical Mace Type: Weapon SubType: Mace Weight: 2500 @@ -222429,7 +222429,7 @@ Body: } - Id: 590080 AegisName: Dimen_BO_Hall - Name: Dimensions Biological Hall # !todo check english name + Name: Dimensions Biological Scepter Type: Weapon SubType: Mace Weight: 2500 @@ -223332,7 +223332,7 @@ Body: } - Id: 600032 AegisName: Hs_Kn_Zweihander - Name: Heroria Zweihander # !todo check english name + Name: Herosria Zweihander Type: Weapon SubType: 2hSword Weight: 3000 @@ -223352,7 +223352,7 @@ Body: bonus bMdef,-80; - Id: 600035 AegisName: aegis_600035 - Name: Level 1 Two-Handed Sword # !todo check english name + Name: 1Lv Two-handed Swords Type: Weapon SubType: 2hSword Attack: 10 @@ -223372,7 +223372,7 @@ Body: Refineable: true - Id: 600036 AegisName: aegis_600036 - Name: Level 2 Two-Handed Sword # !todo check english name + Name: 2Lv Two-handed Swords Type: Weapon SubType: 2hSword Attack: 10 @@ -223392,7 +223392,7 @@ Body: Refineable: true - Id: 600037 AegisName: aegis_600037 - Name: Level 3 Two-Handed Sword # !todo check english name + Name: 3Lv Two-handed Swords Type: Weapon SubType: 2hSword Attack: 10 @@ -223412,7 +223412,7 @@ Body: Refineable: true - Id: 600038 AegisName: aegis_600038 - Name: Level 4 Two-Handed Sword # !todo check english name + Name: 4Lv Two-handed Swords Type: Weapon SubType: 2hSword Attack: 10 @@ -223505,7 +223505,7 @@ Body: } - Id: 600054 AegisName: Dimen_DK_T_Sword - Name: Dimensions Dragon Sword # !todo check english name + Name: Dimensions Dragon Sword Type: Weapon SubType: 2hSword Weight: 3500 @@ -224708,7 +224708,7 @@ Body: } - Id: 610043 AegisName: aegis_610043 - Name: Heroria Katar # !todo check english name + Name: Herosria Katar Type: Weapon SubType: Katar Weight: 3000 @@ -224834,7 +224834,7 @@ Body: } - Id: 610047 AegisName: aegis_610047 - Name: Level 1 Katar # !todo check english name + Name: 1Lv Katar Type: Weapon SubType: Katar Attack: 10 @@ -224849,7 +224849,7 @@ Body: Refineable: true - Id: 610049 AegisName: aegis_610049 - Name: Level 2 Katar # !todo check english name + Name: 2Lv Katar Type: Weapon SubType: Katar Attack: 10 @@ -224864,7 +224864,7 @@ Body: Refineable: true - Id: 610050 AegisName: aegis_610050 - Name: Level 3 Katar # !todo check english name + Name: 3Lv Katar Type: Weapon SubType: Katar Attack: 10 @@ -224879,7 +224879,7 @@ Body: Refineable: true - Id: 610051 AegisName: aegis_610051 - Name: Level 4 Katar # !todo check english name + Name: 4Lv Katar Type: Weapon SubType: Katar Attack: 10 @@ -224985,7 +224985,7 @@ Body: } - Id: 610064 AegisName: Dimen_SHC_Katar - Name: Dimensions Shadow Katar # !todo check english name + Name: Dimensions Shadow Katar Type: Weapon SubType: Katar Weight: 2200 @@ -225035,7 +225035,7 @@ Body: } - Id: 610065 AegisName: Dimen_SHC_Cakram - Name: Dimensions Shadow Chakram # !todo check english name + Name: Dimensions Shadow Chakram Type: Weapon SubType: Katar Weight: 2200 @@ -225696,7 +225696,7 @@ Body: } - Id: 620021 AegisName: Hs_Bs_Giant_Axe - Name: Heroria Giant Axe # !todo check english name + Name: Herosria Giant Axe Type: Weapon SubType: 2hAxe Weight: 3000 @@ -225717,7 +225717,7 @@ Body: bonus bHit,50; - Id: 620022 AegisName: Divine_Buster - Name: Divine Buster # !todo check english name + Name: Divine Buster Type: Weapon SubType: 2hAxe Weight: 6600 @@ -225771,7 +225771,7 @@ Body: } - Id: 620023 AegisName: aegis_620023 - Name: Two-Handed Axe Level 1 # !todo check english name + Name: 1Lv Two-handed Axe Type: Weapon SubType: 2hAxe Attack: 10 @@ -225791,7 +225791,7 @@ Body: Refineable: true - Id: 620024 AegisName: aegis_620024 - Name: Two-Handed Axe Level 2 # !todo check english name + Name: 2Lv Two-handed Axe Type: Weapon SubType: 2hAxe Attack: 10 @@ -225811,7 +225811,7 @@ Body: Refineable: true - Id: 620025 AegisName: aegis_620025 - Name: Level 3 Two-Handed Axe # !todo check english name + Name: 3Lv Two-handed Axe Type: Weapon SubType: 2hAxe Attack: 10 @@ -225831,7 +225831,7 @@ Body: Refineable: true - Id: 620026 AegisName: aegis_620026 - Name: Level 4 Two-Handed Axe # !todo check english name + Name: 4Lv Two-handed Axe Type: Weapon SubType: 2hAxe Attack: 10 @@ -225851,7 +225851,7 @@ Body: Refineable: true - Id: 620037 AegisName: Dimen_MT_Axe - Name: Dimensions Mechanical Axe # !todo check english name + Name: Dimensions Machanical Axe Type: Weapon SubType: 2hAxe Weight: 4500 @@ -226364,7 +226364,7 @@ Body: DropEffect: CLIENT - Id: 630020 AegisName: Hs_Kn_Lance - Name: Heroria Lance # !todo check english name + Name: Herosria Lance Type: Weapon SubType: 2hSpear Weight: 3000 @@ -226384,7 +226384,7 @@ Body: bonus bHit,50; - Id: 630021 AegisName: aegis_630021 - Name: Level 1 Two-Handed Spear # !todo check english name + Name: 1Lv Two-handed Spear Type: Weapon SubType: 2hSpear Attack: 10 @@ -226404,7 +226404,7 @@ Body: Refineable: true - Id: 630022 AegisName: aegis_630022 - Name: Level 2 Two-Handed Spear # !todo check english name + Name: 2Lv Two-handed Spear Type: Weapon SubType: 2hSpear Attack: 10 @@ -226424,7 +226424,7 @@ Body: Refineable: true - Id: 630023 AegisName: aegis_630023 - Name: Level 3 Two-Handed Spear # !todo check english name + Name: 3Lv Two-handed Spear Type: Weapon SubType: 2hSpear Attack: 10 @@ -226444,7 +226444,7 @@ Body: Refineable: true - Id: 630024 AegisName: aegis_630024 - Name: Level 4 Two-Handed Spear # !todo check english name + Name: 4Lv Two-handed Spear Type: Weapon SubType: 2hSpear Attack: 10 @@ -226612,7 +226612,7 @@ Body: } - Id: 630041 AegisName: Dimen_DK_Lance - Name: Dimensions Dragon Lance # !todo check english name + Name: Dimensions Dragon Lance Type: Weapon SubType: 2hSpear Weight: 6500 @@ -228149,7 +228149,7 @@ Body: } - Id: 640038 AegisName: aegis_640038 - Name: Heroria Wizardry Staff # !todo check english name + Name: Herosria Wizardry Staff Type: Weapon SubType: 2hStaff Weight: 3000 @@ -228173,7 +228173,7 @@ Body: bonus bVariableCastrate,7; - Id: 640039 AegisName: aegis_640039 - Name: Heroria Magical Staff # !todo check english name + Name: Herosria Magical Staff Type: Weapon SubType: 2hStaff Weight: 3000 @@ -228197,7 +228197,7 @@ Body: bonus bVariableCastrate,-15; - Id: 640041 AegisName: aegis_640041 - Name: Level 1 Two-Handed Staff # !todo check english name + Name: 1Lv Two-handed Staff Type: Weapon SubType: 2hStaff Attack: 10 @@ -228215,7 +228215,7 @@ Body: Refineable: true - Id: 640042 AegisName: aegis_640042 - Name: Level 2 Two-Handed Staff # !todo check english name + Name: 2Lv Two-handed Staff Type: Weapon SubType: 2hStaff Attack: 10 @@ -228233,7 +228233,7 @@ Body: Refineable: true - Id: 640043 AegisName: aegis_640043 - Name: Level 3 Two-Handed Staff # !todo check english name + Name: 3Lv Two-handed Staff Type: Weapon SubType: 2hStaff Attack: 10 @@ -228251,7 +228251,7 @@ Body: Refineable: true - Id: 640044 AegisName: aegis_640044 - Name: Level 4 Two-Handed Staff # !todo check english name + Name: 4Lv Two-handed Staff Type: Weapon SubType: 2hStaff Attack: 10 @@ -228382,7 +228382,7 @@ Body: } - Id: 640049 AegisName: Dimen_AG_Staff - Name: Dimensions Arc Staff # !todo check english name + Name: Dimensions Arch Staff Type: Weapon SubType: 2hStaff Weight: 2000 @@ -228441,7 +228441,7 @@ Body: } - Id: 640050 AegisName: Dimen_AG_Rod - Name: Dimensions Arc Road # !todo check english name + Name: Dimensions Arch Rod Type: Weapon SubType: 2hStaff Weight: 2000 @@ -229294,7 +229294,7 @@ Body: } - Id: 650030 AegisName: Hs_Nj_Humma - Name: Heroria Fuma Shuriken # !todo check english name + Name: Herosria Huuma Shuriken Type: Weapon SubType: Huuma Weight: 3000 @@ -229316,7 +229316,7 @@ Body: bonus bHit,50; - Id: 650033 AegisName: Devil_Claw - Name: Devil Claw # !todo check english name + Name: Devil Claw Type: Weapon SubType: Huuma Weight: 2000 @@ -229375,7 +229375,7 @@ Body: } - Id: 650034 AegisName: Humma_Brilliance - Name: Wind Magic Shuriken Radiance # !todo check english name + Name: Huuma Shuriken Brilliance Type: Weapon SubType: Huuma Weight: 2600 @@ -229429,7 +229429,7 @@ Body: } - Id: 650035 AegisName: aegis_650035 - Name: Level 1 Wind Magic Shuriken # !todo check english name + Name: 1Lv Fuuma Shuriken Type: Weapon SubType: Huuma Attack: 10 @@ -229445,7 +229445,7 @@ Body: Refineable: true - Id: 650036 AegisName: aegis_650036 - Name: Level 2 Wind Magic Shuriken # !todo check english name + Name: 2Lv Fuuma Shuriken Type: Weapon SubType: Huuma Attack: 10 @@ -229461,7 +229461,7 @@ Body: Refineable: true - Id: 650037 AegisName: aegis_650037 - Name: Level 3 Wind Magic Shuriken # !todo check english name + Name: 3Lv Fuuma Shuriken Type: Weapon SubType: Huuma Attack: 10 @@ -229477,7 +229477,7 @@ Body: Refineable: true - Id: 650038 AegisName: aegis_650038 - Name: Level 4 Wind Magic Shuriken # !todo check english name + Name: 4Lv Fuuma Shuriken Type: Weapon SubType: Huuma Attack: 10 @@ -229541,7 +229541,7 @@ Body: } - Id: 650046 AegisName: Dimen_SS_Humma - Name: Dimensions Moonlight Wind Demon Shuriken # !todo check english name + Name: Dimensions Moonlight Huuma Shuriken Type: Weapon SubType: Huuma Weight: 3200 @@ -229592,7 +229592,7 @@ Body: } - Id: 650047 AegisName: Dimen_SS_Wheel - Name: Dimensions Moonlight Wheel Repair Sword # !todo check english name + Name: Dimensions Moonlight Wheel Shuriken Type: Weapon SubType: Huuma Weight: 2800 @@ -231472,7 +231472,7 @@ Body: } - Id: 700061 AegisName: Hs_Rg_Bow - Name: Heroria Log Bow # !todo check english name + Name: Herosria Rogue Bow Type: Weapon SubType: Bow Weight: 3000 @@ -231492,7 +231492,7 @@ Body: bonus bCritical,-7; - Id: 700062 AegisName: aegis_700062 - Name: Heroria Hunter Bow # !todo check english name + Name: Herosria Hunter Bow Type: Weapon SubType: Bow Weight: 3000 @@ -231512,7 +231512,7 @@ Body: bonus bHit,-25; - Id: 700063 AegisName: aegis_700063 - Name: Heroria Crossbow # !todo check english name + Name: Herosria Cross Bow Type: Weapon SubType: Bow Weight: 3000 @@ -231532,7 +231532,7 @@ Body: bonus bCritical,-7; - Id: 700064 AegisName: aegis_700064 - Name: Heroria Rhythm Bow # !todo check english name + Name: Herosria Rhythm Bow Type: Weapon SubType: Bow Weight: 3000 @@ -231685,7 +231685,7 @@ Body: bonus2 bSkillAtk,"SC_TRIANGLESHOT",BaseLevel; - Id: 700070 AegisName: aegis_700070 - Name: Level 1 Bow # !todo check english name + Name: 1Lv Bow Type: Weapon SubType: Bow Attack: 10 @@ -231704,7 +231704,7 @@ Body: Refineable: true - Id: 700071 AegisName: aegis_700071 - Name: Level 2 Bow # !todo check english name + Name: 2Lv Bow Type: Weapon SubType: Bow Attack: 10 @@ -231723,7 +231723,7 @@ Body: Refineable: true - Id: 700072 AegisName: aegis_700072 - Name: Level 3 Bow # !todo check english name + Name: 3Lv Bow Type: Weapon SubType: Bow Attack: 10 @@ -231742,7 +231742,7 @@ Body: Refineable: true - Id: 700073 AegisName: aegis_700073 - Name: Level 4 Bow # !todo check english name + Name: 4Lv Bow Type: Weapon SubType: Bow Attack: 10 @@ -231761,7 +231761,7 @@ Body: Refineable: true - Id: 700074 AegisName: aegis_700074 - Name: Level 5 Bow # !todo check english name + Name: 5Lv Bow Type: Weapon SubType: Bow Attack: 10 @@ -231825,7 +231825,7 @@ Body: } - Id: 700092 AegisName: Dimen_ABC_Bow - Name: Dimensions Abyss Bow # !todo check english name + Name: Dimensions Abyss Bow Type: Weapon SubType: Bow Weight: 2100 @@ -231875,7 +231875,7 @@ Body: } - Id: 700093 AegisName: Dimen_WH_C_Bow - Name: Dimensions Wind Cross Bow # !todo check english name + Name: Dimensions Wind Crossbow Type: Weapon SubType: Bow Weight: 2100 @@ -231925,7 +231925,7 @@ Body: } - Id: 700094 AegisName: Dimen_WH_Bow - Name: Dimensions Wind Bow # !todo check english name + Name: Dimensions Wind Bow Type: Weapon SubType: Bow Weight: 2100 @@ -231975,7 +231975,7 @@ Body: } - Id: 700100 AegisName: StormBow_Furious - Name: Furious Storm Bow # !todo check english name + Name: Furious Storm Bow Type: Weapon SubType: Bow Weight: 1800 @@ -232033,7 +232033,7 @@ Body: } - Id: 700101 AegisName: TornadoBow_Furious - Name: Wrath Gale Bow # !todo check english name + Name: Furious Tornado Bow Type: Weapon SubType: Bow Weight: 1800 @@ -232647,7 +232647,7 @@ Body: } - Id: 800017 AegisName: aegis_800017 - Name: Heroria Revolver # !todo check english name + Name: Herosria Revolver Type: Weapon SubType: Revolver Weight: 3000 @@ -232774,7 +232774,7 @@ Body: } - Id: 800029 AegisName: aegis_800029 - Name: Level 1 Revolver # !todo check english name + Name: 1Lv Revolver Type: Weapon SubType: Revolver Attack: 10 @@ -232790,7 +232790,7 @@ Body: Refineable: true - Id: 800030 AegisName: aegis_800030 - Name: Level 2 Revolver # !todo check english name + Name: 2Lv Revolver Type: Weapon SubType: Revolver Attack: 10 @@ -232806,7 +232806,7 @@ Body: Refineable: true - Id: 800031 AegisName: aegis_800031 - Name: Level 3 Revolver # !todo check english name + Name: 3Lv Revolver Type: Weapon SubType: Revolver Attack: 10 @@ -232822,7 +232822,7 @@ Body: Refineable: true - Id: 800032 AegisName: aegis_800032 - Name: Level 4 Revolver # !todo check english name + Name: 4Lv Revolver Type: Weapon SubType: Revolver Attack: 10 @@ -233329,7 +233329,7 @@ Body: DropEffect: CLIENT - Id: 810016 AegisName: aegis_810016 - Name: Heroria Rifle # !todo check english name + Name: Herosria Rifle Type: Weapon SubType: Rifle Weight: 3000 @@ -233456,7 +233456,7 @@ Body: } - Id: 810029 AegisName: aegis_810029 - Name: Level 1 Rifle # !todo check english name + Name: 1Lv Rifle Type: Weapon SubType: Rifle Attack: 10 @@ -233472,7 +233472,7 @@ Body: Refineable: true - Id: 810030 AegisName: aegis_810030 - Name: Level 2 Rifle # !todo check english name + Name: 2Lv Rifle Type: Weapon SubType: Rifle Attack: 10 @@ -233488,7 +233488,7 @@ Body: Refineable: true - Id: 810031 AegisName: aegis_810031 - Name: Level 3 Rifle # !todo check english name + Name: 3Lv Rifle Type: Weapon SubType: Rifle Attack: 10 @@ -233504,7 +233504,7 @@ Body: Refineable: true - Id: 810032 AegisName: aegis_810032 - Name: Level 4 Rifle # !todo check english name + Name: 4Lv Rifle Type: Weapon SubType: Rifle Attack: 10 @@ -233520,7 +233520,7 @@ Body: Refineable: true - Id: 810033 AegisName: aegis_810033 - Name: Level 5 Rifle # !todo check english name + Name: 5Lv Rifle Type: Weapon SubType: Rifle Attack: 10 @@ -233581,7 +233581,7 @@ Body: } - Id: 810040 AegisName: Dimen_NW_Rifle - Name: Dimensions Knight Rifle # !todo check english name + Name: Dimensions Night Rifle Type: Weapon SubType: Rifle Weight: 2300 @@ -233970,7 +233970,7 @@ Body: bonus bSplashRange,1; - Id: 820012 AegisName: aegis_820012 - Name: Heroria Shotgun # !todo check english name + Name: Herosria Shotgun Type: Weapon SubType: Shotgun Weight: 3000 @@ -234100,7 +234100,7 @@ Body: } - Id: 820023 AegisName: aegis_820023 - Name: Level 1 Shotgun # !todo check english name + Name: 1Lv Shotgun Type: Weapon SubType: Shotgun Attack: 10 @@ -234118,7 +234118,7 @@ Body: bonus bSplashRange,1; - Id: 820024 AegisName: aegis_820024 - Name: Level 2 Shotgun # !todo check english name + Name: 2Lv Shotgun Type: Weapon SubType: Shotgun Attack: 10 @@ -234136,7 +234136,7 @@ Body: bonus bSplashRange,1; - Id: 820025 AegisName: aegis_820025 - Name: Level 3 Shotgun # !todo check english name + Name: 3Lv Shotgun Type: Weapon SubType: Shotgun Attack: 10 @@ -234154,7 +234154,7 @@ Body: bonus bSplashRange,1; - Id: 820026 AegisName: aegis_820026 - Name: Level 4 Shotgun # !todo check english name + Name: 4Lv Shotgun Type: Weapon SubType: Shotgun Attack: 10 @@ -234786,7 +234786,7 @@ Body: DropEffect: CLIENT - Id: 830016 AegisName: aegis_830016 - Name: Heroria Gatlinggun # !todo check english name + Name: Herosria Gatling Gun Type: Weapon SubType: Gatling Weight: 3000 @@ -234913,7 +234913,7 @@ Body: } - Id: 830028 AegisName: aegis_830028 - Name: Level 1 Gatling Gun # !todo check english name + Name: 1Lv Gatling Gun Type: Weapon SubType: Gatling Attack: 10 @@ -234929,7 +234929,7 @@ Body: Refineable: true - Id: 830029 AegisName: aegis_830029 - Name: Level 2 Gatling Gun # !todo check english name + Name: 2Lv Gatling Gun Type: Weapon SubType: Gatling Attack: 10 @@ -234945,7 +234945,7 @@ Body: Refineable: true - Id: 830030 AegisName: aegis_830030 - Name: Level 3 Gatling Gun # !todo check english name + Name: 3Lv Gatling Gun Type: Weapon SubType: Gatling Attack: 10 @@ -234961,7 +234961,7 @@ Body: Refineable: true - Id: 830031 AegisName: aegis_830031 - Name: Level 4 Gatling Gun # !todo check english name + Name: 4Lv Gatling Gun Type: Weapon SubType: Gatling Attack: 10 @@ -235412,7 +235412,7 @@ Body: DropEffect: CLIENT - Id: 840011 AegisName: aegis_840011 - Name: Heroria Launcher # !todo check english name + Name: Herosria Launcher Type: Weapon SubType: Grenade Weight: 3000 @@ -235539,7 +235539,7 @@ Body: } - Id: 840023 AegisName: aegis_840023 - Name: Level 1 Grenade Launcher # !todo check english name + Name: 1Lv Grenade Launcher Type: Weapon SubType: Grenade Attack: 10 @@ -235555,7 +235555,7 @@ Body: Refineable: true - Id: 840024 AegisName: aegis_840024 - Name: Level 2 Grenade Launcher # !todo check english name + Name: 2Lv Grenade Launcher Type: Weapon SubType: Grenade Attack: 10 @@ -235571,7 +235571,7 @@ Body: Refineable: true - Id: 840025 AegisName: aegis_840025 - Name: Level 3 Grenade Launcher # !todo check english name + Name: 3Lv Grenade Launcher Type: Weapon SubType: Grenade Attack: 10 @@ -235587,7 +235587,7 @@ Body: Refineable: true - Id: 840026 AegisName: aegis_840026 - Name: Level 4 Grenade Launcher # !todo check english name + Name: 4Lv Grenade Launcher Type: Weapon SubType: Grenade Attack: 10 @@ -235664,7 +235664,7 @@ Body: } - Id: 840032 AegisName: Dimen_NW_Launcher - Name: Dimensions Night Launcher # !todo check english name + Name: Dimensions Night Launcher Type: Weapon SubType: Grenade Weight: 2800 diff --git a/db/re/item_db_etc.yml b/db/re/item_db_etc.yml index 1d4d375291..fa4fbf6a33 100644 --- a/db/re/item_db_etc.yml +++ b/db/re/item_db_etc.yml @@ -67967,21 +67967,21 @@ Body: SubType: Enchant - Id: 311460 AegisName: aegis_311460 - Name: Holy Sacred Stone (Upper) # !todo check english name + Name: Star Emperor Stone (Upper) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"SJ_FULLMOONKICK",3*getskilllv("SG_MOON_BLESS"); - Id: 311461 AegisName: aegis_311461 - Name: Holy Priest Stone (Mid) # !todo check english name + Name: Star Emperor Stone (Middle) Type: Card SubType: Enchant Script: | bonus bShortAtkRate,2*getskilllv("SG_SUN_BLESS"); - Id: 311462 AegisName: aegis_311462 - Name: Holy stone (Low) # !todo check english name + Name: Star Emperor Stone (Lower) Type: Card SubType: Enchant Script: | @@ -67990,7 +67990,7 @@ Body: bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK2",.@val; - Id: 311463 AegisName: aegis_311463 - Name: Rebellion Stone (Upper) # !todo check english name + Name: Rebellion Stone (Upper) Type: Card SubType: Enchant Script: | @@ -67998,14 +67998,14 @@ Body: bonus2 bSkillAtk,"RL_D_TAIL",4*getskilllv("RL_P_ALTER"); - Id: 311464 AegisName: aegis_311464 - Name: Rebellion Stone (Mid) # !todo check english name + Name: Rebellion Stone (Middle) Type: Card SubType: Enchant Script: | bonus bLongAtkRate,2*getskilllv("RL_FIRE_RAIN"); - Id: 311465 AegisName: aegis_311465 - Name: Rebellion Stone (Low) # !todo check english name + Name: Rebellion Stone (Lower) Type: Card SubType: Enchant Script: | @@ -68013,84 +68013,84 @@ Body: bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",4*getskilllv("RL_HEAT_BARREL"); - Id: 311466 AegisName: aegis_311466 - Name: Soul Reaper Stone (Top) # !todo check english name + Name: Soul Reaper Stone (Upper) Type: Card SubType: Enchant Script: | bonus2 bMagicAtkEle,Ele_All,getskilllv("SP_SPA"); - Id: 311467 AegisName: aegis_311467 - Name: Soul Reaper Stone (Mid) # !todo check english name + Name: Soul Reaper Stone (Middle) Type: Card SubType: Enchant Script: | bonus2 bMagicAddSize,Size_All,getskilllv("SP_SWHOO"); - Id: 311468 AegisName: aegis_311468 - Name: Soul Reaper Stone (Low) # !todo check english name + Name: Soul Reaper Stone (Lower) Type: Card SubType: Enchant Script: | bonus2 bSkillCooldown,"SP_CURSEEXPLOSION",-(100*getskilllv("SP_SOULCURSE")); - Id: 311469 AegisName: aegis_311469 - Name: Milli Physical Attack Stone (Garment) # !todo check english name + Name: Melee Physical Attack Stone (Garment) Type: Card SubType: Enchant Script: | bonus bPAtk,3; - Id: 311470 AegisName: aegis_311470 - Name: Range Physical Attack Stone (Garment) # !todo check english name + Name: Range Physical Attack Stone (Garment) Type: Card SubType: Enchant Script: | bonus bPAtk,3; - Id: 311471 AegisName: aegis_311471 - Name: Power Stone (Dual) # !todo check english name + Name: Power Stone (Dual) Type: Card SubType: Enchant Script: | bonus bPow,5; - Id: 311777 AegisName: Pow_Orb_1 - Name: Power Orb 1Lv # !todo check english name + Name: Power Orb 1Lv Type: Card SubType: Enchant Script: | bonus bBaseAtk,2; - Id: 311778 AegisName: Pow_Orb_2 - Name: Power Orb 2Lv # !todo check english name + Name: Power Orb 2Lv Type: Card SubType: Enchant Script: | bonus bBaseAtk,4; - Id: 311779 AegisName: Pow_Orb_3 - Name: Power Orb 3Lv # !todo check english name + Name: Power Orb 3Lv Type: Card SubType: Enchant Script: | bonus bBaseAtk,6; - Id: 311780 AegisName: Pow_Orb_4 - Name: Power Orb 4Lv # !todo check english name + Name: Power Orb 4Lv Type: Card SubType: Enchant Script: | bonus bBaseAtk,8; - Id: 311781 AegisName: Pow_Orb_5 - Name: Power Orb 5Lv # !todo check english name + Name: Power Orb 5Lv Type: Card SubType: Enchant Script: | bonus bBaseAtk,10; - Id: 311782 AegisName: Pow_Orb_6 - Name: Power Orb 6Lv # !todo check english name + Name: Power Orb 6Lv Type: Card SubType: Enchant Script: | @@ -68098,7 +68098,7 @@ Body: bonus bBaseAtk,12; - Id: 311783 AegisName: Pow_Orb_7 - Name: Power Orb 7Lv # !todo check english name + Name: Power Orb 7Lv Type: Card SubType: Enchant Script: | @@ -68106,7 +68106,7 @@ Body: bonus bBaseAtk,14; - Id: 311784 AegisName: Pow_Orb_8 - Name: Power Orb 8Lv # !todo check english name + Name: Power Orb 8Lv Type: Card SubType: Enchant Script: | @@ -68114,7 +68114,7 @@ Body: bonus bBaseAtk,16; - Id: 311785 AegisName: Pow_Orb_9 - Name: Power Orb 9Lv # !todo check english name + Name: Power Orb 9Lv Type: Card SubType: Enchant Script: | @@ -68122,7 +68122,7 @@ Body: bonus bBaseAtk,18; - Id: 311786 AegisName: Pow_Orb_10 - Name: Power Orb 10Lv # !todo check english name + Name: Power Orb 10Lv Type: Card SubType: Enchant Script: | @@ -68130,7 +68130,7 @@ Body: bonus bBaseAtk,20; - Id: 311787 AegisName: Pow_Orb_11 - Name: Power Orb 11Lv # !todo check english name + Name: Power Orb 11Lv Type: Card SubType: Enchant Script: | @@ -68139,7 +68139,7 @@ Body: bonus bBaseAtk,22; - Id: 311788 AegisName: Pow_Orb_12 - Name: Power Orb 12Lv # !todo check english name + Name: Power Orb 12Lv Type: Card SubType: Enchant Script: | @@ -68148,7 +68148,7 @@ Body: bonus bBaseAtk,24; - Id: 311789 AegisName: Pow_Orb_13 - Name: Power Orb 13Lv # !todo check english name + Name: Power Orb 13Lv Type: Card SubType: Enchant Script: | @@ -68157,7 +68157,7 @@ Body: bonus bBaseAtk,26; - Id: 311790 AegisName: Pow_Orb_14 - Name: Power Orb 14Lv # !todo check english name + Name: Power Orb 14Lv Type: Card SubType: Enchant Script: | @@ -68166,7 +68166,7 @@ Body: bonus bBaseAtk,28; - Id: 311791 AegisName: Pow_Orb_15 - Name: Power Orb 15Lv # !todo check english name + Name: Power Orb 15Lv Type: Card SubType: Enchant Script: | @@ -68175,7 +68175,7 @@ Body: bonus bBaseAtk,30; - Id: 311792 AegisName: Pow_Orb_16 - Name: Power Orb 16Lv # !todo check english name + Name: Power Orb 16Lv Type: Card SubType: Enchant Script: | @@ -68184,7 +68184,7 @@ Body: bonus bBaseAtk,32+3*(getrefine()/4); - Id: 311793 AegisName: Pow_Orb_17 - Name: Power Orb 17Lv # !todo check english name + Name: Power Orb 17Lv Type: Card SubType: Enchant Script: | @@ -68193,7 +68193,7 @@ Body: bonus bBaseAtk,34+3*(getrefine()/3); - Id: 311794 AegisName: Pow_Orb_18 - Name: Power Orb 18Lv # !todo check english name + Name: Power Orb 18Lv Type: Card SubType: Enchant Script: | @@ -68203,7 +68203,7 @@ Body: bonus bBaseAtk,36+3*(.@r/2); - Id: 311795 AegisName: Pow_Orb_19 - Name: Power Orb 19Lv # !todo check english name + Name: Power Orb 19Lv Type: Card SubType: Enchant Script: | @@ -68213,7 +68213,7 @@ Body: bonus bBaseAtk,38+3*(.@r/2); - Id: 311796 AegisName: Pow_Orb_20 - Name: Power Orb 20Lv # !todo check english name + Name: Power Orb 20Lv Type: Card SubType: Enchant Script: | @@ -68223,42 +68223,42 @@ Body: bonus bBaseAtk,40+3*(.@r/2); - Id: 311797 AegisName: Spl_Orb_1 - Name: Spell Orb 1Lv # !todo check english name + Name: Spell Orb 1Lv Type: Card SubType: Enchant Script: | bonus bMatk,2; - Id: 311798 AegisName: Spl_Orb_2 - Name: Spell Orb 2Lv # !todo check english name + Name: Spell Orb 2Lv Type: Card SubType: Enchant Script: | bonus bMatk,4; - Id: 311799 AegisName: Spl_Orb_3 - Name: Spell Orb 3Lv # !todo check english name + Name: Spell Orb 3Lv Type: Card SubType: Enchant Script: | bonus bMatk,6; - Id: 311800 AegisName: Spl_Orb_4 - Name: Spell Orb 4Lv # !todo check english name + Name: Spell Orb 4Lv Type: Card SubType: Enchant Script: | bonus bMatk,8; - Id: 311801 AegisName: Spl_Orb_5 - Name: Spell Orb 5Lv # !todo check english name + Name: Spell Orb 5Lv Type: Card SubType: Enchant Script: | bonus bMatk,10; - Id: 311802 AegisName: Spl_Orb_6 - Name: Spell Orb 6Lv # !todo check english name + Name: Spell Orb 6Lv Type: Card SubType: Enchant Script: | @@ -68266,7 +68266,7 @@ Body: bonus bMatk,12; - Id: 311803 AegisName: Spl_Orb_7 - Name: Spell Orb 7Lv # !todo check english name + Name: Spell Orb 7Lv Type: Card SubType: Enchant Script: | @@ -68274,7 +68274,7 @@ Body: bonus bMatk,14; - Id: 311804 AegisName: Spl_Orb_8 - Name: Spell Orb 8Lv # !todo check english name + Name: Spell Orb 8Lv Type: Card SubType: Enchant Script: | @@ -68282,7 +68282,7 @@ Body: bonus bMatk,16; - Id: 311805 AegisName: Spl_Orb_9 - Name: Spell Orb 9Lv # !todo check english name + Name: Spell Orb 9Lv Type: Card SubType: Enchant Script: | @@ -68290,7 +68290,7 @@ Body: bonus bMatk,18; - Id: 311806 AegisName: Spl_Orb_10 - Name: Spell Orb 10Lv # !todo check english name + Name: Spell Orb 10Lv Type: Card SubType: Enchant Script: | @@ -68298,7 +68298,7 @@ Body: bonus bMatk,20; - Id: 311807 AegisName: Spl_Orb_11 - Name: Spell Orb 11Lv # !todo check english name + Name: Spell Orb 11Lv Type: Card SubType: Enchant Script: | @@ -68307,7 +68307,7 @@ Body: bonus bMatk,22; - Id: 311808 AegisName: Spl_Orb_12 - Name: Spell Orb 12Lv # !todo check english name + Name: Spell Orb 12Lv Type: Card SubType: Enchant Script: | @@ -68316,7 +68316,7 @@ Body: bonus bMatk,24; - Id: 311809 AegisName: Spl_Orb_13 - Name: Spell Orb 13Lv # !todo check english name + Name: Spell Orb 13Lv Type: Card SubType: Enchant Script: | @@ -68325,7 +68325,7 @@ Body: bonus bMatk,26; - Id: 311810 AegisName: Spl_Orb_14 - Name: Spell Orb 14Lv # !todo check english name + Name: Spell Orb 14Lv Type: Card SubType: Enchant Script: | @@ -68334,7 +68334,7 @@ Body: bonus bMatk,28; - Id: 311811 AegisName: Spl_Orb_15 - Name: Spell Orb 15Lv # !todo check english name + Name: Spell Orb 15Lv Type: Card SubType: Enchant Script: | @@ -68343,7 +68343,7 @@ Body: bonus bMatk,30; - Id: 311812 AegisName: Spl_Orb_16 - Name: Spell Orb Lv 16 # !todo check english name + Name: Spell Orb 16Lv Type: Card SubType: Enchant Script: | @@ -68352,7 +68352,7 @@ Body: bonus bMatk,32+3*(getrefine()/4); - Id: 311813 AegisName: Spl_Orb_17 - Name: Spell Orb Lv 17 # !todo check english name + Name: Spell Orb 17Lv Type: Card SubType: Enchant Script: | @@ -68361,7 +68361,7 @@ Body: bonus bMatk,34+3*(getrefine()/3); - Id: 311814 AegisName: Spl_Orb_18 - Name: Spell Orb 18Lv # !todo check english name + Name: Spell Orb 18Lv Type: Card SubType: Enchant Script: | @@ -68371,7 +68371,7 @@ Body: bonus bMatk,36+3*(.@r/2); - Id: 311815 AegisName: Spl_Orb_19 - Name: Spell Orb 19Lv # !todo check english name + Name: Spell Orb 19Lv Type: Card SubType: Enchant Script: | @@ -68381,7 +68381,7 @@ Body: bonus bMatk,38+3*(.@r/2); - Id: 311816 AegisName: Spl_Orb_20 - Name: Spell Orb 20Lv # !todo check english name + Name: Spell Orb 20Lv Type: Card SubType: Enchant Script: | @@ -68391,315 +68391,315 @@ Body: bonus bMatk,40+3*(.@r/2); - Id: 311817 AegisName: Warrior_Orb_1 - Name: Warrior Orb 1Lv # !todo check english name + Name: Warrior Orb 1Lv Type: Card SubType: Enchant Script: | bonus bShortAtkRate,1; - Id: 311818 AegisName: Warrior_Orb_2 - Name: Warrior Orb 2Lv # !todo check english name + Name: Warrior Orb 2Lv Type: Card SubType: Enchant Script: | bonus bShortAtkRate,2; - Id: 311819 AegisName: Warrior_Orb_3 - Name: Warrior of 3Lv # !todo check english name + Name: Warrior Orb 3Lv Type: Card SubType: Enchant Script: | bonus bShortAtkRate,3; - Id: 311820 AegisName: Warrior_Orb_4 - Name: Warrior Orb 4Lv # !todo check english name + Name: Warrior Orb 4Lv Type: Card SubType: Enchant Script: | bonus bShortAtkRate,4; - Id: 311821 AegisName: Warrior_Orb_5 - Name: Warrior Orb 5Lv # !todo check english name + Name: Warrior Orb 5Lv Type: Card SubType: Enchant Script: | bonus bShortAtkRate,5; - Id: 311822 AegisName: Warrior_Orb_6 - Name: Warrior Orb 6Lv # !todo check english name + Name: Warrior Orb 6Lv Type: Card SubType: Enchant Script: | bonus bShortAtkRate,6; - Id: 311823 AegisName: Warrior_Orb_7 - Name: Warrior of 7Lv # !todo check english name + Name: Warrior Orb 7Lv Type: Card SubType: Enchant Script: | bonus bShortAtkRate,7; - Id: 311824 AegisName: Warrior_Orb_8 - Name: Warrior of 8 Lv # !todo check english name + Name: Warrior Orb 8Lv Type: Card SubType: Enchant Script: | bonus bShortAtkRate,8; - Id: 311825 AegisName: Warrior_Orb_9 - Name: Warrior of 9Lv # !todo check english name + Name: Warrior Orb 9Lv Type: Card SubType: Enchant Script: | bonus bShortAtkRate,9; - Id: 311826 AegisName: Warrior_Orb_10 - Name: Warrior Orb 10Lv # !todo check english name + Name: Warrior Orb 10Lv Type: Card SubType: Enchant Script: | bonus bShortAtkRate,10; - Id: 311827 AegisName: Warrior_Orb_11 - Name: Warrior Orb 11Lv # !todo check english name + Name: Warrior Orb 11Lv Type: Card SubType: Enchant Script: | bonus bShortAtkRate,11; - Id: 311828 AegisName: Warrior_Orb_12 - Name: Warrior Orb 12Lv # !todo check english name + Name: Warrior Orb 12Lv Type: Card SubType: Enchant Script: | bonus bShortAtkRate,12; - Id: 311829 AegisName: Warrior_Orb_13 - Name: Warrior of 13Lv # !todo check english name + Name: Warrior Orb 13Lv Type: Card SubType: Enchant Script: | bonus bShortAtkRate,13; - Id: 311830 AegisName: Warrior_Orb_14 - Name: Warrior of 14Lv # !todo check english name + Name: Warrior Orb 14Lv Type: Card SubType: Enchant Script: | bonus bShortAtkRate,14; - Id: 311831 AegisName: Warrior_Orb_15 - Name: Warrior Orb 15Lv # !todo check english name + Name: Warrior Orb 15Lv Type: Card SubType: Enchant Script: | bonus bShortAtkRate,15; - Id: 311832 AegisName: Magician_Orb_1 - Name: Magician Orb 1Lv # !todo check english name + Name: Magicial Orb 1Lv Type: Card SubType: Enchant Script: | bonus2 bMagicAtkEle,Ele_All,1; - Id: 311833 AegisName: Magician_Orb_2 - Name: Magician Orb 2Lv # !todo check english name + Name: Magicial Orb 2Lv Type: Card SubType: Enchant Script: | bonus2 bMagicAtkEle,Ele_All,2; - Id: 311834 AegisName: Magician_Orb_3 - Name: Magician of 3Lv # !todo check english name + Name: Magicial Orb 3Lv Type: Card SubType: Enchant Script: | bonus2 bMagicAtkEle,Ele_All,3; - Id: 311835 AegisName: Magician_Orb_4 - Name: Magician of 4Lv # !todo check english name + Name: Magicial Orb 4Lv Type: Card SubType: Enchant Script: | bonus2 bMagicAtkEle,Ele_All,4; - Id: 311836 AegisName: Magician_Orb_5 - Name: Magician Orb 5Lv # !todo check english name + Name: Magicial Orb 5Lv Type: Card SubType: Enchant Script: | bonus2 bMagicAtkEle,Ele_All,5; - Id: 311837 AegisName: Magician_Orb_6 - Name: Magician Orb 6Lv # !todo check english name + Name: Magicial Orb 6Lv Type: Card SubType: Enchant Script: | bonus2 bMagicAtkEle,Ele_All,6; - Id: 311838 AegisName: Magician_Orb_7 - Name: Magician of 7Lv # !todo check english name + Name: Magicial Orb 7Lv Type: Card SubType: Enchant Script: | bonus2 bMagicAtkEle,Ele_All,7; - Id: 311839 AegisName: Magician_Orb_8 - Name: Magician of 8Lv # !todo check english name + Name: Magicial Orb 8Lv Type: Card SubType: Enchant Script: | bonus2 bMagicAtkEle,Ele_All,8; - Id: 311840 AegisName: Magician_Orb_9 - Name: Magician of 9Lv # !todo check english name + Name: Magicial Orb 9Lv Type: Card SubType: Enchant Script: | bonus2 bMagicAtkEle,Ele_All,9; - Id: 311841 AegisName: Magician_Orb_10 - Name: Magician Orb 10Lv # !todo check english name + Name: Magicial Orb 10Lv Type: Card SubType: Enchant Script: | bonus2 bMagicAtkEle,Ele_All,10; - Id: 311842 AegisName: Magician_Orb_11 - Name: Magician Orb 11Lv # !todo check english name + Name: Magicial Orb 11Lv Type: Card SubType: Enchant Script: | bonus2 bMagicAtkEle,Ele_All,11; - Id: 311843 AegisName: Magician_Orb_12 - Name: Magician Orb 12Lv # !todo check english name + Name: Magicial Orb 12Lv Type: Card SubType: Enchant Script: | bonus2 bMagicAtkEle,Ele_All,12; - Id: 311844 AegisName: Magician_Orb_13 - Name: Magician of 13Lv # !todo check english name + Name: Magicial Orb 13Lv Type: Card SubType: Enchant Script: | bonus2 bMagicAtkEle,Ele_All,13; - Id: 311845 AegisName: Magician_Orb_14 - Name: Magician of 14Lv # !todo check english name + Name: Magicial Orb 14Lv Type: Card SubType: Enchant Script: | bonus2 bMagicAtkEle,Ele_All,14; - Id: 311846 AegisName: Magician_Orb_15 - Name: Magician of 15 Lv # !todo check english name + Name: Magicial Orb 15Lv Type: Card SubType: Enchant Script: | bonus2 bMagicAtkEle,Ele_All,15; - Id: 311847 AegisName: Shooter_Orb_1 - Name: Shooter of 1Lv # !todo check english name + Name: Shooter Orb 1Lv Type: Card SubType: Enchant Script: | bonus bLongAtkRate,1; - Id: 311848 AegisName: Shooter_Orb_2 - Name: Shooter of 2Lv # !todo check english name + Name: Shooter Orb 2Lv Type: Card SubType: Enchant Script: | bonus bLongAtkRate,2; - Id: 311849 AegisName: Shooter_Orb_3 - Name: Shooter of 3Lv # !todo check english name + Name: Shooter Orb 3Lv Type: Card SubType: Enchant Script: | bonus bLongAtkRate,3; - Id: 311850 AegisName: Shooter_Orb_4 - Name: Shooter of 4Lv # !todo check english name + Name: Shooter Orb 4Lv Type: Card SubType: Enchant Script: | bonus bLongAtkRate,4; - Id: 311851 AegisName: Shooter_Orb_5 - Name: Shooter of 5Lv # !todo check english name + Name: Shooter Orb 5Lv Type: Card SubType: Enchant Script: | bonus bLongAtkRate,5; - Id: 311852 AegisName: Shooter_Orb_6 - Name: Shooter of 6Lv # !todo check english name + Name: Shooter Orb 6Lv Type: Card SubType: Enchant Script: | bonus bLongAtkRate,6; - Id: 311853 AegisName: Shooter_Orb_7 - Name: Shooter of 7Lv # !todo check english name + Name: Shooter Orb 7Lv Type: Card SubType: Enchant Script: | bonus bLongAtkRate,7; - Id: 311854 AegisName: Shooter_Orb_8 - Name: Shooter of 8Lv # !todo check english name + Name: Shooter Orb 8Lv Type: Card SubType: Enchant Script: | bonus bLongAtkRate,8; - Id: 311855 AegisName: Shooter_Orb_9 - Name: Shooter of 9Lv # !todo check english name + Name: Shooter Orb 9Lv Type: Card SubType: Enchant Script: | bonus bLongAtkRate,9; - Id: 311856 AegisName: Shooter_Orb_10 - Name: Shooter of 10Lv # !todo check english name + Name: Shooter Orb 10Lv Type: Card SubType: Enchant Script: | bonus bLongAtkRate,10; - Id: 311857 AegisName: Shooter_Orb_11 - Name: Shooter of 11Lv # !todo check english name + Name: Shooter Orb 11Lv Type: Card SubType: Enchant Script: | bonus bLongAtkRate,11; - Id: 311858 AegisName: Shooter_Orb_12 - Name: Shooter of 12Lv # !todo check english name + Name: Shooter Orb 12Lv Type: Card SubType: Enchant Script: | bonus bLongAtkRate,12; - Id: 311859 AegisName: Shooter_Orb_13 - Name: Shooter of 13Lv # !todo check english name + Name: Shooter Orb 13Lv Type: Card SubType: Enchant Script: | bonus bLongAtkRate,13; - Id: 311860 AegisName: Shooter_Orb_14 - Name: Shooter of 14 Lv # !todo check english name + Name: Shooter Orb 14Lv Type: Card SubType: Enchant Script: | bonus bLongAtkRate,14; - Id: 311861 AegisName: Shooter_Orb_15 - Name: Shooter of 15Lv # !todo check english name + Name: Shooter Orb 15Lv Type: Card SubType: Enchant Script: | @@ -71903,91 +71903,91 @@ Body: bonus bMaxSPrate,(.@r/3); - Id: 312200 AegisName: DK_Soul_SW - Name: Dragon Knight Soul (Servant Weapon) # !todo check english name + Name: Dragon Knight Soul (Servant Weapon) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"DK_SERVANTWEAPON_ATK",2+(getrefine()/2); - Id: 312201 AegisName: DK_Soul_SS - Name: Dragon Knight Soul (Storm Slash) # !todo check english name + Name: Dragon Knight Soul (Storm Slash) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"DK_STORMSLASH",2+(getrefine()/2); - Id: 312202 AegisName: DK_Soul_HS - Name: Dragon Knight Soul (Hack and Slasher) # !todo check english name + Name: Dragon Knight Soul (Hack and Slasher) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"DK_HACKANDSLASHER",2+(getrefine()/2); - Id: 312203 AegisName: DK_Soul_MC - Name: Dragon Knight Soul (Madness Crusher) # !todo check english name + Name: Dragon Knight Soul (Madness Crusher) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"DK_MADNESS_CRUSHER",2+(getrefine()/2); - Id: 312204 AegisName: IG_Soul_OS - Name: Imperial Guard Soul (Over Slash) # !todo check english name + Name: Imperial Guard Soul (Overslash) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"IG_OVERSLASH",2+(getrefine()/2); - Id: 312205 AegisName: IG_Soul_SS - Name: Imperial Guard Soul (Shield Shooting) # !todo check english name + Name: Imperial Guard Soul (Shield Shooting) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"IG_SHIELD_SHOOTING",2+(getrefine()/2); - Id: 312206 AegisName: IG_Soul_CR - Name: Imperial Guard Soul (Cross Lane) # !todo check english name + Name: Imperial Guard Soul (Cross Rain) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"IG_CROSS_RAIN",2+(getrefine()/2); - Id: 312207 AegisName: SHC_Soul_ES - Name: Shadow Cross Soul (Eternal Slash) # !todo check english name + Name: Shadow Cross Soul (Eternal Slash) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"SHC_ETERNAL_SLASH",2+(getrefine()/2); - Id: 312208 AegisName: SHC_Soul_SI - Name: Shadow Cross Soul (Savage Impact) # !todo check english name + Name: Shadow Cross Soul (Savage Impact) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"SHC_SAVAGE_IMPACT",2+(getrefine()/2); - Id: 312209 AegisName: SHC_Soul_IC - Name: Shadow Cross Soul (Impact Crater) # !todo check english name + Name: Shadow Cross Soul (Impact Crater) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"SHC_IMPACT_CRATER",2+(getrefine()/2); - Id: 312210 AegisName: SHC_Soul_SS - Name: Shadow Cross Soul (Shadow Staff) # !todo check english name + Name: Shadow Cross Soul (Shadow Stab) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"SHC_SHADOW_STAB",2+(getrefine()/2); - Id: 312211 AegisName: ABC_Soul_DS - Name: Abyss Chaser Soul (Deft Staff) # !todo check english name + Name: Abyss Chaser Soul (Deft Stab) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"ABC_DEFT_STAB",2+(getrefine()/2); - Id: 312212 AegisName: ABC_Soul_CR - Name: Abyss Chaser Soul (Chain Reaction Shot) # !todo check english name + Name: Abyss Chaser Soul (Chain Reaction Shot) Type: Card SubType: Enchant Script: | @@ -71996,35 +71996,35 @@ Body: bonus2 bSkillAtk,"ABC_CHAIN_REACTION_SHOT_ATK",2+(getrefine()/2); - Id: 312213 AegisName: ABC_Soul_FS - Name: Abyss Chaser Soul (Frenzy Shot) # !todo check english name + Name: Abyss Chaser Soul (Frenzy Shot) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"ABC_FRENZY_SHOT",2+(getrefine()/2); - Id: 312214 AegisName: ABC_Soul_AD - Name: Abyss Chaser Soul (Abyss Dagger) # !todo check english name + Name: Abyss Chaser Soul (Abyss Dagger) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"ABC_ABYSS_DAGGER",2+(getrefine()/2); - Id: 312215 AegisName: ABC_Soul_AS - Name: Abyss Chaser Soul (Abyss Square) # !todo check english name + Name: Abyss Chaser Soul (Abyss Square) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"ABC_ABYSS_SQUARE",2+(getrefine()/2); - Id: 312216 AegisName: ABC_Soul_FA - Name: Abyss Chaser Soul (From the Abyss) # !todo check english name + Name: Abyss Chaser Soul (From the Abyss) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"ABC_FROM_THE_ABYSS_ATK",2+(getrefine()/2); - Id: 312217 AegisName: CD_Soul_AB - Name: Cardinal Soul (Arbitrium) # !todo check english name + Name: Cardinal Soul (Arbitrium) Type: Card SubType: Enchant Script: | @@ -72033,21 +72033,21 @@ Body: bonus2 bSkillAtk,"CD_ARBITRIUM_ATK",2+(.@r/2); - Id: 312218 AegisName: CD_Soul_FL - Name: Cardinal Soul (Flamen) # !todo check english name + Name: Cardinal Soul (Framen) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"CD_FRAMEN",2+(getrefine()/2); - Id: 312219 AegisName: CD_Soul_PT - Name: Cardinal Soul (Petitio) # !todo check english name + Name: Cardinal Soul (Petitio) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"CD_PETITIO",2+(getrefine()/2); - Id: 312220 AegisName: IQ_Soul_FT - Name: Inquisitor Soul (Conviction) # !todo check english name + Name: Inquisitor Soul (Faith) Type: Card SubType: Enchant Script: | @@ -72056,7 +72056,7 @@ Body: bonus2 bSkillAtk,"IQ_SECOND_FAITH",2+(.@r/2); - Id: 312221 AegisName: IQ_Soul_JD - Name: Inquisitor Soul (Judgment) # !todo check english name + Name: Inquisitor Soul (Judgement) Type: Card SubType: Enchant Script: | @@ -72065,56 +72065,56 @@ Body: bonus2 bSkillAtk,"IQ_SECOND_JUDGEMENT",2+(.@r/2); - Id: 312222 AegisName: IQ_Soul_EX - Name: Inquisitor Soul (Death) # !todo check english name + Name: Inquisitor Soul (Extermination) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"IQ_SECOND_FLAME",2+(getrefine()/2); - Id: 312223 AegisName: IQ_Soul_FL - Name: Inquisitor Soul (Explosive God Bullet) # !todo check english name + Name: Inquisitor Soul (Explosion Blaster) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"IQ_EXPOSION_BLASTER",2+(getrefine()/2); - Id: 312224 AegisName: MT_Soul_AS - Name: Meister Soul (Ax Stomp) # !todo check english name + Name: Meister Soul (Axe Stomp) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"MT_AXE_STOMP",2+(getrefine()/2); - Id: 312225 AegisName: MT_Soul_SB - Name: Meister Soul (Spark Blaster) # !todo check english name + Name: Meister Soul (Spark Blaster) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"MT_SPARK_BLASTER",2+(getrefine()/2); - Id: 312226 AegisName: MT_Soul_MS - Name: Meister Soul (Mighty Smash) # !todo check english name + Name: Meister Soul (Mighty Smash) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"MT_MIGHTY_SMASH",2+(getrefine()/2); - Id: 312227 AegisName: MT_Soul_TL - Name: Meister Soul (Triple Laser) # !todo check english name + Name: Meister Soul (Triple Laser) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"MT_TRIPLE_LASER",2+(getrefine()/2); - Id: 312228 AegisName: BO_Soul_MT - Name: Violo Soul (Mahemic Thorns) # !todo check english name + Name: Biolo Soul (Mayhemic Thorns) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"BO_MAYHEMIC_THORNS",2+(getrefine()/2); - Id: 312229 AegisName: BO_Soul_AZ - Name: Biolo Soul (Acidified Zone) # !todo check english name + Name: Biolo Soul (Acidified Zone) Type: Card SubType: Enchant Script: | @@ -72125,63 +72125,63 @@ Body: bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_GROUND",2+(.@r/2); - Id: 312230 AegisName: BO_Soul_EP - Name: Violo Soul (Explosive Powder) # !todo check english name + Name: Biolo Soul (Explosive Powder) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"BO_EXPLOSIVE_POWDER",2+(getrefine()/2); - Id: 312231 AegisName: WH_Soul_GS - Name: Windhawk Soul (Gile Storm) # !todo check english name + Name: Windhawk Soul (Gale Storm) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"WH_GALESTORM",2+(getrefine()/2); - Id: 312232 AegisName: WH_Soul_CB - Name: Windhawk Soul (Creative Volt) # !todo check english name + Name: Windhawk Soul (Crescive Bolt) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"WH_CRESCIVE_BOLT",2+(getrefine()/2); - Id: 312233 AegisName: WH_Soul_HS - Name: Windhawk Soul (Hawk Rush) # !todo check english name + Name: Windhawk Soul (Hawk Rush) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"WH_HAWKRUSH",2+(getrefine()/2); - Id: 312234 AegisName: WH_Soul_ST - Name: Windhawk Soul (Solid Trap) # !todo check english name + Name: Windhawk Soul (Solid Trap) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"WH_SOLIDTRAP",2+(getrefine()/2); - Id: 312235 AegisName: WH_Soul_BT - Name: Windhawk Soul (Deep Blind Trap) # !todo check english name + Name: Windhawk Soul (Deep Blind Trap) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"WH_DEEPBLINDTRAP",2+(getrefine()/2); - Id: 312236 AegisName: WH_Soul_FT - Name: Windhawk Soul (Flame Trap) # !todo check english name + Name: Windhawk Soul (Flame Trap) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"WH_FLAMETRAP",2+(getrefine()/2); - Id: 312237 AegisName: WH_Soul_SW - Name: Windhawk Soul (Swift Trap) # !todo check english name + Name: Windhawk Soul (Swift Trap) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"WH_SWIFTTRAP",2+(getrefine()/2); - Id: 312238 AegisName: TR_Soul_RB - Name: Troubadour & Trouber Soul (Rosé Blossom) # !todo check english name + Name: Troubadour & Trouvere Soul (Rose Blossom) Type: Card SubType: Enchant Script: | @@ -72189,42 +72189,42 @@ Body: bonus2 bSkillAtk,"TR_ROSEBLOSSOM_ATK",2+(getrefine()/2); - Id: 312239 AegisName: TR_Soul_RS - Name: Troubadour & Trouber Soul (Rhythm Shooting) # !todo check english name + Name: Troubadour & Trouvere Soul (Rhythm Shooting) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"TR_RHYTHMSHOOTING",2+(getrefine()/2); - Id: 312240 AegisName: TR_Soul_MF - Name: Troubadour & Trouber Soul (Metallic Fury) # !todo check english name + Name: Troubadour & Trouvere Soul (Metallic Fury) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"TR_METALIC_FURY",2+(getrefine()/2); - Id: 312241 AegisName: AG_Soul_SV - Name: Arch Mage Soul (Soul Vulcan Strike) # !todo check english name + Name: Arch Mage Soul (Soul Vulcan Strike) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"AG_SOUL_VC_STRIKE",2+(getrefine()/2); - Id: 312242 AegisName: AG_Soul_MI - Name: Ark Mage Soul (Mystery Illusion) # !todo check english name + Name: Arch Mage Soul (Mystery Illusion) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"AG_MYSTERY_ILLUSION",2+(getrefine()/2); - Id: 312243 AegisName: AG_Soul_FF - Name: Arch Mage Soul (Floral Flare Rod) # !todo check english name + Name: Arch Mage Soul (Floral Flare Road) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"AG_FLORAL_FLARE_ROAD",2+(getrefine()/2); - Id: 312244 AegisName: AG_Soul_CA - Name: Arch Mage Soul (Crimson Arrow) # !todo check english name + Name: Arch Mage Soul (Crimson Arrow) Type: Card SubType: Enchant Script: | @@ -72233,119 +72233,119 @@ Body: bonus2 bSkillAtk,"AG_CRIMSON_ARROW_ATK",2+(.@r/2); - Id: 312245 AegisName: AG_Soul_RC - Name: Arch Mage Soul (Rain of Crystal) # !todo check english name + Name: Arch Mage Soul (Rain of Crystal) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"AG_RAIN_OF_CRYSTAL",2+(getrefine()/2); - Id: 312246 AegisName: AG_Soul_FS - Name: Arch Mage Soul (Frozen Slash) # !todo check english name + Name: Arch Mage Soul (Frozen Slash) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"AG_FROZEN_SLASH",2+(getrefine()/2); - Id: 312247 AegisName: AG_Soul_TS - Name: Arch Mage Soul (Tornado Storm) # !todo check english name + Name: Arch Mage Soul (Tornado Storm) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"AG_TORNADO_STORM",2+(getrefine()/2); - Id: 312248 AegisName: AG_Soul_SC - Name: Arch Mage Soul (Storm Cannon) # !todo check english name + Name: Arch Mage Soul (Storm Cannon) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"AG_STORM_CANNON",2+(getrefine()/2); - Id: 312249 AegisName: AG_Soul_ST - Name: Arch Mage Soul (Stratum Trammer) # !todo check english name + Name: Arch Mage Soul (Stratum Tremor) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"AG_STRANTUM_TREMOR",2+(getrefine()/2); - Id: 312250 AegisName: AG_Soul_RD - Name: Arch Mage Soul (Lock Down) # !todo check english name + Name: Arch Mage Soul (Rock Down) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"AG_ROCK_DOWN",2+(getrefine()/2); - Id: 312251 AegisName: EM_Soul_DS - Name: Elemental Master Soul (Diamond Storm) # !todo check english name + Name: Elemental Master Soul (Diamond Storm) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"EM_DIAMOND_STORM",2+(getrefine()/2); - Id: 312252 AegisName: EM_Soul_CF - Name: Elemental Master Soul (Configuration) # !todo check english name + Name: Elemental Master Soul (Conflagration) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"EM_CONFLAGRATION",2+(getrefine()/2); - Id: 312253 AegisName: EM_Soul_LD - Name: Elemental Master Soul (Lightning Land) # !todo check english name + Name: Elemental Master Soul (Lightning Land) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"EM_LIGHTNING_LAND",2+(getrefine()/2); - Id: 312254 AegisName: EM_Soul_TD - Name: Elemental Master Soul (Tera Drive) # !todo check english name + Name: Elemental Master Soul (Terra Drive) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"EM_TERRA_DRIVE",2+(getrefine()/2); - Id: 312255 AegisName: EM_Soul_VS - Name: Elemental Master Soul (Venom Swamp) # !todo check english name + Name: Elemental Master Soul (Venom Swamp) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"EM_VENOM_SWAMP",2+(getrefine()/2); - Id: 312256 AegisName: NW_Soul_VN - Name: Night's Watch Soul (The Vigilant at Night) # !todo check english name + Name: Night Watch Soul (The Vigilante at Night) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"NW_THE_VIGILANTE_AT_NIGHT",2+(getrefine()/2); - Id: 312257 AegisName: NW_Soul_SS - Name: Night Watch Soul (Spiral Shooting) # !todo check english name + Name: Night Watch Soul (Spiral Shooting) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"NW_SPIRAL_SHOOTING",2+(getrefine()/2); - Id: 312258 AegisName: NW_Soul_OB - Name: Night Watch Soul (Only One Bullet) # !todo check english name + Name: Night Watch Soul (Only One Bullet) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"NW_ONLY_ONE_BULLET",2+(getrefine()/2); - Id: 312259 AegisName: NW_Soul_WF - Name: Night Watch Soul (Wild Fire) # !todo check english name + Name: Night Watch Soul (Wild Fire) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"NW_WILD_FIRE",2+(getrefine()/2); - Id: 312260 AegisName: NW_Soul_MO - Name: Night Watch Soul (Magazine for One) # !todo check english name + Name: Night Watch Soul (Magazine for One) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"NW_MAGAZINE_FOR_ONE",2+(getrefine()/2); - Id: 312261 AegisName: NW_Soul_GR - Name: Night Watch Soul (Grenade) # !todo check english name + Name: Night Watch Soul (Grenade) Type: Card SubType: Enchant Script: | @@ -72355,266 +72355,267 @@ Body: bonus2 bSkillAtk,"NW_GRENADES_DROPPING",2+(.@r/2); - Id: 312262 AegisName: SH_Soul_HB - Name: Spirit Spirit Soul (Hyeonrok's Leaf Wind) # !todo check english name + Name: Spirit Handler Soul (Hyunrok Breeze) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"SH_HYUN_ROKS_BREEZE",2+(getrefine()/2); - Id: 312263 AegisName: SH_Soul_HC - Name: Spirit Spirit Soul (Hyeonrokpo) # !todo check english name + Name: Spirit Handler Soul (Hyunrok Cannon) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"SH_HYUN_ROK_CANNON",2+(getrefine()/2); - Id: 312264 AegisName: SH_Soul_CS - Name: Spirit Spirit Soul # !todo check english name + Name: Spirit Handler Soul (Chulho Sonic Claw) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"SH_CHUL_HO_SONIC_CLAW",2+(getrefine()/2); - Id: 312265 AegisName: SH_Soul_HS - Name: Spirit Spirit Soul # !todo check english name + Name: Spirit Handler Soul (Hogogong Strike) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"SH_HOGOGONG_STRIKE",2+(getrefine()/2); - Id: 312266 AegisName: SS_Soul_FS - Name: Shinkiro & Shiranui Soul (Fouma Shuriken - Seized) # !todo check english name + Name: Shinkiro & Shiranui Soul (Huuma Shuriken - Grasp) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"SS_FUUMASHOUAKU",2+(getrefine()/2); - Id: 312267 AegisName: SS_Soul_FK - Name: Shinkiro & Shiranui Soul (Fouma Shuriken - Build) # !todo check english name + # Name: Shinkiro & Shiranui Soul (Huuma Shuriken - Construct) + Name: Shinkiro & Shiranui Soul (Huuma Shuriken - Constr Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"SS_FUUMAKOUCHIKU",2+(getrefine()/2); - Id: 312268 AegisName: SS_Soul_SH - Name: Shinkiro & Shiranui Soul (Red Flame Cannon) # !todo check english name + Name: Shinkiro & Shiranui Soul (Red Flame Cannon) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"SS_SEKIENHOU",2+(getrefine()/2); - Id: 312269 AegisName: SS_Soul_RH - Name: Shinkiro & Shiranui Soul (Cold Blooded) # !todo check english name + Name: Shinkiro & Shiranui Soul (Cold Blooded Cannon) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"SS_REIKETSUHOU",2+(getrefine()/2); - Id: 312270 AegisName: SS_Soul_RDH - Name: Shinkiro & Shiranui Soul (Thunderbolt Cannon) # !todo check english name + Name: Shinkiro & Shiranui Soul (Thundering Cannon) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"SS_RAIDENPOU",2+(getrefine()/2); - Id: 312271 AegisName: SS_Soul_KH - Name: Shinkiro & Shiranui Soul (Golden Dragon Cannon) # !todo check english name + Name: Shinkiro & Shiranui Soul (Golden Dragon Cannon) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"SS_KINRYUUHOU",2+(getrefine()/2); - Id: 312272 AegisName: SS_Soul_AH - Name: Shinkiro & Shiranui Soul (Dark Gun) # !todo check english name + Name: Shinkiro & Shiranui Soul (Darkening Cannon) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"SS_ANTENPOU",2+(getrefine()/2); - Id: 312273 AegisName: SS_Soul_KW - Name: Shinkiro & Shiranui Soul (Kunai - Distortion) # !todo check english name + Name: Shinkiro & Shiranui Soul (Kunai - Distortion) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"SS_KUNAIWAIKYOKU",2+(getrefine()/2); - Id: 312274 AegisName: SS_Soul_KK - Name: Shinkiro & Shiranui Soul (Kunai-Refraction) # !todo check english name + Name: Shinkiro & Shiranui Soul (Kunai - Refraction) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"SS_KUNAIKUSSETSU",2+(getrefine()/2); - Id: 312275 AegisName: SS_Soul_KN - Name: Shinkiro & Shiranui Soul (Shadow Dance) # !todo check english name + Name: Shinkiro & Shiranui Soul (Shadow Dance) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"SS_KAGENOMAI",2+(getrefine()/2); - Id: 312276 AegisName: SS_Soul_KG - Name: Shinkiro & Shiranui Soul (One Island of Shadows) # !todo check english name + Name: Shinkiro & Shiranui Soul (Shadow Flash) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"SS_KAGEGISSEN",2+(getrefine()/2); - Id: 312277 AegisName: SKE_Soul_NB - Name: Celestial Soul (Taecheon Ilyang) # !todo check english name + Name: Sky Emperor Soul (Noon Blast) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"SKE_NOON_BLAST",2+(getrefine()/2); - Id: 312278 AegisName: SKE_Soul_SB - Name: Celestial Soul (Chunyang) # !todo check english name + Name: Sky Emperor Soul (Sunset Blast) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"SKE_SUNSET_BLAST",2+(getrefine()/2); - Id: 312279 AegisName: SKE_Soul_MK - Name: Celestial Soul (Taecheon Sun Moon) # !todo check english name + Name: Sky Emperor Soul (Midnight Kick) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"SKE_MIDNIGHT_KICK",2+(getrefine()/2); - Id: 312280 AegisName: SKE_Soul_DB - Name: Celestial Soul (Thousand Moon) # !todo check english name + Name: Sky Emperor Soul (Dawn Break) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"SKE_DAWN_BREAK",2+(getrefine()/2); - Id: 312281 AegisName: SKE_Soul_TG - Name: Heavenly Soul (Cheonjemanseong) # !todo check english name + Name: Sky Emperor Soul (Twinkling Galaxy) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"SKE_TWINKLING_GALAXY",2+(getrefine()/2); - Id: 312282 AegisName: SKE_Soul_SC - Name: Celestial Soul (Celestial) # !todo check english name + Name: Sky Emperor Soul (Star Cannon) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"SKE_STAR_CANNON",2+(getrefine()/2); - Id: 312283 AegisName: SOA_Soul_BD - Name: Yeongdosa Soul (Blue Dragon) # !todo check english name + Name: Soul Ascetic Soul (Talisman of Blue Dragon) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"SOA_TALISMAN_OF_BLUE_DRAGON",2+(getrefine()/2); - Id: 312284 AegisName: SOA_Soul_WT - Name: Young Dosa Soul (White Tiger) # !todo check english name + Name: Soul Ascetic Soul (Talisman of White Tiger) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"SOA_TALISMAN_OF_WHITE_TIGER",2+(getrefine()/2); - Id: 312285 AegisName: SOA_Soul_RP - Name: Soul of the Leader (Master) # !todo check english name + Name: Soul Ascetic Soul (Talisman of Red Phoenix) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"SOA_TALISMAN_OF_RED_PHOENIX",2+(getrefine()/2); - Id: 312286 AegisName: SOA_Soul_BT - Name: Yeongdosa Soul (Hyunmubu) # !todo check english name + Name: Soul Ascetic Soul (Talisman of Black Tortoise) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"SOA_TALISMAN_OF_BLACK_TORTOISE",2+(getrefine()/2); - Id: 312287 AegisName: SOA_Soul_MS - Name: Leader Soul (Purification of the Dead) # !todo check english name + Name: Soul Ascetic Soul (Exorcism of Malicious Soul) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"SOA_EXORCISM_OF_MALICIOUS_SOUL",2+(getrefine()/2); - Id: 312288 AegisName: SOA_Soul_SS - Name: Leader Soul (Leadership Department) # !todo check english name + Name: Soul Ascetic Soul (Talisman of Soul Stealing) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"SOA_TALISMAN_OF_SOUL_STEALING",2+(getrefine()/2); - Id: 312289 AegisName: SOA_Soul_FG - Name: Young Dosa Soul (Bride of the four directions) # !todo check english name + Name: Soul Ascetic Soul (Talisman of Four Bearing God) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"SOA_TALISMAN_OF_FOUR_BEARING_GOD",2+(getrefine()/2); - Id: 312290 AegisName: HN_Soul_DB - Name: Hyper Novice Soul (Double Bowling Bash) # !todo check english name + Name: Hyper Novice Soul (Double Double Bash) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"HN_DOUBLEBOWLINGBASH",2+(getrefine()/2); - Id: 312291 AegisName: HN_Soul_SB - Name: Hyper Novice Soul (Mega Sonic Blow) # !todo check english name + Name: Hyper Novice Soul (Mega Sonic Blow) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"HN_MEGA_SONIC_BLOW",2+(getrefine()/2); - Id: 312292 AegisName: HN_Soul_SC - Name: Hyper Novice Soul (Shield Chain Rush) # !todo check english name + Name: Hyper Novice Soul (Shield Chain Rush) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"HN_SHIELD_CHAIN_RUSH",2+(getrefine()/2); - Id: 312293 AegisName: HN_Soul_SP - Name: Hyper Novice Soul (Spiral Pierce Max) # !todo check english name + Name: Hyper Novice Soul (Spiral Pierce Max) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"HN_SPIRAL_PIERCE_MAX",2+(getrefine()/2); - Id: 312294 AegisName: HN_Soul_MS - Name: Hyper Novice Soul (Meteor Storm Buster) # !todo check english name + Name: Hyper Novice Soul (Meteor Storm Buster) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"HN_METEOR_STORM_BUSTER",2+(getrefine()/2); - Id: 312295 AegisName: HN_Soul_JT - Name: Hyper Novice Soul (Jupitel Thunder Storm) # !todo check english name + Name: Hyper Novice Soul (Jupitel Thunderstorm) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"HN_JUPITEL_THUNDER_STORM",2+(getrefine()/2); - Id: 312296 AegisName: HN_Soul_JF - Name: Hyper Novice Soul (Jack Frost Nova) # !todo check english name + Name: Hyper Novice Soul (Jack Frost Nova) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"HN_JACK_FROST_NOVA",2+(getrefine()/2); - Id: 312297 AegisName: HN_Soul_HD - Name: Hyper Novice Soul (Hell's Drive) # !todo check english name + Name: Hyper Novice Soul (Hell's Drive) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"HN_HELLS_DRIVE",2+(getrefine()/2); - Id: 312298 AegisName: HN_Soul_GG - Name: Hyper Novice Soul (Ground Gravitation) # !todo check english name + Name: Hyper Novice Soul (Ground Gravitation) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"HN_GROUND_GRAVITATION",2+(getrefine()/2); - Id: 312299 AegisName: HN_Soul_NV - Name: Hyper Novice Soul (Napalm Vulcan Strike) # !todo check english name + Name: Hyper Novice Soul (Napalm Vulcan Strike) Type: Card SubType: Enchant Script: | @@ -74408,102 +74409,102 @@ Body: SubType: Enchant - Id: 312453 AegisName: aegis_312453 - Name: Constellation Barrier (1) # !todo check english name + Name: Constellation's Barrier (1) Type: Card SubType: Enchant - Id: 312454 AegisName: aegis_312454 - Name: Constellation Barrier (2) # !todo check english name + Name: Constellation's Barrier (2) Type: Card SubType: Enchant - Id: 312455 AegisName: aegis_312455 - Name: Constellation Barrier (3) # !todo check english name + Name: Constellation's Barrier (3) Type: Card SubType: Enchant - Id: 312456 AegisName: aegis_312456 - Name: Constellation Barrier (4) # !todo check english name + Name: Constellation's Barrier (4) Type: Card SubType: Enchant - Id: 312457 AegisName: aegis_312457 - Name: Constellation Barrier (5) # !todo check english name + Name: Constellation's Barrier (5) Type: Card SubType: Enchant - Id: 312458 AegisName: aegis_312458 - Name: Constellation Barrier (6) # !todo check english name + Name: Constellation's Barrier (6) Type: Card SubType: Enchant - Id: 312459 AegisName: aegis_312459 - Name: Constellation Barrier (7) # !todo check english name + Name: Constellation's Barrier (7) Type: Card SubType: Enchant - Id: 312460 AegisName: aegis_312460 - Name: Constellation Barrier (8) # !todo check english name + Name: Constellation's Barrier (8) Type: Card SubType: Enchant - Id: 312461 AegisName: aegis_312461 - Name: Constellation Barrier (9) # !todo check english name + Name: Constellation's Barrier (9) Type: Card SubType: Enchant - Id: 312462 AegisName: aegis_312462 - Name: Constellation Barrier (10) # !todo check english name + Name: Constellation's Barrier (10) Type: Card SubType: Enchant - Id: 312463 AegisName: aegis_312463 - Name: Constellation Barrier (11) # !todo check english name + Name: Constellation's Barrier (11) Type: Card SubType: Enchant - Id: 312464 AegisName: aegis_312464 - Name: Constellation Barrier (12) # !todo check english name + Name: Constellation's Barrier (12) Type: Card SubType: Enchant - Id: 312465 AegisName: aegis_312465 - Name: Constellation Barrier (13) # !todo check english name + Name: Constellation's Barrier (13) Type: Card SubType: Enchant - Id: 312466 AegisName: aegis_312466 - Name: Constellation Barrier (14) # !todo check english name + Name: Constellation's Barrier (14) Type: Card SubType: Enchant - Id: 312467 AegisName: aegis_312467 - Name: Constellation Barrier (15) # !todo check english name + Name: Constellation's Barrier (15) Type: Card SubType: Enchant - Id: 312468 AegisName: aegis_312468 - Name: Constellation Barrier (16) # !todo check english name + Name: Constellation's Barrier (16) Type: Card SubType: Enchant - Id: 312469 AegisName: aegis_312469 - Name: Constellation Barrier (17) # !todo check english name + Name: Constellation's Barrier (17) Type: Card SubType: Enchant - Id: 312470 AegisName: aegis_312470 - Name: Constellation Barrier (18) # !todo check english name + Name: Constellation's Barrier (18) Type: Card SubType: Enchant - Id: 312471 AegisName: aegis_312471 - Name: Constellation Barrier (19) # !todo check english name + Name: Constellation's Barrier (19) Type: Card SubType: Enchant - Id: 312472 AegisName: aegis_312472 - Name: Constellation Barrier (20) # !todo check english name + Name: Constellation's Barrier (20) Type: Card SubType: Enchant - Id: 312473 @@ -74546,7 +74547,7 @@ Body: bonus bLongAtkRate,2*getskilllv("MT_M_MACHINE"); - Id: 312479 AegisName: Physical_Seed_1 - Name: Seed of Might 1Lv # !todo check english name + Name: Physical Seed 1Lv Type: Card SubType: Enchant Script: | @@ -74554,7 +74555,7 @@ Body: bonus bDef,5; - Id: 312480 AegisName: Physical_Seed_2 - Name: Seed of Might 2Lv # !todo check english name + Name: Physical Seed 2Lv Type: Card SubType: Enchant Script: | @@ -74562,7 +74563,7 @@ Body: bonus bDef,10; - Id: 312481 AegisName: Physical_Seed_3 - Name: Seed of Might 3Lv # !todo check english name + Name: Physical Seed 3Lv Type: Card SubType: Enchant Script: | @@ -74570,7 +74571,7 @@ Body: bonus bDef,15; - Id: 312482 AegisName: Physical_Seed_4 - Name: Seed of Might 4Lv # !todo check english name + Name: Physical Seed 4Lv Type: Card SubType: Enchant Script: | @@ -74578,7 +74579,7 @@ Body: bonus bDef,20; - Id: 312483 AegisName: Physical_Seed_5 - Name: Seed of Strength 5Lv # !todo check english name + Name: Physical Seed 5Lv Type: Card SubType: Enchant Script: | @@ -74586,7 +74587,7 @@ Body: bonus bDef,25; - Id: 312484 AegisName: Physical_Seed_6 - Name: Seed of Might 6Lv # !todo check english name + Name: Physical Seed 6Lv Type: Card SubType: Enchant Script: | @@ -74594,7 +74595,7 @@ Body: bonus bDef,30; - Id: 312485 AegisName: Physical_Seed_7 - Name: Seed of Might 7Lv # !todo check english name + Name: Physical Seed 7Lv Type: Card SubType: Enchant Script: | @@ -74602,7 +74603,7 @@ Body: bonus bDef,35; - Id: 312486 AegisName: Physical_Seed_8 - Name: Seed of Might 8Lv # !todo check english name + Name: Physical Seed 8Lv Type: Card SubType: Enchant Script: | @@ -74610,7 +74611,7 @@ Body: bonus bDef,40; - Id: 312487 AegisName: Physical_Seed_9 - Name: Seed of Might 9Lv # !todo check english name + Name: Physical Seed 9Lv Type: Card SubType: Enchant Script: | @@ -74618,7 +74619,7 @@ Body: bonus bDef,45; - Id: 312488 AegisName: Physical_Seed_10 - Name: Seed of Strength 10Lv # !todo check english name + Name: Physical Seed 10Lv Type: Card SubType: Enchant Script: | @@ -74626,7 +74627,7 @@ Body: bonus bDef,50; - Id: 312489 AegisName: Magical_Seed_1 - Name: Seed of Magic 1Lv # !todo check english name + Name: Magical Seed 1Lv Type: Card SubType: Enchant Script: | @@ -74634,7 +74635,7 @@ Body: bonus bDef,5; - Id: 312490 AegisName: Magical_Seed_2 - Name: Seed of Magic 2Lv # !todo check english name + Name: Magical Seed 2Lv Type: Card SubType: Enchant Script: | @@ -74642,7 +74643,7 @@ Body: bonus bDef,10; - Id: 312491 AegisName: Magical_Seed_3 - Name: Seed of Magic 3Lv # !todo check english name + Name: Magical Seed 3Lv Type: Card SubType: Enchant Script: | @@ -74650,7 +74651,7 @@ Body: bonus bDef,15; - Id: 312492 AegisName: Magical_Seed_4 - Name: Seed of Magic 4Lv # !todo check english name + Name: Magical Seed 4Lv Type: Card SubType: Enchant Script: | @@ -74658,7 +74659,7 @@ Body: bonus bDef,20; - Id: 312493 AegisName: Magical_Seed_5 - Name: Seed of Magic 5Lv # !todo check english name + Name: Magical Seed 5Lv Type: Card SubType: Enchant Script: | @@ -74666,7 +74667,7 @@ Body: bonus bDef,25; - Id: 312494 AegisName: Magical_Seed_6 - Name: Seed of Magic 6Lv # !todo check english name + Name: Magical Seed 6Lv Type: Card SubType: Enchant Script: | @@ -74674,7 +74675,7 @@ Body: bonus bDef,30; - Id: 312495 AegisName: Magical_Seed_7 - Name: Seed of Magic 7Lv # !todo check english name + Name: Magical Seed 7Lv Type: Card SubType: Enchant Script: | @@ -74682,7 +74683,7 @@ Body: bonus bDef,35; - Id: 312496 AegisName: Magical_Seed_8 - Name: Seed of Magic 8Lv # !todo check english name + Name: Magical Seed 8Lv Type: Card SubType: Enchant Script: | @@ -74690,7 +74691,7 @@ Body: bonus bDef,40; - Id: 312497 AegisName: Magical_Seed_9 - Name: Seed of Magic 9Lv # !todo check english name + Name: Magical Seed 9Lv Type: Card SubType: Enchant Script: | @@ -74698,7 +74699,7 @@ Body: bonus bDef,45; - Id: 312498 AegisName: Magical_Seed_10 - Name: Seed of Magic 10Lv # !todo check english name + Name: Magical Seed 10Lv Type: Card SubType: Enchant Script: | @@ -74706,7 +74707,7 @@ Body: bonus bDef,50; - Id: 312499 AegisName: Physical_Leaf_1 - Name: Leaf of Might 1Lv # !todo check english name + Name: Physical Leaf 1Lv Type: Card SubType: Enchant Script: | @@ -74714,7 +74715,7 @@ Body: bonus bDef,50; - Id: 312500 AegisName: Physical_Leaf_2 - Name: Leaf of Might 2Lv # !todo check english name + Name: Physical Leaf 2Lv Type: Card SubType: Enchant Script: | @@ -74722,7 +74723,7 @@ Body: bonus bDef,50; - Id: 312501 AegisName: Physical_Leaf_3 - Name: Leaf of Might 3Lv # !todo check english name + Name: Physical Leaf 3Lv Type: Card SubType: Enchant Script: | @@ -74730,7 +74731,7 @@ Body: bonus bDef,50; - Id: 312502 AegisName: Physical_Leaf_4 - Name: Leaf of Might 4Lv # !todo check english name + Name: Physical Leaf 4Lv Type: Card SubType: Enchant Script: | @@ -74738,7 +74739,7 @@ Body: bonus bDef,50; - Id: 312503 AegisName: Physical_Leaf_5 - Name: Leaf of Might 5Lv # !todo check english name + Name: Physical Leaf 5Lv Type: Card SubType: Enchant Script: | @@ -74746,7 +74747,7 @@ Body: bonus bDef,50; - Id: 312504 AegisName: Magical_Leaf_1 - Name: Magic Leaf 1Lv # !todo check english name + Name: Magical Leaf 1Lv Type: Card SubType: Enchant Script: | @@ -74754,7 +74755,7 @@ Body: bonus bDef,50; - Id: 312505 AegisName: Magical_Leaf_2 - Name: Magical Leaf 2Lv # !todo check english name + Name: Magical Leaf 2Lv Type: Card SubType: Enchant Script: | @@ -74762,7 +74763,7 @@ Body: bonus bDef,50; - Id: 312506 AegisName: Magical_Leaf_3 - Name: Magical Leaf 3Lv # !todo check english name + Name: Magical Leaf 3Lv Type: Card SubType: Enchant Script: | @@ -74770,7 +74771,7 @@ Body: bonus bDef,50; - Id: 312507 AegisName: Magical_Leaf_4 - Name: Magical Leaf 4Lv # !todo check english name + Name: Magical Leaf 4Lv Type: Card SubType: Enchant Script: | @@ -74778,7 +74779,7 @@ Body: bonus bDef,50; - Id: 312508 AegisName: Magical_Leaf_5 - Name: Magical Leaf 5Lv # !todo check english name + Name: Magical Leaf 5Lv Type: Card SubType: Enchant Script: | @@ -74786,7 +74787,7 @@ Body: bonus bDef,50; - Id: 312509 AegisName: Physical_Flower_1 - Name: Flower of Strength 1Lv # !todo check english name + Name: Physical Flower 1Lv Type: Card SubType: Enchant Script: | @@ -74796,7 +74797,7 @@ Body: bonus bRes,5; - Id: 312510 AegisName: Physical_Flower_2 - Name: Flower of Might 2Lv # !todo check english name + Name: Physical Flower 2Lv Type: Card SubType: Enchant Script: | @@ -74806,7 +74807,7 @@ Body: bonus bRes,10; - Id: 312511 AegisName: Physical_Flower_3 - Name: Flower of Strength 3Lv # !todo check english name + Name: Physical Flower 3Lv Type: Card SubType: Enchant Script: | @@ -74816,7 +74817,7 @@ Body: bonus bRes,15; - Id: 312512 AegisName: Physical_Flower_4 - Name: Flower of Strength 4Lv # !todo check english name + Name: Physical Flower 4Lv Type: Card SubType: Enchant Script: | @@ -74826,7 +74827,7 @@ Body: bonus bRes,20; - Id: 312513 AegisName: Physical_Flower_5 - Name: Flower of Strength 5Lv # !todo check english name + Name: Physical Flower 5Lv Type: Card SubType: Enchant Script: | @@ -74836,7 +74837,7 @@ Body: bonus bRes,25; - Id: 312514 AegisName: Magical_Flower_1 - Name: Magical Flower 1Lv # !todo check english name + Name: Magical Flower 1Lv Type: Card SubType: Enchant Script: | @@ -74846,7 +74847,7 @@ Body: bonus bRes,5; - Id: 312515 AegisName: Magical_Flower_2 - Name: Magical Flower 2Lv # !todo check english name + Name: Magical Flower 2Lv Type: Card SubType: Enchant Script: | @@ -74856,7 +74857,7 @@ Body: bonus bRes,10; - Id: 312516 AegisName: Magical_Flower_3 - Name: Magical Flower 3Lv # !todo check english name + Name: Magical Flower 3Lv Type: Card SubType: Enchant Script: | @@ -74866,7 +74867,7 @@ Body: bonus bRes,15; - Id: 312517 AegisName: Magical_Flower_4 - Name: Magical Flower 4Lv # !todo check english name + Name: Magical Flower 4Lv Type: Card SubType: Enchant Script: | @@ -74876,7 +74877,7 @@ Body: bonus bRes,20; - Id: 312518 AegisName: Magical_Flower_5 - Name: Magical Flower 5Lv # !todo check english name + Name: Magical Flower 5Lv Type: Card SubType: Enchant Script: | @@ -74886,7 +74887,7 @@ Body: bonus bRes,25; - Id: 312519 AegisName: Physical_Fruit_1 - Name: Fruit of Strength 1Lv # !todo check english name + Name: Physical Fruit 1Lv Type: Card SubType: Enchant Script: | @@ -74894,7 +74895,7 @@ Body: bonus bDef,5; - Id: 312520 AegisName: Physical_Fruit_2 - Name: Fruit of Strength 2Lv # !todo check english name + Name: Physical Fruit 2Lv Type: Card SubType: Enchant Script: | @@ -74902,7 +74903,7 @@ Body: bonus bDef,10; - Id: 312521 AegisName: Physical_Fruit_3 - Name: Fruit of Strength 3Lv # !todo check english name + Name: Physical Fruit 3Lv Type: Card SubType: Enchant Script: | @@ -74910,7 +74911,7 @@ Body: bonus bDef,15; - Id: 312522 AegisName: Physical_Fruit_4 - Name: Fruit of Strength 4Lv # !todo check english name + Name: Physical Fruit 4Lv Type: Card SubType: Enchant Script: | @@ -74918,7 +74919,7 @@ Body: bonus bDef,20; - Id: 312523 AegisName: Physical_Fruit_5 - Name: Fruit of Strength 5Lv # !todo check english name + Name: Physical Fruit 5Lv Type: Card SubType: Enchant Script: | @@ -74926,7 +74927,7 @@ Body: bonus bDef,25; - Id: 312524 AegisName: Physical_Fruit_6 - Name: Fruit of Strength 6Lv # !todo check english name + Name: Physical Fruit 6Lv Type: Card SubType: Enchant Script: | @@ -74934,7 +74935,7 @@ Body: bonus bDef,30; - Id: 312525 AegisName: Physical_Fruit_7 - Name: Fruit of Strength 7Lv # !todo check english name + Name: Physical Fruit 7Lv Type: Card SubType: Enchant Script: | @@ -74942,7 +74943,7 @@ Body: bonus bDef,35; - Id: 312526 AegisName: Physical_Fruit_8 - Name: Fruit of Strength 8Lv # !todo check english name + Name: Physical Fruit 8Lv Type: Card SubType: Enchant Script: | @@ -74950,7 +74951,7 @@ Body: bonus bDef,40; - Id: 312527 AegisName: Physical_Fruit_9 - Name: Fruit of Strength 9Lv # !todo check english name + Name: Physical Fruit 9Lv Type: Card SubType: Enchant Script: | @@ -74958,7 +74959,7 @@ Body: bonus bDef,45; - Id: 312528 AegisName: Physical_Fruit_10 - Name: Fruit of Strength 10Lv # !todo check english name + Name: Physical Fruit 10Lv Type: Card SubType: Enchant Script: | @@ -74966,7 +74967,7 @@ Body: bonus bDef,50; - Id: 312529 AegisName: Physical_Fruit_11 - Name: Fruit of Strength 11Lv # !todo check english name + Name: Physical Fruit 11Lv Type: Card SubType: Enchant Script: | @@ -74975,7 +74976,7 @@ Body: bonus bDef,50; - Id: 312530 AegisName: Physical_Fruit_12 - Name: Fruit of Strength 12Lv # !todo check english name + Name: Physical Fruit 12Lv Type: Card SubType: Enchant Script: | @@ -74984,7 +74985,7 @@ Body: bonus bDef,50; - Id: 312531 AegisName: Physical_Fruit_13 - Name: Fruit of Strength 13Lv # !todo check english name + Name: Physical Fruit 13Lv Type: Card SubType: Enchant Script: | @@ -74993,7 +74994,7 @@ Body: bonus bDef,50; - Id: 312532 AegisName: Physical_Fruit_14 - Name: Fruit of Strength 14Lv # !todo check english name + Name: Physical Fruit 14Lv Type: Card SubType: Enchant Script: | @@ -75002,7 +75003,7 @@ Body: bonus bDef,50; - Id: 312533 AegisName: Physical_Fruit_15 - Name: Fruit of Strength 15Lv # !todo check english name + Name: Physical Fruit 15Lv Type: Card SubType: Enchant Script: | @@ -75011,7 +75012,7 @@ Body: bonus bDef,50; - Id: 312534 AegisName: Physical_Fruit_16 - Name: Fruit of Strength 16Lv # !todo check english name + Name: Physical Fruit 16Lv Type: Card SubType: Enchant Script: | @@ -75021,7 +75022,7 @@ Body: bonus2 bAddSize,Size_All,3; - Id: 312535 AegisName: Physical_Fruit_17 - Name: Fruit of Strength 17Lv # !todo check english name + Name: Physical Fruit 17Lv Type: Card SubType: Enchant Script: | @@ -75031,7 +75032,7 @@ Body: bonus2 bAddSize,Size_All,6; - Id: 312536 AegisName: Physical_Fruit_18 - Name: Fruit of Strength 18Lv # !todo check english name + Name: Physical Fruit 18Lv Type: Card SubType: Enchant Script: | @@ -75041,7 +75042,7 @@ Body: bonus2 bAddSize,Size_All,9; - Id: 312537 AegisName: Physical_Fruit_19 - Name: Fruit of Strength 19Lv # !todo check english name + Name: Physical Fruit 19Lv Type: Card SubType: Enchant Script: | @@ -75051,7 +75052,7 @@ Body: bonus2 bAddSize,Size_All,12; - Id: 312538 AegisName: Physical_Fruit_20 - Name: Fruit of Strength 20Lv # !todo check english name + Name: Physical Fruit 20Lv Type: Card SubType: Enchant Script: | @@ -75061,7 +75062,7 @@ Body: bonus2 bAddSize,Size_All,15; - Id: 312539 AegisName: Magical_Fruit_1 - Name: Magic Fruit 1Lv # !todo check english name + Name: Magical Fruit 1Lv Type: Card SubType: Enchant Script: | @@ -75069,7 +75070,7 @@ Body: bonus bDef,5; - Id: 312540 AegisName: Magical_Fruit_2 - Name: Magic Fruit 2Lv # !todo check english name + Name: Magical Fruit 2Lv Type: Card SubType: Enchant Script: | @@ -75077,7 +75078,7 @@ Body: bonus bDef,10; - Id: 312541 AegisName: Magical_Fruit_3 - Name: Magic Fruit 3Lv # !todo check english name + Name: Magical Fruit 3Lv Type: Card SubType: Enchant Script: | @@ -75085,7 +75086,7 @@ Body: bonus bDef,15; - Id: 312542 AegisName: Magical_Fruit_4 - Name: Magic Fruit 4Lv # !todo check english name + Name: Magical Fruit 4Lv Type: Card SubType: Enchant Script: | @@ -75093,7 +75094,7 @@ Body: bonus bDef,20; - Id: 312543 AegisName: Magical_Fruit_5 - Name: Magic Fruit 5Lv # !todo check english name + Name: Magical Fruit 5Lv Type: Card SubType: Enchant Script: | @@ -75101,7 +75102,7 @@ Body: bonus bDef,25; - Id: 312544 AegisName: Magical_Fruit_6 - Name: Magic Fruit 6Lv # !todo check english name + Name: Magical Fruit 6Lv Type: Card SubType: Enchant Script: | @@ -75109,7 +75110,7 @@ Body: bonus bDef,30; - Id: 312545 AegisName: Magical_Fruit_7 - Name: Magic Fruit 7Lv # !todo check english name + Name: Magical Fruit 7Lv Type: Card SubType: Enchant Script: | @@ -75117,7 +75118,7 @@ Body: bonus bDef,35; - Id: 312546 AegisName: Magical_Fruit_8 - Name: Magic Fruit 8Lv # !todo check english name + Name: Magical Fruit 8Lv Type: Card SubType: Enchant Script: | @@ -75125,7 +75126,7 @@ Body: bonus bDef,40; - Id: 312547 AegisName: Magical_Fruit_9 - Name: Magic Fruit 9Lv # !todo check english name + Name: Magical Fruit 9Lv Type: Card SubType: Enchant Script: | @@ -75133,7 +75134,7 @@ Body: bonus bDef,45; - Id: 312548 AegisName: Magical_Fruit_10 - Name: Fruit of Magic 10Lv # !todo check english name + Name: Magical Fruit 10Lv Type: Card SubType: Enchant Script: | @@ -75141,7 +75142,7 @@ Body: bonus bDef,50; - Id: 312549 AegisName: Magical_Fruit_11 - Name: Fruit of Magic 11Lv # !todo check english name + Name: Magical Fruit 11Lv Type: Card SubType: Enchant Script: | @@ -75150,7 +75151,7 @@ Body: bonus bDef,50; - Id: 312550 AegisName: Magical_Fruit_12 - Name: Magic Fruit 12Lv # !todo check english name + Name: Magical Fruit 12Lv Type: Card SubType: Enchant Script: | @@ -75159,7 +75160,7 @@ Body: bonus bDef,50; - Id: 312551 AegisName: Magical_Fruit_13 - Name: Magic Fruit 13Lv # !todo check english name + Name: Magical Fruit 13Lv Type: Card SubType: Enchant Script: | @@ -75168,7 +75169,7 @@ Body: bonus bDef,50; - Id: 312552 AegisName: Magical_Fruit_14 - Name: Magic Fruit 14Lv # !todo check english name + Name: Magical Fruit 14Lv Type: Card SubType: Enchant Script: | @@ -75177,7 +75178,7 @@ Body: bonus bDef,50; - Id: 312553 AegisName: Magical_Fruit_15 - Name: Magic Fruit 15Lv # !todo check english name + Name: Magical Fruit 15Lv Type: Card SubType: Enchant Script: | @@ -75186,7 +75187,7 @@ Body: bonus bDef,50; - Id: 312554 AegisName: Magical_Fruit_16 - Name: Magic Fruit 16Lv # !todo check english name + Name: Magical Fruit 16Lv Type: Card SubType: Enchant Script: | @@ -75196,7 +75197,7 @@ Body: bonus2 bMagicAddSize,Size_All,3; - Id: 312555 AegisName: Magical_Fruit_17 - Name: Magic Fruit 17Lv # !todo check english name + Name: Magical Fruit 17Lv Type: Card SubType: Enchant Script: | @@ -75206,7 +75207,7 @@ Body: bonus2 bMagicAddSize,Size_All,6; - Id: 312556 AegisName: Magical_Fruit_18 - Name: Magic Fruit 18Lv # !todo check english name + Name: Magical Fruit 18Lv Type: Card SubType: Enchant Script: | @@ -75216,7 +75217,7 @@ Body: bonus2 bMagicAddSize,Size_All,9; - Id: 312557 AegisName: Magical_Fruit_19 - Name: Magic Fruit 19Lv # !todo check english name + Name: Magical Fruit 19Lv Type: Card SubType: Enchant Script: | @@ -75226,7 +75227,7 @@ Body: bonus2 bMagicAddSize,Size_All,12; - Id: 312558 AegisName: Magical_Fruit_20 - Name: Magic Fruit 20Lv # !todo check english name + Name: Magical Fruit 20Lv Type: Card SubType: Enchant Script: | @@ -75236,7 +75237,7 @@ Body: bonus2 bMagicAddSize,Size_All,15; - Id: 312559 AegisName: Life_of_Spring_1 - Name: Spring Life 1Lv # !todo check english name + Name: Life of Spring 1Lv Type: Card SubType: Enchant Script: | @@ -75244,7 +75245,7 @@ Body: bonus bShortAtkRate,1; - Id: 312560 AegisName: Life_of_Spring_2 - Name: Spring Life 2Lv # !todo check english name + Name: Life of Spring 2Lv Type: Card SubType: Enchant Script: | @@ -75252,7 +75253,7 @@ Body: bonus bShortAtkRate,2; - Id: 312561 AegisName: Life_of_Spring_3 - Name: Spring Life 3Lv # !todo check english name + Name: Life of Spring 3Lv Type: Card SubType: Enchant Script: | @@ -75260,7 +75261,7 @@ Body: bonus bShortAtkRate,3; - Id: 312562 AegisName: Life_of_Spring_4 - Name: Spring Life 4Lv # !todo check english name + Name: Life of Spring 4Lv Type: Card SubType: Enchant Script: | @@ -75268,7 +75269,7 @@ Body: bonus bShortAtkRate,4; - Id: 312563 AegisName: Life_of_Spring_5 - Name: Spring Life 5Lv # !todo check english name + Name: Life of Spring 5Lv Type: Card SubType: Enchant Script: | @@ -75276,7 +75277,7 @@ Body: bonus bShortAtkRate,5; - Id: 312564 AegisName: Life_of_Spring_6 - Name: Spring Life 6Lv # !todo check english name + Name: Life of Spring 6Lv Type: Card SubType: Enchant Script: | @@ -75284,7 +75285,7 @@ Body: bonus bShortAtkRate,6; - Id: 312565 AegisName: Life_of_Spring_7 - Name: Spring Life 7Lv # !todo check english name + Name: Life of Spring 7Lv Type: Card SubType: Enchant Script: | @@ -75292,7 +75293,7 @@ Body: bonus bShortAtkRate,7; - Id: 312566 AegisName: Life_of_Spring_8 - Name: Spring Life 8Lv # !todo check english name + Name: Life of Spring 8Lv Type: Card SubType: Enchant Script: | @@ -75300,7 +75301,7 @@ Body: bonus bShortAtkRate,8; - Id: 312567 AegisName: Life_of_Spring_9 - Name: Spring Life 9Lv # !todo check english name + Name: Life of Spring 9Lv Type: Card SubType: Enchant Script: | @@ -75308,7 +75309,7 @@ Body: bonus bShortAtkRate,9; - Id: 312568 AegisName: Life_of_Spring_10 - Name: Spring Life 10Lv # !todo check english name + Name: Life of Spring 10Lv Type: Card SubType: Enchant Script: | @@ -75316,7 +75317,7 @@ Body: bonus bShortAtkRate,10; - Id: 312569 AegisName: Life_of_Spring_11 - Name: Spring Life 11Lv # !todo check english name + Name: Life of Spring 11Lv Type: Card SubType: Enchant Script: | @@ -75324,7 +75325,7 @@ Body: bonus bShortAtkRate,10; - Id: 312570 AegisName: Life_of_Spring_12 - Name: Spring Life 12Lv # !todo check english name + Name: Life of Spring 12Lv Type: Card SubType: Enchant Script: | @@ -75332,7 +75333,7 @@ Body: bonus bShortAtkRate,10; - Id: 312571 AegisName: Life_of_Spring_13 - Name: Spring Life 13Lv # !todo check english name + Name: Life of Spring 13Lv Type: Card SubType: Enchant Script: | @@ -75340,7 +75341,7 @@ Body: bonus bShortAtkRate,10; - Id: 312572 AegisName: Life_of_Spring_14 - Name: Spring Life 14Lv # !todo check english name + Name: Life of Spring 14Lv Type: Card SubType: Enchant Script: | @@ -75348,7 +75349,7 @@ Body: bonus bShortAtkRate,10; - Id: 312573 AegisName: Life_of_Spring_15 - Name: Spring Life 15Lv # !todo check english name + Name: Life of Spring 15Lv Type: Card SubType: Enchant Script: | @@ -75356,7 +75357,7 @@ Body: bonus bShortAtkRate,10; - Id: 312574 AegisName: Life_of_Spring_16 - Name: Spring Life 16Lv # !todo check english name + Name: Life of Spring 16Lv Type: Card SubType: Enchant Script: | @@ -75364,7 +75365,7 @@ Body: bonus bShortAtkRate,13; - Id: 312575 AegisName: Life_of_Spring_17 - Name: Spring Life 17Lv # !todo check english name + Name: Life of Spring 17Lv Type: Card SubType: Enchant Script: | @@ -75372,7 +75373,7 @@ Body: bonus bShortAtkRate,16; - Id: 312576 AegisName: Life_of_Spring_18 - Name: Spring Life 18Lv # !todo check english name + Name: Life of Spring 18Lv Type: Card SubType: Enchant Script: | @@ -75380,7 +75381,7 @@ Body: bonus bShortAtkRate,19; - Id: 312577 AegisName: Life_of_Spring_19 - Name: Spring Life 19Lv # !todo check english name + Name: Life of Spring 19Lv Type: Card SubType: Enchant Script: | @@ -75388,7 +75389,7 @@ Body: bonus bShortAtkRate,22; - Id: 312578 AegisName: Life_of_Spring_20 - Name: Spring Life 20Lv # !todo check english name + Name: Life of Spring 20Lv Type: Card SubType: Enchant Script: | @@ -75396,7 +75397,7 @@ Body: bonus bShortAtkRate,25; - Id: 312579 AegisName: Life_of_Summer_1 - Name: Summer Life 1Lv # !todo check english name + Name: Life of Summer 1Lv Type: Card SubType: Enchant Script: | @@ -75404,7 +75405,7 @@ Body: bonus bLongAtkRate,1; - Id: 312580 AegisName: Life_of_Summer_2 - Name: Summer Life 2Lv # !todo check english name + Name: Life of Summer 2Lv Type: Card SubType: Enchant Script: | @@ -75412,7 +75413,7 @@ Body: bonus bLongAtkRate,2; - Id: 312581 AegisName: Life_of_Summer_3 - Name: Summer Life 3Lv # !todo check english name + Name: Life of Summer 3Lv Type: Card SubType: Enchant Script: | @@ -75420,7 +75421,7 @@ Body: bonus bLongAtkRate,3; - Id: 312582 AegisName: Life_of_Summer_4 - Name: Summer Life 4Lv # !todo check english name + Name: Life of Summer 4Lv Type: Card SubType: Enchant Script: | @@ -75428,7 +75429,7 @@ Body: bonus bLongAtkRate,4; - Id: 312583 AegisName: Life_of_Summer_5 - Name: Summer Life 5Lv # !todo check english name + Name: Life of Summer 5Lv Type: Card SubType: Enchant Script: | @@ -75436,7 +75437,7 @@ Body: bonus bLongAtkRate,5; - Id: 312584 AegisName: Life_of_Summer_6 - Name: Summer Life 6Lv # !todo check english name + Name: Life of Summer 6Lv Type: Card SubType: Enchant Script: | @@ -75444,7 +75445,7 @@ Body: bonus bLongAtkRate,6; - Id: 312585 AegisName: Life_of_Summer_7 - Name: Summer Life 7Lv # !todo check english name + Name: Life of Summer 7Lv Type: Card SubType: Enchant Script: | @@ -75452,7 +75453,7 @@ Body: bonus bLongAtkRate,7; - Id: 312586 AegisName: Life_of_Summer_8 - Name: Summer Life 8Lv # !todo check english name + Name: Life of Summer 8Lv Type: Card SubType: Enchant Script: | @@ -75460,7 +75461,7 @@ Body: bonus bLongAtkRate,8; - Id: 312587 AegisName: Life_of_Summer_9 - Name: Summer Life 9Lv # !todo check english name + Name: Life of Summer 9Lv Type: Card SubType: Enchant Script: | @@ -75468,7 +75469,7 @@ Body: bonus bLongAtkRate,9; - Id: 312588 AegisName: Life_of_Summer_10 - Name: Summer Life 10Lv # !todo check english name + Name: Life of Summer 10Lv Type: Card SubType: Enchant Script: | @@ -75476,7 +75477,7 @@ Body: bonus bLongAtkRate,10; - Id: 312589 AegisName: Life_of_Summer_11 - Name: Summer Life 11Lv # !todo check english name + Name: Life of Summer 11Lv Type: Card SubType: Enchant Script: | @@ -75484,7 +75485,7 @@ Body: bonus bLongAtkRate,10; - Id: 312590 AegisName: Life_of_Summer_12 - Name: Summer Life 12Lv # !todo check english name + Name: Life of Summer 12Lv Type: Card SubType: Enchant Script: | @@ -75492,7 +75493,7 @@ Body: bonus bLongAtkRate,10; - Id: 312591 AegisName: Life_of_Summer_13 - Name: Summer Life 13Lv # !todo check english name + Name: Life of Summer 13Lv Type: Card SubType: Enchant Script: | @@ -75500,7 +75501,7 @@ Body: bonus bLongAtkRate,10; - Id: 312592 AegisName: Life_of_Summer_14 - Name: Summer Life 14Lv # !todo check english name + Name: Life of Summer 14Lv Type: Card SubType: Enchant Script: | @@ -75508,7 +75509,7 @@ Body: bonus bLongAtkRate,10; - Id: 312593 AegisName: Life_of_Summer_15 - Name: Summer Life 15Lv # !todo check english name + Name: Life of Summer 15Lv Type: Card SubType: Enchant Script: | @@ -75516,7 +75517,7 @@ Body: bonus bLongAtkRate,10; - Id: 312594 AegisName: Life_of_Summer_16 - Name: Summer Life 16Lv # !todo check english name + Name: Life of Summer 16Lv Type: Card SubType: Enchant Script: | @@ -75524,7 +75525,7 @@ Body: bonus bLongAtkRate,13; - Id: 312595 AegisName: Life_of_Summer_17 - Name: Summer Life 17Lv # !todo check english name + Name: Life of Summer 17Lv Type: Card SubType: Enchant Script: | @@ -75532,7 +75533,7 @@ Body: bonus bLongAtkRate,16; - Id: 312596 AegisName: Life_of_Summer_18 - Name: Summer Life 18Lv # !todo check english name + Name: Life of Summer 18Lv Type: Card SubType: Enchant Script: | @@ -75540,7 +75541,7 @@ Body: bonus bLongAtkRate,19; - Id: 312597 AegisName: Life_of_Summer_19 - Name: Summer Life 19Lv # !todo check english name + Name: Life of Summer 19Lv Type: Card SubType: Enchant Script: | @@ -75548,7 +75549,7 @@ Body: bonus bLongAtkRate,22; - Id: 312598 AegisName: Life_of_Summer_20 - Name: Summer Life 20Lv # !todo check english name + Name: Life of Summer 20Lv Type: Card SubType: Enchant Script: | @@ -75556,7 +75557,7 @@ Body: bonus bLongAtkRate,25; - Id: 312599 AegisName: Life_of_Autumn_1 - Name: Autumn Life 1Lv # !todo check english name + Name: Life of Autumn 1Lv Type: Card SubType: Enchant Script: | @@ -75564,7 +75565,7 @@ Body: bonus2 bMagicAtkEle,Ele_All,1; - Id: 312600 AegisName: Life_of_Autumn_2 - Name: Autumn Life 2Lv # !todo check english name + Name: Life of Autumn 2Lv Type: Card SubType: Enchant Script: | @@ -75572,7 +75573,7 @@ Body: bonus2 bMagicAtkEle,Ele_All,2; - Id: 312601 AegisName: Life_of_Autumn_3 - Name: Autumn Life 3Lv # !todo check english name + Name: Life of Autumn 3Lv Type: Card SubType: Enchant Script: | @@ -75580,7 +75581,7 @@ Body: bonus2 bMagicAtkEle,Ele_All,3; - Id: 312602 AegisName: Life_of_Autumn_4 - Name: Autumn Life 4Lv # !todo check english name + Name: Life of Autumn 4Lv Type: Card SubType: Enchant Script: | @@ -75588,7 +75589,7 @@ Body: bonus2 bMagicAtkEle,Ele_All,4; - Id: 312603 AegisName: Life_of_Autumn_5 - Name: Autumn Life 5Lv # !todo check english name + Name: Life of Autumn 5Lv Type: Card SubType: Enchant Script: | @@ -75596,7 +75597,7 @@ Body: bonus2 bMagicAtkEle,Ele_All,5; - Id: 312604 AegisName: Life_of_Autumn_6 - Name: Autumn Life 6Lv # !todo check english name + Name: Life of Autumn 6Lv Type: Card SubType: Enchant Script: | @@ -75604,7 +75605,7 @@ Body: bonus2 bMagicAtkEle,Ele_All,6; - Id: 312605 AegisName: Life_of_Autumn_7 - Name: Autumn Life 7Lv # !todo check english name + Name: Life of Autumn 7Lv Type: Card SubType: Enchant Script: | @@ -75612,7 +75613,7 @@ Body: bonus2 bMagicAtkEle,Ele_All,7; - Id: 312606 AegisName: Life_of_Autumn_8 - Name: Autumn Life 8Lv # !todo check english name + Name: Life of Autumn 8Lv Type: Card SubType: Enchant Script: | @@ -75620,7 +75621,7 @@ Body: bonus2 bMagicAtkEle,Ele_All,8; - Id: 312607 AegisName: Life_of_Autumn_9 - Name: Autumn Life 9Lv # !todo check english name + Name: Life of Autumn 9Lv Type: Card SubType: Enchant Script: | @@ -75628,7 +75629,7 @@ Body: bonus2 bMagicAtkEle,Ele_All,9; - Id: 312608 AegisName: Life_of_Autumn_10 - Name: Autumn Life 10Lv # !todo check english name + Name: Life of Autumn 10Lv Type: Card SubType: Enchant Script: | @@ -75636,7 +75637,7 @@ Body: bonus2 bMagicAtkEle,Ele_All,10; - Id: 312609 AegisName: Life_of_Autumn_11 - Name: Autumn Life 11Lv # !todo check english name + Name: Life of Autumn 11Lv Type: Card SubType: Enchant Script: | @@ -75644,7 +75645,7 @@ Body: bonus2 bMagicAtkEle,Ele_All,10; - Id: 312610 AegisName: Life_of_Autumn_12 - Name: Autumn Life 12Lv # !todo check english name + Name: Life of Autumn 12Lv Type: Card SubType: Enchant Script: | @@ -75652,7 +75653,7 @@ Body: bonus2 bMagicAtkEle,Ele_All,10; - Id: 312611 AegisName: Life_of_Autumn_13 - Name: Autumn Life 13Lv # !todo check english name + Name: Life of Autumn 13Lv Type: Card SubType: Enchant Script: | @@ -75660,7 +75661,7 @@ Body: bonus2 bMagicAtkEle,Ele_All,10; - Id: 312612 AegisName: Life_of_Autumn_14 - Name: Autumn Life 14Lv # !todo check english name + Name: Life of Autumn 14Lv Type: Card SubType: Enchant Script: | @@ -75668,7 +75669,7 @@ Body: bonus2 bMagicAtkEle,Ele_All,10; - Id: 312613 AegisName: Life_of_Autumn_15 - Name: Autumn Life 15Lv # !todo check english name + Name: Life of Autumn 15Lv Type: Card SubType: Enchant Script: | @@ -75676,7 +75677,7 @@ Body: bonus2 bMagicAtkEle,Ele_All,10; - Id: 312614 AegisName: Life_of_Autumn_16 - Name: Autumn Life 16Lv # !todo check english name + Name: Life of Autumn 16Lv Type: Card SubType: Enchant Script: | @@ -75684,7 +75685,7 @@ Body: bonus2 bMagicAtkEle,Ele_All,13; - Id: 312615 AegisName: Life_of_Autumn_17 - Name: Autumn Life 17Lv # !todo check english name + Name: Life of Autumn 17Lv Type: Card SubType: Enchant Script: | @@ -75692,7 +75693,7 @@ Body: bonus2 bMagicAtkEle,Ele_All,16; - Id: 312616 AegisName: Life_of_Autumn_18 - Name: Autumn Life 18Lv # !todo check english name + Name: Life of Autumn 18Lv Type: Card SubType: Enchant Script: | @@ -75700,7 +75701,7 @@ Body: bonus2 bMagicAtkEle,Ele_All,19; - Id: 312617 AegisName: Life_of_Autumn_19 - Name: Autumn Life 19Lv # !todo check english name + Name: Life of Autumn 19Lv Type: Card SubType: Enchant Script: | @@ -75708,7 +75709,7 @@ Body: bonus2 bMagicAtkEle,Ele_All,22; - Id: 312618 AegisName: Life_of_Autumn_20 - Name: Autumn Life 20Lv # !todo check english name + Name: Life of Autumn 20Lv Type: Card SubType: Enchant Script: | @@ -75716,7 +75717,7 @@ Body: bonus2 bMagicAtkEle,Ele_All,25; - Id: 312619 AegisName: Life_of_Winter_1 - Name: Winter Life 1Lv # !todo check english name + Name: Life of Winter 1Lv Type: Card SubType: Enchant Script: | @@ -75724,7 +75725,7 @@ Body: bonus bCritAtkRate,1; - Id: 312620 AegisName: Life_of_Winter_2 - Name: Winter Life 2Lv # !todo check english name + Name: Life of Winter 2Lv Type: Card SubType: Enchant Script: | @@ -75732,7 +75733,7 @@ Body: bonus bCritAtkRate,2; - Id: 312621 AegisName: Life_of_Winter_3 - Name: Winter Life 3Lv # !todo check english name + Name: Life of Winter 3Lv Type: Card SubType: Enchant Script: | @@ -75740,7 +75741,7 @@ Body: bonus bCritAtkRate,3; - Id: 312622 AegisName: Life_of_Winter_4 - Name: Winter Life 4Lv # !todo check english name + Name: Life of Winter 4Lv Type: Card SubType: Enchant Script: | @@ -75748,7 +75749,7 @@ Body: bonus bCritAtkRate,4; - Id: 312623 AegisName: Life_of_Winter_5 - Name: Winter Life 5Lv # !todo check english name + Name: Life of Winter 5Lv Type: Card SubType: Enchant Script: | @@ -75756,7 +75757,7 @@ Body: bonus bCritAtkRate,5; - Id: 312624 AegisName: Life_of_Winter_6 - Name: Winter Life 6Lv # !todo check english name + Name: Life of Winter 6Lv Type: Card SubType: Enchant Script: | @@ -75764,7 +75765,7 @@ Body: bonus bCritAtkRate,6; - Id: 312625 AegisName: Life_of_Winter_7 - Name: Winter Life 7Lv # !todo check english name + Name: Life of Winter 7Lv Type: Card SubType: Enchant Script: | @@ -75772,7 +75773,7 @@ Body: bonus bCritAtkRate,7; - Id: 312626 AegisName: Life_of_Winter_8 - Name: Winter Life 8Lv # !todo check english name + Name: Life of Winter 8Lv Type: Card SubType: Enchant Script: | @@ -75780,7 +75781,7 @@ Body: bonus bCritAtkRate,8; - Id: 312627 AegisName: Life_of_Winter_9 - Name: Winter Life 9Lv # !todo check english name + Name: Life of Winter 9Lv Type: Card SubType: Enchant Script: | @@ -75788,7 +75789,7 @@ Body: bonus bCritAtkRate,9; - Id: 312628 AegisName: Life_of_Winter_10 - Name: Winter Life 10Lv # !todo check english name + Name: Life of Winter 10Lv Type: Card SubType: Enchant Script: | @@ -75796,7 +75797,7 @@ Body: bonus bCritAtkRate,10; - Id: 312629 AegisName: Life_of_Winter_11 - Name: Winter Life 11Lv # !todo check english name + Name: Life of Winter 11Lv Type: Card SubType: Enchant Script: | @@ -75804,7 +75805,7 @@ Body: bonus bCritAtkRate,10; - Id: 312630 AegisName: Life_of_Winter_12 - Name: Winter Life 12Lv # !todo check english name + Name: Life of Winter 12Lv Type: Card SubType: Enchant Script: | @@ -75812,7 +75813,7 @@ Body: bonus bCritAtkRate,10; - Id: 312631 AegisName: Life_of_Winter_13 - Name: Winter Life 13Lv # !todo check english name + Name: Life of Winter 13Lv Type: Card SubType: Enchant Script: | @@ -75820,7 +75821,7 @@ Body: bonus bCritAtkRate,10; - Id: 312632 AegisName: Life_of_Winter_14 - Name: Winter Life 14Lv # !todo check english name + Name: Life of Winter 14Lv Type: Card SubType: Enchant Script: | @@ -75828,7 +75829,7 @@ Body: bonus bCritAtkRate,10; - Id: 312633 AegisName: Life_of_Winter_15 - Name: Winter Life 15Lv # !todo check english name + Name: Life of Winter 15Lv Type: Card SubType: Enchant Script: | @@ -75836,7 +75837,7 @@ Body: bonus bCritAtkRate,10; - Id: 312634 AegisName: Life_of_Winter_16 - Name: Winter Life 16Lv # !todo check english name + Name: Life of Winter 16Lv Type: Card SubType: Enchant Script: | @@ -75844,7 +75845,7 @@ Body: bonus bCritAtkRate,13; - Id: 312635 AegisName: Life_of_Winter_17 - Name: Winter Life 17Lv # !todo check english name + Name: Life of Winter 17Lv Type: Card SubType: Enchant Script: | @@ -75852,7 +75853,7 @@ Body: bonus bCritAtkRate,16; - Id: 312636 AegisName: Life_of_Winter_18 - Name: Winter Life 18Lv # !todo check english name + Name: Life of Winter 18Lv Type: Card SubType: Enchant Script: | @@ -75860,7 +75861,7 @@ Body: bonus bCritAtkRate,19; - Id: 312637 AegisName: Life_of_Winter_19 - Name: Winter Life 19Lv # !todo check english name + Name: Life of Winter 19Lv Type: Card SubType: Enchant Script: | @@ -75868,7 +75869,7 @@ Body: bonus bCritAtkRate,22; - Id: 312638 AegisName: Life_of_Winter_20 - Name: Winter Life 20Lv # !todo check english name + Name: Life of Winter 20Lv Type: Card SubType: Enchant Script: | @@ -75906,32 +75907,32 @@ Body: SubType: Enchant - Id: 312649 AegisName: Justice_Vigor_MT - Name: Zen Aura (Meister) # !todo check english name + Name: Good Vigor (Meister) Type: Card SubType: Enchant - Id: 312650 AegisName: Justice_Vigor_SHC - Name: Zen Aura (Shadow Cross) # !todo check english name + Name: Good Vigor (Shadow Cross) Type: Card SubType: Enchant - Id: 312651 AegisName: Justice_Vigor_SS - Name: Spirit of Zen (Shinkiro & Shiranui) # !todo check english name + Name: Good Vigor (Shinkiro & Shiranui) Type: Card SubType: Enchant - Id: 312652 AegisName: Injustice_Vigor_MT - Name: Evil Spirit (Meister) # !todo check english name + Name: Evil Vigor (Meister) Type: Card SubType: Enchant - Id: 312653 AegisName: Injustice_Vigor_SHC - Name: Evil Spirit (Shadow Cross) # !todo check english name + Name: Evil Vigor (Shadow Cross) Type: Card SubType: Enchant - Id: 312654 AegisName: Injustice_Vigor_SS - Name: Evil Energy (Shinkiro & Shiranui) # !todo check english name + Name: Evil Vigor (Shinkiro & Shiranui) Type: Card SubType: Enchant - Id: 312655 @@ -76207,7 +76208,7 @@ Body: bonus2 bMagicAtkEle,Ele_Water,getskilllv("HN_SELFSTUDY_SOCERY"); - Id: 312695 AegisName: T_D_Jewel_STR_1 - Name: Jewel of Time and Space (Strength) 1Lv # !todo check english name + Name: Time Dimension Jewel (Strength) 1Lv Type: Card SubType: Enchant Script: | @@ -76216,7 +76217,7 @@ Body: bonus bShortAtkRate,(.@r/3); - Id: 312696 AegisName: T_D_Jewel_STR_2 - Name: Jewel of Time and Space (Strength) 2Lv # !todo check english name + Name: Time Dimension Jewel (Strength) 2Lv Type: Card SubType: Enchant Script: | @@ -76226,7 +76227,7 @@ Body: bonus bPAtk,(.@r/5); - Id: 312697 AegisName: T_D_Jewel_STR_3 - Name: Jewel of Time and Space (Strength) 3Lv # !todo check english name + Name: Time Dimension Jewel (Strength) 3Lv Type: Card SubType: Enchant Script: | @@ -76236,7 +76237,7 @@ Body: bonus bPAtk,(.@r/4); - Id: 312698 AegisName: T_D_Jewel_AGI_1 - Name: Jewel of Time and Space (Agility) 1Lv # !todo check english name + Name: Time Dimension Jewel (Agility) 1Lv Type: Card SubType: Enchant Script: | @@ -76247,7 +76248,7 @@ Body: bonus bAspdRate,2*(.@r/3); - Id: 312699 AegisName: T_D_Jewel_AGI_2 - Name: Jewel of Time and Space (Agility) 2Lv # !todo check english name + Name: Time Dimension Jewel (Agility) 2Lv Type: Card SubType: Enchant Script: | @@ -76260,7 +76261,7 @@ Body: bonus bSMatk,(.@r/5); - Id: 312700 AegisName: T_D_Jewel_AGI_3 - Name: Jewel of Time and Space (Agility) 3Lv # !todo check english name + Name: Time Dimension Jewel (Agility) 3Lv Type: Card SubType: Enchant Script: | @@ -76273,7 +76274,7 @@ Body: bonus bSMatk,(.@r/4); - Id: 312701 AegisName: T_D_Jewel_DEX_1 - Name: Jewel of Time and Space (Dexterity) 1Lv # !todo check english name + Name: Time Dimension Jewel (Dexterity) 1Lv Type: Card SubType: Enchant Script: | @@ -76282,7 +76283,7 @@ Body: bonus bLongAtkRate,(.@r/3); - Id: 312702 AegisName: T_D_Jewel_DEX_2 - Name: Jewel of Time and Space (Dexterity) 2Lv # !todo check english name + Name: Time Dimension Jewel (Dexterity) 2Lv Type: Card SubType: Enchant Script: | @@ -76292,7 +76293,7 @@ Body: bonus bPAtk,(.@r/5); - Id: 312703 AegisName: T_D_Jewel_DEX_3 - Name: Jewel of Time and Space (Dexterity) 3Lv # !todo check english name + Name: Time Dimension Jewel (Dexterity) 3Lv Type: Card SubType: Enchant Script: | @@ -76302,7 +76303,7 @@ Body: bonus bPAtk,(.@r/4); - Id: 312704 AegisName: T_D_Jewel_VIT_1 - Name: Jewel of Time and Space (Stamina) 1Lv # !todo check english name + Name: Time Dimension Jewel (Vitality) 1Lv Type: Card SubType: Enchant Script: | @@ -76312,7 +76313,7 @@ Body: bonus bMaxHPrate,(.@r/3); - Id: 312705 AegisName: T_D_Jewel_VIT_2 - Name: Jewel of Time and Space (Stamina) 2Lv # !todo check english name + Name: Time Dimension Jewel (Vitality) 2Lv Type: Card SubType: Enchant Script: | @@ -76324,7 +76325,7 @@ Body: bonus bSMatk,(.@r/5); - Id: 312706 AegisName: T_D_Jewel_VIT_3 - Name: Jewel of Time and Space (Stamina) 3Lv # !todo check english name + Name: Time Dimension Jewel (Vitality) 3Lv Type: Card SubType: Enchant Script: | @@ -76336,7 +76337,7 @@ Body: bonus bSMatk,(.@r/4); - Id: 312707 AegisName: T_D_Jewel_INT_1 - Name: Jewel of Time and Space (Intellect) 1Lv # !todo check english name + Name: Time Dimension Jewel (Intelligence) 1Lv Type: Card SubType: Enchant Script: | @@ -76345,7 +76346,7 @@ Body: bonus2 bMagicAtkEle,Ele_All,(.@r/3); - Id: 312708 AegisName: T_D_Jewel_INT_2 - Name: Jewel of Time and Space (Intellect) 2Lv # !todo check english name + Name: Time Dimension Jewel (Intelligence) 2Lv Type: Card SubType: Enchant Script: | @@ -76355,7 +76356,7 @@ Body: bonus bSMatk,(.@r/5); - Id: 312709 AegisName: T_D_Jewel_INT_3 - Name: Jewel of Time and Space (Intellect) 3Lv # !todo check english name + Name: Time Dimension Jewel (Intelligence) 3Lv Type: Card SubType: Enchant Script: | @@ -76365,7 +76366,7 @@ Body: bonus bSMatk,(.@r/4); - Id: 312710 AegisName: T_D_Jewel_LUK_1 - Name: Jewel of Time and Space (Lucky) 1Lv # !todo check english name + Name: Time Dimension Jewel (Luck) 1Lv Type: Card SubType: Enchant Script: | @@ -76374,7 +76375,7 @@ Body: bonus bCritAtkRate,2*(.@r/3); - Id: 312711 AegisName: T_D_Jewel_LUK_2 - Name: Jewel of Time and Space (Lucky) 2Lv # !todo check english name + Name: Time Dimension Jewel (Luck) 2Lv Type: Card SubType: Enchant Script: | @@ -76385,7 +76386,7 @@ Body: bonus bCRate,(.@r/5); - Id: 312712 AegisName: T_D_Jewel_LUK_3 - Name: Jewel of Time and Space (Lucky) 3Lv # !todo check english name + Name: Time Dimension Jewel (Luck) 3Lv Type: Card SubType: Enchant Script: | @@ -76396,7 +76397,7 @@ Body: bonus bCRate,(.@r/4); - Id: 312713 AegisName: T_D_Jewel_SPR_1 - Name: Jewel of Time and Space (Mental Power) 1Lv # !todo check english name + Name: Time Dimension Jewel (Spirit) 1Lv Type: Card SubType: Enchant Script: | @@ -76406,7 +76407,7 @@ Body: bonus bMaxSPrate,(.@r/3); - Id: 312714 AegisName: T_D_Jewel_SPR_2 - Name: Jewel of Time and Space (Mental Power) 2Lv # !todo check english name + Name: Time Dimension Jewel (Spirit) 2Lv Type: Card SubType: Enchant Script: | @@ -76418,7 +76419,7 @@ Body: bonus bSMatk,(.@r/5); - Id: 312715 AegisName: T_D_Jewel_SPR_3 - Name: Jewel of Time and Space (Mental Power) 3Lv # !todo check english name + Name: Time Dimension Jewel (Spirit) 3Lv Type: Card SubType: Enchant Script: | @@ -76430,7 +76431,7 @@ Body: bonus bSMatk,(.@r/4); - Id: 312716 AegisName: T_D_Jewel_WIS_1 - Name: Jewel of Time and Space (Gem) 1Lv # !todo check english name + Name: Time Dimension Jewel (Wisdom) 1Lv Type: Card SubType: Enchant Script: | @@ -76441,7 +76442,7 @@ Body: bonus bVariableCastrate,-2*(.@r/3); - Id: 312717 AegisName: T_D_Jewel_WIS_2 - Name: Jewel of Time and Space (Gem) 2Lv # !todo check english name + Name: Time Dimension Jewel (Wisdom) 2Lv Type: Card SubType: Enchant Script: | @@ -76454,7 +76455,7 @@ Body: bonus bSMatk,(.@r/5); - Id: 312718 AegisName: T_D_Jewel_WIS_3 - Name: Jewel of Time and Space (Gem) 3Lv # !todo check english name + Name: Time Dimension Jewel (Wisdom) 3Lv Type: Card SubType: Enchant Script: | @@ -76467,7 +76468,7 @@ Body: bonus bSMatk,(.@r/4); - Id: 312719 AegisName: Mettle_Jewel_1 - Name: Jewel of Passion 1Lv # !todo check english name + Name: Mettle Jewel 1Lv Type: Card SubType: Enchant Script: | @@ -76475,7 +76476,7 @@ Body: bonus bAtkRate,5; - Id: 312720 AegisName: Mettle_Jewel_2 - Name: Jewel of Passion 2Lv # !todo check english name + Name: Mettle Jewel 2Lv Type: Card SubType: Enchant Script: | @@ -76483,7 +76484,7 @@ Body: bonus bAtkRate,10; - Id: 312721 AegisName: Mettle_Jewel_3 - Name: Jewel of Passion 3Lv # !todo check english name + Name: Mettle Jewel 3Lv Type: Card SubType: Enchant Script: | @@ -76491,7 +76492,7 @@ Body: bonus bAtkRate,15; - Id: 312722 AegisName: Mettle_Jewel_4 - Name: Jewel of Passion 4Lv # !todo check english name + Name: Mettle Jewel 4Lv Type: Card SubType: Enchant Script: | @@ -76499,7 +76500,7 @@ Body: bonus bAtkRate,20; - Id: 312723 AegisName: Mettle_Jewel_5 - Name: Jewel of Passion 5Lv # !todo check english name + Name: Mettle Jewel 5Lv Type: Card SubType: Enchant Script: | @@ -76507,7 +76508,7 @@ Body: bonus bAtkRate,25; - Id: 312724 AegisName: Mettle_Jewel_6 - Name: Jewel of Passion 6Lv # !todo check english name + Name: Mettle Jewel 6Lv Type: Card SubType: Enchant Script: | @@ -76515,7 +76516,7 @@ Body: bonus bAtkRate,30; - Id: 312725 AegisName: Mettle_Jewel_7 - Name: Jewel of Passion 7Lv # !todo check english name + Name: Mettle Jewel 7Lv Type: Card SubType: Enchant Script: | @@ -76523,7 +76524,7 @@ Body: bonus bAtkRate,35; - Id: 312726 AegisName: Mettle_Jewel_8 - Name: Jewel of Passion 8Lv # !todo check english name + Name: Mettle Jewel 8Lv Type: Card SubType: Enchant Script: | @@ -76531,7 +76532,7 @@ Body: bonus bAtkRate,40; - Id: 312727 AegisName: Mettle_Jewel_9 - Name: Jewel of Passion 9Lv # !todo check english name + Name: Mettle Jewel 9Lv Type: Card SubType: Enchant Script: | @@ -76539,7 +76540,7 @@ Body: bonus bAtkRate,45; - Id: 312728 AegisName: Mettle_Jewel_10 - Name: Jewel of Passion 10Lv # !todo check english name + Name: Mettle Jewel 10Lv Type: Card SubType: Enchant Script: | @@ -76547,7 +76548,7 @@ Body: bonus bAtkRate,50; - Id: 312729 AegisName: Tenacity_Jewel_1 - Name: Indomitable Jewel 1Lv # !todo check english name + Name: Tenacity Jewel 1Lv Type: Card SubType: Enchant Script: | @@ -76555,7 +76556,7 @@ Body: bonus bPAtk,1; - Id: 312730 AegisName: Tenacity_Jewel_2 - Name: Indomitable Jewel 2Lv # !todo check english name + Name: Tenacity Jewel 2Lv Type: Card SubType: Enchant Script: | @@ -76563,7 +76564,7 @@ Body: bonus bPAtk,2; - Id: 312731 AegisName: Tenacity_Jewel_3 - Name: Indomitable Jewel 3Lv # !todo check english name + Name: Tenacity Jewel 3Lv Type: Card SubType: Enchant Script: | @@ -76571,7 +76572,7 @@ Body: bonus bPAtk,3; - Id: 312732 AegisName: Tenacity_Jewel_4 - Name: Indomitable Jewel 4Lv # !todo check english name + Name: Tenacity Jewel 4Lv Type: Card SubType: Enchant Script: | @@ -76579,7 +76580,7 @@ Body: bonus bPAtk,4; - Id: 312733 AegisName: Tenacity_Jewel_5 - Name: Indomitable Jewel 5Lv # !todo check english name + Name: Tenacity Jewel 5Lv Type: Card SubType: Enchant Script: | @@ -76587,7 +76588,7 @@ Body: bonus bPAtk,5; - Id: 312734 AegisName: Tenacity_Jewel_6 - Name: Indomitable Jewel 6Lv # !todo check english name + Name: Tenacity Jewel 6Lv Type: Card SubType: Enchant Script: | @@ -76595,7 +76596,7 @@ Body: bonus bPAtk,6; - Id: 312735 AegisName: Tenacity_Jewel_7 - Name: Indomitable Jewel 7Lv # !todo check english name + Name: Tenacity Jewel 7Lv Type: Card SubType: Enchant Script: | @@ -76603,7 +76604,7 @@ Body: bonus bPAtk,7; - Id: 312736 AegisName: Tenacity_Jewel_8 - Name: Indomitable Jewel 8Lv # !todo check english name + Name: Tenacity Jewel 8Lv Type: Card SubType: Enchant Script: | @@ -76611,7 +76612,7 @@ Body: bonus bPAtk,8; - Id: 312737 AegisName: Tenacity_Jewel_9 - Name: Indomitable Jewel 9Lv # !todo check english name + Name: Tenacity Jewel 9Lv Type: Card SubType: Enchant Script: | @@ -76619,7 +76620,7 @@ Body: bonus bPAtk,9; - Id: 312738 AegisName: Tenacity_Jewel_10 - Name: Indomitable Jewel 10Lv # !todo check english name + Name: Tenacity Jewel 10Lv Type: Card SubType: Enchant Script: | @@ -76627,7 +76628,7 @@ Body: bonus bPAtk,10; - Id: 312739 AegisName: Master_A_Jewel_1 - Name: Sun Palace Jewel 1Lv # !todo check english name + Name: Master Archer Jewel 1Lv Type: Card SubType: Enchant Script: | @@ -76635,7 +76636,7 @@ Body: bonus bPAtk,1; - Id: 312740 AegisName: Master_A_Jewel_2 - Name: Sun Palace Jewel 2Lv # !todo check english name + Name: Master Archer Jewel 2Lv Type: Card SubType: Enchant Script: | @@ -76643,7 +76644,7 @@ Body: bonus bPAtk,2; - Id: 312741 AegisName: Master_A_Jewel_3 - Name: Sun Palace Jewel 3Lv # !todo check english name + Name: Master Archer Jewel 3Lv Type: Card SubType: Enchant Script: | @@ -76651,7 +76652,7 @@ Body: bonus bPAtk,3; - Id: 312742 AegisName: Master_A_Jewel_4 - Name: Sun Palace Jewel 4Lv # !todo check english name + Name: Master Archer Jewel 4Lv Type: Card SubType: Enchant Script: | @@ -76659,7 +76660,7 @@ Body: bonus bPAtk,4; - Id: 312743 AegisName: Master_A_Jewel_5 - Name: Sun Palace Jewel 5Lv # !todo check english name + Name: Master Archer Jewel 5Lv Type: Card SubType: Enchant Script: | @@ -76667,7 +76668,7 @@ Body: bonus bPAtk,5; - Id: 312744 AegisName: Master_A_Jewel_6 - Name: Sun Palace Jewel 6Lv # !todo check english name + Name: Master Archer Jewel 6Lv Type: Card SubType: Enchant Script: | @@ -76675,7 +76676,7 @@ Body: bonus bPAtk,6; - Id: 312745 AegisName: Master_A_Jewel_7 - Name: Sun Palace Jewel 7Lv # !todo check english name + Name: Master Archer Jewel 7Lv Type: Card SubType: Enchant Script: | @@ -76683,7 +76684,7 @@ Body: bonus bPAtk,7; - Id: 312746 AegisName: Master_A_Jewel_8 - Name: Sun Palace Jewel 8Lv # !todo check english name + Name: Master Archer Jewel 8Lv Type: Card SubType: Enchant Script: | @@ -76691,7 +76692,7 @@ Body: bonus bPAtk,8; - Id: 312747 AegisName: Master_A_Jewel_9 - Name: Sun Palace Jewel 9Lv # !todo check english name + Name: Master Archer Jewel 9Lv Type: Card SubType: Enchant Script: | @@ -76699,7 +76700,7 @@ Body: bonus bPAtk,9; - Id: 312748 AegisName: Master_A_Jewel_10 - Name: Sun Palace Jewel 10Lv # !todo check english name + Name: Master Archer Jewel 10Lv Type: Card SubType: Enchant Script: | @@ -76707,7 +76708,7 @@ Body: bonus bPAtk,10; - Id: 312749 AegisName: Acute_Jewel_1 - Name: Jewel of Anticipation 1Lv # !todo check english name + Name: Acute Jewel 1Lv Type: Card SubType: Enchant Script: | @@ -76716,7 +76717,7 @@ Body: bonus bCritical,3; - Id: 312750 AegisName: Acute_Jewel_2 - Name: Jewel of Anticipation 2Lv # !todo check english name + Name: Acute Jewel 2Lv Type: Card SubType: Enchant Script: | @@ -76725,7 +76726,7 @@ Body: bonus bCritical,6; - Id: 312751 AegisName: Acute_Jewel_3 - Name: Jewel of Anticipation 3Lv # !todo check english name + Name: Acute Jewel 3Lv Type: Card SubType: Enchant Script: | @@ -76734,7 +76735,7 @@ Body: bonus bCritical,9; - Id: 312752 AegisName: Acute_Jewel_4 - Name: Jewel of Anticipation 4Lv # !todo check english name + Name: Acute Jewel 4Lv Type: Card SubType: Enchant Script: | @@ -76743,7 +76744,7 @@ Body: bonus bCritical,12; - Id: 312753 AegisName: Acute_Jewel_5 - Name: Jewel of Anticipation 5Lv # !todo check english name + Name: Acute Jewel 5Lv Type: Card SubType: Enchant Script: | @@ -76752,7 +76753,7 @@ Body: bonus bCritical,15; - Id: 312754 AegisName: Acute_Jewel_6 - Name: Jewel of Anticipation 6Lv # !todo check english name + Name: Acute Jewel 6Lv Type: Card SubType: Enchant Script: | @@ -76761,7 +76762,7 @@ Body: bonus bCritical,18; - Id: 312755 AegisName: Acute_Jewel_7 - Name: Jewel of Anticipation 7Lv # !todo check english name + Name: Acute Jewel 7Lv Type: Card SubType: Enchant Script: | @@ -76770,7 +76771,7 @@ Body: bonus bCritical,21; - Id: 312756 AegisName: Acute_Jewel_8 - Name: Jewel of Anticipation 8Lv # !todo check english name + Name: Acute Jewel 8Lv Type: Card SubType: Enchant Script: | @@ -76779,7 +76780,7 @@ Body: bonus bCritical,24; - Id: 312757 AegisName: Acute_Jewel_9 - Name: Jewel of Anticipation 9Lv # !todo check english name + Name: Acute Jewel 9Lv Type: Card SubType: Enchant Script: | @@ -76788,7 +76789,7 @@ Body: bonus bCritical,27; - Id: 312758 AegisName: Acute_Jewel_10 - Name: Jewel of Anticipation 10Lv # !todo check english name + Name: Acute Jewel 10Lv Type: Card SubType: Enchant Script: | @@ -76797,7 +76798,7 @@ Body: bonus bCritical,30; - Id: 312759 AegisName: Magic_E_Jewel_1 - Name: Magic Jewel 1Lv # !todo check english name + Name: Magic Essence Jewel 1Lv Type: Card SubType: Enchant Script: | @@ -76805,7 +76806,7 @@ Body: bonus bMatkRate,5; - Id: 312760 AegisName: Magic_E_Jewel_2 - Name: Magic Jewel 2Lv # !todo check english name + Name: Magic Essence Jewel 2Lv Type: Card SubType: Enchant Script: | @@ -76813,7 +76814,7 @@ Body: bonus bMatkRate,10; - Id: 312761 AegisName: Magic_E_Jewel_3 - Name: Magic Jewel 3Lv # !todo check english name + Name: Magic Essence Jewel 3Lv Type: Card SubType: Enchant Script: | @@ -76821,7 +76822,7 @@ Body: bonus bMatkRate,15; - Id: 312762 AegisName: Magic_E_Jewel_4 - Name: Magic Jewel 4Lv # !todo check english name + Name: Magic Essence Jewel 4Lv Type: Card SubType: Enchant Script: | @@ -76829,7 +76830,7 @@ Body: bonus bMatkRate,20; - Id: 312763 AegisName: Magic_E_Jewel_5 - Name: Magic Jewel 5Lv # !todo check english name + Name: Magic Essence Jewel 5Lv Type: Card SubType: Enchant Script: | @@ -76837,7 +76838,7 @@ Body: bonus bMatkRate,25; - Id: 312764 AegisName: Magic_E_Jewel_6 - Name: Magic Jewel 6Lv # !todo check english name + Name: Magic Essence Jewel 6Lv Type: Card SubType: Enchant Script: | @@ -76845,7 +76846,7 @@ Body: bonus bMatkRate,30; - Id: 312765 AegisName: Magic_E_Jewel_7 - Name: Magic Jewel 7Lv # !todo check english name + Name: Magic Essence Jewel 7Lv Type: Card SubType: Enchant Script: | @@ -76853,7 +76854,7 @@ Body: bonus bMatkRate,35; - Id: 312766 AegisName: Magic_E_Jewel_8 - Name: Magic Jewel 8Lv # !todo check english name + Name: Magic Essence Jewel 8Lv Type: Card SubType: Enchant Script: | @@ -76861,7 +76862,7 @@ Body: bonus bMatkRate,40; - Id: 312767 AegisName: Magic_E_Jewel_9 - Name: Magic Jewel 9Lv # !todo check english name + Name: Magic Essence Jewel 9Lv Type: Card SubType: Enchant Script: | @@ -76869,7 +76870,7 @@ Body: bonus bMatkRate,45; - Id: 312768 AegisName: Magic_E_Jewel_10 - Name: Magic Jewel 10Lv # !todo check english name + Name: Magic Essence Jewel 10Lv Type: Card SubType: Enchant Script: | @@ -76877,7 +76878,7 @@ Body: bonus bMatkRate,50; - Id: 312769 AegisName: Spell_Jewel_1 - Name: Magical Jewel 1Lv # !todo check english name + Name: Spell Jewel 1Lv Type: Card SubType: Enchant Script: | @@ -76885,7 +76886,7 @@ Body: bonus bSMatk,1; - Id: 312770 AegisName: Spell_Jewel_2 - Name: Magical Jewel 2Lv # !todo check english name + Name: Spell Jewel 2Lv Type: Card SubType: Enchant Script: | @@ -76893,7 +76894,7 @@ Body: bonus bSMatk,2; - Id: 312771 AegisName: Spell_Jewel_3 - Name: Magical Jewel 3Lv # !todo check english name + Name: Spell Jewel 3Lv Type: Card SubType: Enchant Script: | @@ -76901,7 +76902,7 @@ Body: bonus bSMatk,3; - Id: 312772 AegisName: Spell_Jewel_4 - Name: Magical Jewel 4Lv # !todo check english name + Name: Spell Jewel 4Lv Type: Card SubType: Enchant Script: | @@ -76909,7 +76910,7 @@ Body: bonus bSMatk,4; - Id: 312773 AegisName: Spell_Jewel_5 - Name: Magical Jewel 5Lv # !todo check english name + Name: Spell Jewel 5Lv Type: Card SubType: Enchant Script: | @@ -76917,7 +76918,7 @@ Body: bonus bSMatk,5; - Id: 312774 AegisName: Spell_Jewel_6 - Name: Magical Jewel 6Lv # !todo check english name + Name: Spell Jewel 6Lv Type: Card SubType: Enchant Script: | @@ -76925,7 +76926,7 @@ Body: bonus bSMatk,6; - Id: 312775 AegisName: Spell_Jewel_7 - Name: Magical Jewel 7Lv # !todo check english name + Name: Spell Jewel 7Lv Type: Card SubType: Enchant Script: | @@ -76933,7 +76934,7 @@ Body: bonus bSMatk,7; - Id: 312776 AegisName: Spell_Jewel_8 - Name: Magical Jewel 8Lv # !todo check english name + Name: Spell Jewel 8Lv Type: Card SubType: Enchant Script: | @@ -76941,7 +76942,7 @@ Body: bonus bSMatk,8; - Id: 312777 AegisName: Spell_Jewel_9 - Name: Magical Jewel 9Lv # !todo check english name + Name: Spell Jewel 9Lv Type: Card SubType: Enchant Script: | @@ -76949,7 +76950,7 @@ Body: bonus bSMatk,9; - Id: 312778 AegisName: Spell_Jewel_10 - Name: Magical Jewel 10Lv # !todo check english name + Name: Spell Jewel 10Lv Type: Card SubType: Enchant Script: | @@ -76957,7 +76958,7 @@ Body: bonus bSMatk,10; - Id: 312779 AegisName: Adamatine_Jewel_1 - Name: Diamond Jewel 1Lv # !todo check english name + Name: Adamantine Jewel 1Lv Type: Card SubType: Enchant Script: | @@ -76966,7 +76967,7 @@ Body: bonus bRes,10; - Id: 312780 AegisName: Adamatine_Jewel_2 - Name: Diamond Jewel 2Lv # !todo check english name + Name: Adamantine Jewel 2Lv Type: Card SubType: Enchant Script: | @@ -76975,7 +76976,7 @@ Body: bonus bRes,20; - Id: 312781 AegisName: Adamatine_Jewel_3 - Name: Diamond Jewel 3Lv # !todo check english name + Name: Adamantine Jewel 3Lv Type: Card SubType: Enchant Script: | @@ -76984,7 +76985,7 @@ Body: bonus bRes,30; - Id: 312782 AegisName: Adamatine_Jewel_4 - Name: Diamond Jewel 4Lv # !todo check english name + Name: Adamantine Jewel 4Lv Type: Card SubType: Enchant Script: | @@ -76993,7 +76994,7 @@ Body: bonus bRes,40; - Id: 312783 AegisName: Adamatine_Jewel_5 - Name: Diamond Jewel 5Lv # !todo check english name + Name: Adamantine Jewel 5Lv Type: Card SubType: Enchant Script: | @@ -77002,7 +77003,7 @@ Body: bonus bRes,50; - Id: 312784 AegisName: Adamatine_Jewel_6 - Name: Diamond Jewel 6Lv # !todo check english name + Name: Adamantine Jewel 6Lv Type: Card SubType: Enchant Script: | @@ -77011,7 +77012,7 @@ Body: bonus bRes,60; - Id: 312785 AegisName: Adamatine_Jewel_7 - Name: Diamond Jewel 7Lv # !todo check english name + Name: Adamantine Jewel 7Lv Type: Card SubType: Enchant Script: | @@ -77020,7 +77021,7 @@ Body: bonus bRes,70; - Id: 312786 AegisName: Adamatine_Jewel_8 - Name: Diamond Jewel 8Lv # !todo check english name + Name: Adamantine Jewel 8Lv Type: Card SubType: Enchant Script: | @@ -77029,7 +77030,7 @@ Body: bonus bRes,80; - Id: 312787 AegisName: Adamatine_Jewel_9 - Name: Diamond Jewel 9Lv # !todo check english name + Name: Adamantine Jewel 9Lv Type: Card SubType: Enchant Script: | @@ -77038,7 +77039,7 @@ Body: bonus bRes,90; - Id: 312788 AegisName: Adamatine_Jewel_10 - Name: Diamond Jewel 10Lv # !todo check english name + Name: Adamantine Jewel 10Lv Type: Card SubType: Enchant Script: | @@ -77047,7 +77048,7 @@ Body: bonus bRes,100; - Id: 312789 AegisName: Affection_Jewel_1 - Name: Jewel of Love 1Lv # !todo check english name + Name: Affection Jewel 1Lv Type: Card SubType: Enchant Script: | @@ -77055,7 +77056,7 @@ Body: bonus bMaxSPrate,5; - Id: 312790 AegisName: Affection_Jewel_2 - Name: Jewel of Love 2Lv # !todo check english name + Name: Affection Jewel 2Lv Type: Card SubType: Enchant Script: | @@ -77063,7 +77064,7 @@ Body: bonus bMaxSPrate,10; - Id: 312791 AegisName: Affection_Jewel_3 - Name: Jewel of Love 3Lv # !todo check english name + Name: Affection Jewel 3Lv Type: Card SubType: Enchant Script: | @@ -77071,7 +77072,7 @@ Body: bonus bMaxSPrate,15; - Id: 312792 AegisName: Affection_Jewel_4 - Name: Jewel of Love 4Lv # !todo check english name + Name: Affection Jewel 4Lv Type: Card SubType: Enchant Script: | @@ -77079,7 +77080,7 @@ Body: bonus bMaxSPrate,20; - Id: 312793 AegisName: Affection_Jewel_5 - Name: Jewel of Love 5Lv # !todo check english name + Name: Affection Jewel 5Lv Type: Card SubType: Enchant Script: | @@ -77087,7 +77088,7 @@ Body: bonus bMaxSPrate,25; - Id: 312794 AegisName: Affection_Jewel_6 - Name: Jewel of Love 6Lv # !todo check english name + Name: Affection Jewel 6Lv Type: Card SubType: Enchant Script: | @@ -77095,7 +77096,7 @@ Body: bonus bMaxSPrate,30; - Id: 312795 AegisName: Affection_Jewel_7 - Name: Jewel of Love 7Lv # !todo check english name + Name: Affection Jewel 7Lv Type: Card SubType: Enchant Script: | @@ -77103,7 +77104,7 @@ Body: bonus bMaxSPrate,35; - Id: 312796 AegisName: Affection_Jewel_8 - Name: Jewel of Love 8Lv # !todo check english name + Name: Affection Jewel 8Lv Type: Card SubType: Enchant Script: | @@ -77111,7 +77112,7 @@ Body: bonus bMaxSPrate,40; - Id: 312797 AegisName: Affection_Jewel_9 - Name: Jewel of Love 9Lv # !todo check english name + Name: Affection Jewel 9Lv Type: Card SubType: Enchant Script: | @@ -77119,7 +77120,7 @@ Body: bonus bMaxSPrate,45; - Id: 312798 AegisName: Affection_Jewel_10 - Name: Jewel of Love 10Lv # !todo check english name + Name: Affection Jewel 10Lv Type: Card SubType: Enchant Script: | @@ -77127,7 +77128,7 @@ Body: bonus bMaxSPrate,50; - Id: 312800 AegisName: Barmund_Poison3 - Name: Barmund's Crystal (Poison) Lv3 # !todo check english name + Name: Varmundt's Crystal (Poison) Lv3 Type: Card SubType: Enchant Script: | @@ -77677,7 +77678,7 @@ Body: bonus2 bMagicAtkEle,Ele_All,16; - Id: 312981 AegisName: Token_Of_Life - Name: Token of Life # !todo check english name + Name: Token of Life Type: Card SubType: Enchant Script: | @@ -77689,7 +77690,7 @@ Body: bonus2 bMagicAddSize,Size_All,5; - Id: 312982 AegisName: Signet_Of_Pow1 - Name: Seal of Power 1Lv # !todo check english name + Name: Signet of Power 1Lv Type: Card SubType: Enchant Script: | @@ -77697,7 +77698,7 @@ Body: bonus bAtkRate,1; - Id: 312983 AegisName: Signet_Of_Pow2 - Name: Seal of Power 2Lv # !todo check english name + Name: Signet of Power 2Lv Type: Card SubType: Enchant Script: | @@ -77705,7 +77706,7 @@ Body: bonus bAtkRate,3; - Id: 312984 AegisName: Signet_Of_Pow3 - Name: Seal of Power 3Lv # !todo check english name + Name: Signet of Power 3Lv Type: Card SubType: Enchant Script: | @@ -77713,7 +77714,7 @@ Body: bonus bAtkRate,6; - Id: 312985 AegisName: Signet_Of_Pow4 - Name: Seal of Power 4Lv # !todo check english name + Name: Signet of Power 4Lv Type: Card SubType: Enchant Script: | @@ -77722,7 +77723,7 @@ Body: bonus bAtkRate,10; - Id: 312986 AegisName: Signet_Of_Pow5 - Name: Seal of Power 5Lv # !todo check english name + Name: Signet of Power 5Lv Type: Card SubType: Enchant Script: | @@ -77731,7 +77732,7 @@ Body: bonus bAtkRate,15; - Id: 312987 AegisName: Signet_Of_Con1 - Name: Seal of Agility 1Lv # !todo check english name + Name: Signet of Concentration 1Lv Type: Card SubType: Enchant Script: | @@ -77739,7 +77740,7 @@ Body: bonus bAtkRate,1; - Id: 312988 AegisName: Signet_Of_Con2 - Name: Seal of Agility 2Lv # !todo check english name + Name: Signet of Concentration 2Lv Type: Card SubType: Enchant Script: | @@ -77747,7 +77748,7 @@ Body: bonus bAtkRate,3; - Id: 312989 AegisName: Signet_Of_Con3 - Name: Seal of Agility 3Lv # !todo check english name + Name: Signet of Concentration 3Lv Type: Card SubType: Enchant Script: | @@ -77755,7 +77756,7 @@ Body: bonus bAtkRate,6; - Id: 312990 AegisName: Signet_Of_Con4 - Name: Seal of Agility 4Lv # !todo check english name + Name: Signet of Concentration 4Lv Type: Card SubType: Enchant Script: | @@ -77764,7 +77765,7 @@ Body: bonus bAtkRate,10; - Id: 312991 AegisName: Signet_Of_Con5 - Name: Seal of Agility 5Lv # !todo check english name + Name: Signet of Concentration 5Lv Type: Card SubType: Enchant Script: | @@ -77773,7 +77774,7 @@ Body: bonus bAtkRate,15; - Id: 312992 AegisName: Signet_Of_Spl1 - Name: Seal of Wisdom 1Lv # !todo check english name + Name: Signet of Spell 1Lv Type: Card SubType: Enchant Script: | @@ -77781,7 +77782,7 @@ Body: bonus bMatkRate,1; - Id: 312993 AegisName: Signet_Of_Spl2 - Name: Seal of Wisdom 2Lv # !todo check english name + Name: Signet of Spell 2Lv Type: Card SubType: Enchant Script: | @@ -77789,7 +77790,7 @@ Body: bonus bMatkRate,3; - Id: 312994 AegisName: Signet_Of_Spl3 - Name: Seal of Wisdom 3Lv # !todo check english name + Name: Signet of Spell 3Lv Type: Card SubType: Enchant Script: | @@ -77797,7 +77798,7 @@ Body: bonus bMatkRate,6; - Id: 312995 AegisName: Signet_Of_Spl4 - Name: Seal of Wisdom 4Lv # !todo check english name + Name: Signet of Spell 4Lv Type: Card SubType: Enchant Script: | @@ -77806,7 +77807,7 @@ Body: bonus bMatkRate,10; - Id: 312996 AegisName: Signet_Of_Spl5 - Name: Seal of Wisdom 5Lv # !todo check english name + Name: Signet of Spell 5Lv Type: Card SubType: Enchant Script: | @@ -77815,7 +77816,7 @@ Body: bonus bMatkRate,15; - Id: 312997 AegisName: Signet_Of_Sta1 - Name: Stamina Seal 1Lv # !todo check english name + Name: Signet of Stamina 1Lv Type: Card SubType: Enchant Script: | @@ -77823,7 +77824,7 @@ Body: bonus bMaxHP,1000; - Id: 312998 AegisName: Signet_Of_Sta2 - Name: Stamina Seal 2Lv # !todo check english name + Name: Signet of Stamina 2Lv Type: Card SubType: Enchant Script: | @@ -77831,7 +77832,7 @@ Body: bonus bMaxHP,3000; - Id: 312999 AegisName: Signet_Of_Sta3 - Name: Stamina Seal 3Lv # !todo check english name + Name: Signet of Stamina 3Lv Type: Card SubType: Enchant Script: | @@ -77839,7 +77840,7 @@ Body: bonus bMaxHP,6000; - Id: 313000 AegisName: Signet_Of_Sta4 - Name: Stamina Seal 4Lv # !todo check english name + Name: Signet of Stamina 4Lv Type: Card SubType: Enchant Script: | @@ -77848,7 +77849,7 @@ Body: bonus bRes,25; - Id: 313001 AegisName: Signet_Of_Sta5 - Name: Stamina Seal 5Lv # !todo check english name + Name: Signet of Stamina 5Lv Type: Card SubType: Enchant Script: | @@ -77857,7 +77858,7 @@ Body: bonus bRes,50; - Id: 313002 AegisName: Signet_Of_Crt1 - Name: Lucky Seal 1Lv # !todo check english name + Name: Signet of Creative 1Lv Type: Card SubType: Enchant Script: | @@ -77865,7 +77866,7 @@ Body: bonus bAtkRate,1; - Id: 313003 AegisName: Signet_Of_Crt2 - Name: Lucky Seal 2Lv # !todo check english name + Name: Signet of Creative 2Lv Type: Card SubType: Enchant Script: | @@ -77873,7 +77874,7 @@ Body: bonus bAtkRate,3; - Id: 313004 AegisName: Signet_Of_Crt3 - Name: Lucky Seal 3Lv # !todo check english name + Name: Signet of Creative 3Lv Type: Card SubType: Enchant Script: | @@ -77881,7 +77882,7 @@ Body: bonus bAtkRate,6; - Id: 313005 AegisName: Signet_Of_Crt4 - Name: Lucky Seal 4Lv # !todo check english name + Name: Signet of Creative 4Lv Type: Card SubType: Enchant Script: | @@ -77890,7 +77891,7 @@ Body: bonus bAtkRate,10; - Id: 313006 AegisName: Signet_Of_Crt5 - Name: Lucky Seal 5Lv # !todo check english name + Name: Signet of Creative 5Lv Type: Card SubType: Enchant Script: | @@ -77899,7 +77900,7 @@ Body: bonus bAtkRate,15; - Id: 313007 AegisName: Signet_Of_Wis1 - Name: Spirit Seal 1Lv # !todo check english name + Name: Signed of Wisdom 1Lv Type: Card SubType: Enchant Script: | @@ -77907,7 +77908,7 @@ Body: bonus bMaxSP,100; - Id: 313008 AegisName: Signet_Of_Wis2 - Name: Spirit Seal 2Lv # !todo check english name + Name: Signed of Wisdom 2Lv Type: Card SubType: Enchant Script: | @@ -77915,7 +77916,7 @@ Body: bonus bMaxSP,250; - Id: 313009 AegisName: Signet_Of_Wis3 - Name: Spirit Seal 3Lv # !todo check english name + Name: Signed of Wisdom 3Lv Type: Card SubType: Enchant Script: | @@ -77923,7 +77924,7 @@ Body: bonus bMaxSP,450; - Id: 313010 AegisName: Signet_Of_Wis4 - Name: Spirit Seal 4Lv # !todo check english name + Name: Signed of Wisdom 4Lv Type: Card SubType: Enchant Script: | @@ -77932,7 +77933,7 @@ Body: bonus bMRes,25; - Id: 313011 AegisName: Signet_Of_Wis5 - Name: Spirit Seal 5Lv # !todo check english name + Name: Signed of Wisdom 5Lv Type: Card SubType: Enchant Script: | @@ -77941,7 +77942,7 @@ Body: bonus bMRes,50; - Id: 313012 AegisName: Life_of_Spring_Pow - Name: The life (power) of spring # !todo check english name + Name: Life of Spring (Strength) Type: Card SubType: Enchant Script: | @@ -77949,7 +77950,7 @@ Body: bonus bShortAtkRate,25; - Id: 313013 AegisName: Life_of_Spring_Sta - Name: The life of spring (stamina) # !todo check english name + Name: Life of Spring (Vitality) Type: Card SubType: Enchant Script: | @@ -77957,7 +77958,7 @@ Body: bonus bShortAtkRate,25; - Id: 313014 AegisName: Life_of_Spring_Crt - Name: Spring life in full bloom (luck) # !todo check english name + Name: Life of Spring (Luck) Type: Card SubType: Enchant Script: | @@ -77965,7 +77966,7 @@ Body: bonus bShortAtkRate,25; - Id: 313015 AegisName: Life_of_Summer_Con - Name: Life in full summer (Agility) # !todo check english name + Name: Life of Summer (Agility) Type: Card SubType: Enchant Script: | @@ -77973,7 +77974,7 @@ Body: bonus bLongAtkRate,25; - Id: 313016 AegisName: Life_of_Summer_Sta - Name: Full summer life (stamina) # !todo check english name + Name: Life of Summer (Vitality) Type: Card SubType: Enchant Script: | @@ -77981,7 +77982,7 @@ Body: bonus bLongAtkRate,25; - Id: 313017 AegisName: Life_of_Summer_Crt - Name: Summer life in full bloom (luck) # !todo check english name + Name: Life of Summer (Luck) Type: Card SubType: Enchant Script: | @@ -77989,7 +77990,7 @@ Body: bonus bLongAtkRate,25; - Id: 313018 AegisName: Life_of_Autumn_Spl - Name: The Life of Autumn (Wisdom) # !todo check english name + Name: Life of Autumn (Earth) Type: Card SubType: Enchant Script: | @@ -77997,7 +77998,7 @@ Body: bonus2 bMagicAtkEle,Ele_All,25; - Id: 313019 AegisName: Life_of_Autumn_Sta - Name: Autumn life in full swing (stamina) # !todo check english name + Name: Life of Autumn (Vitality) Type: Card SubType: Enchant Script: | @@ -78005,7 +78006,7 @@ Body: bonus2 bMagicAtkEle,Ele_All,25; - Id: 313020 AegisName: Life_of_Autumn_Wis - Name: The full life of autumn (spirit) # !todo check english name + Name: Life of Autumn (Wisdom) Type: Card SubType: Enchant Script: | @@ -78013,7 +78014,7 @@ Body: bonus2 bMagicAtkEle,Ele_All,25; - Id: 313021 AegisName: Life_of_Winter_Pow - Name: Life (power) of complete winter # !todo check english name + Name: Life of Winter (Power) Type: Card SubType: Enchant Script: | @@ -78021,7 +78022,7 @@ Body: bonus bCritAtkRate,25; - Id: 313022 AegisName: Life_of_Winter_Con - Name: Complete Winter Life (Agility) # !todo check english name + Name: Life of Winter (Concentration) Type: Card SubType: Enchant Script: | @@ -78029,7 +78030,7 @@ Body: bonus bCritAtkRate,25; - Id: 313023 AegisName: Life_of_Winter_Crt - Name: Life in perfect winter (luck) # !todo check english name + Name: Life of Winter (Creative) Type: Card SubType: Enchant Script: | @@ -78037,7 +78038,7 @@ Body: bonus bCritAtkRate,25; - Id: 313024 AegisName: Star_Cluster_Of_Str1 - Name: Strongman's Cluster 1Lv # !todo check english name + Name: Star Cluster of Strength 1Lv Type: Card SubType: Enchant Script: | @@ -78048,7 +78049,7 @@ Body: bonus bBaseAtk,5*(readparam(bCon)/20); - Id: 313025 AegisName: Star_Cluster_Of_Str2 - Name: Strongman's Cluster 2Lv # !todo check english name + Name: Star Cluster of Strength 2Lv Type: Card SubType: Enchant Script: | @@ -78064,7 +78065,7 @@ Body: bonus bBaseAtk,5*.@con; - Id: 313026 AegisName: Star_Cluster_Of_Str3 - Name: Strongman's Cluster 3Lv # !todo check english name + Name: Star Cluster of Strength 3Lv Type: Card SubType: Enchant Script: | @@ -78080,7 +78081,7 @@ Body: bonus bBaseAtk,5*.@con; - Id: 313027 AegisName: Star_Cluster_Of_Str4 - Name: Strongman's Cluster 4Lv # !todo check english name + Name: Star Cluster of Strength 4Lv Type: Card SubType: Enchant Script: | @@ -78096,7 +78097,7 @@ Body: bonus bBaseAtk,10*.@con; - Id: 313028 AegisName: Star_Cluster_Of_Str5 - Name: Strongman's Cluster 5Lv # !todo check english name + Name: Star Cluster of Strength 5Lv Type: Card SubType: Enchant Script: | @@ -78112,7 +78113,7 @@ Body: bonus bBaseAtk,10*.@con; - Id: 313029 AegisName: Star_Cluster_Of_Luk1 - Name: Heavenly Fortune Cluster 1Lv # !todo check english name + Name: Star Cluster of Luck 1Lv Type: Card SubType: Enchant Script: | @@ -78123,7 +78124,7 @@ Body: bonus bBaseAtk,5*(readparam(bCrt)/20); - Id: 313030 AegisName: Star_Cluster_Of_Luk2 - Name: Heavenly Fortune Cluster 2Lv # !todo check english name + Name: Star Cluster of Luck 2Lv Type: Card SubType: Enchant Script: | @@ -78139,7 +78140,7 @@ Body: bonus bBaseAtk,5*.@crt; - Id: 313031 AegisName: Star_Cluster_Of_Luk3 - Name: Heavenly Fortune Cluster 3Lv # !todo check english name + Name: Star Cluster of Luck 3Lv Type: Card SubType: Enchant Script: | @@ -78155,7 +78156,7 @@ Body: bonus bBaseAtk,5*.@crt; - Id: 313032 AegisName: Star_Cluster_Of_Luk4 - Name: Heavenly Fortune Cluster 4Lv # !todo check english name + Name: Star Cluster of Luck 4Lv Type: Card SubType: Enchant Script: | @@ -78171,7 +78172,7 @@ Body: bonus bBaseAtk,10*.@crt; - Id: 313033 AegisName: Star_Cluster_Of_Luk5 - Name: Heavenly Fortune Cluster 5Lv # !todo check english name + Name: Star Cluster of Luck 5Lv Type: Card SubType: Enchant Script: | @@ -78187,7 +78188,7 @@ Body: bonus bBaseAtk,10*.@crt; - Id: 313034 AegisName: Star_Cluster_Of_Int1 - Name: Cluster of Intelligence 1Lv # !todo check english name + Name: Star Cluster of Intelligence 1Lv Type: Card SubType: Enchant Script: | @@ -78198,7 +78199,7 @@ Body: bonus bMatk,5*(readparam(bCon)/20); - Id: 313035 AegisName: Star_Cluster_Of_Int2 - Name: Cluster of Intelligence 2Lv # !todo check english name + Name: Star Cluster of Intelligence 2Lv Type: Card SubType: Enchant Script: | @@ -78213,7 +78214,7 @@ Body: bonus bMatk,5*.@con; - Id: 313036 AegisName: Star_Cluster_Of_Int3 - Name: Cluster of Intelligence 3Lv # !todo check english name + Name: Star Cluster of Intelligence 3Lv Type: Card SubType: Enchant Script: | @@ -78228,7 +78229,7 @@ Body: bonus bMatk,5*.@con; - Id: 313037 AegisName: Star_Cluster_Of_Int4 - Name: Cluster of Intelligence 4Lv # !todo check english name + Name: Star Cluster of Intelligence 4Lv Type: Card SubType: Enchant Script: | @@ -78243,7 +78244,7 @@ Body: bonus bMatk,10*.@con; - Id: 313038 AegisName: Star_Cluster_Of_Int5 - Name: Cluster of Intelligence 5Lv # !todo check english name + Name: Star Cluster of Intelligence 5Lv Type: Card SubType: Enchant Script: | @@ -78258,7 +78259,7 @@ Body: bonus bMatk,10*.@con; - Id: 313039 AegisName: Star_Cluster_Of_Res1 - Name: Cluster of Resistance 1Lv # !todo check english name + Name: Star Cluster of Resistance 1Lv Type: Card SubType: Enchant Script: | @@ -78268,7 +78269,7 @@ Body: bonus bMdef,5*(readparam(bWis)/20); - Id: 313040 AegisName: Star_Cluster_Of_Res2 - Name: Cluster of Resistance 2Lv # !todo check english name + Name: Star Cluster of Resistance 2Lv Type: Card SubType: Enchant Script: | @@ -78280,7 +78281,7 @@ Body: bonus bMdef,5*.@wis; - Id: 313041 AegisName: Star_Cluster_Of_Res3 - Name: Cluster of Resistance 3Lv # !todo check english name + Name: Star Cluster of Resistance 3Lv Type: Card SubType: Enchant Script: | @@ -78292,7 +78293,7 @@ Body: bonus bMdef,5*.@wis; - Id: 313042 AegisName: Star_Cluster_Of_Res4 - Name: Cluster of Resistance 4Lv # !todo check english name + Name: Star Cluster of Resistance 4Lv Type: Card SubType: Enchant Script: | @@ -78304,7 +78305,7 @@ Body: bonus bMdef,10*.@wis; - Id: 313043 AegisName: Star_Cluster_Of_Res5 - Name: Cluster of Resistance 5Lv # !todo check english name + Name: Star Cluster of Resistance 5Lv Type: Card SubType: Enchant Script: | @@ -78316,7 +78317,7 @@ Body: bonus bMdef,10*.@wis; - Id: 313059 AegisName: aegis_313059 - Name: Dragon Knight Stone (Garment) # !todo check english name + Name: Dragon Knight Stone (Garment) Type: Card SubType: Enchant Script: | @@ -78326,21 +78327,21 @@ Body: bonus2 bAddRace,RC_Player_Doram,-(.@val/2); - Id: 313060 AegisName: aegis_313060 - Name: Imperial Guard Stone (Garment) # !todo check english name + Name: Imperial Guard Stone (Garment) Type: Card SubType: Enchant Script: | bonus2 bSkillAtk,"LG_RAYOFGENESIS",10*(getskilllv("IG_CROSS_RAIN")/2); - Id: 313061 AegisName: aegis_313061 - Name: Nightwatch Stone (Garment) # !todo check english name + Name: Nightwatch Stone (Garment) Type: Card SubType: Enchant Script: | bonus2 bAddEle,Ele_All,(getskilllv("NW_HIDDEN_CARD")/2); - Id: 313111 AegisName: FuriousMaterial_Not - Name: Crystal of Wrath (Neutral) # !todo check english name + Name: Furious Crystal (Neutral) Type: Card SubType: Enchant Script: | @@ -78357,7 +78358,7 @@ Body: } - Id: 313112 AegisName: FuriousMaterial_Wat - Name: Crystal of Wrath (Water) # !todo check english name + Name: Furious Crystal (Water) Type: Card SubType: Enchant Script: | @@ -78374,7 +78375,7 @@ Body: } - Id: 313113 AegisName: FuriousMaterial_Win - Name: Crystal of Wrath (Wind) # !todo check english name + Name: Furious Crystal (Wind) Type: Card SubType: Enchant Script: | @@ -78391,7 +78392,7 @@ Body: } - Id: 313114 AegisName: FuriousMaterial_Fir - Name: Crystal of Wrath (Fire) # !todo check english name + Name: Furious Crystal (Fire) Type: Card SubType: Enchant Script: | @@ -78408,7 +78409,7 @@ Body: } - Id: 313115 AegisName: FuriousMaterial_Gro - Name: Crystal of Wrath (Earth) # !todo check english name + Name: Furious Crystal (Earth) Type: Card SubType: Enchant Script: | @@ -78425,7 +78426,7 @@ Body: } - Id: 313116 AegisName: FuriousMaterial_Und - Name: Crystal of Wrath (Undead) # !todo check english name + Name: Furious Crystal (Undead) Type: Card SubType: Enchant Script: | @@ -78442,7 +78443,7 @@ Body: } - Id: 313117 AegisName: FuriousMaterial_Dar - Name: Crystal of Wrath (Dark) # !todo check english name + Name: Furious Crystal (Shadow) Type: Card SubType: Enchant Script: | @@ -78459,7 +78460,7 @@ Body: } - Id: 313118 AegisName: FuriousMaterial_Tel - Name: Crystal of Wrath (Ghost) # !todo check english name + Name: Furious Crystal (Ghost) Type: Card SubType: Enchant Script: | @@ -78476,7 +78477,7 @@ Body: } - Id: 313119 AegisName: FuriousMaterial_Sai - Name: Crystal of Wrath (Holy) # !todo check english name + Name: Furious Crystal (Holy) Type: Card SubType: Enchant Script: | @@ -78493,7 +78494,7 @@ Body: } - Id: 313120 AegisName: FuriousMaterial_Poi - Name: Crystal of Wrath (Poison) # !todo check english name + Name: Furious Crystal (Poison) Type: Card SubType: Enchant Script: | @@ -78510,7 +78511,7 @@ Body: } - Id: 313121 AegisName: FuriousEnergy_Not - Name: Energy of Wrath (Formless) # !todo check english name + Name: Furious Energy (Formless) Type: Card SubType: Enchant Script: | @@ -78527,7 +78528,7 @@ Body: } - Id: 313122 AegisName: FuriousEnergy_Hum - Name: Energy of Wrath (Human) # !todo check english name + Name: Furious Energy (Demihuman) Type: Card SubType: Enchant Script: | @@ -78544,7 +78545,7 @@ Body: } - Id: 313123 AegisName: FuriousEnergy_Dra - Name: Energy of Wrath (Dragon) # !todo check english name + Name: Furious Energy (Dragon) Type: Card SubType: Enchant Script: | @@ -78561,7 +78562,7 @@ Body: } - Id: 313124 AegisName: FuriousEnergy_Pla - Name: Energy of Wrath (Plant) # !todo check english name + Name: Furious Energy (Plant) Type: Card SubType: Enchant Script: | @@ -78578,7 +78579,7 @@ Body: } - Id: 313125 AegisName: FuriousEnergy_Ins - Name: Energy of Wrath (Insect) # !todo check english name + Name: Furious Energy (Insect) Type: Card SubType: Enchant Script: | @@ -78595,7 +78596,7 @@ Body: } - Id: 313126 AegisName: FuriousEnergy_Ani - Name: Energy of Wrath (Brute) # !todo check english name + Name: Furious Energy (Brute) Type: Card SubType: Enchant Script: | @@ -78612,7 +78613,7 @@ Body: } - Id: 313127 AegisName: FuriousEnergy_Fis - Name: Energy of Wrath (Fish) # !todo check english name + Name: Furious Energy (Fish) Type: Card SubType: Enchant Script: | @@ -78629,7 +78630,7 @@ Body: } - Id: 313128 AegisName: FuriousEnergy_Ang - Name: Energy of Wrath (Angel) # !todo check english name + Name: Furious Energy (Angel) Type: Card SubType: Enchant Script: | @@ -78646,7 +78647,7 @@ Body: } - Id: 313129 AegisName: FuriousEnergy_Dem - Name: Energy of Wrath (Demon) # !todo check english name + Name: Furious Energy (Demon) Type: Card SubType: Enchant Script: | @@ -78663,7 +78664,7 @@ Body: } - Id: 313130 AegisName: FuriousEnergy_Und - Name: Energy of Wrath (Undead) # !todo check english name + Name: Furious Energy (Undead) Type: Card SubType: Enchant Script: | @@ -78680,7 +78681,7 @@ Body: } - Id: 313131 AegisName: Pow_Assist - Name: POW Assistant # !todo check english name + Name: POW Assistance Type: Card SubType: Enchant Script: | @@ -78691,7 +78692,7 @@ Body: } - Id: 313132 AegisName: Pow_Enforce - Name: POW Enhancement # !todo check english name + Name: POW Enforcement Type: Card SubType: Enchant Script: | @@ -78703,7 +78704,7 @@ Body: } - Id: 313133 AegisName: SPL_Assist - Name: SPL Assistant # !todo check english name + Name: SPL Assistance Type: Card SubType: Enchant Script: | @@ -78714,7 +78715,7 @@ Body: } - Id: 313134 AegisName: SPL_Enforce - Name: SPL Enhancement # !todo check english name + Name: SPL Enforcement Type: Card SubType: Enchant Script: | @@ -78725,7 +78726,7 @@ Body: } - Id: 313135 AegisName: STA_Assist - Name: STA Assistant # !todo check english name + Name: STA Assistance Type: Card SubType: Enchant Script: | @@ -78734,7 +78735,7 @@ Body: } - Id: 313136 AegisName: STA_Enforce - Name: STA Enhancement # !todo check english name + Name: STA Enforcement Type: Card SubType: Enchant Script: | @@ -78743,7 +78744,7 @@ Body: } - Id: 313137 AegisName: WIS_Assist - Name: WIS Assistant # !todo check english name + Name: WIS Assistance Type: Card SubType: Enchant Script: | @@ -78752,7 +78753,7 @@ Body: } - Id: 313138 AegisName: WIS_Enforce - Name: WIS Enhancement # !todo check english name + Name: WIS Enforcement Type: Card SubType: Enchant Script: | @@ -78761,7 +78762,7 @@ Body: } - Id: 313139 AegisName: CON_Assist - Name: CON Assistant # !todo check english name + Name: CON Assistance Type: Card SubType: Enchant Script: | @@ -78772,7 +78773,7 @@ Body: } - Id: 313140 AegisName: CON_Enforce_Melee - Name: CON Enhancement (Physical) # !todo check english name + Name: CON Enforcement (Physical) Type: Card SubType: Enchant Script: | @@ -78784,7 +78785,7 @@ Body: } - Id: 313141 AegisName: CON_Enforce_Magic - Name: CON Enhancement (Magical) # !todo check english name + Name: CON Enforcement (Magical) Type: Card SubType: Enchant Script: | @@ -78795,7 +78796,7 @@ Body: } - Id: 313142 AegisName: CRT_Assist - Name: CRT Assistant # !todo check english name + Name: CRT Assistance Type: Card SubType: Enchant Script: | @@ -78806,7 +78807,7 @@ Body: } - Id: 313143 AegisName: CRT_Enforce - Name: CRT Enhancement # !todo check english name + Name: CRT Enforcement Type: Card SubType: Enchant Script: | @@ -82695,7 +82696,7 @@ Body: Type: Etc - Id: 1001029 AegisName: EP19_D_P_Ore - Name: Encroached Magical Source Stone # !todo check english name + Name: Encroached Magical Ore Type: Etc Weight: 30 Flags: @@ -82703,7 +82704,7 @@ Body: DropEffect: CLIENT - Id: 1001030 AegisName: EP19_N_P_Ore - Name: Neutralized Magical Source Stone # !todo check english name + Name: Neutralized Magical Ore Type: Etc Weight: 30 Flags: @@ -82711,7 +82712,7 @@ Body: DropEffect: CLIENT - Id: 1001031 AegisName: EP19_D_P_Crystal - Name: Encroached Magical Crystal # !todo check english name + Name: Encroached Magical Crystal Type: Etc Weight: 50 Flags: @@ -82719,7 +82720,7 @@ Body: DropEffect: CLIENT - Id: 1001032 AegisName: EP19_N_P_Crystal - Name: Neutralized Magical Crystal # !todo check english name + Name: Neutralized Magical Crystal Type: Etc Weight: 50 Flags: @@ -82727,7 +82728,7 @@ Body: DropEffect: CLIENT - Id: 1001033 AegisName: EP19_D_P_Stone - Name: Poisonous Magic # !todo check english name + Name: Miasmal Spell Type: Etc Weight: 50 Flags: @@ -82735,7 +82736,7 @@ Body: DropEffect: CLIENT - Id: 1001034 AegisName: EP19_S_F_1_Extract - Name: Snow Flower Mana Extract # !todo check english name + Name: Snow Flower Magic Stone Extract Type: Etc Weight: 30 Flags: @@ -82743,7 +82744,7 @@ Body: DropEffect: CLIENT - Id: 1001035 AegisName: EP19_S_F_2_Extract - Name: Glowing Snow Manastone Extract # !todo check english name + Name: Shining Snow Flower Magic Stone Extract Type: Etc Weight: 30 Flags: @@ -82751,7 +82752,7 @@ Body: DropEffect: CLIENT - Id: 1001036 AegisName: EP19_S_F_3_Extract - Name: Brilliant Folklore Manastone Extract # !todo check english name + Name: Brilliant Snow Flower Magic Stone Extract Type: Etc Weight: 30 Flags: @@ -82759,7 +82760,7 @@ Body: DropEffect: CLIENT - Id: 1001037 AegisName: EP19_Gla_Extract - Name: Glacier Extract # !todo check english name + Name: Glacier Extract Type: Etc Weight: 30 Flags: @@ -82848,109 +82849,109 @@ Body: BuyingStore: true - Id: 1001072 AegisName: aegis_1001072 - Name: Evil Orb # !todo check english name + Name: Evil Orb Type: Etc Buy: 1480 Weight: 10 - Id: 1001073 AegisName: aegis_1001073 - Name: Actoplasmic Stone # !todo check english name + Name: Ectoplasmic Stone Type: Etc Buy: 1460 Weight: 10 - Id: 1001074 AegisName: aegis_1001074 - Name: Heavy chain # !todo check english name + Name: Heavy Chain Type: Etc Buy: 1480 Weight: 10 - Id: 1001075 AegisName: aegis_1001075 - Name: Ruby with a grudge # !todo check english name + Name: Evil Minded Ruby Type: Etc Buy: 1500 Weight: 10 - Id: 1001076 AegisName: aegis_1001076 - Name: Small ring # !todo check english name + Name: Small Sewing Kit Type: Etc Buy: 1640 Weight: 10 - Id: 1001077 AegisName: Whittling - Name: Wood chips # !todo check english name + Name: Wood Block Type: Etc Buy: 1600 Weight: 10 - Id: 1001078 AegisName: aegis_1001078 - Name: Blue Moon Shard # !todo check english name + Name: Fragments of the Blue Moon Type: Etc Buy: 1720 Weight: 10 - Id: 1001079 AegisName: aegis_1001079 - Name: Bizarre Tentacles # !todo check english name + Name: Monstrous Tentacles Type: Etc Buy: 1520 Weight: 10 - Id: 1001080 AegisName: aegis_1001080 - Name: Condensed Poison # !todo check english name + Name: Congealed Poison Type: Etc Buy: 1600 Weight: 10 - Id: 1001081 AegisName: aegis_1001081 - Name: Slippery liquid # !todo check english name + Name: Slimy Fluid Type: Etc Buy: 1560 Weight: 10 - Id: 1001082 AegisName: aegis_1001082 - Name: Monster's Stone # !todo check english name + Name: Monster's Stone Type: Etc Buy: 1720 Weight: 10 - Id: 1001083 AegisName: aegis_1001083 - Name: Maple Leaf # !todo check english name + Name: Maple Leaves Type: Etc Buy: 1640 Weight: 10 - Id: 1001084 AegisName: Blaze_Stone - Name: Flamestone # !todo check english name + Name: Blaze Stone Type: Etc Buy: 1480 Weight: 10 - Id: 1001085 AegisName: aegis_1001085 - Name: Cool liquid # !todo check english name + Name: Cool Liquid Type: Etc Buy: 1460 Weight: 10 - Id: 1001086 AegisName: aegis_1001086 - Name: Blue Crystal Fragment # !todo check english name + Name: Blue Crystal Shard Type: Etc Buy: 1480 Weight: 10 - Id: 1001087 AegisName: Shining_Crystal - Name: Brightly shining crystal # !todo check english name + Name: Bright Shining Crystal Type: Etc Buy: 1600 Weight: 10 - Id: 1001088 AegisName: aegis_1001088 - Name: Fresh pears # !todo check english name + Name: Fresh Pear Type: Etc Buy: 1640 Weight: 10 - Id: 1001089 AegisName: Aromatic_Flower - Name: Fragrant flowers # !todo check english name + Name: Aromatic Flower Type: Etc Buy: 1680 Weight: 10 @@ -82977,266 +82978,266 @@ Body: BuyingStore: true - Id: 1001093 AegisName: Dimmension_Jewel - Name: Dimensional Jewel # !todo check english name + Name: Dimensional Jewel Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001094 AegisName: Dimmension_Jewelry - Name: Dimensional craftsmanship # !todo check english name + Name: Dimensional Jewelry Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001095 AegisName: Herosria_Jewel - Name: Heroria Jewel # !todo check english name + Name: Herosria Jewel Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001096 AegisName: Heros_Gold_Ore - Name: Heroria Gold Ore # !todo check english name + Name: Herosria Gold Ore Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001097 AegisName: Heros_Silver_Ore - Name: Heroria Silver Ore # !todo check english name + Name: Herosria Silver Ore Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001098 AegisName: Heros_Copper_Ore - Name: Heroria Copper Ore # !todo check english name + Name: Herosria Copper Ore Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001099 AegisName: Heros_Iron_Ore - Name: Heroria Iron Ore # !todo check english name + Name: Herosria Iron Ore Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001100 AegisName: Heros_Gold_Bar - Name: Heroria Gold Bar # !todo check english name + Name: Herosria Gold Bar Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001101 AegisName: Heros_Silver_Bar - Name: Heroria Silver Bar # !todo check english name + Name: Herosria Silver Bar Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001102 AegisName: Heros_Copper_Bar - Name: Heroria copper ingot # !todo check english name + Name: Herosria Copper Bar Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001103 AegisName: Heros_Iron_Bar - Name: Heroria Iron # !todo check english name + Name: Herosria Iron Bar Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001104 AegisName: Heros_Ruby_Ore - Name: Heroria Ruby Ore # !todo check english name + Name: Herosria Ruby Ore Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001105 AegisName: Heros_Topaz_Ore - Name: Heroria Topaz Gemstone # !todo check english name + Name: Herosria Topaz Ore Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001106 AegisName: Heros_Sapphire_Ore - Name: Heroria Sapphire Gemstone # !todo check english name + Name: Herosria Sapphire Ore Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001107 AegisName: Heros_Emerald_Ore - Name: Heroria Emerald Ore # !todo check english name + Name: Herosria Emerald Ore Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001108 AegisName: Heros_Diamond_Ore - Name: Heroria Diamond Ore # !todo check english name + Name: Herosria Diamond Ore Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001109 AegisName: Heros_Ruby - Name: Heroria Ruby # !todo check english name + Name: Herosria Ruby Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001110 AegisName: Heros_Topaz - Name: Heroria Topaz # !todo check english name + Name: Herosria Topaz Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001111 AegisName: Heros_Sapphire - Name: Heroria Sapphire # !todo check english name + Name: Herosria Sapphire Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001112 AegisName: Heros_Emerald - Name: Heroria Emerald # !todo check english name + Name: Herosria Emerald Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001113 AegisName: Heros_Diamond - Name: Heroria Diamond # !todo check english name + Name: Herosria Diamond Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001114 AegisName: Heros_Red_Herb - Name: Heroria Red Herb # !todo check english name + Name: Herosria Red Herb Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001115 AegisName: Heros_Blue_Herb - Name: Heroria Blue Herb # !todo check english name + Name: Herosria Blue Herb Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001116 AegisName: Heros_Yellow_Herb - Name: Heroria Yellow Herb # !todo check english name + Name: Herosria Yellow Herb Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001117 AegisName: Heros_White_Herb - Name: Heroria White Herb # !todo check english name + Name: Herosria White Herb Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001118 AegisName: Heros_Ruby_1 - Name: Shining Heroria Ruby # !todo check english name + Name: Shining Herosria Ruby Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001119 AegisName: Heros_Topaz_1 - Name: Shining Heroria Topaz # !todo check english name + Name: Shining Herosria Topaz Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001120 AegisName: Heros_Sapphire_1 - Name: Shining Heroria Sapphire # !todo check english name + Name: Shining Herosria Sapphire Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001121 AegisName: Heros_Emerald_1 - Name: Shining Heroria Emerald # !todo check english name + Name: Shining Herosria Emerald Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001122 AegisName: Heros_Diamond_1 - Name: Shining Heroria Diamond # !todo check english name + Name: Shining Herosria Diamond Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001123 AegisName: Heros_Ruby_2 - Name: Brilliant Heroria Ruby # !todo check english name + Name: Brilliant Herosria Ruby Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001124 AegisName: Heros_Topaz_2 - Name: Brilliant Heroria Topaz # !todo check english name + Name: Brilliant Herosria Topaz Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001125 AegisName: Heros_Sapphire_2 - Name: Brilliant Heroria Sapphire # !todo check english name + Name: Brilliant Herosria Sapphire Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001126 AegisName: Heros_Emerald_2 - Name: Brilliant Heroria Emerald # !todo check english name + Name: Brilliant Herosria Emerald Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001127 AegisName: Heros_Diamond_2 - Name: Brilliant Heroria Diamond # !todo check english name + Name: Brilliant Herosria Diamond Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001128 AegisName: Creed_Of_Herosria - Name: Heroria's Faith # !todo check english name + Name: Creed of Herosria Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001129 AegisName: Justice_Of_Herosria - Name: Definition of Heroria # !todo check english name + Name: Justice of Herosria Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001130 AegisName: Glory_Of_Herosria - Name: Heroic Glory # !todo check english name + Name: Glory of Herosria Type: Etc Weight: 10 Flags: @@ -83286,7 +83287,7 @@ Body: Weight: 10 - Id: 1001138 AegisName: Barmund_Plain_Essence - Name: Grassland Essence # !todo check english name + Name: Plain Essence Type: Etc Weight: 10 Flags: @@ -83294,7 +83295,7 @@ Body: DropEffect: CLIENT - Id: 1001139 AegisName: Barmund_Flame_Essence - Name: Essence of Fire # !todo check english name + Name: Flame Essence Type: Etc Weight: 10 Flags: @@ -83302,7 +83303,7 @@ Body: DropEffect: CLIENT - Id: 1001140 AegisName: Barmund_Ice_Essence - Name: Essence of Ice # !todo check english name + Name: Ice Essence Type: Etc Weight: 10 Flags: @@ -83310,7 +83311,7 @@ Body: DropEffect: CLIENT - Id: 1001141 AegisName: Barmund_Death_Essence - Name: Death Essence # !todo check english name + Name: Death Essence Type: Etc Weight: 10 Flags: @@ -83488,7 +83489,7 @@ Body: Weight: 10 - Id: 1001177 AegisName: Temple_Barmund_Rune - Name: Crusade Rune Fragment # !todo check english name + Name: Temple Rune Fragment Type: Etc Weight: 1 Flags: @@ -83496,7 +83497,7 @@ Body: DropEffect: CLIENT - Id: 1001178 AegisName: Temple_Barmund_Rune2 - Name: Crusade Rune # !todo check english name + Name: Temple Rune Type: Etc Weight: 10 Flags: @@ -83504,7 +83505,7 @@ Body: DropEffect: CLIENT - Id: 1001179 AegisName: Venom_Barmund_Rune - Name: Poison Rune Fragment # !todo check english name + Name: Venom Rune Fragment Type: Etc Weight: 1 Flags: @@ -83512,7 +83513,7 @@ Body: DropEffect: CLIENT - Id: 1001180 AegisName: Venom_Barmund_Rune2 - Name: Poison Rune # !todo check english name + Name: Venom Rune Type: Etc Weight: 10 Flags: @@ -83520,7 +83521,7 @@ Body: DropEffect: CLIENT - Id: 1001181 AegisName: Soul_Barmund_Rune - Name: Soul Rune Fragment # !todo check english name + Name: Soul Rune Fragment Type: Etc Weight: 1 Flags: @@ -83528,7 +83529,7 @@ Body: DropEffect: CLIENT - Id: 1001182 AegisName: Soul_Barmund_Rune2 - Name: Soul Rune # !todo check english name + Name: Soul Rune Type: Etc Weight: 10 Flags: @@ -83536,14 +83537,14 @@ Body: DropEffect: CLIENT - Id: 1001183 AegisName: Barmund_Temple_Essence - Name: Essence of the Temple # !todo check english name + Name: Temple Essence Type: Etc Weight: 10 Flags: DropEffect: CLIENT - Id: 1001184 AegisName: Barmund_Venom_Essence - Name: Venomous Essence # !todo check english name + Name: Venom Essence Type: Etc Weight: 10 Flags: @@ -83551,7 +83552,7 @@ Body: DropEffect: CLIENT - Id: 1001185 AegisName: Barmund_Soul_Essence - Name: Soul Essence # !todo check english name + Name: Soul Essence Type: Etc Weight: 10 Flags: @@ -83559,21 +83560,21 @@ Body: DropEffect: CLIENT - Id: 1001186 AegisName: Barmund_Water - Name: Magic number of soul # !todo check english name + Name: Soul Magical Water Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001188 AegisName: Barmund_Water2 - Name: Holy Magic Beast # !todo check english name + Name: Temple Magical Water Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001189 AegisName: Barmund_Water3 - Name: Poison Magic Beast # !todo check english name + Name: Venom Magical Water Type: Etc Weight: 10 Flags: @@ -83604,19 +83605,19 @@ Body: DropEffect: CLIENT - Id: 1001201 AegisName: Mocadas_Gold - Name: Priest's Relic # !todo check english name + Name: Bishop's Relic Type: Etc Flags: BuyingStore: true - Id: 1001202 AegisName: Mocadas_Water - Name: Priest's Holy Water # !todo check english name + Name: Bishop's Holy Water Type: Etc Flags: BuyingStore: true - Id: 1001203 AegisName: Mjo_Treasure - Name: Myornil's Treasure # !todo check english name + Name: Mjolnir's Treasure Type: Etc Weight: 10 Flags: @@ -83624,7 +83625,7 @@ Body: DropEffect: CLIENT - Id: 1001204 AegisName: Mjo_Energy - Name: Myornil's Energy # !todo check english name + Name: Mjolnir's Energy Type: Etc Flags: BuyingStore: true @@ -83643,7 +83644,7 @@ Body: NoAuction: true - Id: 1001217 AegisName: Ep20_Cat_Whiskers - Name: Sacred Cat Whiskers # !todo check english name + Name: Sacred Cat Whiskers Type: Etc Flags: BuyingStore: true @@ -83834,7 +83835,7 @@ Body: BuyingStore: true - Id: 1001248 AegisName: EP20_D_P_Ore - Name: Source Stone of Pure Magical Power # !todo check english name + Name: Pure Magical Ore Type: Etc Weight: 30 Flags: @@ -83842,7 +83843,7 @@ Body: DropEffect: CLIENT - Id: 1001249 AegisName: EP20_D_P_Crystal - Name: Crystal of Pure Magical Power # !todo check english name + Name: Pure Magical Crystal Type: Etc Weight: 50 Flags: @@ -83858,7 +83859,7 @@ Body: DropEffect: CLIENT - Id: 1001251 AegisName: EP20_D_Scale - Name: Snake God Scale # !todo check english name + Name: Scale of the Snake God Type: Etc Weight: 50 Flags: @@ -83871,7 +83872,7 @@ Body: Weight: 10 - Id: 1001253 AegisName: S_Enchant_Essence - Name: Shadow Essence # !todo check english name + Name: Shadow Essence Type: Etc Flags: BuyingStore: true @@ -84953,7 +84954,7 @@ Body: NoAuction: true - Id: 1001414 AegisName: aegis_1001414 - Name: Dimensional Crystal Fragment # !todo check english name + Name: Dimensional Crystal Fragment Type: Etc Weight: 1 Flags: @@ -84961,7 +84962,7 @@ Body: DropEffect: CLIENT - Id: 1001415 AegisName: aegis_1001415 - Name: Hall of Life Key # !todo check english name + Name: Hall of Life Key Type: Etc Weight: 10 Flags: @@ -84983,63 +84984,63 @@ Body: Weight: 100 - Id: 1001424 AegisName: aegis_1001424 - Name: Water droplet jewel with heat # !todo check english name + Name: Hot Water Droplet Gem Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001425 AegisName: aegis_1001425 - Name: Cold water droplet gem # !todo check english name + Name: Cold Water Droplet Gem Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001426 AegisName: aegis_1001426 - Name: Dry Wind Leaf Jewel # !todo check english name + Name: Dry Wind Leaf Gem Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001427 AegisName: aegis_1001427 - Name: Strong Wind Leaf Jewel # !todo check english name + Name: Strong Wind Leaf Gem Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001428 AegisName: aegis_1001428 - Name: Red Flame Heart Jewel # !todo check english name + Name: Red Flame Heart Gem Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001429 AegisName: aegis_1001429 - Name: Blue Flame Heart Jewel # !todo check english name + Name: Blue Flame Heart Gem Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001430 AegisName: aegis_1001430 - Name: Crystal of Solid Earth # !todo check english name + Name: Firm Land Crystal Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001431 AegisName: aegis_1001431 - Name: Blue Earth Crystal # !todo check english name + Name: Green Land Crystal Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001432 AegisName: aegis_1001432 - Name: Rage of Polluted Spirits # !todo check english name + Name: Wrath of Polluted Spirit Type: Etc Weight: 10 Flags: @@ -85047,7 +85048,7 @@ Body: DropEffect: CLIENT - Id: 1001433 AegisName: aegis_1001433 - Name: Corrupted Wrath of Agni # !todo check english name + Name: Wrath of Polluted Agni Type: Etc Weight: 10 Flags: @@ -85055,7 +85056,7 @@ Body: DropEffect: CLIENT - Id: 1001434 AegisName: aegis_1001434 - Name: Corrupted Aqua’s Fury # !todo check english name + Name: Wrath of Polluted Aqua Type: Etc Weight: 10 Flags: @@ -85063,7 +85064,7 @@ Body: DropEffect: CLIENT - Id: 1001435 AegisName: aegis_1001435 - Name: Corrupted Fury of Ventus # !todo check english name + Name: Wrath of Polluted Ventus Type: Etc Weight: 10 Flags: @@ -85071,7 +85072,7 @@ Body: DropEffect: CLIENT - Id: 1001436 AegisName: aegis_1001436 - Name: Corrupted Rage of Terra # !todo check english name + Name: Wrath of Polluted Tera Type: Etc Weight: 10 Flags: @@ -85079,7 +85080,7 @@ Body: DropEffect: CLIENT - Id: 1001440 AegisName: Energy_Of_Spring - Name: Spring energy # !todo check english name + Name: Energy of Spring Type: Etc Weight: 10 Flags: @@ -85087,7 +85088,7 @@ Body: DropEffect: CLIENT - Id: 1001441 AegisName: Energy_Of_Summer - Name: Summer energy # !todo check english name + Name: Energy of Summer Type: Etc Weight: 10 Flags: @@ -85095,7 +85096,7 @@ Body: DropEffect: CLIENT - Id: 1001442 AegisName: Energy_Of_Autumn - Name: Autumn energy # !todo check english name + Name: Energy of Autumn Type: Etc Weight: 10 Flags: @@ -85103,7 +85104,7 @@ Body: DropEffect: CLIENT - Id: 1001443 AegisName: Energy_Of_Winter - Name: Winter spirit # !todo check english name + Name: Energy of Winter Type: Etc Weight: 10 Flags: @@ -85111,7 +85112,7 @@ Body: DropEffect: CLIENT - Id: 1001444 AegisName: Spring_Material_1 - Name: Floral Pegasus Mane Hair # !todo check english name + Name: Mane Hair of Floral Pegasus Type: Etc Weight: 10 Flags: @@ -85119,7 +85120,7 @@ Body: DropEffect: CLIENT - Id: 1001445 AegisName: Spring_Material_2 - Name: Floral Pegasus Symbol # !todo check english name + Name: Emblem of Floral Pegasus Type: Etc Weight: 10 Flags: @@ -85127,7 +85128,7 @@ Body: DropEffect: CLIENT - Id: 1001446 AegisName: Spring_Material_3 - Name: Floral Pegasus Wings # !todo check english name + Name: Wing Feather of Floral Pegasus Type: Etc Weight: 10 Flags: @@ -85135,7 +85136,7 @@ Body: DropEffect: CLIENT - Id: 1001447 AegisName: Summer_Material_1 - Name: Coral Marine's Tail # !todo check english name + Name: Tail of Coral Marine Type: Etc Weight: 10 Flags: @@ -85143,7 +85144,7 @@ Body: DropEffect: CLIENT - Id: 1001448 AegisName: Summer_Material_2 - Name: Coral in Coral Marine # !todo check english name + Name: Coral of Coral Marine Type: Etc Weight: 10 Flags: @@ -85151,7 +85152,7 @@ Body: DropEffect: CLIENT - Id: 1001449 AegisName: Summer_Material_3 - Name: Coral Marine Fin # !todo check english name + Name: Fin of Coral Marine Type: Etc Weight: 10 Flags: @@ -85159,7 +85160,7 @@ Body: DropEffect: CLIENT - Id: 1001450 AegisName: Autumn_Material_1 - Name: Maple tree leaves # !todo check english name + Name: Leaf of Maple Tree Type: Etc Weight: 10 Flags: @@ -85167,7 +85168,7 @@ Body: DropEffect: CLIENT - Id: 1001451 AegisName: Autumn_Material_2 - Name: Maple tree branches # !todo check english name + Name: Branch of Maple Tree Type: Etc Weight: 10 Flags: @@ -85175,7 +85176,7 @@ Body: DropEffect: CLIENT - Id: 1001452 AegisName: Autumn_Material_3 - Name: Maple tree bark fragments # !todo check english name + Name: Bark Piece of Maple Tree Type: Etc Weight: 10 Flags: @@ -85183,7 +85184,7 @@ Body: DropEffect: CLIENT - Id: 1001453 AegisName: Winter_Material_1 - Name: Monarch Penguin's Coat # !todo check english name + Name: Coat of Monarch Penguin Type: Etc Weight: 10 Flags: @@ -85191,7 +85192,7 @@ Body: DropEffect: CLIENT - Id: 1001454 AegisName: Winter_Material_2 - Name: Monarch Penguin Ice Crystal # !todo check english name + Name: Ice Crystal of Monarch Penguin Type: Etc Weight: 10 Flags: @@ -85199,7 +85200,7 @@ Body: DropEffect: CLIENT - Id: 1001455 AegisName: Winter_Material_3 - Name: Monarch penguin symbol # !todo check english name + Name: Emblem of Monarch Penguin Type: Etc Weight: 10 Flags: @@ -85207,77 +85208,77 @@ Body: DropEffect: CLIENT - Id: 1001456 AegisName: Circul_Of_Life - Name: Cycle of life # !todo check english name + Name: Circulation of Life Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001457 AegisName: Fruit_Of_Birth - Name: Fruit of Birth # !todo check english name + Name: Fruit of Birth Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001458 AegisName: Fruit_Of_Extinction - Name: Fruit of Extinction # !todo check english name + Name: Fruit of Extinction Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001459 AegisName: Truth_Of_Life - Name: The truth of life # !todo check english name + Name: Truth of Life Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001460 AegisName: Light_Of_Life - Name: Light of life # !todo check english name + Name: Light of Life Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001461 AegisName: Energy_Of_Flame - Name: Fire energy # !todo check english name + Name: Energy of Fire Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001462 AegisName: Energy_Of_Water - Name: The energy of water # !todo check english name + Name: Energy of Water Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001463 AegisName: Energy_Of_Wind - Name: The energy of the wind # !todo check english name + Name: Energy of Wind Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001464 AegisName: Energy_Of_Ground - Name: Energy of the Earth # !todo check english name + Name: Energy of Earth Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001465 AegisName: Grace_Of_Spirit - Name: Spirit’s Protection # !todo check english name + Name: Grace of Spirit Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001474 AegisName: VR_RING - Name: Ring # !todo check english name + Name: Ring Type: Etc Weight: 10 Trade: @@ -85289,7 +85290,7 @@ Body: NoAuction: true - Id: 1001478 AegisName: aegis_1001478 - Name: Pure Diamond # !todo check english name + Name: Pure Diamond Type: Etc Buy: 200000 Weight: 300 @@ -85297,7 +85298,7 @@ Body: DropEffect: CLIENT - Id: 1001479 AegisName: aegis_1001479 - Name: Black diamond # !todo check english name + Name: Black Diamond Type: Etc Buy: 400000 Weight: 300 @@ -85305,7 +85306,7 @@ Body: DropEffect: CLIENT - Id: 1001480 AegisName: aegis_1001480 - Name: Golden Diamond # !todo check english name + Name: Golden Diamond Type: Etc Buy: 600000 Weight: 300 @@ -85328,7 +85329,7 @@ Body: Weight: 100 - Id: 1001500 AegisName: R_Adulter_F_A_Bow - Name: Engraved Adulter Fides Aiming Bow # !todo check english name + Name: Printed Adulter Fides Aiming Bow Type: Etc Trade: NoDrop: true @@ -85339,7 +85340,7 @@ Body: NoAuction: true - Id: 1001501 AegisName: R_Adulter_F_T_Sword - Name: Engraved Adulter Fides Two-handed Sword # !todo check english name + Name: Printed Adulter Fides Two-handed Sword Type: Etc Trade: NoDrop: true @@ -85350,7 +85351,7 @@ Body: NoAuction: true - Id: 1001502 AegisName: R_Adulter_F_Lance - Name: Engraved Adulter Fides Lance # !todo check english name + Name: Printed Adulter Fides Lance Type: Etc Trade: NoDrop: true @@ -85361,7 +85362,7 @@ Body: NoAuction: true - Id: 1001503 AegisName: R_Adulter_F_G_Sword - Name: Engraved Adulter Fides Guardian Sword # !todo check english name + Name: Printed Adulter Fides Guardian Sword Type: Etc Trade: NoDrop: true @@ -85372,7 +85373,7 @@ Body: NoAuction: true - Id: 1001504 AegisName: R_Adulter_F_G_Spear - Name: Engraving of Adulter Fides Guardian Spear # !todo check english name + Name: Printed Adulter Fides Guardian Spear Type: Etc Trade: NoDrop: true @@ -85383,7 +85384,7 @@ Body: NoAuction: true - Id: 1001505 AegisName: R_Adulter_F_Axe - Name: Engraving of Adulter Fides Axe # !todo check english name + Name: Printed Adulter Fides Axe Type: Etc Trade: NoDrop: true @@ -85394,7 +85395,7 @@ Body: NoAuction: true - Id: 1001506 AegisName: R_Adulter_F_Mace - Name: Engraving of Adulter Fides Mace # !todo check english name + Name: Printed Adulter Fides Mace Type: Etc Trade: NoDrop: true @@ -85405,7 +85406,7 @@ Body: NoAuction: true - Id: 1001507 AegisName: R_Adulter_F_Lapier - Name: Engraved Adulter Fides Rapier # !todo check english name + Name: Printed Adulter Fides Rapier Type: Etc Trade: NoDrop: true @@ -85416,7 +85417,7 @@ Body: NoAuction: true - Id: 1001508 AegisName: R_Adulter_F_Hall - Name: Engraving of Adulter Fides Hall # !todo check english name + Name: Printed Adulter Fides Scepter Type: Etc Trade: NoDrop: true @@ -85427,7 +85428,7 @@ Body: NoAuction: true - Id: 1001509 AegisName: R_Adulter_F_Cakram - Name: Engraving of Adulter Fides Chakram # !todo check english name + Name: Printed Adulter Fides Chakram Type: Etc Trade: NoDrop: true @@ -85438,7 +85439,7 @@ Body: NoAuction: true - Id: 1001510 AegisName: R_Adulter_F_Katar - Name: Engraving Adulter Fides Katar # !todo check english name + Name: Printed Adulter Fides Katar Type: Etc Trade: NoDrop: true @@ -85449,7 +85450,7 @@ Body: NoAuction: true - Id: 1001511 AegisName: R_Adulter_F_Dagger - Name: Engraving of Adulter Fides Dagger # !todo check english name + Name: Printed Adulter Fides Dagger Type: Etc Trade: NoDrop: true @@ -85460,7 +85461,7 @@ Body: NoAuction: true - Id: 1001512 AegisName: R_Adulter_F_C_Bow - Name: Engraved Adulter Fides Crossbow # !todo check english name + Name: Printed Adulter Fides Crossbow Type: Etc Trade: NoDrop: true @@ -85471,7 +85472,7 @@ Body: NoAuction: true - Id: 1001513 AegisName: R_Adulter_F_T_Staff - Name: Engraved Adulter Fides Two-handed Staff # !todo check english name + Name: Printed Adulter Fides Two-handed Staff Type: Etc Trade: NoDrop: true @@ -85482,7 +85483,7 @@ Body: NoAuction: true - Id: 1001514 AegisName: R_Adulter_F_Rod - Name: Engraving Adulter Fides Road # !todo check english name + Name: Printed Adulter Fides Rod Type: Etc Trade: NoDrop: true @@ -85493,7 +85494,7 @@ Body: NoAuction: true - Id: 1001515 AegisName: R_Adulter_F_M_Book - Name: Engraving Adulter Fides Magic Book # !todo check english name + Name: Printed Adulter Fides Magic Book Type: Etc Trade: NoDrop: true @@ -85504,7 +85505,7 @@ Body: NoAuction: true - Id: 1001516 AegisName: R_Adulter_F_P_Book - Name: Printed Adulter Fides Poison Book # !todo check english name + Name: Printed Adulter Fides Poison Book Type: Etc Trade: NoDrop: true @@ -85515,7 +85516,7 @@ Body: NoAuction: true - Id: 1001517 AegisName: R_Adulter_F_Bible - Name: Engraving of Adulter Fides Bible # !todo check english name + Name: Printed Adulter Fides Bible Type: Etc Trade: NoDrop: true @@ -85526,7 +85527,7 @@ Body: NoAuction: true - Id: 1001518 AegisName: R_Adulter_F_Wand - Name: Engraved Adulter Fides Wand # !todo check english name + Name: Printed Adulter Fides Wand Type: Etc Trade: NoDrop: true @@ -85537,7 +85538,7 @@ Body: NoAuction: true - Id: 1001519 AegisName: R_Adulter_F_Knuckle - Name: Engraved Adulter Fides Knuckle # !todo check english name + Name: Printed Adulter Fides Knuckle Type: Etc Trade: NoDrop: true @@ -85548,7 +85549,7 @@ Body: NoAuction: true - Id: 1001520 AegisName: R_Adulter_F_Claw - Name: Engraving of Adulterre Fides Cro # !todo check english name + Name: Printed Adulter Fides Claw Type: Etc Trade: NoDrop: true @@ -85559,7 +85560,7 @@ Body: NoAuction: true - Id: 1001521 AegisName: R_Adulter_F_Ballista - Name: Engraving Adulter Fides Ballista # !todo check english name + Name: Printed Adulter Fides Ballista Type: Etc Trade: NoDrop: true @@ -85570,7 +85571,7 @@ Body: NoAuction: true - Id: 1001522 AegisName: R_Adulter_F_Violin - Name: Engraved Adulter Fides Violin # !todo check english name + Name: Printed Adulter Fides Violin Type: Etc Trade: NoDrop: true @@ -85581,7 +85582,7 @@ Body: NoAuction: true - Id: 1001523 AegisName: R_Adulter_F_C_Rope - Name: Engraving Adulter Fides Chain Rope # !todo check english name + Name: Printed Adulter Fides Chain Rope Type: Etc Trade: NoDrop: true @@ -85592,7 +85593,7 @@ Body: NoAuction: true - Id: 1001524 AegisName: R_Adulter_F_Harp - Name: Engraved Adulter Fides Harp # !todo check english name + Name: Printed Adulter Fides Harp Type: Etc Trade: NoDrop: true @@ -85603,7 +85604,7 @@ Body: NoAuction: true - Id: 1001525 AegisName: R_Adulter_F_Ribbon - Name: Engraved Adulter Fides Ribbon # !todo check english name + Name: Printed Adulter Fides Ribbon Type: Etc Trade: NoDrop: true @@ -85614,7 +85615,7 @@ Body: NoAuction: true - Id: 1001526 AegisName: R_Adulter_F_Humma - Name: Engraved Adulter Fides Wind Demon Shuriken # !todo check english name + Name: Printed Adulter Fides Huuma Shuriken Type: Etc Trade: NoDrop: true @@ -85625,7 +85626,7 @@ Body: NoAuction: true - Id: 1001527 AegisName: R_Adulter_F_C_Humma - Name: Engraved Adulter Fides Cross Wind Horse Shuriken # !todo check english name + Name: Printed Adulter Fides Cross Huuma Shuriken Type: Etc Trade: NoDrop: true @@ -85636,7 +85637,7 @@ Body: NoAuction: true - Id: 1001528 AegisName: R_Adulter_F_Revolver - Name: Engraved Adulter Fides Revolver # !todo check english name + Name: Printed Adulter Fides Revolver Type: Etc Trade: NoDrop: true @@ -85647,7 +85648,7 @@ Body: NoAuction: true - Id: 1001529 AegisName: R_Adulter_F_Shotgun - Name: Engraved Adulter Fides Shotgun # !todo check english name + Name: Printed Adulter Fides Shotgun Type: Etc Trade: NoDrop: true @@ -85658,7 +85659,7 @@ Body: NoAuction: true - Id: 1001530 AegisName: R_Adulter_F_Rifle - Name: Engraved Adulter Fides Rifle # !todo check english name + Name: Printed Adulter Fides Rifle Type: Etc Trade: NoDrop: true @@ -85669,7 +85670,7 @@ Body: NoAuction: true - Id: 1001531 AegisName: R_Adulter_F_Gatling - Name: Engraved Adulter Fides Gatling Gun # !todo check english name + Name: Printed Adulter Fides Gatling Gun Type: Etc Trade: NoDrop: true @@ -85680,7 +85681,7 @@ Body: NoAuction: true - Id: 1001532 AegisName: R_Adulter_F_Launcher - Name: Engraved Adulter Fides Launcher # !todo check english name + Name: Printed Adulter Fides Launcher Type: Etc Trade: NoDrop: true @@ -85691,7 +85692,7 @@ Body: NoAuction: true - Id: 1001533 AegisName: R_Adulter_F_Moon_B - Name: Engraving of Adulter Fides Book of Books # !todo check english name + Name: Printed Adulter Fides Moon Book Type: Etc Trade: NoDrop: true @@ -85702,7 +85703,7 @@ Body: NoAuction: true - Id: 1001534 AegisName: R_Adulter_F_Star_B - Name: Printed Adulter Fides Stardust Book # !todo check english name + Name: Printed Adulter Fides Stardust Book Type: Etc Trade: NoDrop: true @@ -85713,7 +85714,7 @@ Body: NoAuction: true - Id: 1001535 AegisName: R_Adulter_F_S_Stick - Name: Engraved Adulter Fides Soul Stick # !todo check english name + Name: Printed Adulter Fides Soul Stick Type: Etc Trade: NoDrop: true @@ -85724,7 +85725,7 @@ Body: NoAuction: true - Id: 1001536 AegisName: R_Adulter_F_D_Wand - Name: Engraved Adulter Fides Dark Wand # !todo check english name + Name: Printed Adulter Fides Dark Wand Type: Etc Trade: NoDrop: true @@ -85735,7 +85736,7 @@ Body: NoAuction: true - Id: 1001537 AegisName: R_Adulter_F_F_Wand - Name: Engraved Adulter Fides Foxtail Wand # !todo check english name + Name: Printed Adulter Fides Foxtail Wand Type: Etc Trade: NoDrop: true @@ -85746,7 +85747,7 @@ Body: NoAuction: true - Id: 1001538 AegisName: R_Adulter_F_F_model - Name: Engraving of Adulter Fides Foxtail Model # !todo check english name + Name: Printed Adulter Fides Foxtail Model Type: Etc Trade: NoDrop: true @@ -85757,7 +85758,7 @@ Body: NoAuction: true - Id: 1001539 AegisName: R_Gray_W_Suits - Name: Engraved Gray Wolf Suit # !todo check english name + Name: Printed Gray Wolf Suit Type: Etc Trade: NoDrop: true @@ -85768,7 +85769,7 @@ Body: NoAuction: true - Id: 1001540 AegisName: R_Gray_W_Robe - Name: Engraved Gray Wolf Robe # !todo check english name + Name: Printed Gray Wolf Robe Type: Etc Trade: NoDrop: true @@ -85779,7 +85780,7 @@ Body: NoAuction: true - Id: 1001541 AegisName: R_Gray_W_Muffler - Name: Engraved Gray Wolf Muffler # !todo check english name + Name: Printed Gray Wolf Muffler Type: Etc Trade: NoDrop: true @@ -85790,7 +85791,7 @@ Body: NoAuction: true - Id: 1001542 AegisName: R_Gray_W_Manteau - Name: Engraved Gray Wolf Cloak # !todo check english name + Name: Printed Gray Wolf Manteau Type: Etc Trade: NoDrop: true @@ -85801,7 +85802,7 @@ Body: NoAuction: true - Id: 1001543 AegisName: R_Gray_W_Boots - Name: Engraved Gray Wolf Boots # !todo check english name + Name: Printed Gray Wolf Boots Type: Etc Trade: NoDrop: true @@ -85812,7 +85813,7 @@ Body: NoAuction: true - Id: 1001544 AegisName: R_Gray_W_Shoes - Name: Engraved Gray Wolf Shoes # !todo check english name + Name: Printed Gray Wolf Shoes Type: Etc Trade: NoDrop: true @@ -85823,7 +85824,7 @@ Body: NoAuction: true - Id: 1001545 AegisName: R_Gray_W_Pendant - Name: Engraved Gray Wolf Pendant # !todo check english name + Name: Printed Gray Wolf Pendant Type: Etc Trade: NoDrop: true @@ -85834,7 +85835,7 @@ Body: NoAuction: true - Id: 1001546 AegisName: R_Gray_W_Ring - Name: Engraved Gray Wolf Ring # !todo check english name + Name: Printed Gray Wolf Ring Type: Etc Trade: NoDrop: true @@ -85845,7 +85846,7 @@ Body: NoAuction: true - Id: 1001547 AegisName: R_Gray_W_Earing - Name: Engraved Gray Wolf Earrings # !todo check english name + Name: Printed Gray Wolf Earring Type: Etc Trade: NoDrop: true @@ -85856,7 +85857,7 @@ Body: NoAuction: true - Id: 1001548 AegisName: R_Gray_W_Necklace - Name: Engraved Gray Wolf Necklace # !todo check english name + Name: Printed Gray Wolf Necklace Type: Etc Trade: NoDrop: true @@ -85867,7 +85868,7 @@ Body: NoAuction: true - Id: 1001549 AegisName: S_Badge - Name: Sonic Badge # !todo check english name + Name: Sonic Badge Type: Etc Weight: 10 Trade: @@ -85880,7 +85881,7 @@ Body: NoAuction: true - Id: 1001550 AegisName: Abyss_Jewel_Fragment - Name: Abyss Jewel Fragment # !todo check english name + Name: Abyss Jewel Fragment Type: Etc Weight: 10 Flags: @@ -85888,7 +85889,7 @@ Body: DropEffect: CLIENT - Id: 1001551 AegisName: Time_Dim_J_Fragment - Name: Space-Time Gem Fragment # !todo check english name + Name: Time Dimension Jewel Fragment Type: Etc Weight: 10 Flags: @@ -85896,7 +85897,7 @@ Body: DropEffect: CLIENT - Id: 1001552 AegisName: Abyss_Magic_Jewel - Name: Abyss Magic Gem # !todo check english name + Name: Abyss Magic Jewel Type: Etc Weight: 10 Flags: @@ -85904,7 +85905,7 @@ Body: DropEffect: CLIENT - Id: 1001553 AegisName: Time_Dimension_Jewel - Name: Time-Space Magic Gem # !todo check english name + Name: Time Dimension Magic Jewel Type: Etc Weight: 10 Flags: @@ -85912,7 +85913,7 @@ Body: DropEffect: CLIENT - Id: 1001554 AegisName: Abyss_Rune_Ore - Name: Abyssal Magic Rune Fragment # !todo check english name + Name: Abyss Magic Rune Ore Type: Etc Weight: 10 Flags: @@ -85920,7 +85921,7 @@ Body: DropEffect: CLIENT - Id: 1001555 AegisName: Abyss_Rune - Name: Abyss Magic Rune # !todo check english name + Name: Abyss Magic Rune Type: Etc Weight: 10 Flags: @@ -85928,7 +85929,7 @@ Body: DropEffect: CLIENT - Id: 1001556 AegisName: Time_D_Ma_Rune - Name: Time-Space Magic Rune # !todo check english name + Name: Time Dimension Magic Rune Type: Etc Weight: 10 Flags: @@ -85936,31 +85937,31 @@ Body: DropEffect: CLIENT - Id: 1001581 AegisName: aegis_1001581 - Name: Coffin of Good and Evil Coupon # !todo check english name + Name: Crown of Good and Evil Coupon Type: Etc Flags: BuyingStore: true - Id: 1001583 AegisName: aegis_1001583 - Name: Good and Evil Boots Coupon # !todo check english name + Name: Boots of Good and Evil Coupon Type: Etc Flags: BuyingStore: true - Id: 1001584 AegisName: aegis_1001584 - Name: Good Weapon Coupon # !todo check english name + Name: Good Weapon Coupon Type: Etc Flags: BuyingStore: true - Id: 1001588 AegisName: aegis_1001588 - Name: Weapon of Evil Coupon # !todo check english name + Name: Evil Weapon Coupon Type: Etc Flags: BuyingStore: true - Id: 1001589 AegisName: Sp_Cor_Core - Name: Special Cor Core # !todo check english name + Name: Special Cor Core Type: Etc Trade: NoDrop: true @@ -85973,7 +85974,7 @@ Body: NoAuction: true - Id: 1001590 AegisName: Sp_BarMeal_Ticket - Name: Special Barmil Ticket # !todo check english name + Name: Special Varmeal Ticket Type: Etc Trade: NoDrop: true @@ -85986,7 +85987,7 @@ Body: NoAuction: true - Id: 1001591 AegisName: Sp_Amethyst_Fragment - Name: Special Amethyst Piece # !todo check english name + Name: Special Amethyst Fragment Type: Etc Trade: NoDrop: true @@ -85999,31 +86000,31 @@ Body: NoAuction: true - Id: 1001592 AegisName: R_Core_Rune - Name: Concentrated Magical Rune Stone # !todo check english name + Name: Condensed Magical Rune Stone Type: Etc Flags: BuyingStore: true - Id: 1001593 AegisName: R_Outside_Rune - Name: Dim Magical Rune Stone # !todo check english name + Name: Faint Magical Rune Stone Type: Etc Flags: BuyingStore: true - Id: 1001594 AegisName: R_Rune_Seal - Name: Rune Seal # !todo check english name + Name: Rune Seal Type: Etc Flags: BuyingStore: true - Id: 1001595 AegisName: R_Sealed_Rune - Name: Rune stone sealed with a seal # !todo check english name + Name: Sealed Rune Stone Type: Etc Flags: BuyingStore: true - Id: 1001596 AegisName: 2401_ev_YongLin - Name: Rammir’s Dragon # !todo check english name + Name: Lammir's Scale Type: Etc Trade: NoDrop: true @@ -86036,38 +86037,38 @@ Body: NoAuction: true - Id: 1001599 AegisName: Unknown_Meteorite_F - Name: Unknown meteorite fragment # !todo check english name + Name: Unknown Meteorite Fragment Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001600 AegisName: Energy_Of_Elemental - Name: Elemental energy # !todo check english name + Name: Energy of Elemental Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001601 AegisName: Genesis_Of_Life - Name: Origin of life # !todo check english name + Name: Genesis of Life Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 1001603 AegisName: aegis_1001603 - Name: Imperial Guard Stone (Garment) # !todo check english name + Name: Imperial Guard Stone (Garment) Type: Etc Weight: 100 - Id: 1001604 AegisName: aegis_1001604 - Name: Dragon Knight Stone (Garment) # !todo check english name + Name: Dragon Knight Stone (Garment) Type: Etc Weight: 100 - Id: 1001605 AegisName: aegis_1001605 - Name: Nightwatch Stone (Garment) # !todo check english name + Name: Nightwatch Stone (Garment) Type: Etc Weight: 100 - Id: 1001668 diff --git a/db/re/item_db_usable.yml b/db/re/item_db_usable.yml index 17985e89fb..66f4713a93 100644 --- a/db/re/item_db_usable.yml +++ b/db/re/item_db_usable.yml @@ -61736,7 +61736,7 @@ Body: laphine_upgrade(); - Id: 100487 AegisName: Loki_Coin_2 - Name: Loki's White Coin # !todo check english name + Name: Tiara's Loss Type: DelayConsume Weight: 10 Flags: @@ -61745,7 +61745,7 @@ Body: laphine_upgrade(); - Id: 100488 AegisName: Loki_Advice_2 - Name: Loki's Advice (Magic) # !todo check english name + Name: Condensed Tiara's Loss Type: DelayConsume Weight: 10 Flags: @@ -66848,7 +66848,7 @@ Body: item_reform(); - Id: 102277 AegisName: Loki_Advice - Name: Loki's advice (near physics) # !todo check english name + Name: Loki's Advice (Melee Physical) Type: DelayConsume Weight: 10 Flags: @@ -66857,7 +66857,7 @@ Body: laphine_upgrade(); - Id: 102278 AegisName: Loki_Coin - Name: Loki's Coin # !todo check english name + Name: Loki's Coin Type: DelayConsume Weight: 10 Flags: @@ -66908,7 +66908,7 @@ Body: laphine_synthesis(); - Id: 102311 AegisName: Bs_Item_M_S_63 - Name: Groan of Corruption Recipe # !todo check english name + Name: Moan of Corruption Recipe Type: DelayConsume Weight: 10 EquipLevelMin: 240 From 872e31cc8d4981ba3e4b83e9d59179b079725796 Mon Sep 17 00:00:00 2001 From: Atemo Date: Wed, 13 Mar 2024 14:39:45 +0100 Subject: [PATCH 34/44] Updated NPCs list and mobs list according to KRO client (#8167) --- db/re/mob_db.yml | 194 +++++++++++++++++++++++++++++++++++ src/map/npc.hpp | 26 +++++ src/map/script_constants.hpp | 24 +++++ 3 files changed, 244 insertions(+) diff --git a/db/re/mob_db.yml b/db/re/mob_db.yml index a8fe5ad7c0..8853675fb0 100644 --- a/db/re/mob_db.yml +++ b/db/re/mob_db.yml @@ -100897,6 +100897,8 @@ Body: - Item: Plasma_R2_Card Rate: 1 StealProtected: true +# - Id: 20695 +# AegisName: E_GARLING - Id: 20696 AegisName: EP17_2_CHILD_ADMIN1 Name: Child Admin Beta @@ -106578,12 +106580,204 @@ Body: # AegisName: VR_MD_TILBY2 # - Id: 22164 # AegisName: VR_MD_RAINBOW +# - Id: 22166 +# AegisName: HEADSTONE1 +# - Id: 22167 +# AegisName: HEADSTONE2 +# - Id: 22168 +# AegisName: HEADSTONE3 +# - Id: 22169 +# AegisName: HEADSTONE4 +# - Id: 22170 +# AegisName: HEADSTONE0 # - Id: 22171 # AegisName: MD_COMMON_BOSS # - Id: 22172 # AegisName: E_MANANANGGAL # - Id: 22173 # AegisName: E_WAKWAK +# - Id: 22174 +# AegisName: MD_PRI_RIGEL +# - Id: 22175 +# AegisName: MD_PRI_RIGEL_AC +# - Id: 22176 +# AegisName: MD_PRI_RIGEL_ACS +# - Id: 22177 +# AegisName: MD_PRI_DRAGON_1 +# - Id: 22178 +# AegisName: MD_PRI_DRAGON_2 +# - Id: 22179 +# AegisName: MD_PRI_DRAGON_3 +# - Id: 22180 +# AegisName: MD_PRI_DRAGON_4 +# - Id: 22181 +# AegisName: MD_COMMON_P +# - Id: 22182 +# AegisName: MD_COMMON_SG +# - Id: 22183 +# AegisName: MD_MANASTORM +# - Id: 22184 +# AegisName: MD_MANABARRIER +# - Id: 22185 +# AegisName: DARK_LORD2 +# - Id: 22186 +# AegisName: E_NF_BUG +# - Id: 22187 +# AegisName: E_NF_FLY +# - Id: 22188 +# AegisName: E_NF_SMALLRAT +# - Id: 22189 +# AegisName: E_NF_BIGRAT +# - Id: 22192 +# AegisName: SPIRIT_G_LAND_S +# - Id: 22193 +# AegisName: SPIRIT_G_LAND_M +# - Id: 22194 +# AegisName: SPIRIT_G_LAND_L +# - Id: 22195 +# AegisName: SPIRIT_G_LAND_SL +# - Id: 22196 +# AegisName: SPIRIT_B_FLAME_S +# - Id: 22197 +# AegisName: SPIRIT_B_FLAME_M +# - Id: 22198 +# AegisName: SPIRIT_B_FLAME_L +# - Id: 22199 +# AegisName: SPIRIT_B_FLAME_SL +# - Id: 22200 +# AegisName: SPIRIT_S_WIND_S +# - Id: 22201 +# AegisName: SPIRIT_S_WIND_M +# - Id: 22202 +# AegisName: SPIRIT_S_WIND_L +# - Id: 22203 +# AegisName: SPIRIT_S_WIND_SL +# - Id: 22204 +# AegisName: SPIRIT_I_WATER_S +# - Id: 22205 +# AegisName: SPIRIT_I_WATER_M +# - Id: 22206 +# AegisName: SPIRIT_I_WATER_L +# - Id: 22207 +# AegisName: SPIRIT_I_WATER_SL +# - Id: 22208 +# AegisName: SPIRIT_C_LAND_S +# - Id: 22209 +# AegisName: SPIRIT_C_LAND_M +# - Id: 22210 +# AegisName: SPIRIT_C_LAND_L +# - Id: 22211 +# AegisName: SPIRIT_C_LAND_SL +# - Id: 22212 +# AegisName: SPIRIT_C_FLAME_S +# - Id: 22213 +# AegisName: SPIRIT_C_FLAME_M +# - Id: 22214 +# AegisName: SPIRIT_C_FLAME_L +# - Id: 22215 +# AegisName: SPIRIT_C_FLAME_SL +# - Id: 22216 +# AegisName: SPIRIT_H_WATER_S +# - Id: 22217 +# AegisName: SPIRIT_H_WATER_M +# - Id: 22218 +# AegisName: SPIRIT_H_WATER_L +# - Id: 22219 +# AegisName: SPIRIT_H_WATER_SL +# - Id: 22220 +# AegisName: SPIRIT_D_WIND_S +# - Id: 22221 +# AegisName: SPIRIT_D_WIND_M +# - Id: 22222 +# AegisName: SPIRIT_D_WIND_L +# - Id: 22223 +# AegisName: SPIRIT_D_WIND_SL +# - Id: 22224 +# AegisName: SPIRIT_R_FLAME_S +# - Id: 22225 +# AegisName: SPIRIT_R_FLAME_M +# - Id: 22226 +# AegisName: SPIRIT_R_FLAME_L +# - Id: 22227 +# AegisName: SPIRIT_R_FLAME_SL +# - Id: 22228 +# AegisName: SPIRIT_F_LAND_S +# - Id: 22229 +# AegisName: SPIRIT_F_LAND_M +# - Id: 22230 +# AegisName: SPIRIT_F_LAND_L +# - Id: 22231 +# AegisName: SPIRIT_F_LAND_SL +# - Id: 22232 +# AegisName: SPIRIT_C_WATER_S +# - Id: 22233 +# AegisName: SPIRIT_C_WATER_M +# - Id: 22234 +# AegisName: SPIRIT_C_WATER_L +# - Id: 22235 +# AegisName: SPIRIT_C_WATER_SL +# - Id: 22236 +# AegisName: SPIRIT_C_WIND_S +# - Id: 22237 +# AegisName: SPIRIT_C_WIND_M +# - Id: 22238 +# AegisName: SPIRIT_C_WIND_L +# - Id: 22239 +# AegisName: SPIRIT_C_WIND_SL +# - Id: 22240 +# AegisName: VR_SONIC_WALK +# - Id: 22241 +# AegisName: VR_SONIC_SPIN +# - Id: 22242 +# AegisName: VR_TALES +# - Id: 22243 +# AegisName: VR_MD_METALSONIC +# - Id: 22244 +# AegisName: VR_MD_KNUCKLES +# - Id: 22245 +# AegisName: VR_MD_DREGG1 +# - Id: 22246 +# AegisName: VR_MD_DREGG2 +# - Id: 22247 +# AegisName: VR_MD_MEGALITH_SONIC +# - Id: 22248 +# AegisName: VR_MD_SPORE_SONIC +# - Id: 22249 +# AegisName: VR_MD_SAVAGE_SONIC +# - Id: 22250 +# AegisName: VR_MD_ANGELING_SONIC +# - Id: 22251 +# AegisName: VR_MD_HEATER_SONIC +# - Id: 22252 +# AegisName: BIO_DUNEYRR +# - Id: 22253 +# AegisName: BIO_NAGA +# - Id: 22254 +# AegisName: BIO_ANCIENT_TREE +# - Id: 22255 +# AegisName: BIO_DOLLOCARIS +# - Id: 22256 +# AegisName: BIO_ICE_GARGOYLE +# - Id: 22257 +# AegisName: BIO_FLAME_GHOST +# - Id: 22258 +# AegisName: BIO_ACIDUS_ +# - Id: 22259 +# AegisName: BIO_MOROCC_1 +# - Id: 22260 +# AegisName: BIO_SALAMANDER +# - Id: 22261 +# AegisName: BIO_MOSKILLO +# - Id: 22262 +# AegisName: 2311_EV_BLACK_BEAR +# - Id: 22263 +# AegisName: 2311_EV_GOLD_PIG +# - Id: 22297 +# AegisName: 2401_EV_DRAGORING +# - Id: 22298 +# AegisName: 2401_EV_IMOOGI +# - Id: 22299 +# AegisName: VR_CHAO # - Id: 22328 # AegisName: DESERT_WOLF_RAC # - Id: 22329 diff --git a/src/map/npc.hpp b/src/map/npc.hpp index 935f489924..a9ae533b1e 100644 --- a/src/map/npc.hpp +++ b/src/map/npc.hpp @@ -1469,6 +1469,32 @@ enum e_job_types JT_4_HERO_SAUSAGE, JT_4_PRINCESS_SAUSAGE, + JT_4_EP20_LASGAND = 10536, + JT_4_EP20_NYAR, + JT_4_EP20_DEVICE_BLUE, + JT_4_EP20_DEVICE_RED, + JT_4_EP20_DEVICE_BLACK, + + JT_4_GACHA_MACHINE = 10545, + JT_4_VR_CHAO, + JT_4_RUNESTONE, + JT_4_EM_ARDOR, + JT_4_EM_DILUVIO, + JT_4_EM_PROCELLA, + JT_4_EM_TERREMOTUS, + JT_4_EM_SERPENS, + JT_4_SNOWDOG, + JT_1_SHADOW_RED, + JT_1_SHADOW_ORANGE, + JT_1_SHADOW_YELLOW, + JT_1_SHADOW_GREEN, + JT_1_SHADOW_BLUE, + JT_1_SHADOW_INDIGO, + JT_1_SHADOW_VIOLET, + JT_4_EVT_LAMMIR, + JT_4_EVT_SULKI, + JT_4_EVT_KKAT, + JT_ROZ_MQ_XAVIER = 13000, JT_ROZ_MQ_MOCLORD, JT_ROZ_MQ_SKULD, diff --git a/src/map/script_constants.hpp b/src/map/script_constants.hpp index c739b58c7a..8f63c1d187 100644 --- a/src/map/script_constants.hpp +++ b/src/map/script_constants.hpp @@ -8275,6 +8275,30 @@ export_constant_npc(JT_4_LARVA_VIOLET); export_constant_npc(JT_4_HERO_SAUSAGE); export_constant_npc(JT_4_PRINCESS_SAUSAGE); + export_constant_npc(JT_4_EP20_LASGAND); + export_constant_npc(JT_4_EP20_NYAR); + export_constant_npc(JT_4_EP20_DEVICE_BLUE); + export_constant_npc(JT_4_EP20_DEVICE_RED); + export_constant_npc(JT_4_EP20_DEVICE_BLACK); + export_constant_npc(JT_4_GACHA_MACHINE); + export_constant_npc(JT_4_VR_CHAO); + export_constant_npc(JT_4_RUNESTONE); + export_constant_npc(JT_4_EM_ARDOR); + export_constant_npc(JT_4_EM_DILUVIO); + export_constant_npc(JT_4_EM_PROCELLA); + export_constant_npc(JT_4_EM_TERREMOTUS); + export_constant_npc(JT_4_EM_SERPENS); + export_constant_npc(JT_4_SNOWDOG); + export_constant_npc(JT_1_SHADOW_RED); + export_constant_npc(JT_1_SHADOW_ORANGE); + export_constant_npc(JT_1_SHADOW_YELLOW); + export_constant_npc(JT_1_SHADOW_GREEN); + export_constant_npc(JT_1_SHADOW_BLUE); + export_constant_npc(JT_1_SHADOW_INDIGO); + export_constant_npc(JT_1_SHADOW_VIOLET); + export_constant_npc(JT_4_EVT_LAMMIR); + export_constant_npc(JT_4_EVT_SULKI); + export_constant_npc(JT_4_EVT_KKAT); export_constant_npc(JT_ROZ_MQ_XAVIER); export_constant_npc(JT_ROZ_MQ_MOCLORD); export_constant_npc(JT_ROZ_MQ_SKULD); From a768af85ee5adf368cd59e7c288f3239418e62b9 Mon Sep 17 00:00:00 2001 From: Atemo Date: Thu, 14 Mar 2024 14:08:45 +0100 Subject: [PATCH 35/44] Updated geteleminfo script command (#8168) * Updated geteleminfo script command * Added a new "2" that returns the class ID of the elemental spirit * Fixed Dimensions Elemental* combos: item descriptions require high elemental spirit check * Added new constants for geteleminfo Thanks to @aleos89 @Badarosk0 ! --- db/re/item_combos.yml | 6 ++++-- doc/script_commands.txt | 5 +++-- src/map/script.cpp | 22 +++++++++++++++------- src/map/script.hpp | 7 +++++++ src/map/script_constants.hpp | 5 +++++ 5 files changed, 34 insertions(+), 11 deletions(-) diff --git a/db/re/item_combos.yml b/db/re/item_combos.yml index c0ca3044de..6d7b29491d 100644 --- a/db/re/item_combos.yml +++ b/db/re/item_combos.yml @@ -46814,7 +46814,8 @@ Body: bonus2 bSkillAtk,"EM_ELEMENTAL_BUSTER_WIND",2*.@sum; bonus2 bSkillAtk,"EM_ELEMENTAL_BUSTER_POISON",2*.@sum; bonus2 bSkillAtk,"EM_ELEMENTAL_BUSTER_GROUND",2*.@sum; - if (getskilllv("EM_ELEMENTAL_BUSTER") > 0) { + .@class_ = geteleminfo(ELEMINFO_CLASS); + if (getskilllv("EM_ELEMENTAL_BUSTER") > 0 && .@class_ >= 20816 && .@class_ <= 20820) { bonus4 bAutoSpellOnSkill,"EM_DIAMOND_STORM","EM_ELEMENTAL_BUSTER",getskilllv("EM_ELEMENTAL_BUSTER"),1000; } } @@ -46835,7 +46836,8 @@ Body: bonus2 bSkillAtk,"EM_ELEMENTAL_BUSTER_WIND",2*.@sum; bonus2 bSkillAtk,"EM_ELEMENTAL_BUSTER_POISON",2*.@sum; bonus2 bSkillAtk,"EM_ELEMENTAL_BUSTER_GROUND",2*.@sum; - if (getskilllv("EM_ELEMENTAL_BUSTER") > 0 && geteleminfo(0) > 0) { + .@class_ = geteleminfo(ELEMINFO_CLASS); + if (getskilllv("EM_ELEMENTAL_BUSTER") > 0 && .@class_ >= 20816 && .@class_ <= 20820) { bonus4 bAutoSpellOnSkill,"EM_TERRA_DRIVE","EM_ELEMENTAL_BUSTER",getskilllv("EM_ELEMENTAL_BUSTER"),1000; } } diff --git a/doc/script_commands.txt b/doc/script_commands.txt index 911015cf27..1b0a1c9602 100644 --- a/doc/script_commands.txt +++ b/doc/script_commands.txt @@ -8966,8 +8966,9 @@ Get info of elemental of attached player or player by char_id. Other info can be obtained by 'getunitdata' command. Valid types are: - 0: Elemental ID - 1: Elemental Game ID + ELEMINFO_ID Elemental ID (ID unique to elementals unit type) + ELEMINFO_GAMEID Elemental Game ID + ELEMINFO_CLASS Elemental Class (ID defined in elemental_db.yml) --------------------------------------- \\ diff --git a/src/map/script.cpp b/src/map/script.cpp index dd27f28d97..692703029f 100644 --- a/src/map/script.cpp +++ b/src/map/script.cpp @@ -24038,24 +24038,32 @@ BUILDIN_FUNC(ignoretimeout) * geteleminfo {,}; **/ BUILDIN_FUNC(geteleminfo) { - TBL_ELEM *ed = NULL; - TBL_PC *sd = NULL; - int type = script_getnum(st,2); + map_session_data *sd = nullptr; if (!script_charid2sd(3, sd)) { script_pushint(st, 0); - return SCRIPT_CMD_SUCCESS; + return SCRIPT_CMD_FAILURE; } + s_elemental_data *ed = nullptr; + if (!(ed = sd->ed)) { - //ShowDebug("buildin_geteleminfo: Player doesn't have Elemental.\n"); script_pushint(st, 0); return SCRIPT_CMD_SUCCESS; } + int type = script_getnum(st,2); + switch (type) { - case 0: script_pushint(st, ed->elemental.elemental_id); break; - case 1: script_pushint(st, ed->bl.id); break; + case ELEMINFO_ID: + script_pushint(st, ed->elemental.elemental_id); + break; + case ELEMINFO_GAMEID: + script_pushint(st, ed->bl.id); + break; + case ELEMINFO_CLASS: + script_pushint(st, ed->elemental.class_); + break; default: ShowError("buildin_geteleminfo: Invalid type '%d'.\n", type); script_pushint(st, 0); diff --git a/src/map/script.hpp b/src/map/script.hpp index af086077b4..b7beb8483d 100644 --- a/src/map/script.hpp +++ b/src/map/script.hpp @@ -2185,6 +2185,13 @@ enum e_iteminfo : uint8 { ITEMINFO_SUBTYPE, }; +/* geteleminfo script command */ +enum e_eleminfo : uint8 { + ELEMINFO_ID = 0, + ELEMINFO_GAMEID, + ELEMINFO_CLASS, +}; + class ConstantDatabase : public YamlDatabase { public: ConstantDatabase() : YamlDatabase("CONSTANT_DB", 1) { diff --git a/src/map/script_constants.hpp b/src/map/script_constants.hpp index 8f63c1d187..dcd2ab17d2 100644 --- a/src/map/script_constants.hpp +++ b/src/map/script_constants.hpp @@ -10196,6 +10196,11 @@ export_constant(ITEMINFO_ARMORLEVEL); export_constant(ITEMINFO_SUBTYPE); + /* geteleminfo script command */ + export_constant(ELEMINFO_ID); + export_constant(ELEMINFO_GAMEID); + export_constant(ELEMINFO_CLASS); + /* refine types */ export_constant(REFINE_TYPE_ARMOR); export_constant(REFINE_TYPE_WEAPON); From f55e29068a76634823c07a91ff37a8ed914f94de Mon Sep 17 00:00:00 2001 From: Atemo Date: Fri, 15 Mar 2024 14:58:52 +0100 Subject: [PATCH 36/44] Updated pet_db.yml (#8170) * Updates pet_db.yml based on KRO client data. --- db/re/item_combos.yml | 4 +- db/re/item_db_equip.yml | 6 +- db/re/item_db_etc.yml | 14 +- db/re/item_db_usable.yml | 25 +- db/re/pet_db.yml | 2172 +++++++++++++++++++++++++++----------- 5 files changed, 1588 insertions(+), 633 deletions(-) diff --git a/db/re/item_combos.yml b/db/re/item_combos.yml index 6d7b29491d..ad7d5f9ae8 100644 --- a/db/re/item_combos.yml +++ b/db/re/item_combos.yml @@ -35943,14 +35943,14 @@ Body: bonus bVariableCastrate,-5; - Combos: - Combo: - - aegis_300457 # 300457 + - Grey_Icewind_Card - aegis_300455 # 300455 Script: | .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bAddSize,Size_Large,10+3*(.@r_shoes/2); - Combos: - Combo: - - aegis_300458 # 300458 + - Icewind_Card - aegis_300455 # 300455 Script: | .@r_shoes = getequiprefinerycnt(EQI_SHOES); diff --git a/db/re/item_db_equip.yml b/db/re/item_db_equip.yml index bd272aa036..7aa1d2ad9b 100644 --- a/db/re/item_db_equip.yml +++ b/db/re/item_db_equip.yml @@ -57867,15 +57867,15 @@ Body: NoMail: true NoAuction: true - Id: 9145 - AegisName: aegis_9145 + AegisName: Copo_Egg Name: Copo Egg Type: PetEgg - Id: 9146 - AegisName: aegis_9146 + AegisName: Grey_Icewind_Egg Name: Gray Icewind Egg Type: PetEgg - Id: 9147 - AegisName: aegis_9147 + AegisName: Icewind_Egg Name: Icewind Egg Type: PetEgg - Id: 9148 diff --git a/db/re/item_db_etc.yml b/db/re/item_db_etc.yml index fa4fbf6a33..24ee86c1fd 100644 --- a/db/re/item_db_etc.yml +++ b/db/re/item_db_etc.yml @@ -52363,7 +52363,7 @@ Body: } } - Id: 300457 - AegisName: aegis_300457 + AegisName: Grey_Icewind_Card Name: Gray Icewind Card Type: Card Weight: 10 @@ -52382,7 +52382,7 @@ Body: bonus bCon,3; } - Id: 300458 - AegisName: aegis_300458 + AegisName: Icewind_Card Name: Icewind Card Type: Card Weight: 10 @@ -82114,7 +82114,7 @@ Body: Type: Etc Weight: 1 - Id: 1000889 - AegisName: aegis_1000889 + AegisName: Mixed_Fruits_Juice Name: Compound Fruit Juice Type: Etc Weight: 10 @@ -83802,7 +83802,7 @@ Body: Flags: BuyingStore: true - Id: 1001244 - AegisName: aegis_1001244 + AegisName: Ep20_Huge_Feather_G Name: Large Gray Feather # !todo check english name Type: Etc Buy: 1260 @@ -83810,7 +83810,7 @@ Body: Flags: BuyingStore: true - Id: 1001245 - AegisName: aegis_1001245 + AegisName: Ep20_Huge_Feather_W Name: Large White Feather # !todo check english name Type: Etc Buy: 1710 @@ -83818,7 +83818,7 @@ Body: Flags: BuyingStore: true - Id: 1001246 - AegisName: aegis_1001246 + AegisName: Ep20_Copo_Head_F Name: Copo's Head Feather # !todo check english name Type: Etc Buy: 1170 @@ -83826,7 +83826,7 @@ Body: Flags: BuyingStore: true - Id: 1001247 - AegisName: aegis_1001247 + AegisName: Ep20_Copo_Egg_Shell Name: Kkopo Eggshell Fragment # !todo check english name Type: Etc Buy: 945 diff --git a/db/re/item_db_usable.yml b/db/re/item_db_usable.yml index 66f4713a93..15f1787568 100644 --- a/db/re/item_db_usable.yml +++ b/db/re/item_db_usable.yml @@ -8992,7 +8992,7 @@ Body: Flags: BuyingStore: true Script: | - pet 1519; + pet 1631; - Id: 12396 AegisName: Fools_Day_Box Name: Gift Box? @@ -65315,6 +65315,15 @@ Body: Type: Healing Script: | percentheal 30,30; + - Id: 101331 + AegisName: Fruits_Set_Trap + Name: Fruit Set Trap + Type: Usable + Weight: 10 + Flags: + BuyingStore: true + Script: | + pet 1005; - Id: 101336 AegisName: aegis_101336 Name: "[Scroll] DEX Biscuit Stick" @@ -66752,6 +66761,20 @@ Body: Container: true Script: | getgroupitem(IG_Enchant_Stone_Box30); + - Id: 102202 + AegisName: Ep20_Fatty_Icegangu + Name: Chubby Ice Steel Ball # !todo check english name + Type: Usable + Weight: 50 + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + pet 21965; - Id: 102213 AegisName: Hero_Weapon_Up_S_Box Name: Hero's Weapon Mod Selection Box # !todo check english name diff --git a/db/re/pet_db.yml b/db/re/pet_db.yml index 0a531898e5..30c6033452 100644 --- a/db/re/pet_db.yml +++ b/db/re/pet_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2021 rAthena Development Team +# Copyright(C) 2024 rAthena Development Team # https://rathena.org - https://github.com/rathena # # This program is free software: you can redistribute it and/or modify @@ -66,12 +66,13 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bLuk,3; - bonus bCritical,1; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bLuk,2; - bonus bCritical,1; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus bCritical,1; + bonus bLuk,2; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bCritical,1; + bonus bLuk,3; } Evolution: - Target: MASTERING @@ -80,7 +81,6 @@ Body: Amount: 10 - Item: Unripe_Apple Amount: 3 - - Mob: DROPS TameItem: Orange_Juice EggItem: Drops_Egg @@ -92,12 +92,13 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bHit,5; - bonus bAtk,5; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bHit,3; - bonus bAtk,3; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus bBaseAtk,3; + bonus bHit,3; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bBaseAtk,5; + bonus bHit,5; } Evolution: - Target: DR_EGGRING @@ -131,12 +132,13 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bLuk,3; - bonus2 bSubEle,Ele_Poison,15; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bLuk,2; - bonus2 bSubEle,Ele_Poison,10; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus2 bSubEle,Ele_Poison,10; + bonus bLuk,2; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus2 bSubEle,Ele_Poison,15; + bonus bLuk,3; } - Mob: LUNATIC TameItem: Rainbow_Carrot @@ -150,16 +152,17 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bCritical,3; - bonus bAtk,3; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bCritical,2; - bonus bAtk,2; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus bCritical,2; + bonus bBaseAtk,2; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bCritical,3; + bonus bBaseAtk,3; } Evolution: - Target: DR_LUNATIC - ItemRequirements: + ItemRequirements: - Item: Great_Leaf Amount: 100 - Item: Clover @@ -179,12 +182,13 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bStr,2; - bonus bAtk,8; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bStr,1; - bonus bAtk,5; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus bBaseAtk,5; + bonus bStr,1; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bBaseAtk,8; + bonus bStr,2; } - Mob: CHONCHON TameItem: Rotten_Fish @@ -197,12 +201,13 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bAgi,2; - bonus bFlee,3; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bAgi,1; - bonus bFlee,2; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus bAgi,1; + bonus bFlee,2; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bAgi,2; + bonus bFlee,3; } - Mob: STEEL_CHONCHON TameItem: Lusty_Iron @@ -215,10 +220,11 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bFlee,9; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bFlee,6; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus bFlee,6; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bFlee,9; } - Mob: HUNTER_FLY TameItem: Monster_Juice @@ -231,11 +237,12 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bFlee2,2; - bonus bHit,1; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bFlee2,2; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus bFlee2,2; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bFlee2,2; + bonus bHit,1; } - Mob: SAVAGE_BABE TameItem: Sweet_Milk @@ -249,12 +256,13 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bVit,2; - bonus bMaxHP,75; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bVit,1; - bonus bMaxHP,50; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus bVit,1; + bonus bMaxHP,50; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bVit,2; + bonus bMaxHP,75; } Evolution: - Target: SAVAGE @@ -279,13 +287,25 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bInt,2; - bonus bMaxSP,75; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bInt,1; - bonus bMaxSP,50; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus bInt,1; + bonus bMaxSP,50; } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bInt,2; + bonus bMaxSP,75; + } + Evolution: + - Target: DESERT_WOLF + ItemRequirements: + - Item: Well_Dried_Bone + Amount: 3 + - Item: Desert_Wolf_Card + Amount: 1 + - Item: Claw_Of_Desert_Wolf + Amount: 300 + - Item: Animal's_Skin + Amount: 20 - Mob: ROCKER TameItem: Singing_Flower EggItem: Rocker_Egg @@ -298,12 +318,13 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bHPrecovRate,6; - bonus bMaxHP,38; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bHPrecovRate,5; - bonus bMaxHP,25; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus bHPrecovRate,5; + bonus bMaxHP,25; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bHPrecovRate,8; + bonus bMaxHP,38; } Evolution: - Target: METALLER @@ -328,10 +349,11 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bHit,8; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bHit,5; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus bHit,5; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bHit,8; } - Mob: POISON_SPORE TameItem: Deadly_Noxious_Herb @@ -345,12 +367,13 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bStr,2; - bonus bInt,2; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bStr,1; - bonus bInt,1; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus bStr,1; + bonus bInt,1; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bStr,2; + bonus bInt,2; } - Mob: PECOPECO TameItem: Fatty_Chubby_Earthworm @@ -363,10 +386,11 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bMaxHP,200; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bMaxHP,150; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus bMaxHP,150; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bMaxHP,200; } Evolution: - Target: GRAND_PECO @@ -392,12 +416,13 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bAgi,2; - bonus bFlee2,1; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bAgi,1; - bonus bFlee2,1; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus bFlee2,1; + bonus bAgi,1; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bFlee2,1; + bonus bAgi,2; } - Mob: YOYO TameItem: Tropical_Banana @@ -410,10 +435,11 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bCritical,5; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bCritical,3; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus bCritical,3; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bCritical,5; } Evolution: - Target: CHOCO @@ -437,10 +463,11 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bAtk,15; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bAtk,10; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus bBaseAtk,10; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bBaseAtk,15; } Evolution: - Target: HIGH_ORC @@ -467,12 +494,13 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bInt,2; - bonus bDef,2; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bInt,1; - bonus bDef,1; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus bDef,1; + bonus bInt,1; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bDef,2; + bonus bInt,2; } - Mob: DOKEBI TameItem: Old_Broom @@ -486,10 +514,11 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bMatkRate,2; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bMatkRate,1; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus bMatkRate,1; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bMatkRate,2; } Evolution: - Target: AM_MUT @@ -514,12 +543,13 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bStr,2; - bonus bDex,2; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bStr,1; - bonus bDex,1; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus bStr,1; + bonus bDex,1; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bStr,2; + bonus bDex,2; } - Mob: ISIS TameItem: Armlet_Of_Obedience @@ -533,22 +563,23 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bAtkRate,2; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bAtkRate,1; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus2 bAddClass,Class_All,1; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus2 bAddClass,Class_All,2; } Evolution: - Target: LITTLE_ISIS ItemRequirements: - Item: Armlet_Of_Obedience Amount: 3 - - Item: Crystal_Jewel__ - Amount: 6 - Item: Queen's_Hair_Ornament Amount: 1 - Item: Shining_Scales Amount: 300 + - Item: Crystal_Jewel__ + Amount: 6 - Mob: PETIT TameItem: Shining_Stone EggItem: Green_Petite_Egg @@ -561,11 +592,12 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bAgi,1; - bonus bAspdRate,1; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bAspdRate,1; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus bAspdRate,1; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bAspdRate,1; + bonus bAgi,1; } Evolution: - Target: DELETER_2 @@ -590,14 +622,15 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bMaxHPrate,1; - bonus bMaxSPrate,1; - bonus bMatkRate,1; - bonus bAtkRate,1; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bMatkRate,1; - bonus bAtkRate,1; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus2 bAddClass,Class_All,1; + bonus bMatkRate,1; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus2 bAddClass,Class_All,1; + bonus bMatkRate,1; + bonus bMaxHPrate,1; + bonus bMaxSPrate,1; } Evolution: - Target: DIABOLIC2 @@ -622,15 +655,27 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bDef,2; - bonus bMdef,2; - bonus2 bResEff,Eff_Stun,-200; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bDef,1; - bonus bMdef,1; - bonus2 bResEff,Eff_Stun,-100; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus2 bResEff,Eff_Stun,100; + bonus bMdef,1; + bonus bDef,1; } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus2 bResEff,Eff_Stun,200; + bonus bMdef,2; + bonus bDef,2; + } +# Evolution: +# - Target: ILL_BAPHOMET_J +# ItemRequirements: +# - Item: Chaos_Ba_Jr_Card +# Amount: 1 +# - Item: Evil_Horn +# Amount: 300 +# - Item: Brigan +# Amount: 300 +# - Item: Yellow_Herb +# Amount: 100 - Mob: BON_GUN TameItem: Heart_Of_Her EggItem: Bongun_Egg @@ -642,12 +687,13 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bVit,2; - bonus2 bResEff,Eff_Stun,200; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bVit,1; - bonus2 bResEff,Eff_Stun,100; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus2 bResEff,Eff_Stun,100; + bonus bVit,1; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus2 bResEff,Eff_Stun,200; + bonus bVit,2; } Evolution: - Target: HYEGUN @@ -671,16 +717,17 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus2 bAddRace,RC_Demihuman,3; - bonus2 bMagicAddRace,RC_DemiHuman,3; - bonus2 bAddRace,RC_Player_Human,3; - bonus2 bMagicAddRace,RC_Player_Human,3; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus2 bAddRace,RC_Demihuman,2; - bonus2 bMagicAddRace,RC_DemiHuman,2; - bonus2 bAddRace,RC_Player_Human,2; - bonus2 bMagicAddRace,RC_Player_Human,2; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus2 bAddRace,RC_DemiHuman,2; + bonus2 bMagicAddRace,RC_DemiHuman,2; + bonus2 bAddRace,RC_Player_Human,2; + bonus2 bMagicAddRace,RC_Player_Human,2; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus2 bAddRace,RC_DemiHuman,3; + bonus2 bMagicAddRace,RC_DemiHuman,3; + bonus2 bAddRace,RC_Player_Human,3; + bonus2 bMagicAddRace,RC_Player_Human,3; } - Mob: ALICE TameItem: Sway_Apron @@ -693,14 +740,15 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bMdef,2; - bonus2 bSubRace,RC_DemiHuman,2; - bonus2 bSubRace,RC_Player_Human,2; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bMdef,1; - bonus2 bSubRace,RC_DemiHuman,1; - bonus2 bSubRace,RC_Player_Human,1; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus2 bSubRace,RC_DemiHuman,1; + bonus2 bSubRace,RC_Player_Human,1; + bonus bMdef,1; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus2 bSubRace,RC_DemiHuman,2; + bonus2 bSubRace,RC_Player_Human,2; + bonus bMdef,2; } Evolution: - Target: ALIZA @@ -722,10 +770,11 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus2 bSubEle,Ele_Neutral,2; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus2 bSubEle,Ele_Neutral,1; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus2 bSubEle,Ele_Neutral,1; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus2 bSubEle,Ele_Neutral,2; } - Mob: GOBLINE_XMAS TameItem: Sweet_Candy_Striper @@ -738,14 +787,15 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bMaxHP,45; - bonus2 bSubEle,Ele_Water,2; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bMaxHP,30; - bonus2 bSubEle,Ele_Water,1; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus2 bSubEle,Ele_Water,1; + bonus bMaxHP,30; } - - Mob: CHUNG_E + else if (.@i == PET_INTIMATE_LOYAL) { + bonus2 bSubEle,Ele_Water,2; + bonus bMaxHP,45; + } + - Mob: CHUNG_E_ TameItem: Tantanmen EggItem: Chung_E_Egg FoodItem: Bun_ @@ -756,14 +806,15 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bDef,2; - bonus2 bSubRace,RC_DemiHuman,2; - bonus2 bSubRace,RC_Player_Human,2; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bDef,1; - bonus2 bSubRace,RC_DemiHuman,1; - bonus2 bSubRace,RC_Player_Human,1; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus2 bSubRace,RC_DemiHuman,1; + bonus2 bSubRace,RC_Player_Human,1; + bonus bDef,1; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus2 bSubRace,RC_DemiHuman,2; + bonus2 bSubRace,RC_Player_Human,2; + bonus bDef,2; } - Mob: ECLIPSE_P EggItem: Spring_Rabbit_Egg @@ -823,22 +874,23 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bAgi,4; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bAgi,3; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus bAgi,3; } -# Evolution: -# - Target: WANDER_MAN_H -# ItemRequirements: -# - Item: Skull -# Amount: 500 -# - Item: Sacred_Marks -# Amount: 50 -# - Item: Transparent_Cloth -# Amount: 100 -# - Item: Wander_Man_Card -# Amount: 1 + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bAgi,4; + } + Evolution: + - Target: WANDER_MAN_H + ItemRequirements: + - Item: Skull + Amount: 500 + - Item: Sacred_Marks + Amount: 50 + - Item: Transparent_Cloth + Amount: 100 + - Item: Wander_Man_Card + Amount: 1 - Mob: P_CHUNG_E EggItem: New_Year_Doll_Egg FoodItem: Mojji @@ -858,11 +910,23 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bMaxHP,150; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bMaxHP,100; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus bMaxHP,100; } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bMaxHP,150; + } + Evolution: + - Target: FIRE_GOLEM + ItemRequirements: + - Item: Stone_Heart + Amount: 500 + - Item: Magical_Lithography + Amount: 3 + - Item: Fire_Golem_Card + Amount: 1 + - Item: Boody_Red + Amount: 20 - Mob: MARIONETTE TameItem: Delicious_Shaved_Ice EggItem: Marionette_Egg @@ -874,7 +938,7 @@ Body: SpecialPerformance: false Script: > .@i = getpetinfo(PETINFO_INTIMATE); - + if (.@i >= PET_INTIMATE_LOYAL) { petautobonus "{ bonus2 bSubEle,Ele_Neutral,2; heal 100,0; }",100,5000,BF_SHORT|BF_NORMAL; } else if (.@i >= PET_INTIMATE_CORDIAL) { @@ -892,12 +956,13 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bVit,2; - bonus2 bResEff,Eff_Stone,800; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bVit,1; - bonus2 bResEff,Eff_Stone,500; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus2 bResEff,Eff_Stone,500; + bonus bVit,1; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus2 bResEff,Eff_Stone,800; + bonus bVit,2; } - Mob: WHISPER TameItem: Fit_Pipe @@ -909,14 +974,13 @@ Body: CaptureRate: 500 SpecialPerformance: false Script: > - .@i = getpetinfo(PETINFO_INTIMATE); - - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bFlee,10; - skill "TF_HIDING",1; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bFlee,7; - skill "TF_HIDING",1; + if (getpetinfo(PETINFO_INTIMATE) == PET_INTIMATE_LOYAL) { + skill "TF_HIDING",1; + bonus bFlee,10; + } + else { + skill "TF_HIDING",1; + bonus bFlee,7; } - Mob: GOBLIN_LEADER TameItem: Staff_Of_Leader @@ -930,12 +994,13 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus2 bAddRace,RC_DemiHuman,5; - bonus2 bAddRace,RC_Player_Human,5; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus2 bAddRace,RC_DemiHuman,3; - bonus2 bAddRace,RC_Player_Human,3; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus2 bAddRace,RC_DemiHuman,3; + bonus2 bAddRace,RC_Player_Human,3; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus2 bAddRace,RC_DemiHuman,5; + bonus2 bAddRace,RC_Player_Human,5; } - Mob: SUCCUBUS TameItem: Boy's_Naivety @@ -949,11 +1014,12 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus2 bHPDrainRate,30,5; - bonus bMaxHPrate,1; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus2 bHPDrainRate,30,5; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus2 bHPDrainRate,30,5; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus2 bHPDrainRate,30,5; + bonus bMaxHPrate,1; } - Mob: INCUBUS TameItem: Gril's_Naivety @@ -965,14 +1031,13 @@ Body: CaptureRate: 50 SpecialPerformance: false Script: > - .@i = getpetinfo(PETINFO_INTIMATE); - - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bMaxSPRate,5; - bonus2 bSPDrainRate,30,1; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bMaxSPRate,3; - bonus2 bSPDrainRate,30,1; + if (getpetinfo(PETINFO_INTIMATE) == PET_INTIMATE_LOYAL) { + bonus2 bSPDrainRate,30,1; + bonus bMaxSPrate,5; + } + else { + bonus2 bSPDrainRate,30,1; + bonus bMaxSPrate,3; } - Mob: NIGHTMARE_TERROR TameItem: Hell_Contract @@ -986,23 +1051,23 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus2 bResEff,Eff_Sleep,10000; - bonus bInt,1; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus2 bResEff,Eff_Sleep,10000; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus2 bResEff,Eff_Sleep,10000; } -# Evolution: -# - Target: NIGHTMARE_TERROR_H -# ItemRequirements: -# - Item: Burning_Horse_Shoe -# Amount: 500 -# - Item: Blue_Herb -# Amount: 100 -# - Item: Shell -# Amount: 100 -# - Item: Nightmare_Card -# Amount: 1 + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bInt,1; + } + Evolution: + - Target: NIGHTMARE_TERROR_H + ItemRequirements: + - Item: Burning_Horse_Shoe + Amount: 500 + - Item: Blue_Herb + Amount: 100 + - Item: Shell + Amount: 100 + - Item: Nightmare_Terror_Card + Amount: 1 - Mob: SHINOBI TameItem: Kuloren EggItem: Shinobi_Egg @@ -1015,10 +1080,11 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bAgi,3; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bAgi,2; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus bAgi,2; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bAgi,3; } - Mob: MIYABI_NINGYO TameItem: Gril_Doll @@ -1032,12 +1098,13 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bInt,2; - bonus bCastrate,-5; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bInt,1; - bonus bCastrate,-3; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus bVariableCastrate,-3; + bonus bInt,1; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bVariableCastrate,-5; + bonus bInt,2; } - Mob: WICKED_NYMPH TameItem: Charming_Lotus @@ -1051,13 +1118,25 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bMaxSP,45; - bonus bSPrecovRate,8; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bMaxSP,30; - bonus bSPrecovRate,5; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus bSPrecovRate,5; + bonus bMaxSP,30; } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bSPrecovRate,8; + bonus bMaxSP,45; + } +# Evolution: +# - Target: BACSOJIN2 +# ItemRequirements: +# - Item: Mightysoul_Essence +# Amount: 30 +# - Item: Civil_Servant_Card +# Amount: 10 +# - Item: Li_Me_Mang_Ryang_Card +# Amount: 10 +# - Item: Dancing_Dragon_Card +# Amount: 10 - Mob: STONE_SHOOTER TameItem: Oilpalm_Coconut EggItem: Stone_Shooter_Egg @@ -1070,10 +1149,11 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus2 bSubEle,Ele_Fire,5; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus2 bSubEle,Ele_Fire,3; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus2 bSubEle,Ele_Fire,3; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus2 bSubEle,Ele_Fire,5; } - Mob: DULLAHAN TameItem: Luxury_Whisky_Bottle @@ -1087,10 +1167,11 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bCritAtkRate,8; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bCritAtkRate,5; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus bCritAtkRate,5; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bCritAtkRate,8; } - Mob: LOLI_RURI TameItem: Very_Red_Juice @@ -1104,13 +1185,25 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bMaxHPRate,5; - bonus3 bAutoSpellWhenHit,"AL_HEAL",2,10; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bMaxHPRate,3; - bonus3 bAutoSpellWhenHit,"AL_HEAL",1,10; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus3 bAutoSpellWhenHit,"AL_HEAL",1,10; + bonus bMaxHPrate,3; } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus3 bAutoSpellWhenHit,"AL_HEAL",2,10; + bonus bMaxHPrate,3; + } +# Evolution: +# - Target: BLUEMOON_LOLI_RURI2 +# ItemRequirements: +# - Item: Bat_Cage +# Amount: 500 +# - Item: Blue_Herb +# Amount: 50 +# - Item: Loki's_Whispers +# Amount: 1 +# - Item: Loli_Ruri_Card +# Amount: 10 - Mob: CIVIL_SERVANT TameItem: Fan_Of_Wind EggItem: Civil_Servant_Egg @@ -1123,10 +1216,11 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bMaxSP,15; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bMaxSP,10; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus bMaxSP,10; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bMaxSP,15; } - Mob: LEAF_CAT TameItem: Very_Soft_Plant @@ -1140,13 +1234,25 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus2 bSubRace,RC_Brute,5; - bonus2 bSubRace,RC_Player_Doram,5; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus2 bSubRace,RC_Brute,3; - bonus2 bSubRace,RC_Player_Doram,3; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus2 bSubRace,RC_Brute,3; + bonus2 bSubRace,RC_Player_Doram,3; } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus2 bSubRace,RC_Brute,5; + bonus2 bSubRace,RC_Player_Doram,5; + } +# Evolution: +# - Target: WILD_ROSE3 +# ItemRequirements: +# - Item: Great_Leaf +# Amount: 500 +# - Item: Black_Kitty_Doll +# Amount: 200 +# - Item: Fish_Tail +# Amount: 200 +# - Item: Leaf_Cat_Card +# Amount: 10 - Mob: BACSOJIN_ TameItem: Shiny_Wing_Gown EggItem: Bacsojin_Egg @@ -1168,12 +1274,13 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus2 bSubEle,Ele_Fire,3; - bonus2 bAddEle,Ele_Fire,2; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus2 bSubEle,Ele_Fire,2; - bonus2 bAddEle,Ele_Fire,1; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus2 bAddEle,Ele_Fire,1; + bonus2 bSubEle,Ele_Fire,2; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus2 bAddEle,Ele_Fire,2; + bonus2 bSubEle,Ele_Fire,3; } - Mob: E_CRAMP TameItem: Leaf_Cat_Ball @@ -1211,7 +1318,7 @@ Body: CaptureRate: 0 Script: > .@i = getpetinfo(PETINFO_INTIMATE); - + if (.@i >= PET_INTIMATE_CORDIAL) { /* bonus2 bExpAddRace,RC_All,5; */ bonus bMatkRate,2; @@ -1225,7 +1332,7 @@ Body: CaptureRate: 1000 Script: > .@i = getpetinfo(PETINFO_INTIMATE); - + if (.@i >= PET_INTIMATE_LOYAL) { bonus2 bAddDamageClass,2317,10; bonus2 bAddDamageClass,2318,10; @@ -1270,10 +1377,11 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bHPrecovRate,75; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bHPrecovRate,50; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus bHPrecovRate,50; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bHPrecovRate,75; } - Mob: NINE_TAIL TameItem: Sap_Jelly @@ -1285,12 +1393,13 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bCritical,3; - bonus bHit,2; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bCritical,2; - bonus bHit,2; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus bCritical,2; + bonus bHit,2; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bCritical,3; + bonus bHit,3; } Evolution: - Target: CAT_O_NINE_TAIL @@ -1313,12 +1422,13 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus Dex,2; - bonus bHit,1; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bDex,1; - bonus bHit,1; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus bHit,1; + bonus bDex,1; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bHit,1; + bonus bDex,2; } Evolution: - Target: HODREMLIN @@ -1341,10 +1451,11 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bHit,5; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bHit,4; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus bHit,4; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bHit,5; } Evolution: - Target: ANCIENT_MUMMY @@ -1367,10 +1478,11 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bMaxSP,150; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bMaxSP,100; + if (.@i == PET_INTIMATE_CORDIAL) { + bonus bMaxSP,50; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bMaxSP,100; } Evolution: - Target: XM_TEDDY_BEAR @@ -1403,8 +1515,6 @@ Body: Amount: 50 - Item: Teddy_Bear_Card Amount: 1 - - # Pet Evolution - Mob: MASTERING EggItem: Mastering_Egg FoodItem: Pet_Food @@ -1417,18 +1527,21 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bLuk,3; - bonus bCritical,3; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bLuk,3; - bonus bCritical,2; - } else if (.@i >= PET_INTIMATE_NEUTRAL) { - bonus bLuk,3; - bonus bCritical,1; - } else { - bonus bLuk,2; - bonus bCritical,1; + if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { + bonus bCritical,1; + bonus bLuk,2; + } + else if (.@i == PET_INTIMATE_NEUTRAL) { + bonus bCritical,1; + bonus bLuk,3; + } + else if (.@i == PET_INTIMATE_CORDIAL) { + bonus bCritical,2; + bonus bLuk,3; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bCritical,3; + bonus bLuk,3; } Evolution: - Target: ANGELING @@ -1453,22 +1566,25 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bHPrecovRate,20; - bonus bMaxHP,70; - bonus2 bAddRace,RC_Plant,6; - bonus2 bMagicAddRace,RC_Plant,6; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bHPrecovRate,15; - bonus bMaxHP,55; - bonus2 bAddRace,RC_Plant,3; - bonus2 bMagicAddRace,RC_Plant,3; - } else if (.@i >= PET_INTIMATE_NEUTRAL) { - bonus bHPrecovRate,10; - bonus bMaxHP,38; - } else { - bonus bHPrecovRate,5; - bonus bMaxHP,25; + if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { + bonus bHPrecovRate,5; + bonus bMaxHP,25; + } + else if (.@i == PET_INTIMATE_NEUTRAL) { + bonus bHPrecovRate,10; + bonus bMaxHP,38; + } + else if (.@i == PET_INTIMATE_CORDIAL) { + bonus2 bAddRace,RC_Plant,3; + bonus2 bMagicAddRace,RC_Plant,3; + bonus bHPrecovRate,15; + bonus bMaxHP,55; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus2 bAddRace,RC_Plant,6; + bonus2 bMagicAddRace,RC_Plant,6; + bonus bHPrecovRate,20; + bonus bMaxHP,70; } - Mob: ANGELING EggItem: Angeling_Egg @@ -1482,18 +1598,21 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bMaxHPrate,2; - bonus bHealPower,8; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bMaxHPrate,2; - bonus bHealPower,6; - } else if (.@i >= PET_INTIMATE_NEUTRAL) { - bonus bMaxHPrate,1; - bonus bHealPower,4; - } else { - bonus bMaxHPrate,1; - bonus bHealPower,2; + if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { + bonus bMaxHPrate,1; + bonus bHealPower,2; + } + else if (.@i == PET_INTIMATE_NEUTRAL) { + bonus bMaxHPrate,1; + bonus bHealPower,4; + } + else if (.@i == PET_INTIMATE_CORDIAL) { + bonus bMaxHPrate,2; + bonus bHealPower,6; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bMaxHPrate,2; + bonus bHealPower,8; } - Mob: MOONLIGHT EggItem: Moonlight_Egg @@ -1506,7 +1625,7 @@ Body: AllowAutoFeed: true Script: > .@i = getpetinfo(PETINFO_INTIMATE); - + if (.@i >= PET_INTIMATE_LOYAL) { bonus bCritical,6; bonus bHit,6; @@ -1535,18 +1654,21 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bMaxHP,200; - bonus bVit,2; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bMaxHP,100; - bonus bVit,2; - } else if (.@i >= PET_INTIMATE_NEUTRAL) { - bonus bMaxHP,50; - bonus bVit,2; - } else { - bonus bMaxHP,50; - bonus bVit,1; + if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { + bonus bVit,1; + bonus bMaxHP,50; + } + else if (.@i == PET_INTIMATE_NEUTRAL) { + bonus bVit,2; + bonus bMaxHP,50; + } + else if (.@i == PET_INTIMATE_CORDIAL) { + bonus bVit,2; + bonus bMaxHP,100; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bVit,2; + bonus bMaxHP,200; } - Mob: HIGH_ORC EggItem: High_Orc_Egg @@ -1560,14 +1682,17 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bAtk,25; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bAtk,20; - } else if (.@i >= PET_INTIMATE_NEUTRAL) { - bonus bAtk,15; - } else { - bonus bAtk,10; + if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { + bonus bBaseAtk,10; + } + else if (.@i == PET_INTIMATE_NEUTRAL) { + bonus bBaseAtk,15; + } + else if (.@i == PET_INTIMATE_CORDIAL) { + bonus bBaseAtk,20; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bBaseAtk,25; } # Evolution: # - Target: ORK_HERO2 @@ -1576,7 +1701,7 @@ Body: # Amount: 30 # - Item: Orc_Warrior_Card # Amount: 10 -# - Item: Orc_Baby_Card +# - Item: Orc_Baby_Card_Card # Amount: 10 # - Item: Voucher_Of_Orcish_Hero # Amount: 10 @@ -1592,17 +1717,20 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bCritical,9; - bonus bLongAtkRate,3; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bCritical,7; - bonus bLongAtkRate,2; - } else if (.@i >= PET_INTIMATE_NEUTRAL) { - bonus bCritical,5; - bonus bLongAtkRate,1; - } else { - bonus bCritical,3; + if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { + bonus bCritical,3; + } + else if (.@i == PET_INTIMATE_NEUTRAL) { + bonus bLongAtkRate,1; + bonus bCritical,5; + } + else if (.@i == PET_INTIMATE_CORDIAL) { + bonus bLongAtkRate,2; + bonus bCritical,7; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bLongAtkRate,3; + bonus bCritical,9; } - Mob: ANCIENT_MUMMY EggItem: Ancient_Mummy_Egg @@ -1616,18 +1744,21 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bHit,6; - bonus2 bAddClass,Class_Dragon,6; - bonus2 bMagicAddClass,Class_Dragon,6; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bHit,6; - bonus2 bAddClass,Class_Dragon,3; - bonus2 bMagicAddClass,Class_Dragon,3; - } else if (.@i >= PET_INTIMATE_NEUTRAL) { - bonus bHit,5; - } else { - bonus bHit,4; + if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { + bonus bHit,4; + } + else if (.@i == PET_INTIMATE_NEUTRAL) { + bonus bHit,5; + } + else if (.@i == PET_INTIMATE_CORDIAL) { + bonus2 bAddRace,RC_Dragon,3; + bonus2 bMagicAddRace,RC_Dragon,3; + bonus bHit,6; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus2 bAddRace,RC_Dragon,6; + bonus2 bMagicAddRace,RC_Dragon,6; + bonus bHit,6; } - Mob: AM_MUT EggItem: Ammut_Egg @@ -1641,14 +1772,17 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bMatkRate,4; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bMatkRate,3; - } else if (.@i >= PET_INTIMATE_NEUTRAL) { - bonus bMatkRate,2; - } else { - bonus bMatkRate,1; + if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { + bonus bMatkRate,1; + } + else if (.@i == PET_INTIMATE_NEUTRAL) { + bonus bMatkRate,2; + } + else if (.@i == PET_INTIMATE_CORDIAL) { + bonus bMatkRate,3; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bMatkRate,4; } - Mob: CAT_O_NINE_TAIL EggItem: Cat_O_Nine_Tail_Egg @@ -1661,7 +1795,7 @@ Body: AllowAutoFeed: true Script: > .@i = getpetinfo(PETINFO_INTIMATE); - + if (.@i >= PET_INTIMATE_LOYAL) { bonus bCritical,5; bonus bHit,5; @@ -1677,17 +1811,17 @@ Body: bonus bCritical,2; bonus bHit,2; } - Evolution: - - Target: MOONLIGHT - ItemRequirements: - - Item: Mightysoul_Essence - Amount: 30 - - Item: Nine_Tail_Card - Amount: 10 - - Item: Sohee_Card - Amount: 10 - - Item: Munak_Card - Amount: 10 +# Evolution: +# - Target: MOONLIGHT2 +# ItemRequirements: +# - Item: Mightysoul_Essence +# Amount: 30 +# - Item: Nine_Tail_Card +# Amount: 10 +# - Item: Sohee_Card +# Amount: 10 +# - Item: Munak_Card +# Amount: 10 - Mob: GRAND_PECO EggItem: Grand_Peco_Egg FoodItem: Pet_Food @@ -1700,15 +1834,17 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bMaxHP,400; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bMaxHP,300; - } else if (.@i >= PET_INTIMATE_NEUTRAL) { - bonus bMaxHP,200; - } else { - bonus bMaxHP,150; - bonus bMaxSP,-10; + if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { + bonus bMaxHP,150; + } + else if (.@i == PET_INTIMATE_NEUTRAL) { + bonus bMaxHP,200; + } + else if (.@i == PET_INTIMATE_CORDIAL) { + bonus bMaxHP,300; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bMaxHP,400; } - Mob: HYEGUN EggItem: Hyegun_Egg @@ -1721,7 +1857,7 @@ Body: AllowAutoFeed: true Script: > .@i = getpetinfo(PETINFO_INTIMATE); - + if (.@i >= PET_INTIMATE_LOYAL) { bonus bVit,4; bonus2 bResEff,Eff_Stun,400; @@ -1749,21 +1885,35 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bDex,2; - bonus bHit,2; - bonus bCritAtkRate,9; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bDex,2; - bonus bHit,2; - bonus bCritAtkRate,7; - } else if (.@i >= PET_INTIMATE_NEUTRAL) { - bonus bDex,2; - bonus bHit,1; - } else { - bonus bDex,1; - bonus bHit,1; + if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { + bonus bHit,1; + bonus bDex,1; } + else if (.@i == PET_INTIMATE_NEUTRAL) { + bonus bHit,1; + bonus bDex,2; + } + else if (.@i == PET_INTIMATE_CORDIAL) { + bonus bCritAtkRate,7; + bonus bHit,2; + bonus bDex,2; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bCritAtkRate,9; + bonus bHit,2; + bonus bDex,2; + } +# Evolution: +# - Target: GLOOMUNDERNIGHT2 +# ItemRequirements: +# - Item: Hodremlin_Card +# Amount: 10 +# - Item: Isilla_Card +# Amount: 10 +# - Item: Agav_Card +# Amount: 10 +# - Item: Mightysoul_Essence +# Amount: 30 - Mob: XM_TEDDY_BEAR EggItem: Xm_Teddybear_Egg FoodItem: Pet_Food @@ -1775,7 +1925,7 @@ Body: AllowAutoFeed: true Script: > .@i = getpetinfo(PETINFO_INTIMATE); - + if (.@i >= PET_INTIMATE_LOYAL) { bonus bMaxSP,150; petautobonus "{ bonus2 bSPRegenRate,40,1000; }",30,5000,BF_MAGIC; @@ -1799,18 +1949,21 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bHit,9; - bonus bAtk,9; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bHit,7; - bonus bAtk,7; - } else if (.@i >= PET_INTIMATE_NEUTRAL) { - bonus bHit,5; - bonus bAtk,5; - } else { - bonus bHit,3; - bonus bAtk,3; + if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { + bonus bBaseAtk,3; + bonus bHit,3; + } + else if (.@i == PET_INTIMATE_NEUTRAL) { + bonus bBaseAtk,5; + bonus bHit,5; + } + else if (.@i == PET_INTIMATE_CORDIAL) { + bonus bBaseAtk,7; + bonus bHit,7; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bBaseAtk,9; + bonus bHit,9; } - Mob: DR_LUNATIC EggItem: Leaf_Lunatic_Egg @@ -1824,22 +1977,25 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bCritical,5; - bonus bAtk,5; - bonus2 bAddRace,RC_Formless,6; - bonus2 bMagicAddRace,RC_Formless,6; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bCritical,4; - bonus bAtk,4; - bonus2 bAddRace,RC_Formless,3; - bonus2 bMagicAddRace,RC_Formless,3; - } else if (.@i >= PET_INTIMATE_NEUTRAL) { - bonus bCritical,3; - bonus bAtk,3; - } else { - bonus bCritical,2; - bonus bAtk,2; + if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { + bonus bCritical,2; + bonus bBaseAtk,2; + } + else if (.@i == PET_INTIMATE_NEUTRAL) { + bonus bCritical,3; + bonus bBaseAtk,3; + } + else if (.@i == PET_INTIMATE_CORDIAL) { + bonus2 bAddRace,RC_Formless,3; + bonus2 bMagicAddRace,RC_Formless,3; + bonus bCritical,4; + bonus bBaseAtk,4; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus2 bAddRace,RC_Formless,6; + bonus2 bMagicAddRace,RC_Formless,6; + bonus bCritical,5; + bonus bBaseAtk,5; } - Mob: LITTLE_ISIS EggItem: Littleisis_Egg @@ -1853,16 +2009,20 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bAtkRate,4; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bAtkRate,3; - } else if (.@i >= PET_INTIMATE_NEUTRAL) { - bonus bAtkRate,2; - } else { - bonus bAtkRate,1; + if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { + bonus2 bAddClass,Class_All,1; + } + else if (.@i == PET_INTIMATE_NEUTRAL) { + bonus2 bAddClass,Class_All,2; + } + else if (.@i == PET_INTIMATE_CORDIAL) { + bonus2 bAddClass,Class_All,3; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus2 bAddClass,Class_All,4; } - Mob: DIABOLIC2 + TameItem: Red_Burning_Stone EggItem: Diabolic_Egg2 FoodItem: Pet_Food Fullness: 2 @@ -1873,7 +2033,7 @@ Body: AllowAutoFeed: true Script: > .@i = getpetinfo(PETINFO_INTIMATE); - + if (.@i >= PET_INTIMATE_LOYAL) { bonus bAtkRate,2; bonus bMatkRate,2; @@ -1907,17 +2067,20 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bAspdRate,3; - bonus bAgi,3; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bAspdRate,2; - bonus bAgi,2; - } else if (.@i >= PET_INTIMATE_NEUTRAL) { - bonus bAspdRate,1; - bonus bAgi,1; - } else { - bonus bAspdRate,1; + if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { + bonus bAspdRate,1; + } + else if (.@i == PET_INTIMATE_NEUTRAL) { + bonus bAspdRate,1; + bonus bAgi,1; + } + else if (.@i == PET_INTIMATE_CORDIAL) { + bonus bAspdRate,2; + bonus bAgi,2; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bAspdRate,3; + bonus bAgi,3; } - Mob: SWEETS_DROPS EggItem: Sweets_Drops_Egg @@ -1930,61 +2093,67 @@ Body: AllowAutoFeed: true Script: > .@i = getpetinfo(PETINFO_INTIMATE); - + if (.@i >= PET_INTIMATE_CORDIAL) { bonus2 bExpAddClass,Class_All,1; } -# - Mob: NIGHTMARE_TERROR_H -# EggItem: Rigid_Nightmare_Terror_Egg -# FoodItem: Pet_Food -# Fullness: 2 -# HungryDelay: 120 -# IntimacyFed: 15 -# CaptureRate: 0 -# SpecialPerformance: false -# AllowAutoFeed: true -# Script: > -# .@i = getpetinfo(PETINFO_INTIMATE); -# -# if (.@i >= PET_INTIMATE_LOYAL) { -# bonus bInt,4; -# bonus bMaxSPrate,3; -# bonus2 bResEff,Eff_Sleep,10000; -# } else if (.@i >= PET_INTIMATE_CORDIAL) { -# bonus bInt,3; -# bonus bMaxSPrate,1; -# bonus2 bResEff,Eff_Sleep,10000; -# } else if (.@i >= PET_INTIMATE_NEUTRAL) { -# bonus bInt,3; -# } else { -# bonus bInt,1; -# } -# - Mob: WANDER_MAN_H -# EggItem: Contaminated_Wanderer_Egg -# FoodItem: Pet_Food -# Fullness: 2 -# HungryDelay: 120 -# IntimacyFed: 15 -# CaptureRate: 0 -# SpecialPerformance: false -# AllowAutoFeed: true -# Script: > -# .@i = getpetinfo(PETINFO_INTIMATE); -# -# if (.@i >= PET_INTIMATE_LOYAL) { -# bonus bAgi,4; -# bonus bCritical,3; -# bonus bCritAtkRate,7; -# } else if (.@i >= PET_INTIMATE_CORDIAL) { -# bonus bAgi,4; -# bonus bCritical,2; -# bonus bCritAtkRate,5; -# } else if (.@i >= PET_INTIMATE_NEUTRAL) { -# bonus bAgi,4; -# bonus bCritical,1; -# } else { -# bonus bAgi,4; -# } + - Mob: NIGHTMARE_TERROR_H + EggItem: Nightmare_TerrorH_EGG + FoodItem: Pet_Food + Fullness: 2 + HungryDelay: 120 + IntimacyFed: 15 + CaptureRate: 0 + SpecialPerformance: false + AllowAutoFeed: true + Script: > + .@i = getpetinfo(PETINFO_INTIMATE); + + if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { + bonus bInt,1; + } + else if (.@i == PET_INTIMATE_NEUTRAL) { + bonus bInt,2; + } + else if (.@i == PET_INTIMATE_CORDIAL) { + bonus2 bResEff,Eff_Sleep,10000; + bonus bMaxSPrate,1; + bonus bInt,3; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus2 bResEff,Eff_Sleep,10000; + bonus bMaxSPrate,3; + bonus bInt,4; + } + - Mob: WANDER_MAN_H + EggItem: Wanderer_H_EGG + FoodItem: Pet_Food + Fullness: 2 + HungryDelay: 120 + IntimacyFed: 15 + CaptureRate: 0 + SpecialPerformance: false + AllowAutoFeed: true + Script: > + .@i = getpetinfo(PETINFO_INTIMATE); + + if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { + bonus bAgi,4; + } + else if (.@i == PET_INTIMATE_NEUTRAL) { + bonus bCritical,1; + bonus bAgi,4; + } + else if (.@i == PET_INTIMATE_CORDIAL) { + bonus bCritAtkRate,5; + bonus bCritical,2; + bonus bAgi,4; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bCritAtkRate,7; + bonus bCritical,3; + bonus bAgi,4; + } - Mob: ALIOT EggItem: Aliot_EGG FoodItem: Pet_Food @@ -1997,18 +2166,32 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bAspdRate,5; - bonus bHit,12; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bAspdRate,4; - bonus bHit,9; - } else if (.@i >= PET_INTIMATE_NEUTRAL) { - bonus bAspdRate,3; - bonus bHit,6; - } else { - bonus bAspdRate,2; + if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { + bonus bAspdRate,2; } + else if (.@i == PET_INTIMATE_NEUTRAL) { + bonus bAspdRate,3; + bonus bHit,6; + } + else if (.@i == PET_INTIMATE_CORDIAL) { + bonus bAspdRate,4; + bonus bHit,9; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bAspdRate,5; + bonus bHit,12; + } +# Evolution: +# - Target: KIEL_D_01_2 +# ItemRequirements: +# - Item: Alicel_Card +# Amount: 10 +# - Item: Aliza_Card +# Amount: 10 +# - Item: Aliot_Card +# Amount: 10 +# - Item: Mightysoul_Essence +# Amount: 30 - Mob: ALICEL EggItem: Alicel_EGG FoodItem: Pet_Food @@ -2021,16 +2204,19 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bVariableCastrate,-5; - bonus2 bMagicAtkEle,Ele_Neutral,5; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bVariableCastrate,-4; - bonus2 bMagicAtkEle,Ele_Neutral,3; - } else if (.@i >= PET_INTIMATE_NEUTRAL) { - bonus bVariableCastrate,-3; - } else { - bonus bVariableCastrate,-2; + if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { + bonus bVariableCastrate,-2; + } + else if (.@i == PET_INTIMATE_NEUTRAL) { + bonus bVariableCastrate,-3; + } + else if (.@i == PET_INTIMATE_CORDIAL) { + bonus2 bMagicAtkEle,Ele_Neutral,3; + bonus bVariableCastrate,-4; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus2 bMagicAtkEle,Ele_Neutral,5; + bonus bVariableCastrate,-5; } - Mob: ALIZA EggItem: Aliza_EGG @@ -2044,20 +2230,23 @@ Body: Script: > .@i = getpetinfo(PETINFO_INTIMATE); - if (.@i >= PET_INTIMATE_LOYAL) { - bonus bMdef,7; - bonus bHealPower,6; - } else if (.@i >= PET_INTIMATE_CORDIAL) { - bonus bMdef,6; - bonus bHealPower,4; - } else if (.@i >= PET_INTIMATE_NEUTRAL) { - bonus bMdef,5; - bonus bHealPower,2; - } else { - bonus bMdef,4; + if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { + bonus bMdef,4; + } + else if (.@i == PET_INTIMATE_NEUTRAL) { + bonus bMdef,5; + bonus bHealPower,2; + } + else if (.@i == PET_INTIMATE_CORDIAL) { + bonus bMdef,6; + bonus bHealPower,4; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bMdef,7; + bonus bHealPower,6; } # - Mob: BACSOJIN2 -# EggItem: Bacsojin2_Egg_ +# EggItem: Bacsojin_Egg2 # FoodItem: High_Class_Pet_food # Fullness: 7 # IntimacyFed: 10 @@ -2067,20 +2256,24 @@ Body: # Script: > # .@i = getpetinfo(PETINFO_INTIMATE); # -# if (.@i >= PET_INTIMATE_LOYAL) { -# bonus bMaxSPRate,5; -# bonus bDelayrate,-3; -# } else if (.@i >= PET_INTIMATE_CORDIAL) { -# bonus bMaxSPRate,4; -# bonus bDelayrate,-2; -# } else if (.@i >= PET_INTIMATE_NEUTRAL) { -# bonus bMaxSPRate,3; -# bonus bDelayrate,-1; -# } else { -# bonus bMaxSPRate,2; +# if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { +# bonus bMaxSPrate,2; # } +# else if (.@i == PET_INTIMATE_NEUTRAL) { +# bonus bDelayrate,-1; +# bonus bMaxSPrate,3; +# } +# else if (.@i == PET_INTIMATE_CORDIAL) { +# bonus bDelayrate,-2; +# bonus bMaxSPrate,4; +# } +# else if (.@i == PET_INTIMATE_LOYAL) { +# bonus bDelayrate,-3; +# bonus bMaxSPrate,5; +# } +# # - Mob: ORK_HERO2 -# EggItem: Orc_Hero_Egg_ +# EggItem: Ork_Hero_EGG # FoodItem: High_Class_Pet_food # Fullness: 2 # HungryDelay: 120 @@ -2091,17 +2284,21 @@ Body: # Script: > # .@i = getpetinfo(PETINFO_INTIMATE); # -# if (.@i >= PET_INTIMATE_LOYAL) { -# bonus bAtkRate,7; -# bonus bCritAtkRate,3; -# } else if (.@i >= PET_INTIMATE_CORDIAL) { -# bonus bAtkRate,4; -# bonus bCritAtkRate,1; -# } else if (.@i >= PET_INTIMATE_NEUTRAL) { -# bonus bAtkRate,2; -# } else { -# bonus bAtkRate,1; +# if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { +# bonus bAtkRate,1; # } +# else if (.@i == PET_INTIMATE_NEUTRAL) { +# bonus bAtkRate,2; +# } +# else if (.@i == PET_INTIMATE_CORDIAL) { +# bonus bCritAtkRate,1; +# bonus bAtkRate,4; +# } +# else if (.@i == PET_INTIMATE_LOYAL) { +# bonus bCritAtkRate,3; +# bonus bAtkRate,7; +# } +# # - Mob: PHREEONI2 # EggItem: Phreeoni_Egg # FoodItem: High_Class_Pet_food @@ -2109,34 +2306,37 @@ Body: # HungryDelay: 120 # unknown # IntimacyFed: 15 # unknown # CaptureRate: 0 # unknown -# SpecialPerformance: false # unknown +# SpecialPerformance: false unknown # AllowAutoFeed: true # Script: > -# .@intimate = getpetinfo(PETINFO_INTIMATE); -# if (.@intimate == PET_INTIMATE_AWKWARD || .@intimate == PET_INTIMATE_SHY) { +# .@i = getpetinfo(PETINFO_INTIMATE); +# +# if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { # bonus bHit,6; # } -# if (.@intimate == PET_INTIMATE_NEUTRAL) { +# else if (.@i == PET_INTIMATE_NEUTRAL) { # bonus bHit,10; # bonus bPerfectHitRate,5; # } -# if (.@intimate == PET_INTIMATE_CORDIAL) { +# else if (.@i == PET_INTIMATE_CORDIAL) { # bonus bHit,14; # bonus bPerfectHitRate,10; # } -# if (.@intimate == PET_INTIMATE_LOYAL) { +# else if (.@i == PET_INTIMATE_LOYAL) { # bonus bHit,18; # bonus bPerfectHitRate,15; # } +# - Mob: EP17_2_CHILD_ADMIN1 - CaptureRate : 1000 EggItem: Ep17_2_C_Admin1_Egg EquipItem: Ep_17_2_C_Admin1_Acc FoodItem: Cloud_Cotton Fullness: 2 IntimacyFed: 20 + CaptureRate: 1000 Script: > .@i = getpetinfo(PETINFO_INTIMATE); + if (.@i >= PET_INTIMATE_LOYAL) { bonus2 bAddRace2,RC2_EP172BETA,10; } else if (.@i >= PET_INTIMATE_CORDIAL) { @@ -2147,21 +2347,23 @@ Body: Evolution: - Target: EP17_2_CHILD_ADMIN2 ItemRequirements: - - Item: Mystery_Piece - Amount: 10 - - Item: Broken_Steel_Piece - Amount: 50 - Item: BarMealTicket Amount: 500 + - Item: Broken_Steel_Piece + Amount: 50 + - Item: Mystery_Piece + Amount: 10 - Mob: EP17_2_CHILD_ADMIN2 - CaptureRate : 1000 EggItem: Ep17_2_C_Admin2_Egg EquipItem: Ep_17_2_C_Admin2_Acc FoodItem: Pet_Food Fullness: 2 IntimacyFed: 20 + CaptureRate: 1000 + AllowAutoFeed: true Script: > .@i = getpetinfo(PETINFO_INTIMATE); + if (.@i >= PET_INTIMATE_LOYAL) { bonus2 bAddRace2,RC2_EP172ALPHA,15; } else if (.@i >= PET_INTIMATE_CORDIAL) { @@ -2169,3 +2371,733 @@ Body: } else if (.@i >= PET_INTIMATE_NEUTRAL) { bonus2 bAddRace2,RC2_EP172ALPHA,4; } +# - Mob: BLUE_UNICORN +# EggItem: Blue_Unicorn_Egg +# FoodItem: Blue_Herb +# Fullness: 2 # unknown +# HungryDelay: 120 # unknown +# IntimacyFed: 15 # unknown +# CaptureRate: 0 # unknown +# SpecialPerformance: false # unknown +# - Mob: SCATLETON +# EggItem: Scatletoncarrier +# EquipItem: 10040 +# FoodItem: Delicious_Fish +# Fullness: 2 # unknown +# HungryDelay: 120 # unknown +# IntimacyFed: 15 # unknown +# CaptureRate: 0 # unknown +# SpecialPerformance: false # unknown +# Script: > +# if (getpetinfo(PETINFO_INTIMATE) == PET_INTIMATE_LOYAL) { +# bonus bMatk,10; +# bonus bBaseAtk,10; +# } +# +# Evolution: +# - Target: SKELION +# ItemRequirements: +# - Item: Memory_Of_Gyol +# Amount: 2 +# - Item: Yummy_Meat +# Amount: 100 +# - Item: Cookies_Bat +# Amount: 100 + - Mob: WILOW + EggItem: Wilow_Egg + FoodItem: Tree_Of_Archer_1 + Fullness: 2 # unknown + HungryDelay: 120 # unknown + IntimacyFed: 15 # unknown + CaptureRate: 0 # unknown + SpecialPerformance: false # unknown + Script: > + .@i = getpetinfo(PETINFO_INTIMATE); + + if (.@i == PET_INTIMATE_CORDIAL) { + bonus bInt,2; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus bInt,3; + } + - Mob: ROWEEN + EggItem: Roween_Egg + FoodItem: Rotten_Meat + Fullness: 2 # unknown + HungryDelay: 120 # unknown + IntimacyFed: 15 # unknown + CaptureRate: 0 # unknown + SpecialPerformance: false # unknown + Script: > + .@i = getpetinfo(PETINFO_INTIMATE); + + if (.@i == PET_INTIMATE_CORDIAL) { + bonus2 bMagicAtkEle,Ele_Wind,2; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus2 bMagicAtkEle,Ele_Wind,3; + } +# - Mob: SKELION +# EggItem: Roost_Of_Skelion +# EquipItem: 10042 +# FoodItem: Yummy_Meat +# Fullness: 2 # unknown +# HungryDelay: 120 # unknown +# IntimacyFed: 15 # unknown +# CaptureRate: 0 # unknown +# SpecialPerformance: false # unknown +# AllowAutoFeed: true +# Script: > +# if (getpetinfo(PETINFO_INTIMATE) == PET_INTIMATE_LOYAL) { +# bonus bMatk,20; +# bonus bBaseAtk,20; +# } +# +# - Mob: GLOOMUNDERNIGHT2 +# EggItem: Gloom_Under_Egg +# FoodItem: High_Class_Pet_food +# Fullness: 2 # unknown +# HungryDelay: 120 # unknown +# IntimacyFed: 15 # unknown +# CaptureRate: 0 # unknown +# SpecialPerformance: false # unknown +# AllowAutoFeed: true +# Script: > +# .@i = getpetinfo(PETINFO_INTIMATE); +# +# if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { +# bonus bMatk,10; +# } +# else if (.@i == PET_INTIMATE_NEUTRAL) { +# bonus bMatk,20; +# } +# else if (.@i == PET_INTIMATE_CORDIAL) { +# bonus2 bMagicAtkEle,Ele_Fire,5; +# bonus2 bMagicAtkEle,Ele_Ghost,5; +# bonus bMatk,30; +# } +# else if (.@i == PET_INTIMATE_LOYAL) { +# bonus2 bMagicAtkEle,Ele_Fire,7; +# bonus2 bMagicAtkEle,Ele_Ghost,7; +# bonus bMatk,40; +# } +# +# - Mob: WANDERING_DUCK +# EggItem: E_Duckling_Egg +# EquipItem: 10045 +# FoodItem: Wad_Of_Cotton +# Fullness: 2 # unknown +# HungryDelay: 120 # unknown +# IntimacyFed: 15 # unknown +# CaptureRate: 0 # unknown +# SpecialPerformance: false # unknown +# Script: > +# .@i = getpetinfo(PETINFO_INTIMATE); +# +# if (.@i == PET_INTIMATE_CORDIAL) { +# bonus bPerfectHitRate,5; +# } +# else if (.@i == PET_INTIMATE_LOYAL) { +# bonus bPerfectHitRate,10; +# } +# +# - Mob: KIEL_D_01_2 +# EggItem: Kiel_Egg +# FoodItem: High_Class_Pet_food +# Fullness: 2 # unknown +# HungryDelay: 120 # unknown +# IntimacyFed: 15 # unknown +# CaptureRate: 0 # unknown +# SpecialPerformance: false # unknown +# AllowAutoFeed: true +# Script: > +# .@i = getpetinfo(PETINFO_INTIMATE); +# +# if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { +# bonus bAspdRate,4; +# bonus bHit,9; +# } +# else if (.@i == PET_INTIMATE_NEUTRAL) { +# bonus bShortAtkRate,1; +# bonus bAspdRate,5; +# bonus bHit,12; +# } +# else if (.@i == PET_INTIMATE_CORDIAL) { +# bonus bShortAtkRate,3; +# bonus bAspdRate,6; +# bonus bHit,15; +# } +# else if (.@i == PET_INTIMATE_LOYAL) { +# bonus bShortAtkRate,5; +# bonus bAspdRate,7; +# bonus bHit,18; +# } +# + - Mob: DARK_PRIEST + EggItem: Dark_Priest_Egg + FoodItem: Evil_Water + Fullness: 2 # unknown + HungryDelay: 120 # unknown + IntimacyFed: 15 # unknown + CaptureRate: 0 # unknown + SpecialPerformance: false # unknown + Script: > + .@i = getpetinfo(PETINFO_INTIMATE); + + if (.@i == PET_INTIMATE_CORDIAL) { + bonus2 bMagicAddEle,Ele_Holy,3; + bonus bInt,1; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus2 bMagicAddEle,Ele_Holy,5; + bonus bInt,2; + } +# Evolution: +# - Target: DARK_ILLUSION2 +# ItemRequirements: +# - Item: Skull +# Amount: 500 +# - Item: Rosary +# Amount: 1 +# - Item: Sacred_Marks +# Amount: 5 +# - Item: Dark_Priest_Card +# Amount: 10 + - Mob: DESERT_WOLF + EggItem: Desert_Wolf_Egg + FoodItem: Pet_Food + Fullness: 2 # unknown + HungryDelay: 120 # unknown + IntimacyFed: 15 # unknown + CaptureRate: 0 # unknown + SpecialPerformance: false # unknown + AllowAutoFeed: true + Script: > + .@i = getpetinfo(PETINFO_INTIMATE); + + if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { + bonus bInt,1; + bonus bMaxSP,50; + } + else if (.@i == PET_INTIMATE_NEUTRAL) { + bonus bInt,2; + bonus bMaxSP,75; + } + else if (.@i == PET_INTIMATE_CORDIAL) { + bonus2 bMagicAtkEle,Ele_Earth,3; + bonus bInt,3; + bonus bMaxSP,105; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus2 bMagicAtkEle,Ele_Earth,5; + bonus bInt,4; + bonus bMaxSP,130; + } +# - Mob: ILL_BAPHOMET_J +# EggItem: Chaos_Bapho_Jr_Egg +# FoodItem: Pet_Food +# Fullness: 2 # unknown +# HungryDelay: 120 # unknown +# IntimacyFed: 15 # unknown +# CaptureRate: 0 # unknown +# SpecialPerformance: false # unknown +# AllowAutoFeed: true +# Script: > +# .@i = getpetinfo(PETINFO_INTIMATE); +# +# if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { +# bonus bFlee,6; +# } +# else if (.@i == PET_INTIMATE_NEUTRAL) { +# bonus bMaxSPrate,1; +# bonus bFlee,9; +# } +# else if (.@i == PET_INTIMATE_CORDIAL) { +# bonus bMaxSPrate,2; +# bonus bFlee,12; +# } +# else if (.@i == PET_INTIMATE_LOYAL) { +# bonus bMaxSPrate,3; +# bonus bFlee,15; +# } +# +# Evolution: +# - Target: BAPHOMET2 +# ItemRequirements: +# - Item: Baphomet__Card +# Amount: 15 +# - Item: Chaos_Ba_Jr_Card +# Amount: 15 +# - Item: Mightysoul_Essence +# Amount: 30 + - Mob: FIRE_GOLEM + EggItem: Fire_Golem_Egg + FoodItem: Pet_Food + Fullness: 2 # unknown + HungryDelay: 120 # unknown + IntimacyFed: 15 # unknown + CaptureRate: 0 # unknown + SpecialPerformance: false # unknown + AllowAutoFeed: true + Script: > + .@i = getpetinfo(PETINFO_INTIMATE); + + if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { + bonus bMaxHP,200; + } + else if (.@i == PET_INTIMATE_NEUTRAL) { + bonus bMaxHP,300; + } + else if (.@i == PET_INTIMATE_CORDIAL) { + bonus2 bMagicAtkEle,Ele_Fire,3; + bonus bMaxHP,400; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus2 bMagicAtkEle,Ele_Fire,5; + bonus bMaxHP,500; + } +# - Mob: KNIGHT_OF_ABYSS2 +# EggItem: Abyss_Knight_Egg +# FoodItem: Pet_Food +# Fullness: 2 # unknown +# HungryDelay: 120 # unknown +# IntimacyFed: 15 # unknown +# CaptureRate: 0 # unknown +# SpecialPerformance: false # unknown +# AllowAutoFeed: true +# Script: > +# .@i = getpetinfo(PETINFO_INTIMATE); +# +# if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { +# bonus bAtkRate,2; +# } +# else if (.@i == PET_INTIMATE_NEUTRAL) { +# bonus bAtkRate,3; +# } +# else if (.@i == PET_INTIMATE_CORDIAL) { +# bonus2 bAddClass,Class_Boss,3; +# bonus bPAtk,1; +# bonus bAtkRate,4; +# } +# else if (.@i == PET_INTIMATE_LOYAL) { +# bonus2 bAddClass,Class_Boss,5; +# bonus bPAtk,2; +# bonus bAtkRate,5; +# } +# +# - Mob: CWHITEKNIGHT +# EggItem: Change_W_Knight_Egg +# FoodItem: Pet_Food +# Fullness: 2 # unknown +# HungryDelay: 120 # unknown +# IntimacyFed: 15 # unknown +# CaptureRate: 0 # unknown +# SpecialPerformance: false # unknown +# Script: > +# .@i = getpetinfo(PETINFO_INTIMATE); +# +# if (.@i == PET_INTIMATE_CORDIAL) { +# bonus bMatkRate,1; +# bonus bAtkRate,1; +# } +# else if (.@i == PET_INTIMATE_LOYAL) { +# bonus bMatkRate,2; +# bonus bAtkRate,2; +# } +# +# Evolution: +# - Target: KNIGHT_OF_ABYSS2 +# ItemRequirements: +# - Item: Piece_Of_Darkness +# Amount: 100 +# - Item: Rune_Of_Darkness +# Amount: 100 +# - Item: Sin_Fragment +# Amount: 200 +# - Item: Knight_Of_Abyss_Card +# Amount: 5 +# - Target: GH_WHITEKNIGHT +# ItemRequirements: +# - Item: Shining_Round_Shell +# Amount: 100 +# - Item: EP19_Shiny_Seaweed +# Amount: 100 +# - Item: Fate_Fragment +# Amount: 200 +# - Item: White_Knightage_Card +# Amount: 2 +# - Mob: GH_WHITEKNIGHT +# EggItem: White_Knight_Egg +# FoodItem: Pet_Food +# Fullness: 2 # unknown +# HungryDelay: 120 # unknown +# IntimacyFed: 15 # unknown +# CaptureRate: 0 # unknown +# SpecialPerformance: false # unknown +# AllowAutoFeed: true +# Script: > +# .@i = getpetinfo(PETINFO_INTIMATE); +# +# if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { +# bonus bMatkRate,2; +# } +# else if (.@i == PET_INTIMATE_NEUTRAL) { +# bonus bMatkRate,3; +# } +# else if (.@i == PET_INTIMATE_CORDIAL) { +# bonus2 bMagicAddClass,Class_Boss,3; +# bonus bSMatk,1; +# bonus bMatkRate,4; +# } +# else if (.@i == PET_INTIMATE_LOYAL) { +# bonus2 bMagicAddClass,Class_Boss,5; +# bonus bSMatk,2; +# bonus bMatkRate,5; +# } +# +# - Mob: BAPHOMET2 +# EggItem: Baphomet_Egg +# FoodItem: High_Class_Pet_food +# Fullness: 2 # unknown +# HungryDelay: 120 # unknown +# IntimacyFed: 15 # unknown +# CaptureRate: 0 # unknown +# SpecialPerformance: false # unknown +# AllowAutoFeed: true +# Script: > +# .@i = getpetinfo(PETINFO_INTIMATE); +# +# if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { +# bonus bMaxSPrate,1; +# bonus bFlee,8; +# } +# else if (.@i == PET_INTIMATE_NEUTRAL) { +# bonus bLongAtkRate,1; +# bonus bMaxSPrate,3; +# bonus bFlee,12; +# } +# else if (.@i == PET_INTIMATE_CORDIAL) { +# bonus bLongAtkRate,3; +# bonus bMaxSPrate,5; +# bonus bFlee,16; +# } +# else if (.@i == PET_INTIMATE_LOYAL) { +# bonus bLongAtkRate,5; +# bonus bMaxSPrate,7; +# bonus bFlee,20; +# } +# + - Mob: FARMILIAR + TameItem: Fruits_Set_Trap + EggItem: Farmiliar_Egg + FoodItem: Mixed_Fruits_Juice + Fullness: 2 # unknown + HungryDelay: 120 # unknown + IntimacyFed: 15 # unknown + CaptureRate: 2000 # unknown + SpecialPerformance: false # unknown + Script: > + .@i = getpetinfo(PETINFO_INTIMATE); + + if (.@i == PET_INTIMATE_CORDIAL) { + bonus2 bResEff,Eff_Curse,1000; + bonus bInt,3; + } + else if (.@i == PET_INTIMATE_LOYAL) { + bonus2 bResEff,Eff_Curse,2000; + bonus bInt,5; + } +# - Mob: DARK_ILLUSION2 +# EggItem: Dark_Illusion_Egg +# FoodItem: Pet_Food +# Fullness: 2 # unknown +# HungryDelay: 120 # unknown +# IntimacyFed: 15 # unknown +# CaptureRate: 0 # unknown +# SpecialPerformance: false # unknown +# AllowAutoFeed: true +# Script: > +# .@i = getpetinfo(PETINFO_INTIMATE); +# +# if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { +# bonus bVariableCastrate,-2; +# } +# else if (.@i == PET_INTIMATE_NEUTRAL) { +# bonus bVariableCastrate,-3; +# } +# else if (.@i == PET_INTIMATE_CORDIAL) { +# bonus2 bMagicAtkEle,Ele_Dark,3; +# bonus bVariableCastrate,-4; +# } +# else if (.@i == PET_INTIMATE_LOYAL) { +# bonus2 bMagicAtkEle,Ele_Dark,5; +# bonus bVariableCastrate,-5; +# } +# +# Evolution: +# - Target: DARK_LORD2 +# ItemRequirements: +# - Item: Dark_Illusion_Card +# Amount: 10 +# - Item: Evil_Druid_Card +# Amount: 10 +# - Item: Dark_Priest_Card +# Amount: 10 +# - Item: Mightysoul_Essence +# Amount: 30 +# - Mob: BLUEMOON_LOLI_RURI2 +# EggItem: Blue_Moon_Loli_Ruri_Egg +# FoodItem: Pet_Food +# Fullness: 2 # unknown +# HungryDelay: 120 # unknown +# IntimacyFed: 15 # unknown +# CaptureRate: 0 # unknown +# SpecialPerformance: false # unknown +# AllowAutoFeed: true +# Script: > +# .@i = getpetinfo(PETINFO_INTIMATE); +# +# if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { +# bonus bMaxHPrate,1; +# bonus bVit,1; +# } +# else if (.@i == PET_INTIMATE_NEUTRAL) { +# bonus bMaxHPrate,2; +# bonus bVit,2; +# } +# else if (.@i == PET_INTIMATE_CORDIAL) { +# bonus bMaxHPrate,3; +# bonus bVit,3; +# } +# else if (.@i == PET_INTIMATE_LOYAL) { +# bonus bMaxHPrate,5; +# bonus bVit,4; +# } +# +# - Mob: WILD_ROSE3 +# EggItem: Wild_Rose_Egg2 +# FoodItem: Pet_Food +# Fullness: 2 # unknown +# HungryDelay: 120 # unknown +# IntimacyFed: 15 # unknown +# CaptureRate: 0 # unknown +# SpecialPerformance: false # unknown +# AllowAutoFeed: true +# Script: > +# .@i = getpetinfo(PETINFO_INTIMATE); +# +# if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { +# bonus bCritical,2; +# } +# else if (.@i == PET_INTIMATE_NEUTRAL) { +# bonus bCritical,3; +# } +# else if (.@i == PET_INTIMATE_CORDIAL) { +# bonus bAspdRate,3; +# bonus bCritical,5; +# } +# else if (.@i == PET_INTIMATE_LOYAL) { +# bonus bAspdRate,5; +# bonus bCritical,7; +# } +# +# Evolution: +# - Target: EDDGA3 +# ItemRequirements: +# - Item: Leaf_Cat_Card +# Amount: 10 +# - Item: Wild_Rose_Card +# Amount: 10 +# - Item: Jaguar_Card +# Amount: 10 +# - Item: Mightysoul_Essence +# Amount: 30 +# - Mob: EDDGA3 +# EggItem: Eddga_Egg2 +# FoodItem: High_Class_Pet_food +# Fullness: 2 # unknown +# HungryDelay: 120 # unknown +# IntimacyFed: 15 # unknown +# CaptureRate: 0 # unknown +# SpecialPerformance: false # unknown +# AllowAutoFeed: true +# Script: > +# .@i = getpetinfo(PETINFO_INTIMATE); +# +# if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { +# bonus bCritical,5; +# } +# else if (.@i == PET_INTIMATE_NEUTRAL) { +# bonus bCritical,6; +# } +# else if (.@i == PET_INTIMATE_CORDIAL) { +# bonus bCRate,1; +# bonus bCritical,7; +# } +# else if (.@i == PET_INTIMATE_LOYAL) { +# bonus bCRate,3; +# bonus bCritical,8; +# } +# +# - Mob: LARVA_VIOLET +# EggItem: Larva_Violet_Egg +# FoodItem: Green_Herb +# Fullness: 2 # unknown +# HungryDelay: 120 # unknown +# IntimacyFed: 15 # unknown +# CaptureRate: 0 # unknown +# SpecialPerformance: false # unknown +# Script: > +# .@i = getpetinfo(PETINFO_INTIMATE); +# +# if (.@i == PET_INTIMATE_CORDIAL) { +# bonus bCritical,3; +# bonus bHit,5; +# } +# else if (.@i == PET_INTIMATE_LOYAL) { +# bonus bCritical,5; +# bonus bHit,10; +# } +# +# - Mob: EP20_COPO +# TameItem: Ep20_Fatty_Icegangu +# EggItem: Copo_Egg +# FoodItem: Pet_Food +# Fullness: 2 # unknown +# HungryDelay: 120 # unknown +# IntimacyFed: 15 # unknown +# CaptureRate: 2000 # unknown +# SpecialPerformance: false # unknown +# Script: > +# .@i = getpetinfo(PETINFO_INTIMATE); +# +# if (.@i == PET_INTIMATE_CORDIAL) { +# bonus bMatkRate,1; +# bonus bAtkRate,1; +# } +# else if (.@i == PET_INTIMATE_LOYAL) { +# bonus bMatkRate,2; +# bonus bAtkRate,2; +# } +# +# Evolution: +# - Target: EP20_ICEWIND1 +# ItemRequirements: +# - Item: Ep20_Huge_Feather_G +# Amount: 200 +# - Item: Ep20_Copo_Egg_Shell +# Amount: 150 +# - Item: Ep20_Copo_Head_F +# Amount: 150 +# - Item: Grey_Icewind_Card +# Amount: 1 +# - Target: EP20_ICEWIND2 +# ItemRequirements: +# - Item: Ep20_Huge_Feather_W +# Amount: 200 +# - Item: Ep20_Copo_Egg_Shell +# Amount: 150 +# - Item: Ep20_Copo_Head_F +# Amount: 150 +# - Item: Icewind_Card +# Amount: 1 +# - Mob: EP20_ICEWIND1 +# EggItem: Grey_Icewind_Egg +# FoodItem: Pet_Food +# Fullness: 2 # unknown +# HungryDelay: 120 # unknown +# IntimacyFed: 15 # unknown +# CaptureRate: 0 # unknown +# SpecialPerformance: false # unknown +# AllowAutoFeed: true +# Script: > +# .@i = getpetinfo(PETINFO_INTIMATE); +# +# if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { +# bonus bAtkRate,1; +# } +# else if (.@i == PET_INTIMATE_NEUTRAL) { +# bonus bAtkRate,2; +# } +# else if (.@i == PET_INTIMATE_CORDIAL) { +# bonus bAtkRate,2; +# bonus bPow,1; +# } +# else if (.@i == PET_INTIMATE_LOYAL) { +# bonus bAtkRate,3; +# bonus bPow,2; +# } +# +# - Mob: EP20_ICEWIND2 +# EggItem: Icewind_Egg +# FoodItem: Pet_Food +# Fullness: 2 # unknown +# HungryDelay: 120 # unknown +# IntimacyFed: 15 # unknown +# CaptureRate: 0 # unknown +# SpecialPerformance: false # unknown +# AllowAutoFeed: true +# Script: > +# .@i = getpetinfo(PETINFO_INTIMATE); +# +# if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { +# bonus bMatkRate,1; +# } +# else if (.@i == PET_INTIMATE_NEUTRAL) { +# bonus bMatkRate,2; +# } +# else if (.@i == PET_INTIMATE_CORDIAL) { +# bonus bMatkRate,2; +# bonus bSpl,1; +# } +# else if (.@i == PET_INTIMATE_LOYAL) { +# bonus bMatkRate,3; +# bonus bSpl,2; +# } +# +# - Mob: DARK_LORD2 +# EggItem: Dark_Lord_Egg +# FoodItem: High_Class_Pet_food +# Fullness: 2 # unknown +# HungryDelay: 120 # unknown +# IntimacyFed: 15 # unknown +# CaptureRate: 0 # unknown +# SpecialPerformance: false # unknown +# AllowAutoFeed: true +# Script: > +# .@i = getpetinfo(PETINFO_INTIMATE); +# +# if (.@i == PET_INTIMATE_AWKWARD || .@i == PET_INTIMATE_SHY) { +# bonus2 bMagicAtkEle,Ele_Dark,3; +# } +# else if (.@i == PET_INTIMATE_NEUTRAL) { +# bonus2 bMagicAtkEle,Ele_Dark,5; +# } +# else if (.@i == PET_INTIMATE_CORDIAL) { +# bonus2 bMagicAtkEle,Ele_Dark,7; +# } +# else if (.@i == PET_INTIMATE_LOYAL) { +# bonus2 bMagicAtkEle,Ele_Dark,7; +# bonus bSpeedRate,25; +# } +# +# - Mob: VR_CHAO +# EggItem: Sonic_Chao_Egg +# FoodItem: Pet_Food +# Fullness: 2 # unknown +# HungryDelay: 120 # unknown +# IntimacyFed: 15 # unknown +# CaptureRate: 0 # unknown +# SpecialPerformance: false # unknown +# Script: > +# .@i = getpetinfo(PETINFO_INTIMATE); +# +# if (.@i == PET_INTIMATE_CORDIAL) { +# bonus bMaxHP,200; +# bonus bMaxSP,20; +# } +# else if (.@i == PET_INTIMATE_LOYAL) { +# bonus bMaxHP,300; +# bonus bMaxSP,30; +# } +# From f85f990e3ecf15fdb02f7809211e1c1985b1d1fc Mon Sep 17 00:00:00 2001 From: Playtester <3785983+Playtester@users.noreply.github.com> Date: Sat, 16 Mar 2024 14:42:45 +0100 Subject: [PATCH 37/44] Fixed all status changes overwriting OPT1 status changes (#8172) - Fixes #8128 --- src/map/status.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/map/status.cpp b/src/map/status.cpp index 632c5b272b..ee1824e368 100644 --- a/src/map/status.cpp +++ b/src/map/status.cpp @@ -12898,7 +12898,7 @@ int status_change_start(struct block_list* src, struct block_list* bl,enum sc_ty if (battle_config.sc_castcancel&bl->type && scdb->flag[SCF_STOPCASTING]) unit_skillcastcancel(bl,0); - sc->opt1 = scdb->opt1; + if(scdb->opt1 != OPT1_NONE) sc->opt1 = scdb->opt1; sc->opt2 |= scdb->opt2; sc->opt3 |= scdb->opt3; sc->option |= scdb->look; From 5ebfd541639a98793a9c57b66ffef2fde09aa288 Mon Sep 17 00:00:00 2001 From: Atemo Date: Sun, 17 Mar 2024 14:48:28 +0100 Subject: [PATCH 38/44] Updated item_packages.yml and item_group_db.yml (#8174) Files updated according to KRO client datas. --- db/re/item_db_equip.yml | 34 +- db/re/item_db_usable.yml | 7708 ++- db/re/item_group_db.yml | 83275 ++++++++++++++++++++++++--------- db/re/item_packages.yml | 815 +- db/re/pet_db.yml | 9 +- src/map/itemdb.hpp | 732 +- src/map/script_constants.hpp | 732 +- 7 files changed, 68551 insertions(+), 24754 deletions(-) diff --git a/db/re/item_db_equip.yml b/db/re/item_db_equip.yml index 7aa1d2ad9b..895fc23e6a 100644 --- a/db/re/item_db_equip.yml +++ b/db/re/item_db_equip.yml @@ -166459,7 +166459,7 @@ Body: ArmorLevel: 1 View: 2366 - Id: 400432 - AegisName: aegis_400432 + AegisName: C_Heart_Chiffon_Rabbit Name: Costume Heart Chiffon Rabbit Type: Armor Locations: @@ -169453,7 +169453,7 @@ Body: } } - Id: 400585 - AegisName: aegis_400585 + AegisName: C_SnowmanHat Name: Costume Snowman Hat Type: Armor Locations: @@ -172343,7 +172343,7 @@ Body: ArmorLevel: 1 View: 575 - Id: 410231 - AegisName: aegis_410231 + AegisName: C_Teaparty_Wonderland Name: Costume Tea Party in Wonderland Type: Armor Locations: @@ -172888,7 +172888,7 @@ Body: ArmorLevel: 1 View: 1463 - Id: 410295 - AegisName: aegis_410295 + AegisName: C_WinterNightBells Name: Costume Winter Night Bells Type: Armor Locations: @@ -174754,7 +174754,7 @@ Body: ArmorLevel: 1 View: 2365 - Id: 420208 - AegisName: aegis_420208 + AegisName: C_Chocolat_Rabbit_Hair Name: Costume Chocolate Rabbit Hair Type: Armor Locations: @@ -193524,19 +193524,37 @@ Body: if (.@r>=13) bonus2 bIgnoreDefClassRate,Class_Boss,10; - Id: 480243 - AegisName: aegis_480243 + AegisName: C_JP_EV16 Name: Costume Cinnamon Backpack Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 + View: 152 + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 480244 - AegisName: aegis_480244 + AegisName: C_JP_EV17 Name: Costume Crowned Cinnamon Backpack Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 + View: 153 + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 480245 AegisName: aegis_480245 Name: Crowned Cinnamon Backpack @@ -195654,7 +195672,7 @@ Body: } } - Id: 480405 - AegisName: aegis_480405 + AegisName: C_SantaTeddyBear Name: Costume Santa Teddy Bear Doll Bag Type: Armor Locations: diff --git a/db/re/item_db_usable.yml b/db/re/item_db_usable.yml index 15f1787568..77ff7d8b31 100644 --- a/db/re/item_db_usable.yml +++ b/db/re/item_db_usable.yml @@ -2203,11 +2203,14 @@ Body: laphine_upgrade(); - Id: 9553 AegisName: C_CatPaw_7Day_Box_ - Name: Infinite Cat Hand Ticket 7 Days Box - Type: Usable + Name: Infinite Cat Hand Ticket Box(7 Days) + Type: Cash Weight: 10 + Flags: + BuyingStore: true + Container: true Script: | - rentitem 22998,604800; + getgroupitem(IG_C_CATPAW_7DAY_BOX_); - Id: 9569 AegisName: Festival_Noodle Name: Festival Noodles @@ -2230,6 +2233,18 @@ Body: NoAuction: true Script: | getgroupitem(IG_WET_SEALED_CARD); + - Id: 9582 + AegisName: Fancy_Spray_Of_Flowers + Name: Colorful Flower Branches + Type: Healing + Weight: 100 + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 9585 AegisName: Small_Spray_Of_Flowers Name: Small Flower Branches @@ -2391,6 +2406,13 @@ Body: Script: | specialeffect2 EF_POTION_BERSERK; sc_start SC_LIMIT_POWER_BOOSTER,1800000,30; + - Id: 9897 + AegisName: E_Glittering_Doll_B + Name: Shiny Doll Button + Type: Usable + Weight: 10 + Script: | + pet 21089; - Id: 9908 AegisName: DF_Mental_Potion Name: "[Scroll] Mental Potion" @@ -2842,7 +2864,7 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_Boarding_Halter_Box); + getgroupitem(IG_BOARDING_HALTER_BOX7); - Id: 9999 AegisName: Season_Evt_Reward_2 Name: Sweets Snack Pack @@ -4026,6 +4048,13 @@ Body: Weight: 50 Script: | itemheal 350,0; + - Id: 11611 + AegisName: Pop_Corn + Name: Popcorn + Type: Healing + Weight: 30 + Script: | + itemheal 235,0; /* average value */ - Id: 11613 AegisName: Harvest_Cookie Name: Harvest Biscuit @@ -4116,6 +4145,13 @@ Body: Duration: 10000 Script: | itemheal 0,180; + - Id: 11625 + AegisName: Gourmet_Popcorn + Name: Gourmet Butter Popcorn + Type: Healing + Weight: 40 + Script: | + itemheal 0,20; /* average value */ - Id: 11626 AegisName: Kings_Melon_5 Name: Recooked Melon Bread @@ -7731,9 +7767,11 @@ Body: getgroupitem(IG_PC_BANG_COIN_BOX2); - Id: 12296 AegisName: PC_Bang_Coin_Box3 - Name: PC-Room Coin Box + Name: Splendid Spring Hat Box Type: Usable Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -7744,7 +7782,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 2738,1; + getgroupitem(IG_PC_BANG_COIN_BOX3); - Id: 12297 AegisName: PC_Bang_Coin_Box4 Name: PC-Room Coin Box @@ -9033,10 +9071,12 @@ Body: else specialeffect2 EF_CURSEATTACK; - Id: 12398 AegisName: PCBang_Gift_Box - Name: PCRoom Gift Box + Name: PC Cafe Gift Box Type: Usable Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -9046,6 +9086,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_PCBANG_GIFT_BOX); - Id: 12399 AegisName: Castle_Treasure_Box Name: Castle Treasure Box @@ -9155,6 +9197,8 @@ Body: Name: PC Cafe Coupon Box Type: Usable Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -9163,6 +9207,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_PCBANG_COUPON_BOX); - Id: 12408 AegisName: Leaf_Cat_Ball Name: Hydra Ball @@ -9195,10 +9241,12 @@ Body: sc_start SC_ITEMBOOST,900000,200; - Id: 12413 AegisName: PCBang_Coupon_Box2 - Name: PC Cafe Coupon Box + Name: PC Cafe Coupon Boxâ…¡ Type: Usable Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -9207,6 +9255,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_PCBANG_COUPON_BOX2); - Id: 12414 AegisName: Guarana_Candy Name: Guarana Candy @@ -9766,10 +9816,12 @@ Body: itemheal 500,0; - Id: 12476 AegisName: PCBang_Coupon_Box3 - Name: PCBang Coupon Box3 + Name: PC Cafe Coupon Box Type: Usable Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -9778,36 +9830,22 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_PCBANG_COUPON_BOX3); - Id: 12477 AegisName: Gift_Bundle - Name: Gift Bundle + Name: Prontera Costume Pack Type: Usable Flags: Container: true Script: | - /*getgroupitem(IG_Gift_Bundle);*/ - getitem 547,30; - getitem 608,2; - getitem 6302,1; + getgroupitem(IG_GIFT_BUNDLE); - Id: 12478 AegisName: Chance_Box - Name: Chance Box + Name: Box of Opportunity Type: Usable Buy: 20 Weight: 10 - Trade: - NoDrop: true - NoTrade: true - NoSell: true - NoCart: true - NoStorage: true - NoGuildStorage: true - NoMail: true - NoAuction: true - - Id: 12479 - AegisName: Caracas_Ring_Box - Name: Caracas Ring Box - Type: Usable Flags: Container: true Trade: @@ -9820,13 +9858,32 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Caracas_Ring_Box);*/ - rentitem 2841,270000; + getgroupitem(IG_CHANCE_BOX); + - Id: 12479 + AegisName: Caracas_Ring_Box + Name: Test Your Luck Box + Type: Usable + Weight: 10 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_CARACAS_RING_BOX); - Id: 12480 AegisName: Attend_3Day_Box - Name: Attend 3Day Box + Name: Attendance 3day Box Type: Usable Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -9835,11 +9892,15 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_ATTEND_3DAY_BOX); - Id: 12481 AegisName: Attend_7Day_Box - Name: Attend 7Day Box + Name: Attendance 7day Box Type: Usable Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -9848,11 +9909,15 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_ATTEND_7DAY_BOX); - Id: 12482 AegisName: Attend_10Day_Box - Name: Attend 10Day Box + Name: Attendance 10day Box Type: Usable Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -9861,11 +9926,15 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_ATTEND_10DAY_BOX); - Id: 12483 AegisName: Attend_15Day_Box - Name: Attend 15Day Box + Name: Attendance 15day Box Type: Usable Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -9874,11 +9943,15 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_ATTEND_15DAY_BOX); - Id: 12484 AegisName: Attend_20Day_Box - Name: Attend 20Day Box + Name: Attendance 20day Box Type: Usable Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -9887,11 +9960,15 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_ATTEND_20DAY_BOX); - Id: 12485 AegisName: Attend_25Day_Box - Name: Attend 25Day Box + Name: Attendance 25day Box Type: Usable Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -9900,11 +9977,15 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_ATTEND_25DAY_BOX); - Id: 12486 AegisName: GoldPC_First_Box - Name: GoldPC First Box + Name: Beast Summoning Seal Book Type: Usable Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -9913,6 +9994,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_GOLDPC_FIRST_BOX); - Id: 12487 AegisName: PC_4Leaf_Clover_Box Name: PC 4Leaf Clover Box @@ -9928,9 +10011,11 @@ Body: NoAuction: true - Id: 12488 AegisName: Ticket_Gift_Box - Name: Ticket Gift Box + Name: Valkyrie Mercenary Scroll Type: Usable Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -9939,13 +10024,15 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true - # Script: | - # mercenary_create VALK_MERC_H,1800000; + Script: | + getgroupitem(IG_TICKET_GIFT_BOX); - Id: 12489 AegisName: Ticket_Gift_Box2 - Name: Ticket Gift Box2 + Name: Ticket Gift Box II Type: Usable Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -9954,6 +10041,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_TICKET_GIFT_BOX2); - Id: 12490 AegisName: Vivid_Notation Name: Christmas Music Box @@ -10503,35 +10592,24 @@ Body: percentheal 20,20; - Id: 12537 AegisName: Solo_Gift_Basket - Name: Solo Gift Basket + Name: Gift Chocolate Basket Type: Usable Buy: 1000 Weight: 10 Flags: Container: true Script: | - /*getgroupitem(IG_Solo_Gift_Basket);*/ - getitem 597,5; - getitem 596,3; - getitem 561,3; - getitem 573,4; - getitem 559,10; - getitem 560,10; + getgroupitem(IG_SOLO_GIFT_BASKET); - Id: 12538 AegisName: Couple_Event_Basket - Name: Couple Event Basket + Name: Firecracker Basket Type: Usable Buy: 2000 Weight: 10 Flags: Container: true Script: | - /*getgroupitem(IG_Couple_Event_Basket);*/ - getitem 14546,10; - getitem 14547,10; - getitem 14548,10; - getitem 14549,10; - getitem 14550,10; + getgroupitem(IG_COUPLE_EVENT_BASKET); - Id: 12539 AegisName: Splendid_Box Name: Splendid Box @@ -10772,14 +10850,20 @@ Body: - Id: 12564 AegisName: 3D_Glasses_Box Name: 3D Glasses Box - Type: Usable + Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_3D_GLASSES_BOX); - Id: 12565 AegisName: Cheer_Scarf_Box - Name: Cheer Scarf Box + Name: Cheering Scarf Box Type: Usable Weight: 100 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -10788,11 +10872,15 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_CHEER_SCARF_BOX); - Id: 12566 AegisName: Cheer_Scarf2_Box - Name: Cheer Scarf2 Box - Type: Usable + Name: Cheering Scarf II Box + Type: Cash Weight: 100 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -10801,11 +10889,15 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_CHEER_SCARF2_BOX); - Id: 12567 AegisName: Cheer_Scarf3_Box - Name: Cheer Scarf3 Box - Type: Usable + Name: Cheering Scarf Box + Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -10815,11 +10907,15 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_CHEER_SCARF3_BOX); - Id: 12568 AegisName: Cheer_Scarf4_Box - Name: Cheer Scarf4 Box - Type: Usable + Name: Cheering Scarf Box + Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -10829,11 +10925,15 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_CHEER_SCARF4_BOX); - Id: 12569 AegisName: Cheer_Scarf6_Box - Name: Cheer Scarf6 Box - Type: Usable + Name: Cheering Scarf Box + Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -10843,11 +10943,15 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_CHEER_SCARF6_BOX); - Id: 12570 AegisName: Cheer_Scarf8_Box - Name: Cheer Scarf8 Box - Type: Usable + Name: Cheering Scarf Box + Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -10857,11 +10961,15 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_CHEER_SCARF8_BOX); - Id: 12571 AegisName: Cheer_Scarf10_Box - Name: Cheer Scarf10 Box - Type: Usable + Name: Cheering Scarf Box + Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -10871,11 +10979,15 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_CHEER_SCARF10_BOX); - Id: 12572 AegisName: Cheer_Scarf10_Box2 - Name: Cheer Scarf10 Box2 - Type: Usable + Name: Cheering Scarf Box + Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -10885,6 +10997,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_CHEER_SCARF10_BOX2); - Id: 12573 AegisName: Fruit_Basket Name: Fruit Basket @@ -10966,9 +11080,12 @@ Body: sc_start4 SC_G_LIFEPOTION,600000,-6,3,0,0; - Id: 12579 AegisName: Ring_Of_Valkyrie_Box - Name: Ring Of Valkyrie Box - Type: Usable + Name: Valkyrie Ring Box + Type: Cash Buy: 20 + Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -10978,6 +11095,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_RING_OF_VALKYRIE_BOX); - Id: 12580 AegisName: Vending_Search_Scroll Name: Universal Catalog Silver @@ -11003,10 +11122,13 @@ Body: - Id: 12582 AegisName: Siege_Supply_Box Name: WoE Supply Box - Type: DelayConsume + Type: Usable Weight: 100 Flags: BuyingStore: true + Container: true + Script: | + getgroupitem(IG_SIEGE_SUPPLY_BOX); - Id: 12583 AegisName: PR_Team_Box Name: Public Relations box @@ -11238,39 +11360,61 @@ Body: - Id: 12602 AegisName: Special_Box1 Name: Special Box I - Type: DelayConsume + Type: Usable Buy: 100 Weight: 100 + Flags: + Container: true + Script: | + getgroupitem(IG_SPECIAL_BOX1); - Id: 12603 AegisName: Special_Box2 Name: Special Box II - Type: DelayConsume + Type: Usable Buy: 100 Weight: 100 + Flags: + Container: true + Script: | + getgroupitem(IG_SPECIAL_BOX2); - Id: 12604 AegisName: Special_Box3 Name: Special Box III - Type: DelayConsume + Type: Usable Buy: 100 Weight: 100 + Flags: + Container: true + Script: | + getgroupitem(IG_SPECIAL_BOX3); - Id: 12605 AegisName: Special_Box4 Name: Special Box IV - Type: DelayConsume + Type: Usable Buy: 100 Weight: 100 + Flags: + Container: true + Script: | + getgroupitem(IG_SPECIAL_BOX4); - Id: 12606 AegisName: Special_Box5 Name: Special Box V - Type: DelayConsume + Type: Usable Buy: 100 Weight: 100 + Flags: + Container: true + Script: | + getgroupitem(IG_SPECIAL_BOX5); - Id: 12607 AegisName: Lolli_Pop_Box - Name: Delicious Lollipop Box - Type: DelayConsume + Name: Lolli Pop Box + Type: Usable Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -11280,6 +11424,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_LOLLI_POP_BOX); - Id: 12608 AegisName: Splendid_Box2 Name: Splendid Box2 @@ -11470,8 +11616,10 @@ Body: percentheal 3,3; - Id: 12625 AegisName: Sapa_Feat_Cert_Pack - Name: Sapa Feat Cert Pack + Name: Sapha Certification Bag Type: Usable + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -11480,6 +11628,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_SAPA_FEAT_CERT_PACK); - Id: 12626 AegisName: Wander_Man_Scroll Name: Wander Man Scroll @@ -11671,10 +11821,12 @@ Body: getitem 6422,50; - Id: 12644 AegisName: PCBang_Coupon_Box4 - Name: PCBang Coupon Box4 + Name: PC Cafe Coupon BoxIV Type: Usable Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -11683,6 +11835,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_PCBANG_COUPON_BOX4); - Id: 12645 AegisName: J_Aspersio_5_Scroll_C Name: J Aspersio 5 Scroll C @@ -12208,6 +12362,8 @@ Body: Type: Usable Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -12216,6 +12372,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_GRYPHON_EGG_SCROLL); - Id: 12686 AegisName: Str_Dish20 Name: Str Dish20 @@ -13178,10 +13336,12 @@ Body: Type: Usable - Id: 12785 AegisName: Dragon_Egg_Scroll - Name: Dragon Egg Scroll + Name: Dragon Egg Type: Usable Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -13190,6 +13350,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_DRAGON_EGG_SCROLL); - Id: 12786 AegisName: Change_Slot_Card Name: Character Position Change Coupon @@ -13272,10 +13434,12 @@ Body: getitem 12792,10; - Id: 12795 AegisName: 2011_RWC_Scroll_Kr - Name: 2011 RWC Scroll Kr + Name: 2011 RWC Scroll Type: Usable Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -13284,6 +13448,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_2011_RWC_SCROLL_KR); - Id: 12796 AegisName: Red_Booster Name: Red Booster @@ -13319,10 +13485,12 @@ Body: mercenary_create 2345,1800000; - Id: 12799 AegisName: PCBang_Coupon_Box5 - Name: PCBang Coupon Box5 + Name: PC Cafe Coupon Box V Type: Usable Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -13331,6 +13499,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_PCBANG_COUPON_BOX5); - Id: 12800 AegisName: Ktullanux_Scroll Name: Ktullanux Scroll @@ -13349,8 +13519,10 @@ Body: mercenary_create 2347,1800000; - Id: 12802 AegisName: Time_Guardian_Box - Name: Time Guardian Box + Name: Time Keeper Box Type: Usable + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -13360,10 +13532,14 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_TIME_GUARDIAN_BOX); - Id: 12803 AegisName: Beginner_Kit_Box - Name: Beginner Kit Box + Name: Novice Support Box Type: Usable + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -13373,12 +13549,16 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_BEGINNER_KIT_BOX); - Id: 12804 AegisName: Cru_Scroll - Name: Cru Scroll + Name: Crew Egg Type: Usable Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -13387,6 +13567,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_CRU_SCROLL); - Id: 12805 AegisName: Mystic_Powder Name: Mystic Powder @@ -13433,9 +13615,11 @@ Body: getitem 12808,1; - Id: 12808 AegisName: Mother_Love_Box - Name: Mother Love Box + Name: Mother's Gentle Heart Box Type: Usable - EquipLevelMin: 1 + EquipLevelMax: 120 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -13445,6 +13629,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_MOTHER_LOVE_BOX); - Id: 12809 AegisName: Level_Up_Box Name: Level Up Box @@ -13468,9 +13654,11 @@ Body: - Id: 12810 AegisName: Event_Gift_Box Name: Event Gift Box - Type: Usable + Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -13480,12 +13668,16 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_EVENT_GIFT_BOX); - Id: 12811 AegisName: Event_Gift_Box_ - Name: Event Gift Box - Type: Usable + Name: GM Event Gift Box + Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -13495,8 +13687,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 607,3; - getitem callfunc("F_Rand",22528,22802,12246,6228,6229,6230,6232,6233,6234),1; + getgroupitem(IG_EVENT_GIFT_BOX_); - Id: 12812 AegisName: Snow_Flip Name: Snow Flip @@ -13550,6 +13741,8 @@ Body: Name: Old Ore Box Type: Usable EquipLevelMin: 60 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -13559,6 +13752,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_OLD_ORE_BOX_); - Id: 12817 AegisName: Old_Card_Album_ Name: Old Card Album @@ -13742,12 +13937,30 @@ Body: Script: | specialeffect2 EF_HEAL3; sc_start2 SC_M_LIFEPOTION,600000,-4,3; + - Id: 12833 + AegisName: Union_Of_Tribe_ + Name: Union of Organization + Type: Usable + Buy: 2 + Weight: 500 + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + guildgetexp 1000000; - Id: 12834 AegisName: Undead_Egg - Name: Undead Egg + Name: Nucleus of Undead Type: Usable Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -13756,12 +13969,16 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_UNDEAD_EGG); - Id: 12835 AegisName: Girls_Heart - Name: Girls Heart + Name: Heart of Girl Type: Usable Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -13770,6 +13987,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_GIRLS_HEART); - Id: 12837 AegisName: Wooden_Treasure_Box Name: Wooden Treasure Box @@ -16018,7 +16237,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -16027,6 +16246,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_ASSORTED_SCROLL_BOX); - Id: 13502 AegisName: Drooping_Kitty_Box Name: Refined Drooping Cat Box @@ -16034,7 +16255,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -16044,7 +16265,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 5279,604800; + getgroupitem(IG_DROOPING_KITTY_BOX); - Id: 13503 AegisName: Magestic_Goat_Box Name: Baphomet Horns Box @@ -16052,7 +16273,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -16062,7 +16283,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 5280,604800; + getgroupitem(IG_MAGESTIC_GOAT_BOX); - Id: 13504 AegisName: Deviruchi_Cap_Box Name: Refined Deviruchi Hat Box @@ -16070,7 +16291,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -16080,7 +16301,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 5281,604800; + getgroupitem(IG_DEVIRUCHI_CAP_BOX); - Id: 13505 AegisName: Executioner_Box Name: Executioner Box @@ -16088,7 +16309,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -16098,7 +16319,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1174,604800; + getgroupitem(IG_EXECUTIONER_BOX); - Id: 13506 AegisName: Brood_Axe_Box Name: Refined Bloody Axe Box @@ -16106,7 +16327,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -16116,7 +16337,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1373,604800; + getgroupitem(IG_BROOD_AXE_BOX); - Id: 13507 AegisName: Tomahawk_Box Name: Tomahawk Box @@ -16124,7 +16345,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -16134,7 +16355,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1374,604800; + getgroupitem(IG_TOMAHAWK_BOX); - Id: 13508 AegisName: Bow_Of_Rudra_Box Name: Rudra Bow Box @@ -16142,7 +16363,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -16152,15 +16373,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1729,604800; + getgroupitem(IG_BOW_OF_RUDRA_BOX); - Id: 13509 AegisName: Cutlas_Box - Name: Cutlus Box + Name: Cutlas Box Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -16170,7 +16391,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 13402,604800; + getgroupitem(IG_CUTLAS_BOX); - Id: 13510 AegisName: Solar_Sword_Box Name: Solar Sword Box @@ -16178,7 +16399,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -16188,7 +16409,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 13403,604800; + getgroupitem(IG_SOLAR_SWORD_BOX); - Id: 13511 AegisName: Sword_Breaker_Box Name: Refined Swordbreaker Box @@ -16196,7 +16417,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -16206,7 +16427,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 13024,604800; + getgroupitem(IG_SWORD_BREAKER_BOX); - Id: 13512 AegisName: Mail_Breaker_Box Name: Refined Mailbreaker Box @@ -16214,7 +16435,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -16224,7 +16445,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 13025,604800; + getgroupitem(IG_MAIL_BREAKER_BOX); - Id: 13513 AegisName: Moonlight_Sword_Box Name: Moonlight Dagger Box @@ -16232,7 +16453,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -16242,7 +16463,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 13026,604800; + getgroupitem(IG_MOONLIGHT_SWORD_BOX); - Id: 13514 AegisName: Spanner_Box Name: Wrench Box @@ -16250,7 +16471,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -16260,7 +16481,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1534,604800; + getgroupitem(IG_SPANNER_BOX); - Id: 13515 AegisName: Grape_Box Name: Grape Box @@ -17038,11 +17259,11 @@ Body: - Id: 13558 AegisName: Weapon_Card_Scroll Name: Weapon Card Pet Egg Scroll - Type: Usable + Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -17051,14 +17272,16 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_WEAPON_CARD_SCROLL); - Id: 13559 AegisName: Armor_Card_Scroll Name: Armor Card Pet Egg Scroll - Type: Usable + Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -17067,14 +17290,16 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_ARMOR_CARD_SCROLL); - Id: 13560 AegisName: Helmet_Card_Scroll Name: Helmet Card Pet Egg Scroll - Type: Usable + Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -17083,14 +17308,16 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_HELMET_CARD_SCROLL); - Id: 13561 AegisName: Hood_Card_Scroll Name: Garment Card Pet Egg Scroll - Type: Usable + Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -17099,14 +17326,16 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_HOOD_CARD_SCROLL); - Id: 13562 AegisName: Hood_Card_Scroll2 Name: Shield Card Pet Egg Scroll - Type: Usable + Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -17115,14 +17344,16 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_HOOD_CARD_SCROLL2); - Id: 13563 AegisName: Shoes_Card_Scroll Name: Shoes Card Pet Egg Scroll - Type: Usable + Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -17131,14 +17362,16 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_SHOES_CARD_SCROLL); - Id: 13564 AegisName: Accy_Card_Scroll Name: Accessory Card Pet Egg Scroll - Type: Usable + Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -17147,14 +17380,16 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_ACCY_CARD_SCROLL); - Id: 13565 AegisName: Weapon_Card_Scroll2 Name: Weapon Card Pet Egg Scroll - Type: Usable + Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -17163,14 +17398,16 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_WEAPON_CARD_SCROLL2); - Id: 13566 AegisName: Weapon_Card_Scroll3 Name: Weapon Card Pet Egg Scroll - Type: Usable + Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -17179,14 +17416,16 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_WEAPON_CARD_SCROLL3); - Id: 13567 AegisName: Armor_Card_Scroll2 Name: Armor Card Pet Egg Scroll - Type: Usable + Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -17195,14 +17434,16 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_ARMOR_CARD_SCROLL2); - Id: 13568 AegisName: Accy_Card_Scroll2 Name: Accessory Card Pet Egg Scroll - Type: Usable + Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -17211,6 +17452,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_ACCY_CARD_SCROLL2); - Id: 13569 AegisName: PVP_Tele_Scroll_Box Name: PVP Teleport Scroll Box @@ -17596,7 +17839,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -17606,7 +17849,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12217,30; + getgroupitem(IG_ASPERSIO_5_BOX30); - Id: 13591 AegisName: Aspersio_5_Box50 Name: Aspersio Scroll 50 Box @@ -17614,7 +17857,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -17624,7 +17867,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12217,50; + getgroupitem(IG_ASPERSIO_5_BOX50); - Id: 13592 AegisName: Agi_Dish_Box30 Name: Steamed Scorpion 30 Box @@ -17992,7 +18235,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -18002,7 +18245,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 2706,1; + getgroupitem(IG_HANDCUFF_BOX); - Id: 13613 AegisName: Super_Pet_Egg_Box1 Name: Super Pet Egg Box 1 @@ -18604,7 +18847,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -18614,7 +18857,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1267,604800; + getgroupitem(IG_INFILTRATOR_BOX1); - Id: 13647 AegisName: Muramasa_Box1 Name: Refined Muramasa Box @@ -18622,7 +18865,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -18632,7 +18875,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1173,604800; + getgroupitem(IG_MURAMASA_BOX1); - Id: 13648 AegisName: Excalibur_Box1 Name: Refined Excalibur Box @@ -18640,7 +18883,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -18650,7 +18893,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 13401,604800; + getgroupitem(IG_EXCALIBUR_BOX1); - Id: 13649 AegisName: Combat_Knife_Box1 Name: Refined Combat Knife Box @@ -18658,7 +18901,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -18668,7 +18911,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 13021,604800; + getgroupitem(IG_COMBAT_KNIFE_BOX1); - Id: 13650 AegisName: Counter_Dagger_Box1 Name: Refined Dagger of Counter Box @@ -18676,7 +18919,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -18686,7 +18929,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 13022,604800; + getgroupitem(IG_COUNTER_DAGGER_BOX1); - Id: 13651 AegisName: Kaiser_Knuckle_Box1 Name: Refined Kaiser Knuckle Box @@ -18694,7 +18937,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -18704,7 +18947,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1817,604800; + getgroupitem(IG_KAISER_KNUCKLE_BOX1); - Id: 13652 AegisName: Pole_Axe_Box1 Name: Refined Pole Axe Box @@ -18712,7 +18955,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -18722,7 +18965,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1419,604800; + getgroupitem(IG_POLE_AXE_BOX1); - Id: 13653 AegisName: Mighty_Staff_Box1 Name: Refined Mighty Staff Box @@ -18730,7 +18973,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -18740,7 +18983,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1623,604800; + getgroupitem(IG_MIGHTY_STAFF_BOX1); - Id: 13654 AegisName: Right_Epsilon_Box1 Name: Refined Light Epsilon Box @@ -18748,7 +18991,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -18758,7 +19001,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1372,604800; + getgroupitem(IG_RIGHT_EPSILON_BOX1); - Id: 13655 AegisName: Balistar_Box1 Name: Refined Ballista Box @@ -18766,7 +19009,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -18776,7 +19019,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1728,604800; + getgroupitem(IG_BALISTAR_BOX1); - Id: 13656 AegisName: Diary_Of_Sage_Box1 Name: Refined Sage's Diary Box @@ -18784,7 +19027,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -18794,7 +19037,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1563,604800; + getgroupitem(IG_DIARY_OF_SAGE_BOX1); - Id: 13657 AegisName: Asura_Box1 Name: Refined Ashura Box @@ -18802,7 +19045,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -18812,7 +19055,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 13023,604800; + getgroupitem(IG_ASURA_BOX1); - Id: 13658 AegisName: Apple_Of_Archer_Box1 Name: Refined Apple of Archer Box @@ -18820,7 +19063,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -18830,7 +19073,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 5265,1209600; + getgroupitem(IG_APPLE_OF_ARCHER_BOX1); - Id: 13659 AegisName: Bunny_Band_Box1 Name: Refined Bunny Band Box @@ -18838,7 +19081,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -18848,7 +19091,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 5266,1209600; + getgroupitem(IG_BUNNY_BAND_BOX1); - Id: 13660 AegisName: Sahkkat_Box1 Name: Refined Sakkat Box @@ -18856,7 +19099,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -18866,7 +19109,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 5267,1209600; + getgroupitem(IG_SAHKKAT_BOX1); - Id: 13661 AegisName: Lord_Circlet_Box1 Name: Refined Grand Circlet Box @@ -18874,7 +19117,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -18884,7 +19127,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 5268,1209600; + getgroupitem(IG_LORD_CIRCLET_BOX1); - Id: 13662 AegisName: Elven_Ears_Box1 Name: Refined Elven Ears Box @@ -18892,7 +19135,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -18902,7 +19145,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 2686,1209600; + getgroupitem(IG_ELVEN_EARS_BOX1); - Id: 13663 AegisName: Steel_Flower_Box1 Name: Refined Romantic Flower Box @@ -18910,7 +19153,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -18920,7 +19163,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 2687,1209600; + getgroupitem(IG_STEEL_FLOWER_BOX1); - Id: 13664 AegisName: Critical_Ring_Box1 Name: Refined Critical Ring Box @@ -18928,7 +19171,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -18938,7 +19181,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 2688,604800; + getgroupitem(IG_CRITICAL_RING_BOX1); - Id: 13665 AegisName: Earring_Box1 Name: Refined Earring Box @@ -18946,7 +19189,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -18956,7 +19199,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 2689,604800; + getgroupitem(IG_EARRING_BOX1); - Id: 13666 AegisName: Ring_Box1 Name: Refined Ring Box @@ -18964,7 +19207,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -18974,7 +19217,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 2690,604800; + getgroupitem(IG_RING_BOX1); - Id: 13667 AegisName: Necklace_Box1 Name: Refined Necklace Box @@ -18982,7 +19225,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -18992,7 +19235,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 2691,604800; + getgroupitem(IG_NECKLACE_BOX1); - Id: 13668 AegisName: Glove_Box1 Name: Refined Glove Box @@ -19000,7 +19243,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -19010,7 +19253,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 2692,604800; + getgroupitem(IG_GLOVE_BOX1); - Id: 13669 AegisName: Brooch_Box1 Name: Refined Brooch Box @@ -19018,7 +19261,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -19028,7 +19271,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 2693,604800; + getgroupitem(IG_BROOCH_BOX1); - Id: 13670 AegisName: Rosary_Box1 Name: Refined Rosary Box @@ -19036,7 +19279,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -19046,7 +19289,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 2694,604800; + getgroupitem(IG_ROSARY_BOX1); - Id: 13671 AegisName: Safety_Ring_Box1 Name: Refined Safety Ring Box @@ -19054,7 +19297,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -19064,7 +19307,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 2695,604800; + getgroupitem(IG_SAFETY_RING_BOX1); - Id: 13672 AegisName: Vesper_Core01_Box1 Name: Refined Vesper Core 01 Box @@ -19072,7 +19315,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -19082,7 +19325,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 2696,604800; + getgroupitem(IG_VESPER_CORE01_BOX1); - Id: 13673 AegisName: Vesper_Core02_Box1 Name: Refined Vesper Core 02 Box @@ -19090,7 +19333,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -19100,7 +19343,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 2697,604800; + getgroupitem(IG_VESPER_CORE02_BOX1); - Id: 13674 AegisName: Vesper_Core03_Box1 Name: Refined Vesper Core 03 Box @@ -19108,7 +19351,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -19118,7 +19361,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 2698,604800; + getgroupitem(IG_VESPER_CORE03_BOX1); - Id: 13675 AegisName: Vesper_Core04_Box1 Name: Refined Vesper Core 04 Box @@ -19126,7 +19369,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -19136,7 +19379,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 2699,604800; + getgroupitem(IG_VESPER_CORE04_BOX1); - Id: 13676 AegisName: Drooping_Kitty_Box1 Name: Refined Drooping Cat Box @@ -19144,7 +19387,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -19154,7 +19397,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 5279,1209600; + getgroupitem(IG_DROOPING_KITTY_BOX1); - Id: 13677 AegisName: Magestic_Goat_Box1 Name: Refined Majestic Goat Box @@ -19162,7 +19405,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -19172,7 +19415,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 5280,1209600; + getgroupitem(IG_MAGESTIC_GOAT_BOX1); - Id: 13678 AegisName: Deviruchi_Cap_Box1 Name: Refined Deviruchi Hat Box @@ -19180,7 +19423,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -19190,7 +19433,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 5281,1209600; + getgroupitem(IG_DEVIRUCHI_CAP_BOX1); - Id: 13679 AegisName: Executioner_Box1 Name: Refined Executioner Box @@ -19198,7 +19441,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -19208,15 +19451,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1174,604800; + getgroupitem(IG_EXECUTIONER_BOX1); - Id: 13680 AegisName: Brood_Axe_Box1 - Name: Refined Bloody Axe Box + Name: Punksutawney Phil's Lucky Box Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -19226,15 +19469,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1373,604800; + getgroupitem(IG_BROOD_AXE_BOX1); - Id: 13681 AegisName: Tomahawk_Box1 - Name: Refined Tomahawk Box + Name: Serpent's Surprise Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -19244,7 +19487,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1374,604800; + getgroupitem(IG_TOMAHAWK_BOX1); - Id: 13682 AegisName: Bow_Of_Rudra_Box1 Name: Refined Rudra Bow Box @@ -19265,12 +19508,12 @@ Body: getgroupitem(IG_BOW_OF_RUDRA_BOX1); - Id: 13683 AegisName: Cutlas_Box1 - Name: Refined Cutlus Box + Name: Lovely Groove Pack Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -19280,7 +19523,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 13402,604800; + getgroupitem(IG_CUTLAS_BOX1); - Id: 13684 AegisName: Solar_Sword_Box1 Name: Refined Solar Sword Box @@ -19288,7 +19531,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -19298,7 +19541,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 13403,604800; + getgroupitem(IG_SOLAR_SWORD_BOX1); - Id: 13685 AegisName: Sword_Breaker_Box1 Name: Refined Swordbreaker Box @@ -19337,12 +19580,12 @@ Body: getgroupitem(IG_MAIL_BREAKER_BOX1); - Id: 13687 AegisName: Moonlight_Sword_Box1 - Name: Refined Moonlight Dagger Box + Name: Apocalypse Survivor Fire Sale Box Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -19352,7 +19595,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 13026,604800; + getgroupitem(IG_MOONLIGHT_SWORD_BOX1); - Id: 13688 AegisName: Spanner_Box1 Name: Refined Wrench Box @@ -19360,7 +19603,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -19370,7 +19613,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1534,604800; + getgroupitem(IG_SPANNER_BOX1); - Id: 13689 AegisName: Bok_Choy_Box Name: Bok Choy Box @@ -19413,7 +19656,7 @@ Body: Type: Cash Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -19423,14 +19666,14 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 2369,604800; + getgroupitem(IG_FREYJA_OVERCOAT_BOX); - Id: 13692 AegisName: Freyja_Boots_Box Name: Freya's Boots Box Type: Cash Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -19440,14 +19683,14 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 2428,604800; + getgroupitem(IG_FREYJA_BOOTS_BOX); - Id: 13693 AegisName: Freyja_Cape_Box Name: Freya's Manteau Box Type: Cash Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -19457,14 +19700,14 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 2533,604800; + getgroupitem(IG_FREYJA_CAPE_BOX); - Id: 13694 AegisName: Freyja_Crown_Box - Name: Freya's Crown Box + Name: Freyja Crown Box Type: Cash Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -19474,7 +19717,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 5306,604800; + getgroupitem(IG_FREYJA_CROWN_BOX); - Id: 13695 AegisName: Battle_Manual25_Box Name: Field Manual 25% Box @@ -19721,11 +19964,11 @@ Body: - Id: 13709 AegisName: BRO_Package1 Name: BRO Package Box - Type: Usable + Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -19734,6 +19977,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_BRO_PACKAGE1); - Id: 13710 AegisName: Max_Weight_Up_Box Name: Gym Pass Box @@ -19952,12 +20197,12 @@ Body: getitem 14527,10; - Id: 13722 AegisName: Pecopeco_Hairband_Box - Name: Peco Peco Hairband Box + Name: Pecopeco Hairband Box Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -19967,7 +20212,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 5286,1; + getgroupitem(IG_PECOPECO_HAIRBAND_BOX); - Id: 13723 AegisName: Red_Glasses_Box Name: Red Glasses Box @@ -19975,7 +20220,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -19985,7 +20230,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 5288,1; + getgroupitem(IG_RED_GLASSES_BOX); - Id: 13724 AegisName: Whisper_Mask_Box Name: Whisper Mask Box @@ -19993,7 +20238,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -20003,7 +20248,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 5294,1; + getgroupitem(IG_WHISPER_MASK_BOX); - Id: 13725 AegisName: Ramen_Hat_Box Name: Ramen Hat Box @@ -20026,10 +20271,9 @@ Body: AegisName: Gold_Box_ Name: Golden Box Type: Cash - Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -20039,15 +20283,14 @@ Body: NoMail: true NoAuction: true Script: | - getitem 7777,1; + getgroupitem(IG_GOLD_BOX_); - Id: 13727 AegisName: Silver_Box_ Name: Silver Box Type: Cash - Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -20057,7 +20300,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 7778,1; + getgroupitem(IG_SILVER_BOX_); - Id: 13728 AegisName: Gold_Key1_Box Name: Golden Key 1 Box @@ -20133,7 +20376,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -20143,7 +20386,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 5286,1; + getgroupitem(IG_PECOPECO_HAIRBAND_BOX1); - Id: 13735 AegisName: Red_Glasses_Box1 Name: Red Glasses Box @@ -20151,7 +20394,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -20161,7 +20404,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 5288,1; + getgroupitem(IG_RED_GLASSES_BOX1); - Id: 13736 AegisName: Whisper_Mask_Box1 Name: Whisper Mask Box @@ -20169,7 +20412,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -20179,7 +20422,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 5294,1; + getgroupitem(IG_WHISPER_MASK_BOX1); - Id: 13737 AegisName: Ramen_Hat_Box1 Name: Ramen Hat Box @@ -20187,7 +20430,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -20197,7 +20440,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 5293,1; + getgroupitem(IG_RAMEN_HAT_BOX1); - Id: 13738 AegisName: Glass_Of_Illusion_Box5 Name: Glass of Illusion 5 Box @@ -20650,12 +20893,12 @@ Body: getitem 526,70; - Id: 13763 AegisName: 5_Anniversary_Coin_Box - Name: Coin Box + Name: PC Cafe Premium Anniversary Coin Box Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -20666,7 +20909,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 2709,1; + getgroupitem(IG_5_ANNIVERSARY_COIN_BOX); - Id: 13764 AegisName: Battle_Manual_Box_TW Name: Beginner's Field Manual 5 Box @@ -20687,12 +20930,12 @@ Body: getitem 7803,5; - Id: 13765 AegisName: Certificate_TW_Box - Name: Certificate Box + Name: Fully Closed Certificate Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -20703,15 +20946,15 @@ Body: NoMail: true NoAuction: true Script: | - /*getitem 7804,1;*/ + getgroupitem(IG_CERTIFICATE_TW_BOX); - Id: 13766 AegisName: Nagan_Box - Name: Refined Nagan Box + Name: Nagan Box Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -20721,15 +20964,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 13407,604800; + getgroupitem(IG_NAGAN_BOX); - Id: 13767 AegisName: Skewer_Box - Name: Refined Brocca Box + Name: Skewer Box Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -20739,15 +20982,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1424,604800; + getgroupitem(IG_SKEWER_BOX); - Id: 13768 AegisName: Survival_Rod_Box - Name: Refined Survivor's Rod Box + Name: Survival Rod Box Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -20757,15 +21000,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1628,604800; + getgroupitem(IG_SURVIVAL_ROD_BOX); - Id: 13769 AegisName: Quadrille_Box - Name: Refined Quadrille Box + Name: Quadrille Box Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -20775,15 +21018,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1537,604800; + getgroupitem(IG_QUADRILLE_BOX); - Id: 13770 AegisName: Great_Axe_Box - Name: Refined Great Axe Box + Name: Great Axe Box Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -20793,15 +21036,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1378,604800; + getgroupitem(IG_GREAT_AXE_BOX); - Id: 13771 AegisName: Bloody_Roar_Box - Name: Refined Bloody Roar Box + Name: Bloody Roar Box Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -20811,15 +21054,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1273,604800; + getgroupitem(IG_BLOODY_ROAR_BOX); - Id: 13772 AegisName: Hardback_Box - Name: Refined Hardcover Book Box + Name: Hardback Box Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -20829,7 +21072,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1567,604800; + getgroupitem(IG_HARDBACK_BOX); - Id: 13773 AegisName: Fire_Brand_Box Name: Refined Fireblend Box @@ -20851,12 +21094,12 @@ Body: /*rentitem 13408,604800;*/ - Id: 13774 AegisName: Immaterial_Sword_Box - Name: Refined Immaterial Sword Box + Name: Immaterial Sword Box Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -20866,15 +21109,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 13409,604800; + getgroupitem(IG_IMMATERIAL_SWORD_BOX); - Id: 13775 AegisName: Unholy_Touch_Box - Name: Refined Unholy Touch Box + Name: Unholy Touch Box Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -20884,15 +21127,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1274,604800; + getgroupitem(IG_UNHOLY_TOUCH_BOX); - Id: 13776 AegisName: Cloak_Of_Survival_Box - Name: Refined Survivor's Manteau Box + Name: Cloak Of Survival Box Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -20902,15 +21145,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 2535,1209600; + getgroupitem(IG_CLOAK_OF_SURVIVAL_BOX); - Id: 13777 AegisName: Masquerade_Box - Name: Refined Masquerade Box + Name: Masquerade Box Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -20920,15 +21163,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 5326,1209600; + getgroupitem(IG_MASQUERADE_BOX); - Id: 13778 AegisName: Orc_Hero_Helm_Box - Name: Refined Helmet of Orc Hero Box + Name: Orc Hero Helm Box Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -20938,15 +21181,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 5327,1209600; + getgroupitem(IG_ORC_HERO_HELM_BOX); - Id: 13779 AegisName: Evil_Wing_Ears_Box - Name: Refined Wing of Diablo Box + Name: Evil Wing Ears Box Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -20956,15 +21199,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 5328,1209600; + getgroupitem(IG_EVIL_WING_EARS_BOX); - Id: 13780 AegisName: Dark_Blindfold_Box - Name: Refined Dark Blinder Box + Name: Dark Blindfold Box Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -20974,7 +21217,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 5329,1209600; + getgroupitem(IG_DARK_BLINDFOLD_BOX); - Id: 13781 AegisName: kRO_Drooping_Kitty_Box Name: Refined Drooping Cat Box @@ -20982,7 +21225,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -20992,15 +21235,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 5330,1209600; + getgroupitem(IG_KRO_DROOPING_KITTY_BOX); - Id: 13782 AegisName: Corsair_Box - Name: Refined Corsair Box + Name: Corsair Box Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -21010,15 +21253,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 5331,1209600; + getgroupitem(IG_CORSAIR_BOX); - Id: 13783 AegisName: Bloody_Iron_Ball_Box - Name: Refined Bloodied Shackle Ball Box + Name: Bloody Iron Ball Box Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -21028,15 +21271,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 2710,604800; + getgroupitem(IG_BLOODY_IRON_BALL_BOX); - Id: 13784 AegisName: Spiritual_Ring_Box - Name: Refined Spiritual Ring Box + Name: Spiritual Ring Box Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -21046,15 +21289,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 2711,604800; + getgroupitem(IG_SPIRITUAL_RING_BOX); - Id: 13785 AegisName: Nagan_Box1 - Name: Refined Nagan Box + Name: Nagan Box Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -21064,7 +21307,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 13407,86400; + getgroupitem(IG_NAGAN_BOX1); - Id: 13786 AegisName: Skewer_Box1 Name: Refined Brocca Box @@ -21072,7 +21315,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -21082,15 +21325,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1424,86400; + getgroupitem(IG_SKEWER_BOX1); - Id: 13787 AegisName: Survival_Rod_Box1 - Name: Refined Survivor's Rod Box + Name: Refined Staff of Survival Box Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -21100,7 +21343,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1628,86400; + getgroupitem(IG_SURVIVAL_ROD_BOX1); - Id: 13788 AegisName: Quadrille_Box1 Name: Refined Quadrille Box @@ -21108,7 +21351,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -21118,7 +21361,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1537,86400; + getgroupitem(IG_QUADRILLE_BOX1); - Id: 13789 AegisName: Great_Axe_Box1 Name: Refined Great Axe Box @@ -21126,7 +21369,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -21136,7 +21379,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1378,86400; + getgroupitem(IG_GREAT_AXE_BOX1); - Id: 13790 AegisName: Bloody_Roar_Box1 Name: Refined Bloody Roar Box @@ -21175,12 +21418,12 @@ Body: getgroupitem(IG_HARDBACK_BOX1); - Id: 13792 AegisName: Fire_Brand_Box1 - Name: Refined Fireblend Box + Name: Fire Brand Box Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -21190,15 +21433,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 13408,86400; + getgroupitem(IG_FIRE_BRAND_BOX1); - Id: 13793 AegisName: Immaterial_Sword_Box1 - Name: Refined Immaterial Sword Box + Name: Black Friday Groove Pack Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -21208,15 +21451,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 13409,86400; + getgroupitem(IG_IMMATERIAL_SWORD_BOX1); - Id: 13794 AegisName: Unholy_Touch_Box1 - Name: Refined Unholy Touch Box + Name: Cyber Monday Lucky Box Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -21226,15 +21469,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1274,86400; + getgroupitem(IG_UNHOLY_TOUCH_BOX1); - Id: 13795 AegisName: Cloak_Of_Survival_Box1 - Name: Refined Survivor's Manteau Box + Name: Refined Manteau of Survival Box Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -21244,15 +21487,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 2535,86400; + getgroupitem(IG_CLOAK_OF_SURVIVAL_BOX1); - Id: 13796 AegisName: Masquerade_Box1 - Name: Refined Masquerade Box + Name: Butterfly Mask Box Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -21262,7 +21505,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 5326,86400; + getgroupitem(IG_MASQUERADE_BOX1); - Id: 13797 AegisName: Orc_Hero_Helm_Box1 Name: Refined Helmet of Orc Hero Box @@ -21270,7 +21513,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -21280,7 +21523,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 5327,86400; + getgroupitem(IG_ORC_HERO_HELM_BOX1); - Id: 13798 AegisName: Evil_Wing_Ears_Box1 Name: Refined Wing of Diablo Box @@ -21288,7 +21531,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -21298,7 +21541,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 5328,86400; + getgroupitem(IG_EVIL_WING_EARS_BOX1); - Id: 13799 AegisName: Dark_Blindfold_Box1 Name: Refined Dark Blinder Box @@ -21306,7 +21549,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -21316,7 +21559,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 5329,86400; + getgroupitem(IG_DARK_BLINDFOLD_BOX1); - Id: 13800 AegisName: kRO_Drooping_Kitty_Box1 Name: Refined Drooping Cat Box @@ -21324,7 +21567,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -21334,7 +21577,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 5330,86400; + getgroupitem(IG_KRO_DROOPING_KITTY_BOX1); - Id: 13801 AegisName: Corsair_Box1 Name: Refined Corsair Box @@ -21342,7 +21585,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -21352,7 +21595,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 5331,86400; + getgroupitem(IG_CORSAIR_BOX1); - Id: 13802 AegisName: Bloody_Iron_Ball_Box1 Name: Refined Bloodied Shackle Ball Box @@ -21378,7 +21621,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -21388,7 +21631,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 2711,86400; + getgroupitem(IG_SPIRITUAL_RING_BOX1); - Id: 13804 AegisName: Fire_Cracker_Love_Box Name: I Love You Firecracker Box @@ -21576,7 +21819,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -21586,9 +21829,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 503,100; - getitem 12684,10; - getitem 607,5; + getgroupitem(IG_INDONESIA_BOX); - Id: 13815 AegisName: Knife_Goblin_Box Name: Knife Goblin Taming Box @@ -21772,11 +22013,13 @@ Body: - Id: 13825 AegisName: Green_Box_ Name: Old Green Box - Type: Usable + Type: Cash Buy: 20 Weight: 200 Flags: - UniqueId: true + Container: true + Script: | + getgroupitem(IG_GREEN_BOX_); - Id: 13826 AegisName: Power_Box1 Name: Power Box 1 @@ -21816,11 +22059,11 @@ Body: - Id: 13828 AegisName: Resist_Box1 Name: Resist Box 1 - Type: Usable + Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -21830,16 +22073,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12118,1; - getitem 12119,1; + getgroupitem(IG_RESIST_BOX1); - Id: 13829 AegisName: Resist_Box2 Name: Resist Box 2 - Type: Usable + Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -21849,16 +22091,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12120,1; - getitem 12121,1; + getgroupitem(IG_RESIST_BOX2); - Id: 13830 AegisName: Stat_Boost1 Name: Stat Boost 1 - Type: Usable + Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -21868,17 +22109,15 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_INCSTR,60000,5; - sc_start SC_INCAGI,60000,5; - sc_start SC_INCVIT,60000,5; + getgroupitem(IG_STAT_BOOST1); - Id: 13831 AegisName: Stat_Boost2 Name: Stat Boost 2 - Type: Usable + Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -21888,17 +22127,15 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_INCINT,60000,5; - sc_start SC_INCLUK,60000,5; - sc_start SC_INCDEX,60000,5; + getgroupitem(IG_STAT_BOOST2); - Id: 13832 AegisName: Stat_Boost3 Name: Stat Boost 3 - Type: Usable + Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -21908,17 +22145,15 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_INCAGI,60000,5; - sc_start SC_INCVIT,60000,5; - sc_start SC_INCDEX,60000,5; + getgroupitem(IG_STAT_BOOST3); - Id: 13833 AegisName: Stat_Boost4 Name: Stat Boost 4 - Type: Usable + Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -21928,9 +22163,7 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_INCINT,60000,5; - sc_start SC_INCVIT,60000,5; - sc_start SC_INCDEX,60000,5; + getgroupitem(IG_STAT_BOOST4); - Id: 13834 AegisName: Dun_Tele_Scroll2_Box5 Name: Dungeon Teleport Scroll II 5 Box @@ -22497,8 +22730,9 @@ Body: Type: Cash Buy: 20 Weight: 10 + EquipLevelMin: 35 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -22508,7 +22742,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 5315,604800; + getgroupitem(IG_OBSERVER_BOX); - Id: 13866 AegisName: Flying_Angel_Box Name: Flying Angel Box @@ -23872,12 +24106,12 @@ Body: getitem 14591,100; - Id: 13941 AegisName: TW_Valentine_Scroll - Name: Taiwan Valentine Scroll + Name: Valentine Scroll Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -23886,6 +24120,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_TW_VALENTINE_SCROLL); - Id: 13942 AegisName: Love_Angel_Box_1m Name: Love Angel Magic Powder Box 30 Days @@ -24375,12 +24611,12 @@ Body: getgroupitem(IG_BUBBLEGUM_LOWER_BOX); - Id: 13969 AegisName: Lucky_Clip_Box - Name: Lucky Clip Box + Name: July Jubilee Groove Pack Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -24390,7 +24626,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 2742,86400; + getgroupitem(IG_LUCKY_CLIP_BOX); - Id: 13970 AegisName: Iron_10_Box Name: Iron Box @@ -24465,12 +24701,12 @@ Body: getitem 678,30; - Id: 13974 AegisName: TW_Scroll01 - Name: Fisherman Scroll - Type: Usable + Name: RWC Gear Set + Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -24479,6 +24715,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_TW_SCROLL01); - Id: 13975 AegisName: Picture_Diary_Box Name: Diary Magic Powder Box @@ -25228,7 +25466,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -25238,7 +25476,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 13170,604800; + getgroupitem(IG_F_LEVER_ACTION_RIFLE_BO); - Id: 14017 AegisName: F_All_In_One_Ring_Box Name: All In One Ring Box @@ -25336,7 +25574,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -25346,7 +25584,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 2439,604800; + getgroupitem(IG_F_REFRESH_SHOES_BOX); - Id: 14023 AegisName: F_Toast_Box Name: Crunch Toast Box @@ -26699,12 +26937,12 @@ Body: getitem 5283,1; - Id: 14098 AegisName: F_Pecopeco_Hairband_Box - Name: Peco Peco Hairband Box - Type: Usable + Name: Pecopeco Hairband Box + Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -26714,15 +26952,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 5286,1209600; + getgroupitem(IG_F_PECOPECO_HAIRBAND_BOX); - Id: 14099 AegisName: F_Red_Glasses_Box Name: Red Glasses Box - Type: Usable + Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -26732,15 +26970,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 5288,1209600; + getgroupitem(IG_F_RED_GLASSES_BOX); - Id: 14100 AegisName: F_Whisper_Mask_Box Name: Whisper Mask Box - Type: Usable + Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -26750,15 +26988,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 5294,1209600; + getgroupitem(IG_F_WHISPER_MASK_BOX); - Id: 14101 AegisName: F_Ramen_Hat_Box Name: Ramen Hat Box - Type: Usable + Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -26768,7 +27006,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 5293,1209600; + getgroupitem(IG_F_RAMEN_HAT_BOX); - Id: 14102 AegisName: F_Dun_Tele_Scroll1_Box Name: Dungeon Teleport Scroll 5 Box @@ -27563,12 +27801,12 @@ Body: getgroupitem(IG_F_VIGORGRA_PACKAGE2); - Id: 14146 AegisName: F_Vigorgra_Package3 - Name: Vigorgra Box3 + Name: Candy-Gram Lucky Box Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -27578,21 +27816,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12252,2; - getitem 12253,2; - getitem 12208,2; - getitem 12215,15; - getitem 12216,15; - getitem 12211,1; - getitem 7621,1; + getgroupitem(IG_F_VIGORGRA_PACKAGE3); - Id: 14147 AegisName: F_Vigorgra_Package4 - Name: Vigorgra Box4 + Name: Candy-Gram Lucky Crate Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -27602,13 +27834,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12252,2; - getitem 12255,2; - getitem 12208,2; - getitem 12215,15; - getitem 12216,15; - getitem 12211,1; - getitem 7621,1; + getgroupitem(IG_F_VIGORGRA_PACKAGE4); - Id: 14148 AegisName: F_Vigorgra_Package5 Name: Vigorgra Box5 @@ -29104,7 +29330,10 @@ Body: AegisName: Novice_Set_Box Name: Novice Breastplate Boxes Type: Cash + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -29113,6 +29342,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_NOVICE_SET_BOX); - Id: 14232 AegisName: Yggdrasilberry_Box_ Name: Yggdrasil Berry 10 Box @@ -29471,12 +29702,12 @@ Body: /*rentitem 2762,604800;*/ - Id: 14252 AegisName: Beholder_Ring_Box2 - Name: Beholder Ring Box II + Name: Neutral Ring Box2 Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -29486,15 +29717,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 2753,1; + getgroupitem(IG_BEHOLDER_RING_BOX2); - Id: 14253 AegisName: Hallow_Ring_Box2 - Name: Hallow Ring Box II + Name: Hallow Ring Box2 Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -29504,15 +29735,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 2754,1; + getgroupitem(IG_HALLOW_RING_BOX2); - Id: 14254 AegisName: Clamorous_Ring_Box2 - Name: Clamorous Ring Box II + Name: Clamorous Ring Box2 Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -29522,15 +29753,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 2755,1; + getgroupitem(IG_CLAMOROUS_RING_BOX2); - Id: 14255 AegisName: Chemical_Ring_Box2 - Name: Chemical Ring Box II + Name: Chemical Ring Box2 Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -29540,15 +29771,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 2756,1; + getgroupitem(IG_CHEMICAL_RING_BOX2); - Id: 14256 AegisName: Insecticide_Ring_Box2 - Name: Insecticide Ring Box II + Name: Insecticide Ring Box2 Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -29558,15 +29789,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 2757,1; + getgroupitem(IG_INSECTICIDE_RING_BOX2); - Id: 14257 AegisName: Fisher_Ring_Box2 - Name: Fisher Ring Box II + Name: Fisher Ring Box2 Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -29576,15 +29807,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 2758,1; + getgroupitem(IG_FISHER_RING_BOX2); - Id: 14258 AegisName: Decussate_Ring_Box2 - Name: Decussate Ring Box II + Name: Decussate Ring Box2 Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -29594,15 +29825,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 2759,1; + getgroupitem(IG_DECUSSATE_RING_BOX2); - Id: 14259 AegisName: Bloody_Ring_Box2 - Name: Bloody Ring Box II + Name: Bloody Ring Box2 Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -29612,15 +29843,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 2760,1; + getgroupitem(IG_BLOODY_RING_BOX2); - Id: 14260 AegisName: Satanic_Ring_Box2 - Name: Satanic Ring Box II + Name: Satanic Ring Box2 Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -29630,15 +29861,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 2761,1; + getgroupitem(IG_SATANIC_RING_BOX2); - Id: 14261 AegisName: Dragoon_Ring_Box2 - Name: Dragon Ring Box II + Name: Dragon Ring Box2 Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -29648,12 +29879,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 2762,1; + getgroupitem(IG_DRAGOON_RING_BOX2); - Id: 14262 AegisName: FPicture_Diary_Box Name: Diary Magic Powder Box Type: Cash Buy: 20 + Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -29663,12 +29897,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 12304,604800; + getgroupitem(IG_FPICTURE_DIARY_BOX); - Id: 14263 AegisName: FMini_Heart_Box Name: Mini Heart Magic Powder Box Type: Cash Buy: 20 + Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -29678,12 +29915,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 12305,604800; + getgroupitem(IG_FMINI_HEART_BOX); - Id: 14264 AegisName: FNewcomer_Box Name: Freshman Magic Powder Box Type: Cash Buy: 20 + Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -29693,12 +29933,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 12306,604800; + getgroupitem(IG_FNEWCOMER_BOX); - Id: 14265 AegisName: FKid_Box Name: Kid Magic Powder Box Type: Cash Buy: 20 + Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -29708,12 +29951,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 12307,604800; + getgroupitem(IG_FKID_BOX); - Id: 14266 AegisName: FMagic_Castle_Box Name: Magic Magic Powder Box Type: Cash Buy: 20 + Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -29723,12 +29969,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 12308,604800; + getgroupitem(IG_FMAGIC_CASTLE_BOX); - Id: 14267 AegisName: FBulging_Head_Box Name: JJangu Magic Powder Box Type: Cash Buy: 20 + Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -29738,13 +29987,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 12309,604800; + getgroupitem(IG_FBULGING_HEAD_BOX); - Id: 14268 AegisName: FPicture_Diary_Box_1m Name: Diary Magic Powder Box Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -29753,12 +30004,16 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_FPICTURE_DIARY_BOX_1M); - Id: 14269 AegisName: FMini_Heart_Box_1m Name: Mini Heart Magic Powder Box Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -29767,12 +30022,16 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_FMINI_HEART_BOX_1M); - Id: 14270 AegisName: FNewcomer_Box_1m Name: Freshman Magic Powder Box Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -29781,12 +30040,16 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_FNEWCOMER_BOX_1M); - Id: 14271 AegisName: FKid_Box_1m Name: Kid Magic Powder Box Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -29795,12 +30058,16 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_FKID_BOX_1M); - Id: 14272 AegisName: FMagic_Castle_Box_1m Name: Magic Magic Powder Box Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -29809,12 +30076,16 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_FMAGIC_CASTLE_BOX_1M); - Id: 14273 AegisName: FBulging_Head_Box_1m Name: JJangu Magic Powder Box Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -29823,6 +30094,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_FBULGING_HEAD_BOX_1M); - Id: 14274 AegisName: FMP_Scroll_Box Name: Mystical Amplification Scroll 10 Box @@ -29925,6 +30198,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -29934,13 +30209,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 1638,1; + getgroupitem(IG_FHEALING_STAFF_BOX); - Id: 14281 AegisName: FPraxinus_Box - Name: Praccsinos Box + Name: Fraxinus Box Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -29950,7 +30227,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 2752,1; + getgroupitem(IG_FPRAXINUS_BOX); - Id: 14282 AegisName: Empelium_Box Name: Emperium Box @@ -29987,10 +30264,13 @@ Body: getitem 6026,1; - Id: 14284 AegisName: Muffler_C_Box - Name: Muffler Box + Name: Neo Muffler Box Type: Cash Buy: 20 Weight: 10 + EquipLevelMin: 95 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -30000,13 +30280,16 @@ Body: NoMail: true NoAuction: true Script: | - getitem 2548,1; + getgroupitem(IG_MUFFLER_C_BOX); - Id: 14285 AegisName: Valkyrja's_Shield_C_Box - Name: Balkiriah Shield Box + Name: Neo Valkyrja's Shield Box Type: Cash Buy: 20 Weight: 10 + EquipLevelMin: 95 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -30016,13 +30299,16 @@ Body: NoMail: true NoAuction: true Script: | - getitem 2137,1; + getgroupitem(IG_VALKYRJA_S_SHIELD_C_BOX); - Id: 14286 AegisName: Skul_Ring_C_Box - Name: Skull Ring Box + Name: Neo Skull Ring Box Type: Cash Buy: 20 Weight: 10 + EquipLevelMin: 95 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -30032,13 +30318,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 2763,1; + getgroupitem(IG_SKUL_RING_C_BOX); - Id: 14287 AegisName: S_Barricade_Repair_Kit Name: Barricade Repair Kit Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -30048,16 +30336,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 1019,30; - getitem 999,10; - getitem 1011,10; - getitem 984,5; + getgroupitem(IG_S_BARRICADE_REPAIR_KIT); - Id: 14288 AegisName: S_Gstone_Repair_Kit Name: Guardian Stone Repair Kit Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -30067,12 +30354,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 984,1; - getitem 985,1; - getitem 7049,30; - getitem 717,5; - getitem 716,5; - getitem 715,5; + getgroupitem(IG_S_GSTONE_REPAIR_KIT); - Id: 14289 AegisName: Cloth_Dye_Coupon_Box Name: New Clothing Dye Coupon Box @@ -30331,11 +30613,11 @@ Body: - Id: 14308 AegisName: Ardor_Scroll Name: Ardor Scroll - Type: Usable + Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -30344,6 +30626,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_ARDOR_SCROLL); - Id: 14314 AegisName: PhreeoniS_Box Name: Phreeoni Scroll Box @@ -30419,9 +30703,11 @@ Body: - Id: 14321 AegisName: Holy_Saber_Box Name: Holy Sabre Box - Type: Usable + Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -30431,13 +30717,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 13419,86400; + getgroupitem(IG_HOLY_SABER_BOX); - Id: 14322 AegisName: Book_Of_Prayer_Box Name: Book of Prayer Box - Type: Usable + Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -30447,13 +30735,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1578,86400; + getgroupitem(IG_BOOK_OF_PRAYER_BOX); - Id: 14323 AegisName: Phenomena_Whip_Box Name: Phenomena Whip Box - Type: Usable + Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -30463,13 +30753,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1982,86400; + getgroupitem(IG_PHENOMENA_WHIP_BOX); - Id: 14324 AegisName: Staff_Of_Darkness_Box Name: Staff of Darkness Box - Type: Usable + Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -30479,13 +30771,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1642,86400; + getgroupitem(IG_STAFF_OF_DARKNESS_BOX); - Id: 14325 AegisName: Monk_Knuckle_Box Name: Monk Knuckle Box - Type: Usable + Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -30495,13 +30789,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1828,86400; + getgroupitem(IG_MONK_KNUCKLE_BOX); - Id: 14326 AegisName: Mace_Of_Madness_Box Name: Mace of Madness Box - Type: Usable + Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -30511,13 +30807,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1547,86400; + getgroupitem(IG_MACE_OF_MADNESS_BOX); - Id: 14327 AegisName: Spear_Of_Excellent_Box Name: Spear of Excellent Box - Type: Usable + Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -30527,13 +30825,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1427,86400; + getgroupitem(IG_SPEAR_OF_EXCELLENT_BOX); - Id: 14328 AegisName: Bow_Of_Evil_Box Name: Bow of Evil Box - Type: Usable + Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -30543,13 +30843,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1744,86400; + getgroupitem(IG_BOW_OF_EVIL_BOX); - Id: 14329 AegisName: Katar_Of_Speed_Box Name: Katar of Speed Box - Type: Usable + Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -30559,13 +30861,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1283,86400; + getgroupitem(IG_KATAR_OF_SPEED_BOX); - Id: 14330 AegisName: SS_Revolver_Box Name: Sharpshooter Revolver Box - Type: Usable + Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -30575,7 +30879,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 13111,86400; + getgroupitem(IG_SS_REVOLVER_BOX); - Id: 14331 AegisName: Guildsman_Recruiter_Box Name: Guild Member Hat Box @@ -30770,7 +31074,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -30780,7 +31084,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 5462,1; + getgroupitem(IG_SPIKED_SCARF_BOX); - Id: 14344 AegisName: Rainbow_Scarf_Box Name: Rainbow Scarf Box @@ -30788,7 +31092,7 @@ Body: Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -30798,7 +31102,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 5463,1; + getgroupitem(IG_RAINBOW_SCARF_BOX); - Id: 14345 AegisName: Animal_Scroll Name: Animal Scroll @@ -31400,11 +31704,11 @@ Body: - Id: 14407 AegisName: Xmas_Scroll Name: Xmas Scroll - Type: Usable + Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -31413,6 +31717,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_XMAS_SCROLL); - Id: 14408 AegisName: New_Year_Scroll Name: New Year Scroll @@ -31593,10 +31899,12 @@ Body: getgroupitem(IG_F_BONUS_BOX10); - Id: 14426 AegisName: Fortune_Sword_Box_I - Name: Neo Fortune Sword Box - Type: Usable + Name: Fortune Sword Box + Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -31606,13 +31914,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 13043,86400; + getgroupitem(IG_FORTUNE_SWORD_BOX_I); - Id: 14427 AegisName: House_Auger_Box_I - Name: Neo House Auger - Type: Usable + Name: Ice Pick Box + Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -31622,13 +31932,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 13044,86400; + getgroupitem(IG_HOUSE_AUGER_BOX_I); - Id: 14428 AegisName: Kamaitachi_Box_I - Name: Neo Kamaitachi Box - Type: Usable + Name: Kamaitachi Box + Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -31638,13 +31950,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 13045,86400; + getgroupitem(IG_KAMAITACHI_BOX_I); - Id: 14429 AegisName: Berserk_Guitar_Box_I - Name: Neo Berserk Guitar Box - Type: Usable + Name: Spirited Guitar Box + Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -31654,13 +31968,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1928,86400; + getgroupitem(IG_BERSERK_GUITAR_BOX_I); - Id: 14430 AegisName: Doom_Slayer_Box_I - Name: Neo Doom Slayer Box - Type: Usable + Name: Doom Slayer Box + Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -31670,13 +31986,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 1386,86400; + getgroupitem(IG_DOOM_SLAYER_BOX_I); - Id: 14431 AegisName: Huuma_Blaze_Box_I - Name: Neo Huuma Blaze Shuriken Box - Type: Usable + Name: Huuma Blaze Shuriken Box + Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -31686,13 +32004,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 13308,86400; + getgroupitem(IG_HUUMA_BLAZE_BOX_I); - Id: 14432 AegisName: Odin's_Blessing_Box_I - Name: Neo Odin's Blessing Box - Type: Usable + Name: Odin's Blessing Box + Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -31702,13 +32022,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 15001,86400; + getgroupitem(IG_ODIN_S_BLESSING_BOX_I); - Id: 14433 AegisName: Ring_Of_F_Lord_Box_I - Name: Neo Ring of Flame Lord Box - Type: Usable + Name: Ring of Flame Lord Box + Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -31718,13 +32040,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 2792,86400; + getgroupitem(IG_RING_OF_F_LORD_BOX_I); - Id: 14434 AegisName: Ring_Of_Reson_Box_I - Name: Neo Ring of Resonance Box - Type: Usable + Name: Ring of Resonance Box + Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -31734,13 +32058,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 2793,86400; + getgroupitem(IG_RING_OF_RESON_BOX_I); - Id: 14435 AegisName: Boy's_Cap_Box_I - Name: Neo Boys Cap Box - Type: Usable + Name: Student Cap Box + Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -31750,13 +32076,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 5492,86400; + getgroupitem(IG_BOY_S_CAP_BOX_I); - Id: 14436 AegisName: Ulle_Cap_Box_I - Name: Neo Ulle's Cap Box - Type: Usable + Name: Ulle's Cap Box + Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -31766,13 +32094,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 5493,86400; + getgroupitem(IG_ULLE_CAP_BOX_I); - Id: 14437 AegisName: Spinx_Helm_Box_I - Name: Neo Sphinx Helm Box - Type: Usable + Name: Sphinx Hat Box + Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -31782,7 +32112,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 5494,86400; + getgroupitem(IG_SPINX_HELM_BOX_I); - Id: 14438 AegisName: Honglyun's_Sword_Box Name: Honglyun's Sword Box @@ -31806,9 +32136,8 @@ Body: Name: Power Of Thor Box Type: Cash Buy: 20 - Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -31818,7 +32147,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 5495,1; + getgroupitem(IG_POWER_OF_THOR_BOX); - Id: 14440 AegisName: Dice_Hat_Box Name: Dice Hat Box @@ -32038,8 +32367,7 @@ Body: Flags: Container: true Script: | - getgroupitem(IG_Valentine_Pledge_Box); - /*rentitem 5817,525600;*/ + getgroupitem(IG_VALENTINE_PLEDGE_BOX); - Id: 14469 AegisName: Ox_Tail_Scroll Name: Ox Tail Egg @@ -34073,8 +34401,10 @@ Body: AegisName: GoldenTreasureBox Name: Golden Treasure Box Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -34084,7 +34414,7 @@ Body: NoMail: true NoAuction: true Script: | - /*getitem callfunc("F_Rand",Devilring card, Angeling card, 11 weapons smelting ticket, armor smelting 11 ticket , horns of the buffalo, ring of recovery, pink bunny costume hair band)*/ + getgroupitem(IG_GOLDENTREASUREBOX); - Id: 14624 AegisName: Blue_Scroll Name: Blue Scroll @@ -34107,9 +34437,11 @@ Body: - Id: 14627 AegisName: Xmax_Egg_Kr Name: Christmas Scroll - Type: Usable - Buy: 10 + Type: Cash + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -34118,12 +34450,16 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_XMAX_EGG_KR); - Id: 14628 AegisName: C_Festival_Ticket Name: Costume Festival Box - Type: Usable - Buy: 10 + Type: Cash + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -34132,6 +34468,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_C_FESTIVAL_TICKET); - Id: 14629 AegisName: Enchant_Stone_Box Name: Costume Enchant Stone Box @@ -34179,10 +34517,12 @@ Body: sc_start SC_ALMIGHTY,1800000,10; - Id: 14663 AegisName: Sealed_D_Lord_Scroll - Name: Scroll Sealed Dark Lord + Name: Sealed Dark Lord Scroll Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -34192,8 +34532,7 @@ Body: NoMail: true NoAuction: true Script: | - /*TODO: Confirm the rates*/ - getitem callfunc("F_Rand",6228,6232,4488,4169,19739,24032,24033,24031,24030,24028,24029,24028,24027),1; + getgroupitem(IG_SEALED_D_LORD_SCROLL); - Id: 14664 AegisName: Bi_Hwang_Scroll Name: Bi Hwang Scroll @@ -34232,10 +34571,12 @@ Body: getgroupitem(IG_Yong_Kwang_Scroll); - Id: 14672 AegisName: StealFighter_20Lv - Name: Steel Fighter Scroll (Lv20) - Type: Healing + Name: Steel Fighter (20Lv) Egg + Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -34243,12 +34584,16 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_STEALFIGHTER_20LV); - Id: 14673 AegisName: StealFighter_25Lv - Name: Steel Fighter Scroll (Lv25) - Type: Healing + Name: Steel Fighter (25Lv) Scroll + Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -34256,6 +34601,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_STEALFIGHTER_25LV); - Id: 14674 AegisName: Cup_Of_Boza Name: Cup Of Boza @@ -34267,10 +34614,12 @@ Body: /*aegis data 2 Minutes*/ - Id: 14675 AegisName: Shadow_Box2 - Name: Shadow Box II + Name: Shadow Stat Box Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -34279,12 +34628,16 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_SHADOW_BOX2); - Id: 14679 AegisName: Sealed_Knight_WS_Scroll Name: Article Sealed Storm Scroll Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -34293,6 +34646,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_SEALED_KNIGHT_WS_SCROLL); - Id: 14681 AegisName: Enchant_Stone_Box2 Name: Costume Enchant Stone Box 2 @@ -34307,8 +34662,10 @@ Body: AegisName: Sealed_Berz_Scroll Name: Sealed Beelzebub Scroll Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -34317,12 +34674,16 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_SEALED_BERZ_SCROLL); - Id: 14689 AegisName: Sealed_Kiel_Scroll Name: Sealed Kiel-D-01 Scroll Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -34331,6 +34692,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_SEALED_KIEL_SCROLL); - Id: 14695 AegisName: Enchant_Stone_Box3 Name: Costume Enchant Stone Box 3 @@ -34343,9 +34706,12 @@ Body: getgroupitem(IG_Enchant_Stone_Box3); - Id: 14696 AegisName: Sealed_Gloom_Scroll - Name: Sealed Gloom Under Night Gachapon + Name: Sealed Gloom Under Night Scroll Type: Cash + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -34355,7 +34721,7 @@ Body: NoMail: true NoAuction: true Script: | - /* getitem callfunc("F_Rand",Sealed Cards Gloom Under Night, 9 weapons smelting ticket, Armor 9 smelting ticket, medium armor Shadow, Shadow Weapon Medium, costume Wings of the Kirin, costume enchant stone box);*/ + getgroupitem(IG_SEALED_GLOOM_SCROLL); - Id: 14699 AegisName: Garuda_Scroll Name: Memorial Garuda Lucky Egg @@ -34382,8 +34748,10 @@ Body: AegisName: Gemstone_Shadow_Box Name: Gemstone Shadow Box Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -34393,18 +34761,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 24084,1; - getitem 24085,1; - getitem 24086,1; - getitem 24087,1; - getitem 24088,1; - getitem 24089,1; + getgroupitem(IG_GEMSTONE_SHADOW_BOX); - Id: 14705 AegisName: Sealed_F_Bishop_Scroll - Name: Sealed Fallen Bishop Hibram Scroll + Name: Sealed Fallen Bishop Scroll Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -34414,13 +34779,15 @@ Body: NoMail: true NoAuction: true Script: | - /*TODO: COnfirm the rates*/ - getitem callfunc("F_Rand",6228,6232,14704,19884,14695,6697),1; + getgroupitem(IG_SEALED_F_BISHOP_SCROLL); - Id: 14713 AegisName: Sealed_Ifrit_Scroll Name: Sealed Ifrit Scroll - Type: Usable + Type: Cash + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -34430,7 +34797,7 @@ Body: NoMail: true NoAuction: true Script: | - /* getitem callfunc("F_Rand",Sealed ifrit card, 9 weapons smelting ticket, Armor 9 smelting ticket, costume Noah's hats, costumes Enchantment Stone Box); */ + getgroupitem(IG_SEALED_IFRIT_SCROLL); - Id: 14717 AegisName: 2013_RWC_Scroll Name: 2013 RWC Scroll @@ -34449,10 +34816,12 @@ Body: getgroupitem(IG_2013_RWC_Scroll); - Id: 14718 AegisName: Sealed_TurtleG_Scroll - Name: Scroll Turtle General Sealed - Type: Usable - Buy: 10 + Name: Sealed Turtle General Gachapon + Type: Cash + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -34462,8 +34831,7 @@ Body: NoMail: true NoAuction: true Script: | - /*TODO: Confirm the rates*/ - getitem callfunc("F_Rand",6228,6232,19751,14695),1; + getgroupitem(IG_SEALED_TURTLEG_SCROLL); - Id: 14723 AegisName: LI_Neuralizer Name: (Limited)Neuralizer I @@ -34498,8 +34866,10 @@ Body: AegisName: Sealed_Bacsojin_Scroll Name: Sealed Bacsojin Scroll Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -34509,14 +34879,15 @@ Body: NoMail: true NoAuction: true Script: | - /*TODO: Confirm the rates*/ - getitem callfunc("F_Rand",4372,6228,6232,19750,14730,17474),1; + getgroupitem(IG_SEALED_BACSOJIN_SCROLL); - Id: 14726 AegisName: Greed_Shadow_Box - Name: Grid Shadow Box + Name: Greed Shadow Box Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -34526,18 +34897,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 24114,1; - getitem 24115,1; - getitem 24116,1; - getitem 24117,1; - getitem 24118,1; - getitem 24119,1; + getgroupitem(IG_GREED_SHADOW_BOX); - Id: 14727 AegisName: Heal_Shadow_Box Name: Heal Shadow Box Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -34547,18 +34915,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 24120,1; - getitem 24121,1; - getitem 24122,1; - getitem 24123,1; - getitem 24124,1; - getitem 24125,1; + getgroupitem(IG_HEAL_SHADOW_BOX); - Id: 14728 AegisName: Hiding_Shadow_Box Name: Hiding Shadow Box Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -34568,18 +34933,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 24126,1; - getitem 24127,1; - getitem 24128,1; - getitem 24129,1; - getitem 24130,1; - getitem 24131,1; + getgroupitem(IG_HIDING_SHADOW_BOX); - Id: 14729 AegisName: Cloaking_Shadow_Box Name: Cloaking Shadow Box Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -34589,18 +34951,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 24132,1; - getitem 24133,1; - getitem 24134,1; - getitem 24135,1; - getitem 24136,1; - getitem 24137,1; + getgroupitem(IG_CLOAKING_SHADOW_BOX); - Id: 14730 AegisName: Costume_Festival_Box2 Name: Costume Festival Box II Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -34610,13 +34969,15 @@ Body: NoMail: true NoAuction: true Script: | - /*TODO: No clue yet*/ + getgroupitem(IG_COSTUME_FESTIVAL_BOX2); - Id: 14731 AegisName: Teleport_Shadow_Box Name: Teleport Shadow Box Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -34626,18 +34987,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 24138,1; - getitem 24139,1; - getitem 24140,1; - getitem 24141,1; - getitem 24142,1; - getitem 24143,1; + getgroupitem(IG_TELEPORT_SHADOW_BOX); - Id: 14732 AegisName: Steal_Shadow_Box Name: Steal Shadow Box Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -34647,18 +35005,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 24144,1; - getitem 24145,1; - getitem 24146,1; - getitem 24147,1; - getitem 24148,1; - getitem 24149,1; + getgroupitem(IG_STEAL_SHADOW_BOX); - Id: 14733 AegisName: Sealed_Pharaoh_Scroll - Name: Sealed Pharaoh Scroll + Name: Sealed Paraoh Scroll Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -34668,8 +35023,7 @@ Body: NoMail: true NoAuction: true Script: | - /*TODO: Confirm the rates*/ - getitem callfunc("F_Rand",6228,6232,14726,20034,17474),1; + getgroupitem(IG_SEALED_PHARAOH_SCROLL); - Id: 14735 AegisName: Costama_Egg22 Name: Shapeshifter Costume @@ -34691,8 +35045,10 @@ Body: AegisName: Sealed_B_Ygnizem_Scroll Name: Sealed General Egnigem Cenia Scroll Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -34702,14 +35058,15 @@ Body: NoMail: true NoAuction: true Script: | - /*TODO: Confirm the rates*/ - getitem callfunc("F_Rand",4482,6228,6232,24156,19935),1; + getgroupitem(IG_SEALED_B_YGNIZEM_SCROLL); - Id: 14740 AegisName: Sealed_Apo_H_Scroll Name: Sealed Vesper Scroll Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -34718,6 +35075,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_SEALED_APO_H_SCROLL); - Id: 14741 AegisName: Imortal_Midgard_Scroll Name: Midgard Celebration Lucky Egg @@ -34740,8 +35099,10 @@ Body: AegisName: Guarantee_Relax_Scroll Name: Safe To Smelting Scroll Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -34751,7 +35112,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem callfunc("F_Rand",6238,6239,6228,6232,24216,17474,969),1; + getgroupitem(IG_GUARANTEE_RELAX_SCROLL); - Id: 14765 AegisName: Job_Manual_Limit Name: Limited Edition JOB Battle Manual @@ -36339,11 +36700,11 @@ Body: - Id: 16254 AegisName: Acti_Potion_Box Name: Energizing Potion Box - Type: Usable + Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -36352,6 +36713,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_ACTI_POTION_BOX); - Id: 16255 AegisName: F_Acti_Potion_Box Name: Energizing Potion Box @@ -39605,10 +39968,12 @@ Body: getgroupitem(IG_SUMMER_SCROLL2); - Id: 16598 AegisName: Acti_Potion_Box2 - Name: Activation Potion Box II + Name: Energizing Potion Box II Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -39617,6 +39982,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_ACTI_POTION_BOX2); - Id: 16599 AegisName: F_Acti_Potion_Box2 Name: Energizing Potion Box II @@ -39718,10 +40085,13 @@ Body: getitem 5785,1; - Id: 16625 AegisName: Half_Asprika_Box - Name: Half Asprika Box7 + Name: Half Asprika Box 7days Type: Usable Buy: 20 Weight: 10 + EquipLevelMin: 47 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -39731,7 +40101,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 2566,604800; + getgroupitem(IG_HALF_ASPRIKA_BOX); - Id: 16626 AegisName: Half_Megin_Box Name: Half Megin Box 7days @@ -39768,10 +40138,13 @@ Body: getgroupitem(IG_HALF_BRYSING_BOX); - Id: 16628 AegisName: Half_Brynhild_Box - Name: Half Brynhild Box - Type: Usable + Name: Half Brynhild Box 7days + Type: Cash Buy: 20 + Weight: 10 EquipLevelMin: 47 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -39781,7 +40154,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 15023,604800; + getgroupitem(IG_HALF_BRYNHILD_BOX); - Id: 16631 AegisName: Aributa_Scroll Name: Aributa Scroll @@ -40093,10 +40466,11 @@ Body: - Id: 16655 AegisName: Rapid_Life_Water_Box Name: Rapid Life Potion 10 Box - Type: Cash - Buy: 10 + Type: Usable + Buy: 20 Weight: 10 - EquipLevelMin: 1 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -40106,7 +40480,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12578,10; + getgroupitem(IG_RAPID_LIFE_WATER_BOX); - Id: 16656 AegisName: F_Rapid_Life_Water_Box Name: Rapid Life Potion Box(10) @@ -40344,15 +40718,14 @@ Body: NoAuction: true Script: | getgroupitem(IG_Boarding_Halter_Box); - /*rentitem 12622,604800;*/ - Id: 16683 AegisName: B_Halter_Box_30Days - Name: B Halter Box 30Days - Type: Usable + Name: Halter Lead 30 Day Box + Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -40362,7 +40735,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 12622,2592000; + getgroupitem(IG_B_HALTER_BOX_30DAYS); - Id: 16684 AegisName: Wing_Of_Fly_Box10 Name: Wing Of Fly Box10 @@ -40796,12 +41169,12 @@ Body: getitem 5242,1; - Id: 16740 AegisName: Ptotection_Seagod_Box - Name: The Sea God's Call 23 Hour Box - Type: Usable + Name: Seagod's Protection Box + Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -40811,13 +41184,14 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 6436,86400; + getgroupitem(IG_PTOTECTION_SEAGOD_BOX); - Id: 16741 AegisName: Hairtail_Box1 - Name: Cutlass 1 Hour Box + Name: Hairtail Box(1hr) Type: Usable Buy: 20 Weight: 10 + EquipLevelMin: 50 Flags: Container: true Trade: @@ -40829,14 +41203,14 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Hairtail_Box1);*/ - rentitem 1198,3600; + getgroupitem(IG_HAIRTAIL_BOX1); - Id: 16742 AegisName: Hairtail_Box2 - Name: Cutlass 7 Day Box + Name: Hairtail Box(7day) Type: Usable Buy: 20 Weight: 10 + EquipLevelMin: 50 Flags: Container: true Trade: @@ -40848,14 +41222,14 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Hairtail_Box2);*/ - rentitem 1198,604800; + getgroupitem(IG_HAIRTAIL_BOX2); - Id: 16743 AegisName: Spearfish_Box1 - Name: Marlin 1 Hour Box + Name: Marlin Box(1hr) Type: Usable Buy: 20 Weight: 10 + EquipLevelMin: 50 Flags: Container: true Trade: @@ -40867,14 +41241,14 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Spearfish_Box1);*/ - rentitem 1489,3600; + getgroupitem(IG_SPEARFISH_BOX1); - Id: 16744 AegisName: Spearfish_Box2 - Name: Marlin 7 Day Box + Name: Marlin Box(7day) Type: Usable Buy: 20 Weight: 10 + EquipLevelMin: 50 Flags: Container: true Trade: @@ -40886,14 +41260,14 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Spearfish_Box2);*/ - rentitem 1489,604800; + getgroupitem(IG_SPEARFISH_BOX2); - Id: 16745 AegisName: Saurel_Box1 - Name: Pompano 1 Hour Box + Name: Saurel Box(1hr) Type: Usable Buy: 20 Weight: 10 + EquipLevelMin: 50 Flags: Container: true Trade: @@ -40905,14 +41279,14 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Saurel_Box1);*/ - rentitem 13068,3600; + getgroupitem(IG_SAUREL_BOX1); - Id: 16746 AegisName: Saurel_Box2 - Name: Pompano 7 Day Box + Name: Saurel Box(7day) Type: Usable Buy: 20 Weight: 10 + EquipLevelMin: 50 Flags: Container: true Trade: @@ -40924,14 +41298,14 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Saurel_Box2);*/ - rentitem 13068,604800; + getgroupitem(IG_SAUREL_BOX2); - Id: 16747 AegisName: Tuna_Box1 - Name: Tuna 1 Hour Box + Name: Tuna Box(1hr) Type: Usable Buy: 20 Weight: 10 + EquipLevelMin: 50 Flags: Container: true Trade: @@ -40943,14 +41317,14 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Tuna_Box1);*/ - rentitem 16016,3600; + getgroupitem(IG_TUNA_BOX1); - Id: 16748 AegisName: Tuna_Box2 - Name: Tuna 7 Day Box + Name: Tuna Box(7day) Type: Usable Buy: 20 Weight: 10 + EquipLevelMin: 50 Flags: Container: true Trade: @@ -40962,14 +41336,14 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Tuna_Box2);*/ - rentitem 16016,604800; + getgroupitem(IG_TUNA_BOX2); - Id: 16749 AegisName: Malang_Crab_Box1 - Name: Malangdo Crab 1 Hour Box + Name: Malangdo Crab Box(1hr) Type: Usable Buy: 20 Weight: 10 + EquipLevelMin: 50 Flags: Container: true Trade: @@ -40981,14 +41355,14 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Malang_Crab_Box1);*/ - rentitem 18107,3600; + getgroupitem(IG_MALANG_CRAB_BOX1); - Id: 16750 AegisName: Malang_Crab_Box2 - Name: Malangdo Crab 7 Day Box + Name: Malangdo Crab Box(7day) Type: Usable Buy: 20 Weight: 10 + EquipLevelMin: 50 Flags: Container: true Trade: @@ -41000,14 +41374,14 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Malang_Crab_Box2);*/ - rentitem 18107,604800; + getgroupitem(IG_MALANG_CRAB_BOX2); - Id: 16751 AegisName: Brindle_Eel_Box1 - Name: Zebra Eel 1 Hour Box + Name: Spotty Eel Box1 Type: Usable Buy: 20 Weight: 10 + EquipLevelMin: 50 Flags: Container: true Trade: @@ -41019,14 +41393,14 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Brindle_Eel_Box1);*/ - rentitem 18108,3600; + getgroupitem(IG_BRINDLE_EEL_BOX1); - Id: 16752 AegisName: Brindle_Eel_Box2 - Name: Zebra Eel 7 Day Box + Name: Spotty Eel Box2 Type: Usable Buy: 20 Weight: 10 + EquipLevelMin: 50 Flags: Container: true Trade: @@ -41038,8 +41412,7 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Brindle_Eel_Box2);*/ - rentitem 18108,604800; + getgroupitem(IG_BRINDLE_EEL_BOX2); - Id: 16753 AegisName: Unbreak_Weap_Box Name: Unbreakable Weapon Box @@ -41182,8 +41555,8 @@ Body: getgroupitem(IG_UMBALA_SPIRIT_BOX_7DAY); - Id: 16763 AegisName: Ptotection_Seagod_Box2 - Name: The Sea God's Call 7 Day Box - Type: Usable + Name: Seagod's Protection Box2 + Type: Cash Buy: 20 Weight: 10 Flags: @@ -41197,12 +41570,11 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Ptotection_Seagod_Box2);*/ - rentitem 6436,604800; + getgroupitem(IG_PTOTECTION_SEAGOD_BOX2); - Id: 16764 AegisName: Ptotection_Seagod_Box3 - Name: The Sea God's Call 15 Day Box - Type: Usable + Name: Seagod's Protection Box3 + Type: Cash Buy: 20 Weight: 10 Flags: @@ -41216,12 +41588,11 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Ptotection_Seagod_Box3);*/ - rentitem 6436,1209600; + getgroupitem(IG_PTOTECTION_SEAGOD_BOX3); - Id: 16765 AegisName: Octo_Hstick_Box - Name: Octopus Hunting Skewer 23 Hour Box - Type: Usable + Name: Octopus Hstick Box + Type: Cash Buy: 20 Weight: 10 Flags: @@ -41235,12 +41606,11 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Octo_Hstick_Box);*/ - rentitem 6442,86400; + getgroupitem(IG_OCTO_HSTICK_BOX); - Id: 16766 AegisName: Octo_Hstick_Box2 - Name: Octopus Hunting Skewer 3 Day Box - Type: Usable + Name: Octopus Hstick Box2 + Type: Cash Buy: 20 Weight: 10 Flags: @@ -41254,12 +41624,11 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Octo_Hstick_Box2);*/ - rentitem 6442,259200; + getgroupitem(IG_OCTO_HSTICK_BOX2); - Id: 16767 AegisName: Octo_Hstick_Box3 - Name: Octopus Hunting Skewer 7 Day Box - Type: Usable + Name: Octopus Hstick Box3 + Type: Cash Buy: 20 Weight: 10 Flags: @@ -41273,12 +41642,11 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Octo_Hstick_Box3);*/ - rentitem 6442,604800; + getgroupitem(IG_OCTO_HSTICK_BOX3); - Id: 16770 AegisName: Silvervine_Fruit_Box10 Name: Silvervine 10 Box - Type: Usable + Type: Cash Buy: 20 Weight: 10 Flags: @@ -41292,13 +41660,11 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Silvervine_Fruit_Box10);*/ - getitem 6417,10; - getitem 12636,30; + getgroupitem(IG_SILVERVINE_FRUIT_BOX10); - Id: 16771 AegisName: Silvervine_Fruit_Box40 Name: Silvervine 40 Box - Type: Usable + Type: Cash Buy: 20 Weight: 10 Flags: @@ -41312,9 +41678,7 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Silvervine_Fruit_Box40);*/ - getitem 6417,40; - getitem 12636,120; + getgroupitem(IG_SILVERVINE_FRUIT_BOX40); - Id: 16774 AegisName: Asgard_Scroll Name: Asgard Scroll @@ -42830,11 +43194,7 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Weather_Report_Box);*/ - getitem 19507,1; - getitem 19518,1; - getitem 19520,1; - getitem 19519,1; + getgroupitem(IG_WEATHER_REPORT_BOX); - Id: 16973 AegisName: Yellow_Hat_Box Name: Yellow Hat Box @@ -42855,7 +43215,7 @@ Body: getitem 19515,1; - Id: 16974 AegisName: Comin_Actor_Box - Name: Comin Actor Box + Name: "Costume: Old-Timey Box" Type: Usable Buy: 20 Weight: 10 @@ -42870,9 +43230,7 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Comin_Actor_Box);*/ - getitem 19514,1; - getitem 19521,1; + getgroupitem(IG_COMIN_ACTOR_BOX); - Id: 16975 AegisName: Singing_Bird_Box Name: Singing Bird Box @@ -42893,7 +43251,7 @@ Body: getitem 19516,1; - Id: 16976 AegisName: Hen_Set_Box - Name: Hen Set Box + Name: "Costume: Chicken Box" Type: Usable Buy: 20 Weight: 10 @@ -42908,9 +43266,7 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Hen_Set_Box);*/ - getitem 19513,1; - getitem 19517,1; + getgroupitem(IG_HEN_SET_BOX); - Id: 16977 AegisName: Red_Minicrown_Box Name: Red Minicrown Box @@ -42932,7 +43288,7 @@ Body: - Id: 16979 AegisName: Silvervine_Fruit_Box4 Name: Silvervine 4 Box - Type: Usable + Type: Cash Buy: 20 Weight: 10 Flags: @@ -42946,9 +43302,7 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Silvervine_Fruit_Box4);*/ - getitem 6417,4; - getitem 12636,12; + getgroupitem(IG_SILVERVINE_FRUIT_BOX4); - Id: 16990 AegisName: Sagittar_Diadem_Scroll Name: Sagittar Diadem Scroll @@ -42990,10 +43344,11 @@ Body: - Id: 16995 AegisName: Old_Hat_Box Name: Old Hat Box - Type: Cash + Type: Usable Buy: 20 + Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -43002,6 +43357,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_OLD_HAT_BOX); - Id: 16996 AegisName: Capri_Crown_Scroll Name: Capri Crown Scroll @@ -43024,11 +43381,12 @@ Body: getgroupitem(IG_Capri_Crown_Scroll_Box); - Id: 16998 AegisName: Archangel_Wing_Box - Name: Archangel Wings Box - Type: Usable + Name: Archangel Wing Box + Type: Cash + Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -43038,7 +43396,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 2573,1; + getgroupitem(IG_ARCHANGEL_WING_BOX); - Id: 16999 AegisName: Bravery_Bag_Box Name: Bravery Bag Box @@ -43179,7 +43537,7 @@ Body: getgroupitem(IG_Capricon_Di_Scroll_Box); - Id: 17013 AegisName: Malang_Woe_Encard_Box - Name: Malang Woe Encard Box + Name: Malangdo Woe Encard Box Type: Usable Buy: 20 Weight: 10 @@ -43194,9 +43552,7 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Malang_Woe_Encard_Box);*/ - getitem 16740,1; - getitem 16765,1; + getgroupitem(IG_MALANG_WOE_ENCARD_BOX); - Id: 17014 AegisName: Butterfly_ear_Box Name: Butterfly ear Box @@ -43405,12 +43761,12 @@ Body: getgroupitem(IG_Energetic_Pisces_Box); - Id: 17037 AegisName: Trans_Box_Devi - Name: Trans Box Devi - Type: Usable + Name: Transform Deviruchi 10pcs Box + Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -43420,15 +43776,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12658,10; + getgroupitem(IG_TRANS_BOX_DEVI); - Id: 17038 AegisName: Trans_Box_Ray_Arch - Name: Trans Box Ray Arch - Type: Usable + Name: Transform R Archer 10pcs Box + Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -43438,15 +43794,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12659,10; + getgroupitem(IG_TRANS_BOX_RAY_ARCH); - Id: 17039 AegisName: Trans_Box_Mavka - Name: Trans Box Mavka - Type: Usable + Name: Transform Mavke 10pcs Box + Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -43456,15 +43812,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12660,10; + getgroupitem(IG_TRANS_BOX_MAVKA); - Id: 17040 AegisName: Trans_Box_Marduk - Name: Trans Box Marduk - Type: Usable + Name: Transform Marduk 10pcs Box + Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -43474,15 +43830,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12661,10; + getgroupitem(IG_TRANS_BOX_MARDUK); - Id: 17041 AegisName: Trans_Box_Banshee - Name: Trans Box Banshee - Type: Usable + Name: Transform Banshee 10pcs Box + Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -43492,7 +43848,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12662,10; + getgroupitem(IG_TRANS_BOX_BANSHEE); - Id: 17042 AegisName: Trans_Box_Poring Name: Trans Box Poring @@ -43513,12 +43869,12 @@ Body: getitem 12663,10; - Id: 17043 AegisName: Trans_Box_Golem - Name: Trans Box Golem - Type: Usable + Name: Transform Golem 10pcs Box + Type: Cash Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -43528,7 +43884,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12664,10; + getgroupitem(IG_TRANS_BOX_GOLEM); - Id: 17046 AegisName: Attend_C_Box Name: Attendance Costume Box @@ -44028,11 +44384,12 @@ Body: getitem 21000,1; - Id: 17094 AegisName: Upg_Katar_Box2 - Name: Upg Katar Box - Type: Cash + Name: Upgrade Katar Box + Type: Usable Buy: 20 + Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -44041,14 +44398,16 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_UPG_KATAR_BOX2); - Id: 17095 AegisName: Upg_Two_Handed_Axe_Box2 - Name: Upg Two-Hand Axe Box2 - Type: Cash + Name: Upgrade Two-Handed Axe Box + Type: Usable Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -44057,14 +44416,16 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_UPG_TWO_HANDED_AXE_BOX2); - Id: 17096 AegisName: Upg_Lance_Box2 - Name: Upg Lance Box2 - Type: Cash + Name: Upgrade Two-Handed Spear Box + Type: Usable Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -44073,14 +44434,16 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_UPG_LANCE_BOX2); - Id: 17097 AegisName: Upg_Book_Box2 - Name: Upg_Book_Box2 - Type: Cash + Name: Upgrade Book Box + Type: Usable Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -44089,14 +44452,16 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_UPG_BOOK_BOX2); - Id: 17098 AegisName: Upg_Staff_Box2 - Name: Upg_Staff_Box2 - Type: Cash + Name: Upgrade Two-Handed Staff Box + Type: Usable Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -44105,14 +44470,16 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_UPG_STAFF_BOX2); - Id: 17099 AegisName: Upg_Dagger_Box2 - Name: Upg_Dagger_Box2 - Type: Cash + Name: Upgrade Dagger Box + Type: Usable Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -44121,14 +44488,16 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_UPG_DAGGER_BOX2); - Id: 17100 AegisName: Upg_Revolver_Box2 - Name: Upg_Revolver_Box2 - Type: Cash + Name: Upgrade Revolver Box + Type: Usable Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -44137,14 +44506,16 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_UPG_REVOLVER_BOX2); - Id: 17101 AegisName: Upg_Mace_Box2 - Name: Upg_Mace_Box2 - Type: Cash + Name: Upgrade Mace Box + Type: Usable Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -44153,14 +44524,16 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_UPG_MACE_BOX2); - Id: 17102 AegisName: Upg_Bow_Box2 - Name: Upg_Bow_Box2 - Type: Cash + Name: Upgrade Bow Box + Type: Usable Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -44169,14 +44542,16 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_UPG_BOW_BOX2); - Id: 17103 AegisName: Upg_Twohand_Sword_Box2 - Name: Upg_Twohand_Sword_Box2 - Type: Cash + Name: Upgrade Two-Handed Sword Box + Type: Usable Buy: 20 Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -44185,6 +44560,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_UPG_TWOHAND_SWORD_BOX2); - Id: 17104 AegisName: HD_Oridecon_50Box Name: HD Oridecon 50 Box @@ -44307,11 +44684,12 @@ Body: UniqueId: true - Id: 17118 AegisName: ASPD_Potion_Box10 - Name: ASPD Enhanced Potion Box - Type: Cash + Name: ASPD Intensifying Potion Box + Type: Usable Buy: 20 + Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -44321,7 +44699,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12684,10; + getgroupitem(IG_ASPD_POTION_BOX10); - Id: 17120 AegisName: Taurus_Scroll Name: Taurus Scroll @@ -44664,10 +45042,12 @@ Body: NoAuction: true - Id: 17160 AegisName: Change_Name_Card_Box2 - Name: Character Name Change Card Box + Name: Name Change Card Box Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -44676,6 +45056,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_CHANGE_NAME_CARD_BOX2); - Id: 17162 AegisName: Boarding_Halter_Box7 Name: Boarding Halter Box7 @@ -44802,11 +45184,12 @@ Body: getgroupitem(IG_GLOBAL_HAT_FES_BOX2); - Id: 17176 AegisName: Boarding_Halter_Box3 - Name: Halter Lead Box[Trial] + Name: Boarding Halter Box 3days Type: Cash Buy: 20 + Weight: 10 Flags: - UniqueId: true + Container: true Trade: NoDrop: true NoTrade: true @@ -44816,7 +45199,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 12622,259200; + getgroupitem(IG_BOARDING_HALTER_BOX3); - Id: 17177 AegisName: Made_Dish_Box1 Name: "Assorted Cooking Box [Trail]" @@ -45095,7 +45478,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 12884,604800; + getgroupitem(IG_C_CENTER_POT_BOX); - Id: 17227 AegisName: C_Awakening_Pot_Box Name: Infinite Awakening Potion @@ -45111,7 +45494,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 12885,604800; + getgroupitem(IG_C_AWAKENING_POT_BOX); - Id: 17228 AegisName: C_Berserk_Pot_Box Name: Infinite Berserk Potion @@ -45127,13 +45510,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 12886,604800; + getgroupitem(IG_C_BERSERK_POT_BOX); - Id: 17229 AegisName: C_Wing_Of_Fly_Box - Name: Infinite Flywing Box + Name: Unlimited Fly Wing 7 Day Box Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -45143,7 +45528,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 12887,604800; + getgroupitem(IG_C_WING_OF_FLY_BOX); - Id: 17230 AegisName: Valerian_Scroll Name: Valerian Egg @@ -45155,10 +45540,12 @@ Body: getgroupitem(IG_Valerian_Scroll); - Id: 17231 AegisName: Refine_Ore_Box3 - Name: Refinement Ore Box - Type: Usable - Buy: 10 + Name: Refining Ore Box + Type: Cash + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -45168,14 +45555,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 7619,1; - getitem 7620,1; + getgroupitem(IG_REFINE_ORE_BOX3); - Id: 17232 AegisName: Guarantee7_Box - Name: Refinement box(7) - Type: Usable - Buy: 10 + Name: Safe to 7 Certificate Box + Type: Cash + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -45185,8 +45573,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 6230,1; - getitem 6234,1; + getgroupitem(IG_GUARANTEE7_BOX); - Id: 17233 AegisName: Scroll_Of_Death Name: Scroll Of Death @@ -45296,9 +45683,11 @@ Body: - Id: 17244 AegisName: Almighty_Box2 Name: Event Almighty Box - Type: Usable - Buy: 10 + Type: Cash + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -45308,7 +45697,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12883,10; + getgroupitem(IG_ALMIGHTY_BOX2); - Id: 17245 AegisName: Idn_Independ_Scroll Name: Idn Independ Scroll @@ -45319,9 +45708,11 @@ Body: - Id: 17246 AegisName: HD_Elunium_Box30 Name: HD Elunium Box(30) - Type: Usable - Buy: 10 + Type: Cash + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -45331,13 +45722,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 6241,30; + getgroupitem(IG_HD_ELUNIUM_BOX30); - Id: 17247 AegisName: HD_Oridecon_Box30 Name: HD Oridecon Box(30) - Type: Usable - Buy: 10 + Type: Cash + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -45347,7 +45740,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 6240,30; + getgroupitem(IG_HD_ORIDECON_BOX30); - Id: 17251 AegisName: C_Wing_Of_Fly_3Day_Box Name: C Wing Of Fly 3Day Box @@ -45467,10 +45860,12 @@ Body: /*getitem Ex_Def_Potion,5; getitem RWC_Scroll_2012,1;*/ - Id: 17263 AegisName: C_Center_Pot_3d_Box - Name: Infinite Concentration Potion 3rd Box - Type: Usable - Buy: 10 + Name: 3 days Infinite Concentration Potion Box + Type: Cash + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -45480,13 +45875,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 12884,259200; + getgroupitem(IG_C_CENTER_POT_3D_BOX); - Id: 17264 AegisName: C_Awakening_Pot_3d_Box - Name: Infinite Awakening Potion 3rd Box - Type: Usable - Buy: 10 + Name: 3 days Infinite Awakening Potion Box + Type: Cash + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -45496,13 +45893,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 12885,259200; + getgroupitem(IG_C_AWAKENING_POT_3D_BOX); - Id: 17265 AegisName: C_Berserk_Pot_3d_Box - Name: Infinite Berserk Potion 3rd Box - Type: Usable - Buy: 10 + Name: 3 days Infinite Berserk Potion Box + Type: Cash + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -45512,13 +45911,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 12886,259200; + getgroupitem(IG_C_BERSERK_POT_3D_BOX); - Id: 17266 AegisName: BM_Limit_Pack - Name: Limited Battle Manual Package - Type: Usable - Buy: 10 + Name: Battle Manual Limited Package + Type: Cash + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -45528,9 +45929,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 17263,1; - getitem 17264,1; - getitem 17265,1; + getgroupitem(IG_BM_LIMIT_PACK); - Id: 17270 AegisName: STR_Biscuit_Stick_Box Name: Bar Cookie Of Strength Box @@ -45653,10 +46052,12 @@ Body: getgroupitem(IG_Unlimited_Box); - Id: 17278 AegisName: Unlimited_10_Box - Name: Unlimited Box(10) + Name: Unlimited Set of 10 boxes Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -45666,7 +46067,7 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_Unlimited_Box_10); + getgroupitem(IG_UNLIMITED_10_BOX); - Id: 17279 AegisName: Unlimited_20_Box Name: Unlimited 20 Set of Boxes @@ -45685,10 +46086,12 @@ Body: getgroupitem(IG_UNLIMITED_20_BOX); - Id: 17281 AegisName: Refine_Ore_Box4 - Name: Refinement Ore Box IV + Name: Refining Ore Box IV Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -45698,15 +46101,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 7619,5; - getitem 7620,5; - getitem 14627,1; + getgroupitem(IG_REFINE_ORE_BOX4); - Id: 17282 AegisName: Refine_Ore_Box4_Set10 - Name: Refinement Ore Box IV(10) + Name: Refining Ore Box IV (10) Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -45716,15 +46119,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 7619,50; - getitem 7620,50; - getitem 14627,11; + getgroupitem(IG_REFINE_ORE_BOX4_SET10); - Id: 17283 AegisName: Refine_Ore_Box4_Set20 - Name: Refinement Ore Box IV(20) + Name: Refining Ore Box IV (20 Sets) Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -45734,9 +46137,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 7619,100; - getitem 7620,100; - getitem 14627,23; + getgroupitem(IG_REFINE_ORE_BOX4_SET20); - Id: 17285 AegisName: E_New_Style_Box Name: Events Beauty Gift Box @@ -45971,10 +46372,12 @@ Body: rentitem 15023,86400; - Id: 17314 AegisName: C_Wing_Of_Fly_1Day_Box - Name: Infinite Fly Wing Box + Name: Unlimited Fly Wing 1 Day Box Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -45984,13 +46387,15 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 12887,86400; + getgroupitem(IG_C_WING_OF_FLY_1DAY_BOX); - Id: 17315 AegisName: Silvervine_Box10_ Name: Lucky Silvervine Fruit Box(10) Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -46000,13 +46405,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 6417,10; + getgroupitem(IG_SILVERVINE_BOX10_); - Id: 17316 AegisName: Silvervine_Box110 Name: Lucky Silvervine Fruit Box(110) Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -46016,7 +46423,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 6417,110; + getgroupitem(IG_SILVERVINE_BOX110); - Id: 17317 AegisName: Sweet_Midgard_Scroll Name: Sweet Midgard Egg @@ -46043,10 +46450,10 @@ Body: AegisName: 3_Life_Potion_pack Name: Three Master Package Type: Cash - Buy: 10 + Buy: 20 Weight: 10 - Classes: - All: false + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -46056,17 +46463,15 @@ Body: NoMail: true NoAuction: true Script: | - /*TODO: Confirm the items and rates*/ - getitem 14534,20; - getitem 14535,20; + getgroupitem(IG_3_LIFE_POTION_PACK); - Id: 17322 AegisName: 3_Life_Potion_10pack Name: Three Master Package(10) Type: Cash - Buy: 10 + Buy: 20 Weight: 10 - Classes: - All: false + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -46076,9 +46481,7 @@ Body: NoMail: true NoAuction: true Script: | - /*TODO: Confirm the items and rates*/ - getitem 14534,200; - getitem 14535,200; + getgroupitem(IG_3_LIFE_POTION_10PACK); - Id: 17326 AegisName: Requiem_Scroll Name: Requiem Egg @@ -46155,6 +46558,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -46164,15 +46569,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 7619,5; - getitem 7620,5; - getitem 14696,1; + getgroupitem(IG_REFINE_ORE_BOX5); - Id: 17339 AegisName: Refine_Ore_Box5_Set10 Name: Ore Box V(10) Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -46182,17 +46587,17 @@ Body: NoMail: true NoAuction: true Script: | - getitem 7619,50; - getitem 7620,50; - getitem 14696,11; + getgroupitem(IG_REFINE_ORE_BOX5_SET10); - Id: 17394 AegisName: Old_Hat_Box_ - Name: Event Old Headgear Box + Name: "[Event] Old Headgear Box" Type: Usable Buy: 20 Weight: 10 + Flags: + Container: true Script: | - /* TODO */ + getgroupitem(IG_OLD_HAT_BOX_); - Id: 17396 AegisName: Half_L_Maje_Box_1day Name: Half L Magestic Goat Box1 @@ -46453,8 +46858,10 @@ Body: AegisName: Shadow_Box3 Name: 11 Anniversary Shadow Box Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -46464,13 +46871,15 @@ Body: NoMail: true NoAuction: true Script: | - /* getitem callfunc("F_Rand",Ritual's Flute (weapon, earrings, pendants), every risyeo's (shields, armor, shoes)),1; */ + getgroupitem(IG_SHADOW_BOX3); - Id: 17430 AegisName: 11th_S_Package Name: 11 Anniversary Shadow Package Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -46480,7 +46889,7 @@ Body: NoMail: true NoAuction: true Script: | - /* getitem Ritual's Flute (weapon, earrings, pendants),1; getitem every risyeo's (shields, armor, shoes)),1; */ + getgroupitem(IG_11TH_S_PACKAGE); - Id: 17431 AegisName: Thanks_Giving_Scroll Name: Miracle Lucky Egg @@ -46496,8 +46905,10 @@ Body: AegisName: Silvervine_Box10_2 Name: Lucky Silvervine Fruit Box II(10) Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -46507,15 +46918,15 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(Lucky_Silvervine_Fruit_Box_II10);*/ - getitem 6417,10; - getitem 14705,1; + getgroupitem(IG_SILVERVINE_BOX10_2); - Id: 17433 AegisName: Silvervine_Box110_2 Name: Lucky Silvervine Fruit Box II(110) Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -46525,9 +46936,7 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(Lucky_Silvervine_Fruit_Box_II110);*/ - getitem 6417,110; - getitem 14705,11; + getgroupitem(IG_SILVERVINE_BOX110_2); - Id: 17435 AegisName: ID_Legend_hero_Scroll Name: Legend Hero Lucky Egg @@ -46539,6 +46948,42 @@ Body: Container: true Script: | getgroupitem(IG_Idn_Legend_Hero_Scroll); + - Id: 17438 + AegisName: 3_Life_Potion_pack2 + Name: Three Master Package II + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_3_LIFE_POTION_PACK2); + - Id: 17439 + AegisName: 3_Life_Potion_10pack2 + Name: Three Master Package II(10) + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_3_LIFE_POTION_10PACK2); - Id: 17440 AegisName: LI_Change_Name_Box Name: Name Change Card Box @@ -46574,9 +47019,10 @@ Body: - Id: 17442 AegisName: LI_Empelium_Box Name: Emperium G Box - Type: Usable - Buy: 20 + Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -46586,13 +47032,14 @@ Body: NoMail: true NoAuction: true Script: | - getitem 6444,1; + getgroupitem(IG_LI_EMPELIUM_BOX); - Id: 17443 AegisName: LI_Upg_Buckler_BOX Name: Reinforcement Buckler Box Type: Cash - Buy: 10 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -46602,7 +47049,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 2150,1; + getgroupitem(IG_LI_UPG_BUCKLER_BOX); - Id: 17447 AegisName: Blessing_Midgard_Scroll Name: Blessing Midgard Lucky Egg @@ -46616,9 +47063,10 @@ Body: - Id: 17449 AegisName: Biscuit_Stick_Set Name: Set Bar Cookies - Type: Usable - Buy: 10 + Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -46628,15 +47076,15 @@ Body: NoMail: true NoAuction: true Script: | - for (.@i = 14616; - .@i <= 14621; - .@i++) getitem .@i,1; + getgroupitem(IG_BISCUIT_STICK_SET); - Id: 17455 AegisName: Premium_Book_Box Name: Premium Battle Manual Box Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -46646,7 +47094,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 22614,1; + getgroupitem(IG_PREMIUM_BOOK_BOX); - Id: 17456 AegisName: Vigorgra_Package_v2 Name: Support Package II @@ -46709,10 +47157,12 @@ Body: getgroupitem(IG_Winter_Midgard_Scroll); - Id: 17465 AegisName: Refine_Ore_Box6 - Name: Refinement Ore Box VI + Name: Refine Ore Box VI Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -46722,15 +47172,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 7619,5; - getitem 7620,5; - getitem 14718,1; + getgroupitem(IG_REFINE_ORE_BOX6); - Id: 17466 AegisName: Refine_Ore_Box6_Set10 - Name: Refinement Ore Box VI(10) + Name: Refine Ore Box VI 10 Set Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -46740,9 +47190,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 7619,50; - getitem 7620,50; - getitem 14718,11; + getgroupitem(IG_REFINE_ORE_BOX6_SET10); - Id: 17467 AegisName: C_Siegfried_Box50 Name: (Limited) Token of Ziegfried Box(50) @@ -46853,10 +47301,12 @@ Body: getgroupitem(IG_Support_Package_III_10); - Id: 17474 AegisName: C_Wing_Of_Fly_5Day_Box - Name: Infinite Giant Fly Wing Box V + Name: Unlimited Fly Wing 5 Day Box Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -46866,7 +47316,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 12887,432000; + getgroupitem(IG_C_WING_OF_FLY_5DAY_BOX); - Id: 17475 AegisName: LC_Max_Weight_Up_10Box Name: (Limited)Gym Membership Card Box(10) @@ -46996,10 +47446,12 @@ Body: getgroupitem(IG_Time_Travel_Scroll); - Id: 17491 AegisName: Refine_Ore_Box7 - Name: Refinement Ore Box VII + Name: Smelting Ore Box VII Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -47009,15 +47461,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 7619,5; - getitem 7620,5; - getitem 4482,1; + getgroupitem(IG_REFINE_ORE_BOX7); - Id: 17492 AegisName: Refine_Ore_Box7_Set10 - Name: Refinement Ore Box VII(10) + Name: Smelting Ore Box VII(10) Type: Cash - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -47027,9 +47479,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 7619,50; - getitem 7620,50; - getitem 4482,11; + getgroupitem(IG_REFINE_ORE_BOX7_SET10); - Id: 17493 AegisName: Costama_Egg23 Name: Burning Feather Costume Scroll @@ -47109,9 +47559,11 @@ Body: - Id: 17498 AegisName: 3_Life_Potion_pack4 Name: Three Master Package IV - Type: Usable - Buy: 10 + Type: Cash + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -47121,16 +47573,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 14534,20; - getitem 14535,20; - getitem 12578,20; - getitem 22812,1; + getgroupitem(IG_3_LIFE_POTION_PACK4); - Id: 17499 AegisName: 3_Life_Potion_10pack4 Name: Three Master Package IV(10) - Type: Usable - Buy: 10 + Type: Cash + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -47140,16 +47591,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 14534,200; - getitem 14535,200; - getitem 12578,200; - getitem 22812,11; + getgroupitem(IG_3_LIFE_POTION_10PACK4); - Id: 17501 AegisName: Vigorgra_Package_v4 Name: Support Package IV - Type: Usable - Buy: 10 + Type: Cash + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -47159,19 +47609,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12208,2; - getitem 12210,2; - getitem 12883,2; - getitem 14600,2; - getitem 12832,6; - if (!rand(100)) - getitem 22823,1; + getgroupitem(IG_VIGORGRA_PACKAGE_V4); - Id: 17502 AegisName: Vigorgra_Package_Set_V4 Name: Support Package IV(10) - Type: Usable - Buy: 10 + Type: Cash + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -47181,19 +47627,14 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12208,20; - getitem 12210,20; - getitem 12883,20; - getitem 14600,20; - getitem 12832,60; - if (!rand(100)) - getitem 22823,11; + getgroupitem(IG_VIGORGRA_PACKAGE_SET_V4); - Id: 17507 AegisName: Nyangvine_Box4 - Name: Actinidia Cat Fruit Box(4) - Type: Usable - Buy: 10 + Name: Kit Costume Box + Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -47203,13 +47644,14 @@ Body: NoMail: true NoAuction: true Script: | - getitem 6909,4; + getgroupitem(IG_NYANGVINE_BOX4); - Id: 17508 AegisName: Nyangvine_Box10 - Name: Actinidia Cat Fruit Box(10) - Type: Usable - Buy: 10 + Name: Kitcoin Purse + Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -47219,13 +47661,14 @@ Body: NoMail: true NoAuction: true Script: | - getitem 6909,10; + getgroupitem(IG_NYANGVINE_BOX10); - Id: 17509 AegisName: Nyangvine_Box40 - Name: Actinidia Cat Fruit Box(40) - Type: Usable - Buy: 10 + Name: Nyangvine 40 Box + Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -47235,13 +47678,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 6909,40; + getgroupitem(IG_NYANGVINE_BOX40); - Id: 17510 AegisName: Refine_Ore_Box8 Name: Smelting Ore Box VIII - Type: Usable - Buy: 10 + Type: Cash + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -47251,15 +47696,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 7619,5; - getitem 7620,5; - getitem 22828,1; + getgroupitem(IG_REFINE_ORE_BOX8); - Id: 17511 AegisName: Refine_Ore_Box8_Set10 Name: Smelting Ore Box VIII(10) - Type: Usable - Buy: 10 + Type: Cash + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -47269,15 +47714,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 7619,50; - getitem 7620,50; - getitem 22828,11; + getgroupitem(IG_REFINE_ORE_BOX8_SET10); - Id: 17512 AegisName: LI_HD_Elunium_Box30 - Name: (Limited) Purified Eluminium Box(30) - Type: Usable - Buy: 10 + Name: (Limited)Purified Eluminium Box(30) + Type: Cash + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -47287,14 +47732,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 6911,30; - getitem 6635,1; + getgroupitem(IG_LI_HD_ELUNIUM_BOX30); - Id: 17513 AegisName: LI_HD_Oridecon_Box30 - Name: (Limited) Purified Oridecon Box(30) - Type: Usable - Buy: 10 + Name: (Limited)Purified Oridecon Box(30) + Type: Cash + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -47304,14 +47750,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 6910,30; - getitem 6635,1; + getgroupitem(IG_LI_HD_ORIDECON_BOX30); - Id: 17515 AegisName: Unlimited_Box3 Name: Unlimited Box III - Type: Usable - Buy: 10 + Type: Cash + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -47321,16 +47768,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12684,5; - getitem 12796,10; - if (!rand(30)) - getitem 14758,1; + getgroupitem(IG_UNLIMITED_BOX3); - Id: 17516 AegisName: Unlimited_10_Box3 Name: Unlimited Box III(10) - Type: Usable - Buy: 10 + Type: Cash + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -47340,10 +47786,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12684,50; - getitem 12796,100; - if (!rand(30)) - getitem 14758,11; + getgroupitem(IG_UNLIMITED_10_BOX3); - Id: 17517 AegisName: Costama_Egg28 Name: Animal Costume Scroll @@ -47373,9 +47816,10 @@ Body: - Id: 17520 AegisName: Limit_Manual_Box Name: Limited Edition Manual Box - Type: Usable - Buy: 10 + Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -47385,14 +47829,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 14765,3; - /*getitem (limited edition battle manual),2;*/ + getgroupitem(IG_LIMIT_MANUAL_BOX); - Id: 17521 AegisName: 3_Life_Potion_pack5 Name: Three Master Package V - Type: Usable - Buy: 10 + Type: Cash + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -47402,16 +47847,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 14534,20; - getitem 14535,20; - getitem 12832,20; - getitem 22842,1; + getgroupitem(IG_3_LIFE_POTION_PACK5); - Id: 17522 AegisName: 3_Life_Potion_10pack5 Name: Three Master Package V(10) - Type: Usable - Buy: 10 + Type: Cash + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -47421,10 +47865,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 14534,200; - getitem 14535,200; - getitem 12832,200; - getitem 22842,11; + getgroupitem(IG_3_LIFE_POTION_10PACK5); - Id: 17523 AegisName: Costama_Egg29 Name: Mystical Costume Scroll @@ -47445,9 +47886,11 @@ Body: - Id: 17524 AegisName: Limit_Power_Booster_Box Name: Limited Power Booster Box - Type: Usable - Buy: 10 + Type: Cash + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -47457,14 +47900,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 14766,1; - getitem 22873,1; + getgroupitem(IG_LIMIT_POWER_BOOSTER_BOX); - Id: 17525 AegisName: Limit_Power_Booster100 Name: Limited Power Booster Box(100) - Type: Usable - Buy: 10 + Type: Cash + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -47474,8 +47918,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 14766,100; - getitem 22873,11; + getgroupitem(IG_LIMIT_POWER_BOOSTER100); - Id: 17526 AegisName: Majestic_Lucky_Scroll Name: Majestic Lucky Egg @@ -47487,10 +47930,11 @@ Body: getgroupitem(IG_Majestic_Lucky_Scroll); - Id: 17527 AegisName: Nyangvine_Box200 - Name: Actinidia Cat Fruit Box(200) - Type: Usable - Buy: 10 + Name: Silvervine Cat Fruit Box(200) + Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -47500,9 +47944,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 6909,200; - getitem 12636,rand(1,5); - /*TODO: Fix the 12636 amount*/ + getgroupitem(IG_NYANGVINE_BOX200); - Id: 17532 AegisName: Blessing_Lucky_Scroll Name: Blessing Lucky Egg @@ -47514,10 +47956,12 @@ Body: getgroupitem(IG_Blessing_Lucky_Scroll); - Id: 17544 AegisName: Refine_Ore_Box9 - Name: Smelting Ore Box IX - Type: Usable - Buy: 10 + Name: Refining Ore Box IX + Type: Cash + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -47527,15 +47971,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 7619,5; - getitem 7620,5; - getitem 22888,1; + getgroupitem(IG_REFINE_ORE_BOX9); - Id: 17545 AegisName: Refine_Ore_Box9_Set10 - Name: Smelting Ore Box IX(10) - Type: Usable - Buy: 10 + Name: Refining Ore Box IX (10) + Type: Cash + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -47545,9 +47989,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 7619,50; - getitem 7620,50; - getitem 22888,11; + getgroupitem(IG_REFINE_ORE_BOX9_SET10); - Id: 17547 AegisName: 2015LI_NeuralizerBox Name: (Limited)2015 Neuralizer Box @@ -47627,6 +48069,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -47636,14 +48080,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 23899,10; - getitem 22902,1; + getgroupitem(IG_ALMIGHTY_BOX4); - Id: 17568 AegisName: Almighty100_Box2 Name: Event Almighty Box(100) Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -47653,8 +48098,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 23899,100; - getitem 22902,11; + getgroupitem(IG_ALMIGHTY100_BOX2); - Id: 17569 AegisName: Dun_Voucher_Box1 Name: Sky Fortress Ticket 1 Hour Box @@ -49787,8 +50231,10 @@ Body: AegisName: WolfKing_Scroll Name: King Wolf Scroll Type: Usable - Buy: 10 + Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49798,8 +50244,7 @@ Body: NoMail: true NoAuction: true Script: | - /*TODO, confirm the rates*/ - getitem callfunc("F_Rand",6635,19598,5658,6238,6239),1; + getgroupitem(IG_WOLFKING_SCROLL); - Id: 22511 AegisName: Fenrir_Card__ Name: Fenrir's Power Scroll @@ -49819,8 +50264,10 @@ Body: AegisName: Kings_Gift Name: King of Gift Box Type: Usable - Buy: 10 + Buy: 20 Weight: 100 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49830,8 +50277,7 @@ Body: NoMail: true NoAuction: true Script: | - /*TODO, confirm the rates*/ - getitem callfunc("F_Rand",12817,4403,14512),1; + getgroupitem(IG_KINGS_GIFT); - Id: 22514 AegisName: Candy_Holder Name: Candy Holder @@ -49888,10 +50334,11 @@ Body: getgroupitem(IG_Idn_Wisdom_Egg); - Id: 22521 AegisName: 80LVUP - Name: Level Up Box - Type: Cash - Buy: 10 + Name: Level Up Box (80) + Type: Usable EquipLevelMin: 80 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49902,7 +50349,7 @@ Body: NoMail: true NoAuction: true Script: | - /*TODO*/ + getgroupitem(IG_80LVUP); - Id: 22522 AegisName: 100LVUP Name: Level Up Box(100) @@ -50060,10 +50507,9 @@ Body: - Id: 22533 AegisName: New_Year_Gift_Box Name: New Year Gift Box - Type: Cash - Buy: 10 - Weight: 200 - EquipLevelMin: 1 + Type: Usable + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -50074,7 +50520,7 @@ Body: NoMail: true NoAuction: true Script: | - /*TODO*/ + getgroupitem(IG_NEW_YEAR_GIFT_BOX); - Id: 22534 AegisName: Closedmind_Box Name: Closed Mind Box @@ -50175,9 +50621,10 @@ Body: - Id: 22541 AegisName: PCBang_Coupon_Box6 Name: PC Room Coupon Box VI - Type: Cash - Buy: 10 + Type: Usable Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -50186,6 +50633,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_PCBANG_COUPON_BOX6); - Id: 22542 AegisName: Center_Potion_B Name: "[Not For Sale] Concentration Potion" @@ -50352,10 +50801,11 @@ Body: percentheal -100,-100; - Id: 22550 AegisName: Cookie_Bag_B - Name: Sweets Pocket + Name: Cookie Bag Type: Usable - Buy: 10 Weight: 70 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -50364,6 +50814,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_COOKIE_BAG_B); - Id: 22551 AegisName: Sesame_Pastry_B Name: Teacake @@ -50512,9 +50964,11 @@ Body: - Id: 22569 AegisName: Kings_Gift2 Name: Gift New start - Type: Cash - Buy: 10 + Type: Usable + Buy: 20 Weight: 100 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -50523,6 +50977,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_KINGS_GIFT2); - Id: 22571 AegisName: Easter_Egg Name: Easter Egg @@ -50536,8 +50992,9 @@ Body: - Id: 22592 AegisName: Happy_Call_Box Name: Happy Call Box - Type: Cash - Buy: 10 + Type: Usable + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -50547,6 +51004,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_HAPPY_CALL_BOX); - Id: 22605 AegisName: Gingerbread2 Name: Ginger Bread @@ -50640,9 +51099,10 @@ Body: - Id: 22617 AegisName: ClearBox_S Name: Clear Box S - Type: Cash - Buy: 10 + Type: Usable Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -50651,6 +51111,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getgroupitem(IG_CLEARBOX_S); - Id: 22618 AegisName: ClearBox_A Name: Clear Box A @@ -50681,12 +51143,13 @@ Body: /* mercenary_create M_E_DEVILING,1800000; */ - Id: 22620 AegisName: Memorial_Box - Name: Box Of Memories + Name: Memorial Box Type: Usable Flags: BuyingStore: true + Container: true Script: | - /* TODO */ + getgroupitem(IG_MEMORIAL_BOX); - Id: 22621 AegisName: Squid_Bbq Name: Barbecued Squid @@ -50734,7 +51197,8 @@ Body: AegisName: JanuaryGiftBox_ Name: January Gift Box Type: Usable - Weight: 100 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -50744,12 +51208,13 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 19052,604800; + getgroupitem(IG_JANUARYGIFTBOX_); - Id: 22627 AegisName: FebruaryGiftBox_ Name: February Gift Box Type: Usable - Weight: 100 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -50759,7 +51224,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12105,2; + getgroupitem(IG_FEBRUARYGIFTBOX_); - Id: 22628 AegisName: Green_Package Name: Green Package @@ -50903,24 +51368,26 @@ Body: getitem 5883,1; - Id: 22648 AegisName: Angeling_Package - Name: Angel Ring Package + Name: Angeling Package Type: Usable Buy: 20 Weight: 10 Flags: BuyingStore: true + Container: true Script: | - getitem callfunc("F_Rand",12539,6230,6234/*,Angeling Balloon*/),1; + getgroupitem(IG_ANGELING_PACKAGE); - Id: 22649 AegisName: Deviling_Package - Name: Devil Ring Package + Name: Deviling Package Type: Usable Buy: 20 Weight: 10 Flags: BuyingStore: true + Container: true Script: | - getitem callfunc("F_Rand",603,6230,6234/*,Angeling Balloon*/),1; + getgroupitem(IG_DEVILING_PACKAGE); - Id: 22652 AegisName: Brilliant_Hat_Box Name: Brilliant Hat Box @@ -50941,10 +51408,20 @@ Body: AegisName: Wet_CardAlbum Name: Wet Card Album Type: Usable - Buy: 10000 Weight: 50 + Flags: + Container: true Script: | - /* TODO */ + getgroupitem(IG_WET_CARDALBUM); + - Id: 22654 + AegisName: Golden_Card + Name: Golden Seal Card + Type: Usable + Weight: 50 + Flags: + Container: true + Script: | + getgroupitem(IG_GOLDEN_CARD); - Id: 22657 AegisName: Honey_Rice_Cake_ Name: Honey Songpyun @@ -51030,8 +51507,8 @@ Body: AegisName: MarchGiftBox_ Name: March Gift Box Type: Usable - Buy: 10 - Weight: 100 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -51041,13 +51518,13 @@ Body: NoMail: true NoAuction: true Script: | - /*2 Lucky Eggs*/ + getgroupitem(IG_MARCHGIFTBOX_); - Id: 22672 AegisName: AprilGiftBox_ Name: April Gift Box Type: Usable - Buy: 10 - Weight: 100 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -51057,13 +51534,13 @@ Body: NoMail: true NoAuction: true Script: | - rentitem callfunc("F_Rand",2566,2856,2857,15023),1209600; + getgroupitem(IG_APRILGIFTBOX_); - Id: 22673 AegisName: MayGiftBox_ Name: May Gift Box Type: Usable - Buy: 10 - Weight: 100 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -51073,13 +51550,13 @@ Body: NoMail: true NoAuction: true Script: | - getitem 22777,2; + getgroupitem(IG_MAYGIFTBOX_); - Id: 22674 AegisName: JuneGiftBox_ Name: June Gift Box Type: Usable - Buy: 10 - Weight: 100 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -51089,7 +51566,7 @@ Body: NoMail: true NoAuction: true Script: | - /*1 Potion Box*/ + getgroupitem(IG_JUNEGIFTBOX_); - Id: 22675 AegisName: Mystery_Scroll Name: Mysterious Scroll @@ -51102,10 +51579,11 @@ Body: AegisName: HangulDay_Box Name: Hangul Day Event Box Type: Usable - Buy: 20 + Weight: 10 + Flags: + Container: true Script: | - getitem 22675,10; - getitem 607,9; + getgroupitem(IG_HANGULDAY_BOX); - Id: 22679 AegisName: Chest_Of_Death Name: Death's Chest @@ -51238,8 +51716,9 @@ Body: - Id: 22700 AegisName: Jumping_Kit_Box Name: Jumping Support Box - Type: Cash - Buy: 10 + Type: Usable + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -51250,7 +51729,7 @@ Body: NoMail: true NoAuction: true Script: | - /*TODO: getitem 12529,1; getitem 12323,200; getitem 12324,50; and 5 boxes that containing quivers + oridecons*/ + getgroupitem(IG_JUMPING_KIT_BOX); - Id: 22702 AegisName: Minus_Str Name: STR Reduction Potion @@ -51314,10 +51793,11 @@ Body: - Id: 22721 AegisName: Question_Box Name: "? Box" - Type: Cash - Buy: 10 + Type: Usable + Flags: + Container: true Script: | - /*No clue the random item yet*/ + getgroupitem(IG_QUESTION_BOX); - Id: 22734 AegisName: QuizRevol_Box Name: Revolution Quiz Box @@ -51340,9 +51820,10 @@ Body: - Id: 22735 AegisName: Sealed_M_Flower_Scroll Name: Sealed Moonlight Flower Scroll - Type: Cash - Buy: 10 + Type: Usable Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -51352,14 +51833,13 @@ Body: NoMail: true NoAuction: true Script: | - /*TODO: Confirm the rates*/ - getitem callfunc("F_Rand",6228,6232,24150,19934,6635,17474),1; + getgroupitem(IG_SEALED_M_FLOWER_SCROLL); - Id: 22736 AegisName: JulyGiftBox_ Name: July Gift Box Type: Usable - Buy: 10 - Weight: 100 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -51369,7 +51849,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 20212,1; + getgroupitem(IG_JULYGIFTBOX_); - Id: 22737 AegisName: Bullet_Case_Blood_ Name: Bloody Cartridge @@ -51526,8 +52006,8 @@ Body: AegisName: AugustGiftBox_ Name: August Gift Box Type: Usable - Buy: 10 - Weight: 100 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -51537,7 +52017,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12246,1; + getgroupitem(IG_AUGUSTGIFTBOX_); - Id: 22757 AegisName: Matk_Trans_Scroll Name: Collection Of Scrolls Magical Transformation @@ -51721,9 +52201,9 @@ Body: AegisName: PC_NomalBox Name: PC Bang Normal Box Type: Usable - Buy: 10 Weight: 200 - EquipLevelMin: 1 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -51733,15 +52213,14 @@ Body: NoMail: true NoAuction: true Script: | - getitem 547,20; - /*No Info*/ + getgroupitem(IG_PC_NOMALBOX); - Id: 22782 AegisName: PC_WoodenBox Name: PC Bang Wooden Box Type: Usable - Buy: 10 Weight: 200 - EquipLevelMin: 1 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -51751,15 +52230,14 @@ Body: NoMail: true NoAuction: true Script: | - getitem 547,30; - /*No Info*/ + getgroupitem(IG_PC_WOODENBOX); - Id: 22783 AegisName: PC_GoldenBox Name: PC Bang Golden Box Type: Usable - Buy: 10 Weight: 200 - EquipLevelMin: 1 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -51769,16 +52247,14 @@ Body: NoMail: true NoAuction: true Script: | - getitem 547,1; - getitem 985,10; - /*No Info*/ + getgroupitem(IG_PC_GOLDENBOX); - Id: 22784 AegisName: PC_PlatinumBox Name: PC Bang Platinum Box Type: Usable - Buy: 10 Weight: 200 - EquipLevelMin: 1 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -51788,10 +52264,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 547,1; - getitem 12017,10; - getitem 678,12; - /*No Info*/ + getgroupitem(IG_PC_PLATINUMBOX); - Id: 22808 AegisName: NoviceBox Name: Special Gift Box @@ -51817,9 +52290,9 @@ Body: AegisName: Sealed_Dracula_Scroll Name: Sealed Dracula Scroll Type: Usable - Buy: 10 Weight: 10 - EquipLevelMin: 1 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -51829,14 +52302,14 @@ Body: NoMail: true NoAuction: true Script: | - getitem callfunc("F_Rand",6228,6232,22813,19937,17314, 6635),1; + getgroupitem(IG_SEALED_DRACULA_SCROLL); - Id: 22813 AegisName: Bearers_Shadow_Box Name: Bearer's Shadow Box Type: Usable - Buy: 10 Weight: 10 - EquipLevelMin: 1 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -51846,7 +52319,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem callfunc("F_Rand",24180,24181,24182,24183,24184,24185),1; + getgroupitem(IG_BEARERS_SHADOW_BOX); - Id: 22814 AegisName: CatPaw_Ticket Name: Cat Hand Ticket @@ -51937,10 +52410,9 @@ Body: AegisName: Sealed_B_Shecil_Scroll Name: Sealed Sniper Scroll Type: Usable - Buy: 10 Weight: 10 - Classes: - All: false + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -51950,7 +52422,7 @@ Body: NoMail: true NoAuction: true Script: | - /*getitem callfunc("F_Rand",4491,6228,6232,24196, Hasty Shadow Armor, 19882, 17474, 6635),1;*/ + getgroupitem(IG_SEALED_B_SHECIL_SCROLL); - Id: 22825 AegisName: Costume_Set1_Kr Name: Heidam Fellow @@ -51998,9 +52470,9 @@ Body: AegisName: Sealed_Card Name: Sealed Card Album Type: Usable - Buy: 10 Weight: 10 - EquipLevelMin: 1 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -52010,7 +52482,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem callfunc("F_Rand",4488,4497,4486,4480,4485,4539,4487,4494,4538,4489,4490,4482,4503,4483,4491),1; + getgroupitem(IG_SEALED_CARD); - Id: 22837 AegisName: Essence_Of_Time Name: Integer Time @@ -52047,13 +52519,20 @@ Body: EquipLevelMin: 1 Script: | getgroupitem(IG_Happy_Box_J); + - Id: 22841 + AegisName: Pumpkin_Candy + Name: Pumpkin Candy + Type: Usable + Weight: 50 + Script: | + percentheal 0,25; - Id: 22842 AegisName: Sealed_Dracula_Scroll2 Name: Sealed Dracula Scroll II Type: Usable - Buy: 10 Weight: 10 - EquipLevelMin: 1 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -52063,7 +52542,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem callfunc("F_Rand",22846,6228,6232,24223,24227,17474/*, Enchant Letter*/),1; + getgroupitem(IG_SEALED_DRACULA_SCROLL2); - Id: 22843 AegisName: superstar_cake Name: Superstar Snack @@ -52076,10 +52555,9 @@ Body: AegisName: Sealed_Dracula_Album Name: Sealed Dracula Card Album Type: Usable - Buy: 10 Weight: 50 - Classes: - All: false + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -52089,14 +52567,14 @@ Body: NoMail: true NoAuction: true Script: | - /*No Info*/ + getgroupitem(IG_SEALED_DRACULA_ALBUM); - Id: 22845 AegisName: Sealed_Mysterious_Egg Name: Sealed Fortune Egg Type: Usable - Buy: 10 Weight: 10 - EquipLevelMin: 1 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -52106,7 +52584,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem callfunc("F_Rand",4488,4497,4486,4480,4485,4539,4487,4494,4538,4489,4490,4482,4503,22846),1; + getgroupitem(IG_SEALED_MYSTERIOUS_EGG); - Id: 22846 AegisName: Sealed_Dracula_Card_ Name: Sealed Dracula Card @@ -52204,8 +52682,9 @@ Body: AegisName: AprilGiftBox Name: April Gift Box Type: Usable - Buy: 10 Weight: 100 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -52215,7 +52694,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem callfunc("F_Rand",2566,2856,2857,15023),1209600; + getgroupitem(IG_APRILGIFTBOX); - Id: 22854 AegisName: MayGiftBox Name: May Gift Box @@ -52283,9 +52762,10 @@ Body: - Id: 22858 AegisName: SeptemberGiftBox Name: September Gift Box - Type: Usable - Buy: 10 + Type: Cash Weight: 100 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -52295,7 +52775,7 @@ Body: NoMail: true NoAuction: true Script: | - /*2 Lucky Eggs*/ + getgroupitem(IG_SEPTEMBERGIFTBOX); - Id: 22859 AegisName: OctoberGiftBox Name: October Gift Box @@ -52316,8 +52796,9 @@ Body: AegisName: NovemberGiftBox Name: November Gift Box Type: Usable - Buy: 10 Weight: 100 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -52327,7 +52808,7 @@ Body: NoMail: true NoAuction: true Script: | - rentitem callfunc("F_Rand",2566,2856,2857,15023),1209600; + getgroupitem(IG_NOVEMBERGIFTBOX); - Id: 22861 AegisName: DecemberGiftBox Name: December Gift Box @@ -52391,8 +52872,9 @@ Body: AegisName: Sealed_Berz_Scroll2 Name: Sealed Beelzebub Scroll II Type: Usable - Buy: 10 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -52402,13 +52884,14 @@ Body: NoMail: true NoAuction: true Script: | - getitem callfunc("F_Rand",22875,6238,6239,6228,6232,24231,24232,17474,6635),1; + getgroupitem(IG_SEALED_BERZ_SCROLL2); - Id: 22874 AegisName: Sealed_Berz_Album Name: Sealed Beelzebub Card Album Type: Usable - Buy: 10 Weight: 50 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -52418,7 +52901,7 @@ Body: NoMail: true NoAuction: true Script: | - /*No Info*/ + getgroupitem(IG_SEALED_BERZ_ALBUM); - Id: 22876 AegisName: Shabby_Purse Name: Old Money Pocket @@ -52452,8 +52935,8 @@ Body: AegisName: SeptemberGiftBox_ Name: September Gift Box Type: Usable - Buy: 10 - Weight: 100 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -52463,13 +52946,13 @@ Body: NoMail: true NoAuction: true Script: | - /*2 Lucky Eggs*/ + getgroupitem(IG_SEPTEMBERGIFTBOX_); - Id: 22884 AegisName: OctoberGiftBox_ Name: October Gift Box Type: Usable - Buy: 10 - Weight: 100 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -52479,13 +52962,13 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12529,5; + getgroupitem(IG_OCTOBERGIFTBOX_); - Id: 22885 AegisName: NovemberGiftBox_ Name: November Gift Box Type: Usable - Buy: 10 - Weight: 100 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -52495,13 +52978,13 @@ Body: NoMail: true NoAuction: true Script: | - rentitem callfunc("F_Rand",2566,2856,2857,15023),1209600; + getgroupitem(IG_NOVEMBERGIFTBOX_); - Id: 22886 AegisName: DecemberGiftBox_ Name: December Gift Box Type: Usable - Buy: 10 - Weight: 100 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -52511,13 +52994,14 @@ Body: NoMail: true NoAuction: true Script: | - getitem 22869,10; + getgroupitem(IG_DECEMBERGIFTBOX_); - Id: 22887 AegisName: 2015GoldPCBox - Name: PC-Room Box + Name: Gold PC Cafe Box Type: Usable - Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -52528,14 +53012,14 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12531,1; - getitem callfunc("F_Rand",6230,6234,22654),1; + getgroupitem(IG_2015GOLDPCBOX); - Id: 22888 AegisName: 2015_New_Year_Scroll Name: New Year's Scroll Type: Usable - Buy: 10 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -52545,13 +53029,14 @@ Body: NoMail: true NoAuction: true Script: | - getitem callfunc("F_Rand",6238,6239,6228,6232,24240,24241,24242,17474),1; + getgroupitem(IG_2015_NEW_YEAR_SCROLL); - Id: 22893 AegisName: New_Year_Shadow_Cube - Name: New Year's Shadow Cube + Name: New Year Shadow Cube Type: Usable - Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -52561,7 +53046,7 @@ Body: NoMail: true NoAuction: true Script: | - /*Get a random Shadow Equip (No info which one)*/ + getgroupitem(IG_NEW_YEAR_SHADOW_CUBE); - Id: 22894 AegisName: 2015LI_Neuralizer Name: (Limited)2015 Neuralizer @@ -52635,10 +53120,11 @@ Body: getgroupitem(IG_BLUEBOXOFQUESTIONS); - Id: 22902 AegisName: Sealed_Scroll2 - Name: Sealed Card Album Scroll II + Name: Sealed Seal Scroll II Type: Usable - Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -52648,7 +53134,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem callfunc("F_Rand",6238,6239,17474,22829,24243,24244,24245),1; + getgroupitem(IG_SEALED_SCROLL2); - Id: 22905 AegisName: Enchant_Stone_Box6 Name: Costume Enchant Stone Box 6 @@ -53335,7 +53821,7 @@ Body: Flags: Container: true Script: | - getitem callfunc("F_Rand",19602,19603,19604,20506),1; + getgroupitem(IG_INVISIBLE_BOX); - Id: 23034 AegisName: Invisible_Scroll Name: Invisible Scroll @@ -53401,6 +53887,46 @@ Body: NoAuction: true Script: | getitem 11573,200; + - Id: 23039 + AegisName: Mastela_Fruit_Box_ + Name: "[NotForSale] Mastela Fruit Box" + Type: Usable + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 522,200; /* Mastela Fruit */ + - Id: 23040 + AegisName: White_Potion_Box_ + Name: "[NotForSale] White Potion Box" + Type: Usable + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 23041 + AegisName: Royal_Jelly_Box2_ + Name: "[NotForSale] Royal Jelly Box" + Type: Usable + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 526,100; /* Royal Jelly */ - Id: 23042 AegisName: Seed_Of_Yggdrasil_ Name: "[NotForSale]Yggdrasil Seed" @@ -53611,8 +54137,8 @@ Body: AegisName: Freeze_Dream Name: Frozen Dream Type: Usable - Buy: 0 - Weight: 0 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -53623,7 +54149,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 25088,rand(3,6); + getgroupitem(IG_FREEZE_DREAM); - Id: 23069 AegisName: 2015_Special_Scroll Name: 2015 Special Scroll @@ -53774,44 +54300,49 @@ Body: getgroupitem(IG_CRYSTAL_OF_GRUDGE); - Id: 23081 AegisName: Kunai_Scroll_Of_Flame - Name: Heat Wave Kunai Summon Scroll + Name: Kunai Scroll of Flame Type: Usable - Buy: 20 Weight: 250 + Flags: + Container: true Script: | - getitem "Kunai_Of_Fierce_Flame",500; + getgroupitem(IG_KUNAI_SCROLL_OF_FLAME); - Id: 23082 AegisName: Kunai_Scroll_Of_Icicle - Name: Icicle Kunai Summon Scroll + Name: Kunai Scroll of Icicle Type: Usable - Buy: 20 Weight: 250 + Flags: + Container: true Script: | - getitem "Kunai_Of_Icicle",500; + getgroupitem(IG_KUNAI_SCROLL_OF_ICICLE); - Id: 23083 AegisName: Kunai_Scroll_Of_Wind - Name: High Wind Kunai Summon Scroll + Name: Kunai Scroll of Storm Type: Usable - Buy: 20 Weight: 250 + Flags: + Container: true Script: | - getitem "Kunai_Of_Furious_Wind",500; + getgroupitem(IG_KUNAI_SCROLL_OF_WIND); - Id: 23084 AegisName: Kunai_Scroll_Of_Soil - Name: Black Earth Kunai Summon Scroll + Name: Kunai Scroll of Sand Type: Usable - Buy: 20 Weight: 250 + Flags: + Container: true Script: | - getitem "Kunai_Of_Black_Soil",500; + getgroupitem(IG_KUNAI_SCROLL_OF_SOIL); - Id: 23085 AegisName: Kunai_Scroll_Of_Poison - Name: Fell Poison Kunai Summon Scroll + Name: Kunai Scroll of Poison Type: Usable - Buy: 20 Weight: 250 + Flags: + Container: true Script: | - getitem "Kunai_Of_Deadly_Poison",500; + getgroupitem(IG_KUNAI_SCROLL_OF_POISON); - Id: 23086 AegisName: Enchant_Stone_Box10 Name: Costume Enchant Stone Box 10 @@ -54067,7 +54598,7 @@ Body: Flags: Container: true Script: | - getgroupitem(IG_CACHUA_WEAPON); + getgroupitem(IG_CACHUA_WEAPON,true); - Id: 23129 AegisName: Cachua_Robe Name: Kachua Garment @@ -54075,7 +54606,7 @@ Body: Flags: Container: true Script: | - getgroupitem(IG_CACHUA_ROBE); + getgroupitem(IG_CACHUA_ROBE,true); - Id: 23130 AegisName: Cachua_Mail Name: Kachua Armor @@ -54083,7 +54614,7 @@ Body: Flags: Container: true Script: | - getgroupitem(IG_CACHUA_MAIL); + getgroupitem(IG_CACHUA_MAIL,true); - Id: 23131 AegisName: Cachua_Shoes Name: Kachua Shoes @@ -54091,7 +54622,7 @@ Body: Flags: Container: true Script: | - getgroupitem(IG_CACHUA_SHOES); + getgroupitem(IG_CACHUA_SHOES,true); - Id: 23132 AegisName: Cachua_Shield Name: Kachua Shield @@ -54099,7 +54630,7 @@ Body: Flags: Container: true Script: | - getgroupitem(IG_CACHUA_SHIELD); + getgroupitem(IG_CACHUA_SHIELD,true); - Id: 23133 AegisName: Cachua_Helm Name: Kachua Helm @@ -54107,7 +54638,7 @@ Body: Flags: Container: true Script: | - getgroupitem(IG_CACHUA_HELM); + getgroupitem(IG_CACHUA_HELM,true); - Id: 23134 AegisName: Balloon_Scroll Name: Balloon Scroll @@ -54219,10 +54750,12 @@ Body: - Id: 23150 AegisName: Lapine_DdukddakBox Name: Lapine Big Box - Type: DelayConsume + Type: Usable Weight: 10 + Flags: + Container: true Script: | - /* TODO Update Description */ + getgroupitem(IG_LAPINE_DDUKDDAKBOX); - Id: 23151 AegisName: EnchantStone_Recipe Name: Enchant Stone Recipe @@ -54282,10 +54815,11 @@ Body: AegisName: Gunslinger_Box Name: Gunslinger Box Type: Usable - Weight: 1 + Weight: 10 + Flags: + Container: true Script: | - getitem 23100,1; - getitem 19157,1; + getgroupitem(IG_GUNSLINGER_BOX); - Id: 23162 AegisName: Gunslinger_Scroll Name: Gunslinger Scoll @@ -54326,10 +54860,10 @@ Body: Type: Usable Weight: 10 Flags: + BuyingStore: true Container: true Script: | - getitem 23170,1; - getitem callfunc("F_Rand",28439,28440),1; + getgroupitem(IG_MINI_FAN_BOX); - Id: 23169 AegisName: Alchemist_Box Name: Alchemist box @@ -54401,10 +54935,10 @@ Body: Type: Usable Weight: 510 Flags: + BuyingStore: true Container: true Script: | - getitem 23175,1; - getitem callfunc("F_Rand",15186,19168),1; + getgroupitem(IG_KAFRA_BOX); - Id: 23187 AegisName: Sap_Jelly Name: Sap Liquid @@ -55342,34 +55876,31 @@ Body: /* TODO */ - Id: 23285 AegisName: Candy_Box_Melee - Name: Candy Bag Backpack (Physical) + Name: Candy Pouch Box(Physical) Type: Usable Weight: 10 Flags: Container: true Script: | - getitem 23289,1; - getitem 20842,1; + getgroupitem(IG_CANDY_BOX_MELEE); - Id: 23286 AegisName: Candy_Box_Range - Name: Candy Bag Backpack (Range) + Name: Candy Pouch Box(Ranged) Type: Usable Weight: 10 Flags: Container: true Script: | - getitem 23290,1; - getitem 20843,1; + getgroupitem(IG_CANDY_BOX_RANGE); - Id: 23287 AegisName: Candy_Box_Magic - Name: Candy Bag Backpack (Magical) + Name: Candy Pouch Box(Magic) Type: Usable Weight: 10 Flags: Container: true Script: | - getitem 23291,1; - getitem 20844,1; + getgroupitem(IG_CANDY_BOX_MAGIC); - Id: 23288 AegisName: Cps_Fly_Wing Name: Compressed Fly Wing @@ -55983,6 +56514,20 @@ Body: NoAuction: true Script: | percentheal 10,10; + - Id: 23363 + AegisName: E_Watermelon_Pudding + Name: Watermelon Pudding + Type: Usable + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + percentheal 30,30; - Id: 23364 AegisName: Cryptura_Cookie Name: Critatura Pope Cookie @@ -56654,10 +57199,10 @@ Body: Type: Usable Weight: 10 Flags: + BuyingStore: true Container: true Script: | - getitem 28942,1; - getitem 23545,1; + getgroupitem(IG_BLOODYKNIGHT_SHIELD_BOX); - Id: 23545 AegisName: Silver_Statue Name: Silver Statue @@ -56898,7 +57443,9 @@ Body: - Id: 23582 AegisName: E_Wing_Of_Fly_3Day_Box Name: "[Gift] Unlimited Fly Wing 3 Day Box" - Type: Usable + Type: Cash + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -56908,12 +57455,14 @@ Body: NoMail: true NoAuction: true Script: | - rentitem 12887,604800; + getgroupitem(IG_E_WING_OF_FLY_3DAY_BOX); - Id: 23583 AegisName: Rebeginer_Box Name: Beginner's Armor Box Type: Usable EquipLevelMin: 100 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -56923,16 +57472,14 @@ Body: NoMail: true NoAuction: true Script: | - getitem 19310,1; - getitem 15250,1; - getitem 20906,1; - getitem 22173,1; - getitem 28566,1; + getgroupitem(IG_REBEGINER_BOX); - Id: 23584 AegisName: Rebeginer_S_Box Name: Beginner's Shadow Box Type: Usable EquipLevelMin: 120 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -56942,12 +57489,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 24387,1; - getitem 24388,1; - getitem 24390,1; - getitem 24389,1; - getitem 24391,1; - getitem 24392,1; + getgroupitem(IG_REBEGINER_S_BOX); - Id: 23585 AegisName: Rebeginer_Box_100 Name: Beginner Support Box(100) @@ -57644,22 +58186,23 @@ Body: getgroupitem(IG_MAY_RAINBOW_SCROLL); - Id: 23766 AegisName: Overwhelm_Armor_Box - Name: Temporal Armor Box + Name: Overwhelm Armor Box Type: Usable Weight: 2000 Flags: + BuyingStore: true Container: true Script: | - getitem callfunc("F_Rand",15278,15279,15346,15347,15353,15354),1; + getgroupitem(IG_OVERWHELM_ARMOR_BOX); - Id: 23767 AegisName: Powerful_Helm_Box Name: Strong Helmet Box Type: Usable + Weight: 800 Flags: Container: true - Weight: 800 Script: | - getitem callfunc("F_Rand",19300,19249,19263,19296,19308),1; + getgroupitem(IG_POWERFUL_HELM_BOX); - Id: 23770 AegisName: Enchant_Stone_Box16 Name: Costume Enchant Stone Box 16 @@ -57673,6 +58216,8 @@ Body: AegisName: Mysterious_Plastic Name: Mysterious Plastic Bag Type: Usable + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -57681,10 +58226,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true - Flags: - Container: true Script: | - /* unknown */ + getgroupitem(IG_MYSTERIOUS_PLASTIC); - Id: 23772 AegisName: EP17_1_SPC01 Name: OS Weapon Chest @@ -57862,10 +58405,13 @@ Body: - Id: 23817 AegisName: Bs_Making_S Name: Mysterious Combination Bundle - Type: DelayConsume + Type: Usable Weight: 10 + Flags: + BuyingStore: true + Container: true Script: | - /* TODO Update Description */ + getgroupitem(IG_BS_MAKING_S); - Id: 23818 AegisName: Bs_Item_M_S_2 Name: Giant Orc Helm Combination SynthesisBox @@ -58748,7 +59294,7 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_MAIN_LUCKY_BOX); + getgroupitem(IG_MAIN_LUCKY_BOX,true); - Id: 23919 AegisName: K_Secret_Key Name: Kachua's Secret Key @@ -58837,13 +59383,14 @@ Body: getgroupitem(IG_LEVEL_ACHIEVEMENT_BOX); - Id: 23952 AegisName: Sillit_Pong_Box - Name: Sillit Pong Box - Type: Usable + Name: Silit Pong Box + Type: Cash Weight: 10 Flags: + BuyingStore: true Container: true Script: | - getitem 6443,1; + getgroupitem(IG_SILLIT_PONG_BOX); - Id: 23967 AegisName: EnchantStone_Recipe_9m Name: Enchant Stone Recipe 9m @@ -59077,7 +59624,7 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_BOOSTER_PACK_1); + getgroupitem(IG_BOOSTER_PACK_1,true); - Id: 100030 AegisName: Booster_Pack_15 Name: Booster Pack (15) @@ -59203,7 +59750,7 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_BOOSTER_PACK_100); + getgroupitem(IG_BOOSTER_PACK_100,true); - Id: 100037 AegisName: Booster_Pack_115 Name: Booster Pack(115) @@ -59337,7 +59884,7 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_STATER_A_BOX); + getgroupitem(IG_STATER_A_BOX,true); - Id: 100046 AegisName: Boost_Atk_Box Name: Attacker Booster Armor Crate @@ -59471,7 +60018,7 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_TIME_OVER_S_BOX); + getgroupitem(IG_TIME_OVER_S_BOX,true); - Id: 100058 AegisName: Hasty_Mix Name: Hasty Shadow SynthesisBox @@ -60124,26 +60671,29 @@ Body: AegisName: Cannon_Ball_Box Name: Cannon Ball Box Type: Usable - Buy: 20 Weight: 250 + Flags: + Container: true Script: | - getitem "Cannon_Ball",500; + getgroupitem(IG_CANNON_BALL_BOX); - Id: 100172 AegisName: Iron_Cannon_Ball_Box Name: Iron Cannon Ball Box Type: Usable - Buy: 20 Weight: 250 + Flags: + Container: true Script: | - getitem "Iron_Cannon_Ball",500; + getgroupitem(IG_IRON_CANNON_BALL_BOX); - Id: 100173 AegisName: Soul_Cannon_Ball_Box Name: Soul Cannon Ball Box Type: Usable - Buy: 20 Weight: 250 + Flags: + Container: true Script: | - getitem "Soul_Cannon_Ball",500; + getgroupitem(IG_SOUL_CANNON_BALL_BOX); - Id: 100174 AegisName: Poi_Arrow_Container Name: Poison Arrow Quiver @@ -60157,178 +60707,200 @@ Body: AegisName: Dark_Cannon_Ball_Box Name: Dark Cannon Ball Box Type: Usable - Buy: 20 Weight: 250 + Flags: + Container: true Script: | - getitem "Dark_Cannon_Ball",500; + getgroupitem(IG_DARK_CANNON_BALL_BOX); - Id: 100177 AegisName: Holy_Cannon_Ball_Box Name: Holy Cannon Ball Box Type: Usable - Buy: 20 Weight: 250 + Flags: + Container: true Script: | - getitem "Holy_Cannon_Ball",500; + getgroupitem(IG_HOLY_CANNON_BALL_BOX); - Id: 100178 AegisName: Cannon_Box_6 Name: Liquid Condensed Bullet Box Type: Usable - Buy: 20 Weight: 250 + Flags: + Container: true Script: | - getitem "Liquid_Condensed_Bullet",500; + getgroupitem(IG_CANNON_BOX_6); - Id: 100179 AegisName: Magic_Gear_Fuel_Box - Name: Large Mado Gear Fuel Tank + Name: Large Madogear Fuel Tank Type: Usable - Buy: 20 Weight: 250 + Flags: + Container: true Script: | - getitem "Magic_Gear_Fuel",500; + getgroupitem(IG_MAGIC_GEAR_FUEL_BOX); - Id: 100180 AegisName: RepairA_Box Name: Repair A Box Type: Usable - Buy: 20 Weight: 250 + Flags: + Container: true Script: | - getitem "RepairA",500; + getgroupitem(IG_REPAIRA_BOX); - Id: 100181 AegisName: RepairB_Box Name: Repair B Box Type: Usable - Buy: 20 Weight: 250 + Flags: + Container: true Script: | - getitem "RepairB",500; + getgroupitem(IG_REPAIRB_BOX); - Id: 100182 AegisName: RepairC_Box Name: Repair C Box Type: Usable - Buy: 20 Weight: 250 + Flags: + Container: true Script: | - getitem "RepairC",500; + getgroupitem(IG_REPAIRC_BOX); - Id: 100183 AegisName: Flame_Stone_Bundle Name: Flame Stone Bundle Type: Usable - Buy: 20 Weight: 250 + Flags: + Container: true Script: | - getitem "Flame_Stone",500; + getgroupitem(IG_FLAME_STONE_BUNDLE); - Id: 100184 AegisName: Ice_Stone_Bundle Name: Ice Stone Bundle Type: Usable - Buy: 20 Weight: 250 + Flags: + Container: true Script: | - getitem "Ice_Stone",500; + getgroupitem(IG_ICE_STONE_BUNDLE); - Id: 100185 AegisName: Wind_Stone_Bundle Name: Wind Stone Bundle Type: Usable - Buy: 20 Weight: 250 + Flags: + Container: true Script: | - getitem "Wind_Stone",500; + getgroupitem(IG_WIND_STONE_BUNDLE); - Id: 100186 AegisName: Shadow_Orb_Bundle Name: Shadow Orb Bundle Type: Usable - Buy: 20 Weight: 250 + Flags: + Container: true Script: | - getitem "Shadow_Orb",500; + getgroupitem(IG_SHADOW_ORB_BUNDLE); - Id: 100187 AegisName: Charm_Fire_Bundle - Name: Fire Amulet Bundle + Name: Fire Charm Bundle Type: Usable - Buy: 20 Weight: 250 + Flags: + Container: true Script: | - getitem "Charm_Fire",500; + getgroupitem(IG_CHARM_FIRE_BUNDLE); - Id: 100188 AegisName: Charm_Ice_Bundle - Name: Ice Amulet Bundle + Name: Ice Charm Bundle Type: Usable - Buy: 20 Weight: 250 + Flags: + Container: true Script: | - getitem "Charm_Ice",500; + getgroupitem(IG_CHARM_ICE_BUNDLE); - Id: 100189 AegisName: Charm_Wind_Bundle - Name: Wind Amulet Bundle + Name: Wind Charm Bundle Type: Usable - Buy: 20 Weight: 250 + Flags: + Container: true Script: | - getitem "Charm_Wind",500; + getgroupitem(IG_CHARM_WIND_BUNDLE); - Id: 100190 AegisName: Charm_Earth_Bundle - Name: Earth Amulet Bundle + Name: Earth Charm Bundle Type: Usable - Buy: 20 Weight: 250 + Flags: + Container: true Script: | - getitem "Charm_Earth",500; + getgroupitem(IG_CHARM_EARTH_BUNDLE); - Id: 100191 AegisName: Kunai_Scroll_Explosive - Name: Explosive Kunai Summon Scroll + Name: Explosive Kunai Scroll Type: Usable - Buy: 20 Weight: 250 + Flags: + Container: true Script: | - getitem "Explosive_Kunai",500; + getgroupitem(IG_KUNAI_SCROLL_EXPLOSIVE); - Id: 100192 AegisName: Gemstone_Blue Name: Blue Gemstone Pouch Type: Usable - Buy: 20 Weight: 250 + Flags: + Container: true Script: | - getitem "Blue_Gemstone",500; + getgroupitem(IG_GEMSTONE_BLUE); - Id: 100193 AegisName: Gemstone_YL Name: Yellow Gemstone Pouch Type: Usable - Buy: 20 Weight: 250 + Flags: + Container: true Script: | - getitem "Yellow_Gemstone",500; + getgroupitem(IG_GEMSTONE_YL); - Id: 100194 AegisName: Gemstone_Red Name: Red Gemstone Pouch Type: Usable - Buy: 20 Weight: 250 + Flags: + Container: true Script: | - getitem "Red_Gemstone",500; + getgroupitem(IG_GEMSTONE_RED); - Id: 100195 AegisName: Bullet_Case_Full - Name: Full Metal Jacket Cartridge + Name: Full Metal Jacket Case Type: Usable - Buy: 20 Weight: 250 + Flags: + Container: true Script: | - getitem "Full_Metal_Jacket",500; + getgroupitem(IG_BULLET_CASE_FULL); - Id: 100196 AegisName: Bullet_Case_Mine - Name: Projection Landmine Cartridge + Name: Projectile Mine Case Type: Usable - Buy: 20 Weight: 250 + Flags: + Container: true Script: | - getitem "Shooting_Mine",500; + getgroupitem(IG_BULLET_CASE_MINE); - Id: 100197 AegisName: Bullet_Case_Tail - Name: Dragon Tail Missile Cartridge + Name: Dragon Tail Missile Case Type: Usable - Buy: 20 Weight: 250 + Flags: + Container: true Script: | - getitem "Dragon_Tail_Missile",500; + getgroupitem(IG_BULLET_CASE_TAIL); - Id: 100198 AegisName: Skill_Shadow_Cube Name: Skill Shadow Cube @@ -61596,6 +62168,18 @@ Body: Buy: 10 Script: | callfunc "F_CashReduceTraitStat",bCrt,-1,100457; + - Id: 100460 + AegisName: MD_Airboat_Bexp + Name: Purified Growth Elixier + Type: Usable + EquipLevelMin: 200 + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 100462 AegisName: MD_Airboat_Reward Name: Contaminated Card Book @@ -61655,6 +62239,14 @@ Body: Container: true Script: | getgroupitem(IG_FAMOUS_HAT_BOX); + - Id: 100475 + AegisName: MD_Airboat_Expbox + Name: Purple Special Storage Device + Type: Usable + Flags: + Container: true + Script: | + getgroupitem(IG_MD_AIRBOAT_EXPBOX); - Id: 100476 AegisName: MD_Airboat_Random Name: Ymir Beads @@ -62587,6 +63179,21 @@ Body: BuyingStore: true Script: | item_reform(); + - Id: 100754 + AegisName: Kr_B_Special04 + Name: Brilliant Soda + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_KR_B_SPECIAL04); - Id: 100783 AegisName: MajorAutoSpell_Mix Name: Auto Spell Shadow Thump Box @@ -62680,6 +63287,67 @@ Body: Weight: 10 Script: | laphine_upgrade(); + - Id: 100829 + AegisName: Farfalle + Name: Farfalle + Type: Usable + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 100830 + AegisName: Cream_Noodle2 + Name: Creamy Shrimp Pasta + Type: Usable + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 100831 + AegisName: Festival_Noodle2 + Name: Feast Noodles + Type: Usable + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 100832 + AegisName: Tamato_Noodle2 + Name: Tomato Noodles + Type: Usable + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 100833 + AegisName: Oil_Noodle + Name: Soy Sauce Bibim Noodles + Type: Usable + EquipLevelMin: 200 + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 100834 AegisName: Hero_Weapon_Up_Box_3 Name: Hero's Weapon Modification Box III @@ -63056,6 +63724,34 @@ Body: Container: true Script: | getgroupitem(IG_SEASON_EVT_REWARD_9); + - Id: 100949 + AegisName: EXP_Drop_Up_1day + Name: "[Security Campaign] Kafra Buff(1 Day)" + Type: Usable + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 100950 + AegisName: Evt_RagFes_Box + Name: Ragfest Commemorative Box + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_EVT_RAGFES_BOX); - Id: 100951 AegisName: S_Ignition_Cube Name: Ignition Shadow Cube @@ -64700,6 +65396,55 @@ Body: Type: DelayConsume Flags: BuyingStore: true + - Id: 101067 + AegisName: Barmund_Rune_Box + Name: Varmundt's Rune Box + Type: Usable + Weight: 10 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_BARMUND_RUNE_BOX); + - Id: 101070 + AegisName: Chuseog_Present_Box + Name: Chuseok Event Box + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_CHUSEOG_PRESENT_BOX); + - Id: 101074 + AegisName: Sealed_Card3 + Name: Sealed Seal Card III + Type: Usable + Weight: 10 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_SEALED_CARD3); - Id: 101075 AegisName: SLD_Card_Recipe Name: Sealed Boss Card Thump Box @@ -64735,6 +65480,38 @@ Body: Script: | specialeffect2 EF_POTION_BERSERK; sc_start SC_INFINITY_DRINK,1800000,0; + - Id: 101100 + AegisName: Poenetentia_Box3 + Name: Poenitentia Two Swords Set Box + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_POENETENTIA_BOX3); + - Id: 101101 + AegisName: Poenetentia_Box4 + Name: Poenitentia Firearm Set Box + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_POENETENTIA_BOX4); - Id: 101103 AegisName: Enchant_Stone_Box25 Name: Costume Enchant Stone Box 25 @@ -64746,148 +65523,184 @@ Body: getgroupitem(IG_Enchant_Stone_Box25); - Id: 101107 AegisName: Cannon_Box_Ice - Name: Cannon Box Ice + Name: Ice Cannon Ball Box Type: Usable Weight: 250 Flags: Container: true Script: | - getitem 18005,500; + getgroupitem(IG_CANNON_BOX_ICE); - Id: 101108 AegisName: Cannon_Box_Lightning - Name: Cannon Box Lightning + Name: Lightning Cannon Ball Box Type: Usable Weight: 250 Flags: Container: true Script: | - getitem 18006,500; + getgroupitem(IG_CANNON_BOX_LIGHTNING); - Id: 101109 AegisName: Cannon_Box_Stone - Name: Cannon Box Stone + Name: Stone Cannon Ball Box Type: Usable Weight: 250 Flags: Container: true Script: | - getitem 18007,500; + getgroupitem(IG_CANNON_BOX_STONE); - Id: 101110 AegisName: Cannon_Box_Flare - Name: Cannon Box Fire + Name: Flare Cannon Ball Box Type: Usable Weight: 250 Flags: Container: true Script: | - getitem 18008,500; + getgroupitem(IG_CANNON_BOX_FLARE); - Id: 101111 AegisName: Cannon_Box_Poisoning - Name: Cannon Box Poison + Name: Poisoning Cannon Ball Box Type: Usable Weight: 250 Flags: Container: true Script: | - getitem 18009,500; + getgroupitem(IG_CANNON_BOX_POISONING); - Id: 101112 AegisName: Kunai_Scroll - Name: Kunai Scroll + Name: Kunai Summon Scroll Type: Usable Weight: 250 Flags: Container: true Script: | - getitem 1220001,500; + getgroupitem(IG_KUNAI_SCROLL); - Id: 101113 AegisName: Kunai_Scroll_Nothing - Name: Kunai Scroll Nothing + Name: Formless Kunai Summon Scroll Type: Usable Weight: 250 Flags: Container: true Script: | - getitem 1220002,500; + getgroupitem(IG_KUNAI_SCROLL_NOTHING); - Id: 101114 AegisName: Kunai_Scroll_Shadow - Name: Kunai Scroll Shadow + Name: Shadow Kunai Summon Scroll Type: Usable Weight: 250 Flags: Container: true Script: | - getitem 1220003,500; + getgroupitem(IG_KUNAI_SCROLL_SHADOW); - Id: 101115 AegisName: Kunai_Scroll_Hamaya - Name: Kunai Scroll Hamaya + Name: Hamaya Kunai Summon Scroll Type: Usable Weight: 250 Flags: Container: true Script: | - getitem 1220004,500; + getgroupitem(IG_KUNAI_SCROLL_HAMAYA); - Id: 101116 AegisName: Nw_Grenade_Box - Name: Nw Grenade Box + Name: Throwing Grenade Box Type: Usable Weight: 250 Flags: Container: true Script: | - getitem 1000564,500; + getgroupitem(IG_NW_GRENADE_BOX); - Id: 101117 AegisName: Soa_Charm_Bundle - Name: Soa Charm Bundle + Name: Soul Talisman Bundle Type: Usable Weight: 250 Flags: Container: true Script: | - getitem 1000563,500; + getgroupitem(IG_SOA_CHARM_BUNDLE); - Id: 101118 AegisName: SS_Charm_Box - Name: SS Charm Box + Name: Haze of Pitch Darkness Box Type: Usable Weight: 250 Flags: Container: true Script: | - getitem 1000565,500; + getgroupitem(IG_SS_CHARM_BOX); - Id: 101119 AegisName: SS_Charm_F_Box - Name: SS Charm F Box + Name: Haze of Prominence Box Type: Usable Weight: 250 Flags: Container: true Script: | - getitem 1000566,500; + getgroupitem(IG_SS_CHARM_F_BOX); - Id: 101120 AegisName: SS_Charm_W_Box - Name: SS Charm W Box + Name: Haze of Icy Snow Box Type: Usable Weight: 250 Flags: Container: true Script: | - getitem 1000567,500; + getgroupitem(IG_SS_CHARM_W_BOX); - Id: 101121 AegisName: SS_Charm_G_Box - Name: SS Charm G Box + Name: Haze of Mother Earth Box Type: Usable Weight: 250 Flags: Container: true Script: | - getitem 1000568,500; + getgroupitem(IG_SS_CHARM_G_BOX); - Id: 101122 AegisName: SS_Charm_L_Box - Name: SS Charm L Box + Name: Haze of North Wind Box Type: Usable Weight: 250 Flags: Container: true Script: | - getitem 1000569,500; + getgroupitem(IG_SS_CHARM_L_BOX); + - Id: 101123 + AegisName: RO_Live_Shop_Box + Name: RO Live Shop Box + Type: Usable + Weight: 10 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_RO_LIVE_SHOP_BOX); + - Id: 101124 + AegisName: RO_Live_Shop_Ex_Box + Name: RO Live Shop Luxury Box + Type: Usable + Weight: 10 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_RO_LIVE_SHOP_EX_BOX); - Id: 101126 AegisName: DF_Halloween_Candy Name: "[Scroll] Halloween Candy" @@ -64895,6 +65708,100 @@ Body: Weight: 10 Script: | percentheal 30,30; + - Id: 101128 + AegisName: Season_Evt_Reward_11 + Name: Royal Reward Box + Type: Usable + Flags: + Container: true + Script: | + getgroupitem(IG_SEASON_EVT_REWARD_11); + - Id: 101129 + AegisName: Payment_Costume_Box1 + Name: Random Costume Box + Type: Usable + Weight: 10 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_PAYMENT_COSTUME_BOX1); + - Id: 101130 + AegisName: Payment_Costume_Box2 + Name: Confirmed Costume Box + Type: Usable + Weight: 10 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_PAYMENT_COSTUME_BOX2); + - Id: 101139 + AegisName: E_Boarding_Halter_Box + Name: Riding Halter Box + Type: Cash + Weight: 10 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_E_BOARDING_HALTER_BOX); + - Id: 101148 + AegisName: Security_Campaign_Box + Name: "[Security Campaign Reward Box]" + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_SECURITY_CAMPAIGN_BOX); + - Id: 101159 + AegisName: C_Braid_Half_Up_Box + Name: Costume Pigtails Half Up Box + Type: Usable + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_C_BRAID_HALF_UP_BOX); + - Id: 101161 + AegisName: Season_Evt_Reward_12 + Name: Snowflake Reward Box + Type: Usable + Flags: + Container: true + Script: | + getgroupitem(IG_SEASON_EVT_REWARD_12); - Id: 101162 AegisName: Ep19_Rgan_Scroll Name: Transformation Scroll (Rgan) @@ -64911,6 +65818,83 @@ Body: Script: | transform 21530,1200000; /* Confirm time */ bonus_script " bonus2 bAddItemHealRate,1100006,100; ",120,1,1; + - Id: 101166 + AegisName: Kr_B_Special05 + Name: G-Star RO Shop Box + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_KR_B_SPECIAL05); + - Id: 101167 + AegisName: Kr_B_Special06 + Name: 2021 G-Star Commemorative Box + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_KR_B_SPECIAL06); + - Id: 101168 + AegisName: Kr_B_Special07 + Name: "[NotForSale] Special Potion" + Type: Usable + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 101169 + AegisName: Kr_B_Special09 + Name: Exhibition Hall Movement Scroll + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_KR_B_SPECIAL09); + - Id: 101170 + AegisName: Kr_B_Special08 + Name: 2021 Quiz Reward Box + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_KR_B_SPECIAL08); - Id: 101177 AegisName: FullPenest_Shadow_Up Name: Full Temperament Shadow Spellbook @@ -64967,7 +65951,10 @@ Body: laphine_synthesis(); - Id: 101183 AegisName: Ice_F_Stone_Box - Name: Ice Magic Stone Box + Name: Snow Flower Manastone Extractor + Type: Usable + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -64978,7 +65965,7 @@ Body: NoMail: true NoAuction: true Script: | - /* Missing description */ + getgroupitem(IG_ICE_F_STONE_BOX); - Id: 101184 AegisName: Ice_F_Stone_Box2 Name: Ice Magic Stone Box 2 @@ -65064,6 +66051,28 @@ Body: Weight: 10 Script: | item_reform(); + - Id: 101194 + AegisName: Hero_Token_Box + Name: Heroic Token Egg + Type: Usable + Weight: 10 + Flags: + BuyingStore: true + Container: true + Script: | + getgroupitem(IG_HERO_TOKEN_BOX); + - Id: 101200 + AegisName: Motp_Potion + Name: "[Security Campaign] Special Energy Drink" + Type: Usable + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 101217 AegisName: Snow_F_Enchant2 Name: Snowflower Armor Enchant (Garment) @@ -65120,6 +66129,71 @@ Body: NoAuction: true Script: | /* Missing description */ + - Id: 101234 + AegisName: Booster_Pack_120 + Name: Booster Pack(120) # !todo check english name + Type: Usable + EquipLevelMin: 120 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_BOOSTER_PACK_120); + - Id: 101236 + AegisName: Booster_Pack_150 + Name: Booster Pack(150) # !todo check english name + Type: Usable + EquipLevelMin: 150 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_BOOSTER_PACK_150); + - Id: 101238 + AegisName: E_EXP_Drop_Up_7days + Name: "[NotForSale] Kafra Buff(7 Days)" + Type: Usable + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 101240 + AegisName: Season_Evt_Reward_1 + Name: January Event's Reward Box + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_SEASON_EVT_REWARD_1); - Id: 101243 AegisName: Shadow_Changer_NPC Name: Shadow Changer @@ -65189,6 +66263,38 @@ Body: BuyingStore: true Script: | laphine_upgrade(); + - Id: 101268 + AegisName: 2021_Winter_Event_Box1 + Name: Winter Event Costume Basket + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_2021_WINTER_EVENT_BOX1); + - Id: 101269 + AegisName: 2021_Winter_Event_Box2 + Name: Winter Event Costume Box + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_2021_WINTER_EVENT_BOX2); - Id: 101271 AegisName: Enchant_Stone_Box26 Name: Costume Enchant Stone Box 26 @@ -65532,6 +66638,15 @@ Body: percentheal 10,0; skilleffect "AL_INCAGI",0; sc_start SC_INCREASEAGI,60000,3; + - Id: 101399 + AegisName: Enchant_Ticket_3 + Name: Enchantment Ticket Envelope + Type: Usable + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_ENCHANT_TICKET_3); - Id: 101416 AegisName: aegis_101416 Name: Costume Enchant Stone Box 27 @@ -65643,6 +66758,32 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + - Id: 101460 + AegisName: P_Booster230_Gift + Name: Premium Booster Gift Box # !todo check english name + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_P_BOOSTER230_GIFT); + - Id: 101461 + AegisName: Fan_Greed_1Hour_Box + Name: Fantasy Series Greed Scroll Box + Type: Cash + Weight: 10 + Flags: + BuyingStore: true + Container: true + Script: | + getgroupitem(IG_FAN_GREED_1HOUR_BOX); - Id: 101463 AegisName: HD_Elunium_10Box_MSP Name: (Limited) HD Elunium 10 Box @@ -65674,19 +66815,62 @@ Body: getitem 6240,10; getitembound 23919,11,Bound_Account; - Id: 101470 - AegisName: aegis_101470 + AegisName: Minus_Status_Box_ Name: Stats Soul Potion Selection Box Type: DelayConsume Flags: BuyingStore: true - Id: 101471 - AegisName: aegis_101471 + AegisName: Alchemist_Box_ Name: Alchemist Selection Box Type: DelayConsume Buy: 20 Weight: 10 Flags: BuyingStore: true + - Id: 101474 + AegisName: Booster_B_M_1 + Name: Booster Combat Manual # !todo check english name + Type: Usable + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 101475 + AegisName: Booster_B_M_2 + Name: Booster Advanced Combat Manual # !todo check english name + Type: Usable + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 101476 + AegisName: Booster230_Gift + Name: Booster Gift Box # !todo check english name + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_BOOSTER230_GIFT); - Id: 101482 AegisName: Freedom_Stick_Cube Name: Freedom Stick Remodeling Cube @@ -65701,6 +66885,258 @@ Body: Weight: 10 Script: | laphine_synthesis(); + - Id: 101490 + AegisName: Booster_Pack_10 + Name: Booster Pack(10) # !todo check english name + Type: Usable + EquipLevelMin: 10 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_BOOSTER_PACK_10); + - Id: 101491 + AegisName: Booster_Pack_20 + Name: Booster Pack(20) # !todo check english name + Type: Usable + EquipLevelMin: 20 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_BOOSTER_PACK_20); + - Id: 101492 + AegisName: Booster_Pack_40 + Name: Booster Pack(40) # !todo check english name + Type: Usable + EquipLevelMin: 40 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_BOOSTER_PACK_40); + - Id: 101493 + AegisName: Booster_Pack_50 + Name: Booster Pack(50) # !todo check english name + Type: Usable + EquipLevelMin: 50 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_BOOSTER_PACK_50); + - Id: 101494 + AegisName: Booster_Pack_70 + Name: Booster Pack(70) # !todo check english name + Type: Usable + EquipLevelMin: 70 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_BOOSTER_PACK_70); + - Id: 101495 + AegisName: Booster_Pack_80 + Name: Booster Pack (80) # !todo check english name + Type: Usable + EquipLevelMin: 80 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_BOOSTER_PACK_80); + - Id: 101496 + AegisName: Booster_Pack_110 + Name: Booster Pack(110) # !todo check english name + Type: Usable + EquipLevelMin: 110 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_BOOSTER_PACK_110); + - Id: 101497 + AegisName: Booster_Pack_140 + Name: Booster Pack(140) # !todo check english name + Type: Usable + EquipLevelMin: 140 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_BOOSTER_PACK_140); + - Id: 101498 + AegisName: Booster_Pack_170 + Name: Booster Pack(170) # !todo check english name + Type: Usable + EquipLevelMin: 170 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_BOOSTER_PACK_170); + - Id: 101499 + AegisName: Booster_Pack_180 + Name: Booster Pack (180) # !todo check english name + Type: Usable + EquipLevelMin: 180 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_BOOSTER_PACK_180); + - Id: 101500 + AegisName: Booster_Pack_210 + Name: Booster Pack(210) # !todo check english name + Type: Usable + EquipLevelMin: 210 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_BOOSTER_PACK_210); + - Id: 101501 + AegisName: Booster_Pack_220 + Name: Booster Pack(220) # !todo check english name + Type: Usable + EquipLevelMin: 220 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_BOOSTER_PACK_220); + - Id: 101502 + AegisName: Booster_Pack_240 + Name: Booster Pack(240) # !todo check english name + Type: Usable + EquipLevelMin: 240 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_BOOSTER_PACK_240); + - Id: 101503 + AegisName: Booster_Pack_250 + Name: Booster Pack (250) # !todo check english name + Type: Usable + EquipLevelMin: 250 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_BOOSTER_PACK_250); - Id: 101512 AegisName: aegis_101512 Name: Ancient Hero Box 1 # !todo check english name @@ -65726,15 +67162,32 @@ Body: Script: | sc_start SC_FOOD_INT_CASH,1800000,15; sc_start SC_MATKPOTION,600000,rand(11,111); + - Id: 101538 + AegisName: Booster_Call_Package + Name: Booster box # !todo check english name + Type: Usable + EquipLevelMax: 10 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_BOOSTER_CALL_PACKAGE); - Id: 101542 - AegisName: aegis_101542 + AegisName: FullPene_Select_Box Name: Full Penetration Shadow Selection Box Type: DelayConsume Weight: 10 Flags: BuyingStore: true - Id: 101543 - AegisName: aegis_101543 + AegisName: FullPene_Earring_Box Name: Full Penetration Shadow Earring Box Type: Usable Weight: 10 @@ -65743,7 +67196,7 @@ Body: Script: | getgroupitem(IG_S_FULLPENE_EARRING,true); - Id: 101544 - AegisName: aegis_101544 + AegisName: FullPene_Pendant_Box Name: Full Penetration Shadow Pendant Box Type: Usable Weight: 10 @@ -65752,7 +67205,7 @@ Body: Script: | getgroupitem(IG_S_FULLPENE_PENDANT,true); - Id: 101545 - AegisName: aegis_101545 + AegisName: FullPene_Armor_Box Name: Full Penetration Shadow Armor Box Type: Usable Weight: 10 @@ -65761,7 +67214,7 @@ Body: Script: | getgroupitem(IG_S_FULLPENE_ARMOR,true); - Id: 101546 - AegisName: aegis_101546 + AegisName: FullPene_Shoes_Box Name: Full Penetration Shadow Shoes Box Type: Usable Weight: 10 @@ -65770,14 +67223,14 @@ Body: Script: | getgroupitem(IG_S_FULLPENE_SHOES,true); - Id: 101547 - AegisName: aegis_101547 + AegisName: FullTemp_Select_Box Name: Full Tempest Shadow Selection Box Type: DelayConsume Weight: 10 Flags: BuyingStore: true - Id: 101548 - AegisName: aegis_101548 + AegisName: FullTemp_Earring_Box Name: Full Tempest Shadow Earring Box Type: Usable Weight: 10 @@ -65786,7 +67239,7 @@ Body: Script: | getgroupitem(IG_S_FULLTEMP_EARRING,true); - Id: 101549 - AegisName: aegis_101549 + AegisName: FullTemp_Pendant_Box Name: Full Tempest Shadow Pendant Box Type: Usable Weight: 10 @@ -65795,7 +67248,7 @@ Body: Script: | getgroupitem(IG_S_FULLTEMP_PENDANT,true); - Id: 101550 - AegisName: aegis_101550 + AegisName: FullTemp_Armor_Box Name: Full Tempest Shadow Armor Box Type: Usable Weight: 10 @@ -65804,7 +67257,7 @@ Body: Script: | getgroupitem(IG_S_FULLTEMP_ARMOR,true); - Id: 101551 - AegisName: aegis_101551 + AegisName: FullTemp_Shoes_Box Name: Full Tempest Shadow Shoes Box Type: Usable Weight: 10 @@ -65813,14 +67266,14 @@ Body: Script: | getgroupitem(IG_S_FULLTEMP_SHOES,true); - Id: 101552 - AegisName: aegis_101552 + AegisName: Durable_Select_Box Name: Durable Shadow Selection Box Type: DelayConsume Weight: 10 Flags: BuyingStore: true - Id: 101553 - AegisName: aegis_101553 + AegisName: Durable_Weapon_Box Name: Durable Shadow Weapon Box Type: Usable Weight: 10 @@ -65829,7 +67282,7 @@ Body: Script: | getgroupitem(IG_S_DURABLE_WEAPON,true); - Id: 101554 - AegisName: aegis_101554 + AegisName: Durable_Shield_Box Name: Durable Shadow Shield Box Type: Usable Weight: 10 @@ -65838,14 +67291,14 @@ Body: Script: | getgroupitem(IG_S_DURABLE_SHIELD,true); - Id: 101555 - AegisName: aegis_101555 + AegisName: Clever_Select_Box Name: Clever Shadow Selection Box Type: DelayConsume Weight: 10 Flags: BuyingStore: true - Id: 101556 - AegisName: aegis_101556 + AegisName: Clever_Weapon_Box Name: Clever Shadow Weapon Box Type: Usable Weight: 10 @@ -65854,7 +67307,7 @@ Body: Script: | getgroupitem(IG_S_CLEVER_WEAPON,true); - Id: 101557 - AegisName: aegis_101557 + AegisName: Clever_Shield_Box Name: Clever Shadow Shield Box Type: Usable Weight: 10 @@ -65863,7 +67316,7 @@ Body: Script: | getgroupitem(IG_S_CLEVER_SHIELD,true); - Id: 101563 - AegisName: aegis_101563 + AegisName: OS_Helm_Box_ Name: Helmet Selection Box for OS Weapons Type: DelayConsume Weight: 10 @@ -65879,12 +67332,170 @@ Body: Script: | laphine_upgrade(); - Id: 101565 - AegisName: aegis_101565 + AegisName: Shadow_R_M_Box_ Name: Shadow Spellbook Selection Box Type: DelayConsume Weight: 10 Flags: BuyingStore: true + - Id: 101567 + AegisName: KAKAO_Plus_Box + Name: Gravity Fluffy Gift Box + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_KAKAO_PLUS_BOX,true); + - Id: 101589 + AegisName: E_Boarding_Halter_Box2 + Name: "[Not for Sale] Boarding Rein Box" # !todo check english name + Type: Cash + Weight: 10 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_E_BOARDING_HALTER_BOX2); + - Id: 101599 + AegisName: Evt_Makingmaterials_Box + Name: "[Event] Equipment Crafting Material Box" # !todo check english name + Type: Usable + Weight: 10 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_EVT_MAKINGMATERIALS_BOX); + - Id: 101600 + AegisName: Evt_20th_Whitegold + Name: Merit Box (Platinum Class) # !todo check english name + Type: Usable + Weight: 100 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_EVT_20TH_WHITEGOLD); + - Id: 101601 + AegisName: Evt_20th_Gold + Name: Merit Box (Gold Class) # !todo check english name + Type: Usable + Weight: 100 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_EVT_20TH_GOLD); + - Id: 101602 + AegisName: Evt_20th_Silver + Name: Merit Box (Silver grade) # !todo check english name + Type: Usable + Weight: 100 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_EVT_20TH_SILVER); + - Id: 101603 + AegisName: Evt_20th_Bronze + Name: Merit Box (Equivalent level) # !todo check english name + Type: Usable + Weight: 100 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_EVT_20TH_BRONZE); + - Id: 101604 + AegisName: Evt_20th_Return + Name: Commander's Return # !todo check english name + Type: Usable + Weight: 100 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_EVT_20TH_RETURN); + - Id: 101605 + AegisName: Evt_20th_Return2 + Name: Commander's Advanced Answers # !todo check english name + Type: Usable + Weight: 100 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_EVT_20TH_RETURN2); - Id: 101637 AegisName: EP19_DGW_Refine Name: Dim Glacier Reinforcement Device # !todo check english name @@ -65919,15 +67530,25 @@ Body: BuyingStore: true Script: | laphine_upgrade(); + - Id: 101653 + AegisName: Viva_Adul_Hat_Box_11 + Name: +11 Helm of Face Chest # !todo check english name + Type: Usable + Weight: 10 + Flags: + BuyingStore: true + Container: true + Script: | + getgroupitem(IG_VIVA_ADUL_HAT_BOX_11,true); - Id: 101654 - AegisName: aegis_101654 + AegisName: AllMighty_Select_Box Name: Almighty Shadow Selection Box # !todo check english name Type: DelayConsume Weight: 10 Flags: BuyingStore: true - Id: 101655 - AegisName: aegis_101655 + AegisName: AllMighty_Earring_Box Name: Almighty Shadow Earring Box # !todo check english name Type: Usable Weight: 10 @@ -65936,7 +67557,7 @@ Body: Script: | getgroupitem(IG_S_ALLMIGHTY_EARRING,true); - Id: 101656 - AegisName: aegis_101656 + AegisName: AllMighty_Pendant_Box Name: Almighty Shadow Pendant Box # !todo check english name Type: Usable Weight: 10 @@ -65945,14 +67566,14 @@ Body: Script: | getgroupitem(IG_S_ALLMIGHTY_PENDANT,true); - Id: 101657 - AegisName: aegis_101657 + AegisName: TrueGem_Select_Box Name: True Gemstone Shadow Selection Box # !todo check english name Type: DelayConsume Weight: 10 Flags: BuyingStore: true - Id: 101658 - AegisName: aegis_101658 + AegisName: TrueGem_Earring_Box Name: True Gemstone Shadow Earring Box # !todo check english name Type: Usable Weight: 10 @@ -65961,7 +67582,7 @@ Body: Script: | getgroupitem(IG_S_TRUEGEM_EARRING,true); - Id: 101659 - AegisName: aegis_101659 + AegisName: TrueGem_Pendant_Box Name: True Gemstone Shadow Pendant Box # !todo check english name Type: Usable Weight: 10 @@ -65970,7 +67591,7 @@ Body: Script: | getgroupitem(IG_S_TRUEGEM_PENDANT,true); - Id: 101660 - AegisName: aegis_101660 + AegisName: TrueGem_Shoes_Box Name: True Gemstone Shadow Shoes Box # !todo check english name Type: Usable Weight: 10 @@ -65979,7 +67600,7 @@ Body: Script: | getgroupitem(IG_S_TRUEGEM_SHOES,true); - Id: 101661 - AegisName: aegis_101661 + AegisName: TrueGem_Armor_Box Name: True Gemstone Shadow Armor Box # !todo check english name Type: Usable Weight: 10 @@ -65988,14 +67609,14 @@ Body: Script: | getgroupitem(IG_S_TRUEGEM_ARMOR,true); - Id: 101662 - AegisName: aegis_101662 + AegisName: PerfectSize_Select_Box Name: Perfect Size Shadow Selection Box # !todo check english name Type: DelayConsume Weight: 10 Flags: BuyingStore: true - Id: 101663 - AegisName: aegis_101663 + AegisName: PerfectSize_Weapon_Box Name: Perfect Size Shadow Weapon Box # !todo check english name Type: Usable Weight: 10 @@ -66004,7 +67625,7 @@ Body: Script: | getgroupitem(IG_S_PERFECTSIZE_WEAPON,true); - Id: 101664 - AegisName: aegis_101664 + AegisName: PerfectSize_Armor_Box Name: Perfect Size Shadow Armor Box # !todo check english name Type: Usable Weight: 10 @@ -66021,6 +67642,16 @@ Body: BuyingStore: true Script: | laphine_synthesis(); + - Id: 101666 + AegisName: Shadow_Up_Box + Name: Special Shadow Spellbook Box # !todo check english name + Type: Usable + Weight: 10 + Flags: + BuyingStore: true + Container: true + Script: | + getgroupitem(IG_SHADOW_UP_BOX); - Id: 101675 AegisName: aegis_101675 Name: Costume Enchant Stone Box 28 @@ -66031,7 +67662,7 @@ Body: Script: | getgroupitem(IG_Enchant_Stone_Box28); - Id: 101717 - AegisName: aegis_101717 + AegisName: Mammoth_Earring_Box Name: Maximum Mammoth Shadow Earring Box # !todo check english name Type: Usable Weight: 10 @@ -66040,7 +67671,7 @@ Body: Script: | getgroupitem(IG_S_M_MAMMOTH_EARRING,true); - Id: 101718 - AegisName: aegis_101718 + AegisName: Mammoth_Pendant_Box Name: Maximum Mammoth Shadow Pendant Box # !todo check english name Type: Usable Weight: 10 @@ -66049,7 +67680,7 @@ Body: Script: | getgroupitem(IG_S_M_MAMMOTH_PENDANT,true); - Id: 101719 - AegisName: aegis_101719 + AegisName: Mammoth_Armor_Box Name: Maximum Mammoth Shadow Armor Box # !todo check english name Type: Usable Weight: 10 @@ -66058,7 +67689,7 @@ Body: Script: | getgroupitem(IG_S_M_MAMMOTH_ARMOR,true); - Id: 101720 - AegisName: aegis_101720 + AegisName: Mammoth_Shoes_Box Name: Maximum Mammoth Shadow Shoes Box # !todo check english name Type: Usable Weight: 10 @@ -66067,7 +67698,7 @@ Body: Script: | getgroupitem(IG_S_M_MAMMOTH_SHOES,true); - Id: 101721 - AegisName: aegis_101721 + AegisName: SpellCaster_Earring_Box Name: Spell Caster Shadow Earring Box # !todo check english name Type: Usable Weight: 10 @@ -66076,7 +67707,7 @@ Body: Script: | getgroupitem(IG_S_SPELLCASTER_EARRING,true); - Id: 101722 - AegisName: aegis_101722 + AegisName: SpellCaster_Pendant_Box Name: Spell Caster Shadow Pendant Box # !todo check english name Type: Usable Weight: 10 @@ -66085,7 +67716,7 @@ Body: Script: | getgroupitem(IG_S_SPELLCASTER_PENDANT,true); - Id: 101723 - AegisName: aegis_101723 + AegisName: SpellCaster_Armor_Box Name: Spell Caster Shadow Armor Box # !todo check english name Type: Usable Weight: 10 @@ -66094,7 +67725,7 @@ Body: Script: | getgroupitem(IG_S_SPELLCASTER_ARMOR,true); - Id: 101724 - AegisName: aegis_101724 + AegisName: SpellCaster_Shoes_Box Name: Spell Caster Shadow Shoes Box # !todo check english name Type: Usable Weight: 10 @@ -66103,7 +67734,7 @@ Body: Script: | getgroupitem(IG_S_SPELLCASTER_SHOES,true); - Id: 101725 - AegisName: aegis_101725 + AegisName: Absorb_Weapon_Box Name: Absorb Shadow Weapon Box # !todo check english name Type: Usable Weight: 10 @@ -66112,7 +67743,7 @@ Body: Script: | getgroupitem(IG_S_ABSORB_WEAPON,true); - Id: 101726 - AegisName: aegis_101726 + AegisName: Absorb_Shield_Box Name: Absorb Shadow Shield Box # !todo check english name Type: Usable Weight: 10 @@ -66121,32 +67752,138 @@ Body: Script: | getgroupitem(IG_S_ABSORB_SHIELD,true); - Id: 101727 - AegisName: aegis_101727 + AegisName: Mammoth_Select_Box Name: Maximum Mammoth Shadow Selection Box # !todo check english name Type: DelayConsume Weight: 10 Flags: BuyingStore: true - Id: 101728 - AegisName: aegis_101728 + AegisName: SpellCaster_Select_Box Name: Spell Caster Shadow Selection Box # !todo check english name Type: DelayConsume Weight: 10 Flags: BuyingStore: true - Id: 101729 - AegisName: aegis_101729 + AegisName: Absorb_Select_Box Name: Absorb Shadow Selection Box # !todo check english name Type: DelayConsume Weight: 10 Flags: BuyingStore: true + - Id: 101744 + AegisName: E_Cloth_Dye_Box + Name: "[Non-sale] Clothes dyeing Coupon Box" # !todo check english name + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_E_CLOTH_DYE_BOX); - Id: 101745 AegisName: Dimmen_A_Reform Name: Unsealing the dimension # !todo check english name Type: DelayConsume Script: | item_reform(); + - Id: 101750 + AegisName: Herosria_Gift + Name: Heroria's Gift # !todo check english name + Type: Usable + Weight: 10 + Flags: + BuyingStore: true + Container: true + Script: | + getgroupitem(IG_HEROSRIA_GIFT,true); + - Id: 101752 + AegisName: RO_Festival_Box + Name: Ragnarok Festival Box # !todo check english name + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_RO_FESTIVAL_BOX); + - Id: 101759 + AegisName: Plain_Rune_Box5 + Name: Plain Rune 5ea Box + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_PLAIN_RUNE_BOX5); + - Id: 101760 + AegisName: Flame_Rune_Box5 + Name: Flame Rune 5ea Box + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_FLAME_RUNE_BOX5); + - Id: 101761 + AegisName: Ice_Rune_Box5 + Name: Ice Rune 5ea Box + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_ICE_RUNE_BOX5); + - Id: 101762 + AegisName: Death_Rune_Box5 + Name: Death Rune 5ea Box + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_DEATH_RUNE_BOX5); - Id: 101769 AegisName: Barmund_Plain_Reform Name: Grassland Rune Upgrade # !todo check english name @@ -66207,6 +67944,262 @@ Body: NoAuction: true Script: | item_reform(); + - Id: 101774 + AegisName: Service1_M_01_Box + Name: Edward Zonda Owner's Box (1 Day) # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_SERVICE1_M_01_BOX); + - Id: 101775 + AegisName: Service1_M_05_Box + Name: Edward Zonda Owner's Box (5 Days) # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_SERVICE1_M_05_BOX); + - Id: 101776 + AegisName: Service1_M_07_Box + Name: Edward Zonda Your Own Box (7 Days) # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_SERVICE1_M_07_BOX); + - Id: 101777 + AegisName: Service1_M_10_Box + Name: Edward Zonda Owner's Box (10 Days) # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_SERVICE1_M_10_BOX); + - Id: 101778 + AegisName: Service1P_M_01_Box + Name: Edward Zonda Ownerra EX Box (1 Day) # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_SERVICE1P_M_01_BOX); + - Id: 101779 + AegisName: Service1P_M_05_Box + Name: Edward Zonda Owra EX Box (5 days) # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_SERVICE1P_M_05_BOX); + - Id: 101780 + AegisName: Service1P_M_07_Box + Name: Edward Zonda Ownerra EX Box (7 Days) # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_SERVICE1P_M_07_BOX); + - Id: 101781 + AegisName: Service1P_M_10_Box + Name: Edward Zonda Ownerra EX Box (10 Days) # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_SERVICE1P_M_10_BOX); + - Id: 101782 + AegisName: Service1_F_01_Box + Name: Elysee Zonda Come on Box (1 day) # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_SERVICE1_F_01_BOX); + - Id: 101783 + AegisName: Service1_F_05_Box + Name: Elise Zonda Come Box (5 Days) # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_SERVICE1_F_05_BOX); + - Id: 101784 + AegisName: Service1_F_07_Box + Name: Elysee Zonda Come Box (7 Days) # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_SERVICE1_F_07_BOX); + - Id: 101785 + AegisName: Service1_F_10_Box + Name: Elysee Zonda Come Box (10 Days) # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_SERVICE1_F_10_BOX); + - Id: 101786 + AegisName: Service1P_F_01_Box + Name: Elysee Zonda Own EX Box (1 day) # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_SERVICE1P_F_01_BOX); + - Id: 101787 + AegisName: Service1P_F_05_Box + Name: Elysee Zonda Own EX Box (5 days) # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_SERVICE1P_F_05_BOX); + - Id: 101788 + AegisName: Service1P_F_07_Box + Name: Elysee Zonda Own EX Box (7 days) # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_SERVICE1P_F_07_BOX); + - Id: 101789 + AegisName: Service1P_F_10_Box + Name: Elysee Zonda Own EX Box (10 days) # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_SERVICE1P_F_10_BOX); - Id: 101792 AegisName: SubjectCape_Refine_Cube Name: Subject Manteau 12 Refine Cube @@ -66223,6 +68216,42 @@ Body: Weight: 10 Flags: BuyingStore: true + - Id: 101802 + AegisName: R_Bearers_Earring_Box + Name: Rod Bearers Earring Shadow Box # !todo check english name + Type: Usable + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_R_BEARERS_EARRING_BOX,true); + - Id: 101803 + AegisName: R_Bearers_Pendant_Box + Name: Rod Bearers Pendant Shadow Box # !todo check english name + Type: Usable + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_R_BEARERS_PENDANT_BOX,true); + - Id: 101804 + AegisName: R_Bearers_Armor_Box + Name: Lord Bearers Armor Shadow Box # !todo check english name + Type: Usable + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_R_BEARERS_ARMOR_BOX,true); + - Id: 101805 + AegisName: R_Bearers_Shoes_Box + Name: Road Bearers Shoes Shadow Box # !todo check english name + Type: Usable + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_R_BEARERS_SHOES_BOX,true); - Id: 101806 AegisName: Hasty_Select_Box Name: Hasty Shadow Selection Box # !todo check english name @@ -66230,12 +68259,72 @@ Body: Weight: 10 Flags: BuyingStore: true + - Id: 101807 + AegisName: Hasty_Weapon_Box + Name: Hasty Weapon Shadow Box # !todo check english name + Type: Usable + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_HASTY_WEAPON_BOX,true); + - Id: 101808 + AegisName: Hasty_Shield_Box + Name: Hasty Shield Shadow Box # !todo check english name + Type: Usable + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_HASTY_SHIELD_BOX,true); + - Id: 101809 + AegisName: S_Reload_Shield_Box + Name: Separate Reload Shield Shadow Box # !todo check english name + Type: Usable + Weight: 10 + Flags: + BuyingStore: true + Container: true + Script: | + getgroupitem(IG_S_RELOAD_SHIELD_BOX,true); - Id: 101816 AegisName: Dimmen_A_Refine Name: Dimension Enhancer # !todo check english name Type: DelayConsume Script: | item_reform(); + - Id: 101839 + AegisName: RO_Arena_Box + Name: Ragnarok Arena Pre-Order Reward Box # !todo check english name + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_RO_ARENA_BOX,true); + - Id: 101840 + AegisName: RO_Arena_Box2 + Name: Ragnarok Arena Level 7 Achievement Reward Box # !todo check english name + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_RO_ARENA_BOX2); - Id: 101856 AegisName: MAutoSpell_Select_Box Name: Major Auto Spell Shadow Selection Box # !todo check english name @@ -66243,6 +68332,42 @@ Body: Weight: 10 Flags: BuyingStore: true + - Id: 101858 + AegisName: MAutoSpell_Earring_Box + Name: Major Auto Spell Earring Shadow Box # !todo check english name + Type: Usable + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_MAUTOSPELL_EARRING_BOX,true); + - Id: 101859 + AegisName: MAutoSpell_Pendant_Box + Name: Major Auto Spell Pendant Shadow Box # !todo check english name + Type: Usable + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_MAUTOSPELL_PENDANT_BOX,true); + - Id: 101860 + AegisName: MAutoSpell_Armor_Box + Name: Major Auto Spell Armor Shadow Box # !todo check english name + Type: Usable + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_MAUTOSPELL_ARMOR_BOX,true); + - Id: 101861 + AegisName: MAutoSpell_Shoes_Box + Name: Major Auto Spell Shoes Shadow Box # !todo check english name + Type: Usable + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_MAUTOSPELL_SHOES_BOX,true); - Id: 101862 AegisName: Infinity_Select_Box Name: Infinity Shadow Selection Box # !todo check english name @@ -66250,6 +68375,34 @@ Body: Weight: 10 Flags: BuyingStore: true + - Id: 101863 + AegisName: Infinity_Weapon_Box + Name: Infinity Weapon Shadow Box # !todo check english name + Type: Usable + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_INFINITY_WEAPON_BOX,true); + - Id: 101864 + AegisName: Infinity_Shield_Box + Name: Infinity Shield Shadow Box # !todo check english name + Type: Usable + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_INFINITY_SHIELD_BOX,true); + - Id: 101869 + AegisName: Luxurious_Blue_Box + Name: Luxury blue box # !todo check english name + Type: Usable + Weight: 50 + Flags: + BuyingStore: true + Container: true + Script: | + getgroupitem(IG_LUXURIOUS_BLUE_BOX); - Id: 101876 AegisName: aegis_101876 Name: Costume Enchant Stone Box 29 @@ -66259,6 +68412,71 @@ Body: Container: true Script: | getgroupitem(IG_Enchant_Stone_Box29); + - Id: 101889 + AegisName: Vr_Book_Event + Name: Fantasy Collection Collection Box # !todo check english name + Type: Usable + Weight: 10 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_VR_BOOK_EVENT); + - Id: 101912 + AegisName: Temple_Rune_Box5 + Name: Holy Rune Box 5 # !todo check english name + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_TEMPLE_RUNE_BOX5); + - Id: 101913 + AegisName: Venom_Rune_Box5 + Name: Poison Rune x5 Box # !todo check english name + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_VENOM_RUNE_BOX5); + - Id: 101914 + AegisName: Soul_Rune_Box5 + Name: Box of 5 Soul Runes # !todo check english name + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_SOUL_RUNE_BOX5); - Id: 101919 AegisName: EXP_Select_Box Name: Experience Shadow Selection Box # !todo check english name @@ -66266,6 +68484,24 @@ Body: Weight: 10 Flags: BuyingStore: true + - Id: 101920 + AegisName: EXP_Weapon_Box + Name: Experience Weapon Shadow Box # !todo check english name + Type: Usable + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_EXP_WEAPON_BOX,true); + - Id: 101921 + AegisName: EXP_Shield_Box + Name: Experience Shield Shadow Box # !todo check english name + Type: Usable + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_EXP_SHIELD_BOX,true); - Id: 101922 AegisName: M_Blitz_Select_Box Name: Mega Blitz Shadow Selection Box # !todo check english name @@ -66273,6 +68509,33 @@ Body: Weight: 10 Flags: BuyingStore: true + - Id: 101923 + AegisName: M_Blitz_Weapon_Box + Name: Mega Blitz Weapon Shadow Box # !todo check english name + Type: Usable + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_M_BLITZ_WEAPON_BOX,true); + - Id: 101924 + AegisName: M_Blitz_Shield_Box + Name: Mega Blitz Shield Shadow Box # !todo check english name + Type: Usable + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_M_BLITZ_SHIELD_BOX,true); + - Id: 101925 + AegisName: Cvt_Wing_Box + Name: Convertible Wing Box # !todo check english name + Type: Usable + Flags: + BuyingStore: true + Container: true + Script: | + getgroupitem(IG_CVT_WING_BOX,true); - Id: 101933 AegisName: Barmund_Soul_Reform Name: Soul Rune Upgrade # !todo check english name @@ -66382,8 +68645,10 @@ Body: sc_start SC_ITEMBOOST,1800000,100; - Id: 101948 AegisName: A_Bubble_Gum_Box10 - Name: "[Achievement] Box of 10 bubble gum" # !todo check english name - Type: Cash + Name: "[Achievement] 10 boxes of bubble gum" # !todo check english name + Type: Usable + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -66393,7 +68658,7 @@ Body: NoMail: true NoAuction: true Script: | - getitem 101947,10; + getgroupitem(IG_A_BUBBLE_GUM_BOX10); - Id: 101954 AegisName: Intake_Hair_Box Name: Intake Hair Gift Box @@ -66403,6 +68668,15 @@ Body: Container: true Script: | getgroupitem(IG_Intake_Hair_Box); + - Id: 102016 + AegisName: F_Ein_1HDAGGER_Box + Name: Metal Detector Box # !todo check english name + Type: Usable + Weight: 50 + Flags: + Container: true + Script: | + getgroupitem(IG_F_EIN_1HDAGGER_BOX); - Id: 102017 AegisName: Mocadas_Refine_Box Name: Smelting Mocadas Equipment 9~10 # !todo check english name @@ -66696,6 +68970,72 @@ Body: Weight: 1250 Script: | laphine_synthesis(); + - Id: 102067 + AegisName: Pene_Set_Cube + Name: Refined Penetration Shadow Cube # !todo check english name + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_PENE_SET_CUBE,true); + - Id: 102068 + AegisName: S_Bearers_Cube + Name: Bearers Shadow Cube # !todo check english name + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_S_BEARERS_CUBE); + - Id: 102069 + AegisName: Temp_Set_Cube + Name: Refined Tempest Shadow Cube # !todo check english name + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_TEMP_SET_CUBE,true); + - Id: 102070 + AegisName: Justice_Weapon_Box + Name: Good Weapon Box # !todo check english name + Type: Usable + Flags: + BuyingStore: true + Container: true + Script: | + getgroupitem(IG_JUSTICE_WEAPON_BOX,true); + - Id: 102071 + AegisName: Injustice_Weapon_Box + Name: Evil Weapon Box # !todo check english name + Type: Usable + Flags: + BuyingStore: true + Container: true + Script: | + getgroupitem(IG_INJUSTICE_WEAPON_BOX,true); - Id: 102072 AegisName: Justice_Weapon_Hammer Name: Good Weapon Smelting Hammer # !todo check english name @@ -66714,6 +69054,16 @@ Body: BuyingStore: true Script: | item_reform(); + - Id: 102074 + AegisName: GoodnEvil_Helm_Box + Name: Crown of Good and Evil Box # !todo check english name + Type: Usable + Weight: 10 + Flags: + BuyingStore: true + Container: true + Script: | + getgroupitem(IG_GOODNEVIL_HELM_BOX,true); - Id: 102075 AegisName: GoodnEvil_Helm_Hammer Name: Crown of Good and Evil Smelting Hammer # !todo check english name @@ -66736,6 +69086,16 @@ Body: Script: | sc_start SC_FOOD_AGI_CASH,1800000,15; sc_start SC_FLEEFOOD,600000,rand(11,33); + - Id: 102123 + AegisName: Shadow_Select_Box_Set + Name: Shadow Random Box Set # !todo check english name + Type: Usable + Weight: 10 + Flags: + BuyingStore: true + Container: true + Script: | + getgroupitem(IG_SHADOW_SELECT_BOX_SET); - Id: 102124 AegisName: F_Ein_Weapon_Hammer Name: Flush Weapon Smelting Hammer # !todo check english name @@ -66745,6 +69105,16 @@ Body: BuyingStore: true Script: | item_reform(); + - Id: 102125 + AegisName: Refine_Hammer_Box + Name: Smelting Hammer Random Set # !todo check english name + Type: Usable + Weight: 10 + Flags: + BuyingStore: true + Container: true + Script: | + getgroupitem(IG_REFINE_HAMMER_BOX); - Id: 102126 AegisName: Amp_Blueprint19 Name: Amplification Schematic (Metal Detector MK47-2) # !todo check english name @@ -66836,6 +69206,16 @@ Body: Type: DelayConsume Script: | item_reform(); + - Id: 102226 + AegisName: SLD_Boss_Card_Album + Name: Sealed Boss Card Album # !todo check english name + Type: Usable + Weight: 10 + Flags: + BuyingStore: true + Container: true + Script: | + getgroupitem(IG_SLD_BOSS_CARD_ALBUM); - Id: 102227 AegisName: Glacier_Armor_9Refine Name: Glaceon Armor 9 refine cube # !todo check english name @@ -66869,6 +69249,66 @@ Body: BuyingStore: true Script: | item_reform(); + - Id: 102246 + AegisName: VIP_Black_Card + Name: Premium Black Card # !todo check english name + Type: Usable + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 102247 + AegisName: VIP_Gift + Name: VIP Gift + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_VIP_GIFT); + - Id: 102248 + AegisName: VVIP_Gift + Name: VVIP Gift + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_VVIP_GIFT); + - Id: 102249 + AegisName: SVIP_Gift + Name: SVIP Gift + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_SVIP_GIFT); - Id: 102277 AegisName: Loki_Advice Name: Loki's Advice (Melee Physical) @@ -66909,6 +69349,22 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + - Id: 102307 + AegisName: 2023_Spring_Collection + Name: 2023 Spring Reward Costume Collection Box # !todo check english name + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_2023_SPRING_COLLECTION); - Id: 102308 AegisName: Bs_Item_M_S_61 Name: Beelzebub's Crown Recipe @@ -66949,14 +69405,30 @@ Body: Script: | getgroupitem(IG_Enchant_Stone_Box31); - Id: 102333 - AegisName: aegis_102333 - Name: 3rd/Expanded Stone III (Garment) Box + AegisName: Stone_Robe3_Box + Name: 3rd Expansion Stone III (Drapping) Box # !todo check english name Type: Usable Weight: 10 Flags: Container: true Script: | - /* TODO getgroupitem(IG_THIRD_JOB_STONE_GARMENT_BOX3); */ + getgroupitem(IG_STONE_ROBE3_BOX); + - Id: 102337 + AegisName: RO_Concert_Scroll + Name: RO Concert Costume Box # !todo check english name + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_RO_CONCERT_SCROLL); - Id: 102338 AegisName: RO_Concert_Scroll2 Name: RO Concert Costume Selection Box # !todo check english name @@ -66969,6 +69441,22 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + - Id: 102340 + AegisName: RO_Concert_Scroll_Box + Name: RO Concert Outfit Selection Box x2 # !todo check english name + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_RO_CONCERT_SCROLL_BOX); - Id: 102342 AegisName: Loki_Advice_3 Name: Loki's advice (distance physics) # !todo check english name @@ -66994,6 +69482,31 @@ Body: Weight: 10 Script: | laphine_upgrade(); + - Id: 102345 + AegisName: Fan_Upgrade_Kit_EX_10 + Name: Fan Modification Kit EX 10 sets # !todo check english name + Type: Usable + Flags: + Container: true + Script: | + getgroupitem(IG_FAN_UPGRADE_KIT_EX_10); + - Id: 102353 + AegisName: CatPaw_1Day_Box + Name: Cat Hand Ticket 1 Day Box # !todo check english name + Type: Cash + Weight: 10 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_CATPAW_1DAY_BOX); - Id: 102373 AegisName: Bar_D_A_Seal Name: Deep Runic Armor Inscription # !todo check english name @@ -67047,6 +69560,18 @@ Body: Container: true Script: | getgroupitem(IG_Ancient_Hero_Box_3); + - Id: 102419 + AegisName: Melody_Card_191 + Name: Special Melody Card # !todo check english name + Type: Usable + - Id: 102421 + AegisName: Season_Evt_Reward_8 + Name: Night Market Blue Box # !todo check english name + Type: Usable + Flags: + Container: true + Script: | + getgroupitem(IG_SEASON_EVT_REWARD_8); - Id: 102440 AegisName: R_Ep17_Box Name: Rune Tablet Engraving # !todo check english name @@ -67062,6 +69587,65 @@ Body: Container: true Script: | getgroupitem(IG_Enchant_Stone_Box32); + - Id: 102450 + AegisName: 21th_Present_Box + Name: 21st anniversary gift box # !todo check english name + Type: Usable + Weight: 10 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_21TH_PRESENT_BOX); + - Id: 102451 + AegisName: Mileage_Coupon + Name: Mileage Voucher Envelope # !todo check english name + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_MILEAGE_COUPON); + - Id: 102454 + AegisName: All_In_One_buff_B + Name: "[Not for Sale] All-in-One Buff Potion" # !todo check english name + Type: Usable + Weight: 10 + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 102455 + AegisName: All_In_One_Healing_B + Name: "[Not for Sale] All-in-One Healing Potion" # !todo check english name + Type: Usable + Weight: 10 + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 102467 AegisName: 21th_Costume_Select Name: 21st Anniversary Costume Selection Box # !todo check english name @@ -67074,6 +69658,22 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + - Id: 102468 + AegisName: 21th_Costume_Collection + Name: 21st Anniversary Costume Collection Box # !todo check english name + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_21TH_COSTUME_COLLECTION,true); - Id: 102482 AegisName: FateSin_Boots_Hammer Name: Boots of Good and Evil Smelting Hammer # !todo check english name @@ -67083,6 +69683,22 @@ Body: BuyingStore: true Script: | item_reform(); + - Id: 102485 + AegisName: S_Enchant_Essence_Box_3 + Name: Shadow Essence 3 Boxes # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_S_ENCHANT_ESSENCE_BOX_3); - Id: 102514 AegisName: Season_H_Upgrade Name: Granting the truth of the Circulation of life @@ -67098,6 +69714,327 @@ Body: NoAuction: true Script: | item_reform(); + - Id: 102540 + AegisName: M_Armor_Box + Name: M. Armor Shadow Box # !todo check english name + Type: Usable + Flags: + BuyingStore: true + Container: true + Script: | + getgroupitem(IG_M_ARMOR_BOX); + - Id: 102541 + AegisName: M_Shoes_Box + Name: M.Shoes Shadow Box # !todo check english name + Type: Usable + Flags: + BuyingStore: true + Container: true + Script: | + getgroupitem(IG_M_SHOES_BOX); + - Id: 102542 + AegisName: M_Pendant_Box + Name: M.Pendant Shadow Box # !todo check english name + Type: Usable + Flags: + BuyingStore: true + Container: true + Script: | + getgroupitem(IG_M_PENDANT_BOX); + - Id: 102543 + AegisName: M_Earring_Box + Name: M.Earring Shadow Box # !todo check english name + Type: Usable + Flags: + BuyingStore: true + Container: true + Script: | + getgroupitem(IG_M_EARRING_BOX); + - Id: 102544 + AegisName: Ein_Ore_Box + Name: Einbeh Ore Box # !todo check english name + Type: Usable + Flags: + BuyingStore: true + Container: true + Script: | + getgroupitem(IG_EIN_ORE_BOX); + - Id: 102545 + AegisName: Fate_Fragment_Box + Name: Goodwill Box # !todo check english name + Type: Usable + Flags: + BuyingStore: true + Container: true + Script: | + getgroupitem(IG_FATE_FRAGMENT_BOX); + - Id: 102546 + AegisName: Sin_Fragment_Box + Name: Box of Sin # !todo check english name + Type: Usable + Flags: + BuyingStore: true + Container: true + Script: | + getgroupitem(IG_SIN_FRAGMENT_BOX); + - Id: 102547 + AegisName: Amethyst_Fragment_Box + Name: Amethyst Piece Box # !todo check english name + Type: Usable + Flags: + BuyingStore: true + Container: true + Script: | + getgroupitem(IG_AMETHYST_FRAGMENT_BOX); + - Id: 102548 + AegisName: Snow_F_Ore_Box + Name: Snowflake Manastone Box # !todo check english name + Type: Usable + Flags: + BuyingStore: true + Container: true + Script: | + getgroupitem(IG_SNOW_F_ORE_BOX); + - Id: 102550 + AegisName: Schmidt_Antiquity + Name: Antiquity Glast Heim (Curse-swallowed King) + Type: Usable + Weight: 200 + Flags: + Container: true + DropEffect: CLIENT + Script: | + getgroupitem(IG_SCHMIDT_ANTIQUITY,true); + - Id: 102551 + AegisName: Schmidt_Antiquity2 +# Name: Antiquity Glast Heim (Curse-swallowed King (Hard)) + Name: Antiquity Glast Heim (Curse-swallowed King (Hard) + Type: Usable + Weight: 200 + Flags: + Container: true + DropEffect: CLIENT + Script: | + getgroupitem(IG_SCHMIDT_ANTIQUITY2,true); + - Id: 102552 + AegisName: C_Amdarais_Antiquity + Name: Antiquity Glast Heim (Phantom of Amdarais) + Type: Usable + Weight: 200 + Flags: + Container: true + DropEffect: CLIENT + Script: | + getgroupitem(IG_C_AMDARAIS_ANTIQUITY,true); + - Id: 102553 + AegisName: C_Himel_Antiquity + Name: Antiquity Glast Heim (Phantom of Himmelmez) + Type: Usable + Weight: 200 + Flags: + Container: true + DropEffect: CLIENT + Script: | + getgroupitem(IG_C_HIMEL_ANTIQUITY,true); + - Id: 102554 + AegisName: Amdarais_Antiquity + Name: Antiquity Glast Heim (Amdarais) + Type: Usable + Weight: 200 + Flags: + Container: true + DropEffect: CLIENT + Script: | + getgroupitem(IG_AMDARAIS_ANTIQUITY,true); + - Id: 102555 + AegisName: Amdarais_Antiquity2 + Name: Antiquity Glast Heim (Realized Amdarais) + Type: Usable + Weight: 200 + Flags: + Container: true + DropEffect: CLIENT + Script: | + getgroupitem(IG_AMDARAIS_ANTIQUITY2,true); + - Id: 102556 + AegisName: Miguel_Antiquity + Name: Antiquity Cor (Miguel) + Type: Usable + Weight: 200 + Flags: + Container: true + DropEffect: CLIENT + Script: | + getgroupitem(IG_MIGUEL_ANTIQUITY,true); + - Id: 102557 + AegisName: EL_A17T_Antiquity + Name: Antiquity Cor (EL-A17T) + Type: Usable + Flags: + Container: true + DropEffect: CLIENT + Script: | + getgroupitem(IG_EL_A17T_ANTIQUITY,true); + - Id: 102558 + AegisName: Pitaya_Boss_Antiquity + Name: Antiquity Mansion (Meow) + Type: Usable + Weight: 200 + Flags: + Container: true + DropEffect: CLIENT + Script: | + getgroupitem(IG_PITAYA_BOSS_ANTIQUITY,true); + - Id: 102559 + AegisName: Sweety_Antiquity + Name: Antiquity Mansion (Sweety) + Type: Usable + Weight: 200 + Flags: + Container: true + DropEffect: CLIENT + Script: | + getgroupitem(IG_SWEETY_ANTIQUITY,true); + - Id: 102560 + AegisName: Redpepper_Antiquity + Name: Antiquity Mansion (Red Pepper (Kappa)) + Type: Usable + Weight: 200 + Flags: + Container: true + DropEffect: CLIENT + Script: | + getgroupitem(IG_REDPEPPER_ANTIQUITY,true); + - Id: 102561 + AegisName: Redpepper_Antiquity2 + Name: Antiquity Mansion (Red Pepper (Lambda)) + Type: Usable + Weight: 200 + Flags: + Container: true + DropEffect: CLIENT + Script: | + getgroupitem(IG_REDPEPPER_ANTIQUITY2,true); + - Id: 102562 + AegisName: Demi_Freyja_Antiquity + Name: Antiquity Villa (Twisted God) + Type: Usable + Weight: 200 + Flags: + Container: true + DropEffect: CLIENT + Script: | + getgroupitem(IG_DEMI_FREYJA_ANTIQUITY,true); + - Id: 102563 + AegisName: Juncea_Antiquity + Name: Antiquity Issgard (Juncea) + Type: Usable + Weight: 200 + Flags: + Container: true + DropEffect: CLIENT + Script: | + getgroupitem(IG_JUNCEA_ANTIQUITY,true); + - Id: 102564 + AegisName: Aquila_Antiquity + Name: Antiquity Issgard (Aquila) + Type: Usable + Weight: 200 + Flags: + Container: true + DropEffect: CLIENT + Script: | + getgroupitem(IG_AQUILA_ANTIQUITY,true); + - Id: 102565 + AegisName: Aquila_Antiquity2 + Name: Antiquity Issgard (Aquila (First Class)) + Type: Usable + Weight: 200 + Flags: + Container: true + DropEffect: CLIENT + Script: | + getgroupitem(IG_AQUILA_ANTIQUITY2,true); + - Id: 102566 + AegisName: F_Iceslug_Antiquiy + Name: Antiquity Issgard (Fallen Angel Slug) + Type: Usable + Weight: 200 + Flags: + Container: true + DropEffect: CLIENT + Script: | + getgroupitem(IG_F_ICESLUG_ANTIQUIY,true); + - Id: 102567 + AegisName: Lasgand_Antiquity + Name: Antiquity Issgard (Ultimate Lasgand) + Type: Usable + Weight: 200 + Flags: + Container: true + DropEffect: CLIENT + Script: | + getgroupitem(IG_LASGAND_ANTIQUITY,true); + - Id: 102568 + AegisName: Lasgand_Antiquity2 + Name: Antiquity Issgard (Ultimate Lasgand (Hard)) + Type: Usable + Weight: 200 + Flags: + Container: true + DropEffect: CLIENT + Script: | + getgroupitem(IG_LASGAND_ANTIQUITY2,true); + - Id: 102569 + AegisName: Celine_Kimi_Antiquity + Name: Antiquity Toy Factory (Celine Kimi) + Type: Usable + Weight: 200 + Flags: + Container: true + DropEffect: CLIENT + Script: | + getgroupitem(IG_CELINE_KIMI_ANTIQUITY,true); + - Id: 102570 + AegisName: Sakray_Antiquity + Name: Antiquity Remorse (Sakray) + Type: Usable + Weight: 200 + Flags: + Container: true + DropEffect: CLIENT + Script: | + getgroupitem(IG_SAKRAY_ANTIQUITY,true); + - Id: 102571 + AegisName: Unknown_Antiquity + Name: Antiquity Somatology Dungeon (Unknown Swordsman) + Type: Usable + Weight: 200 + Flags: + Container: true + DropEffect: CLIENT + Script: | + getgroupitem(IG_UNKNOWN_ANTIQUITY,true); + - Id: 102572 + AegisName: Thanatos_Antiquity + Name: Antiquity Thanatos Tower (Memory of Thanatos) + Type: Usable + Weight: 200 + Flags: + Container: true + DropEffect: CLIENT + Script: | + getgroupitem(IG_THANATOS_ANTIQUITY,true); + - Id: 102573 + AegisName: Airboat_Antiquity + Name: Antiquity Crash Site (Unidentified Creature) + Type: Usable + Weight: 200 + Flags: + Container: true + DropEffect: CLIENT + Script: | + getgroupitem(IG_AIRBOAT_ANTIQUITY,true); - Id: 102580 AegisName: aegis_102580 Name: Ponytail Gift Box @@ -67116,6 +70053,57 @@ Body: Container: true Script: | getgroupitem(IG_Enchant_Stone_Box33); + - Id: 102624 + AegisName: T_Garden_Ev_1 + Name: Energy Box of Spirit + Type: Usable + Weight: 10 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_T_GARDEN_EV_1); + - Id: 102625 + AegisName: T_Garden_Ev_2 + Name: Energy Box of Season + Type: Usable + Weight: 10 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_T_GARDEN_EV_2); + - Id: 102626 + AegisName: T_Garden_Ev_3 + Name: Box of Life + Type: Usable + Weight: 10 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_T_GARDEN_EV_3); - Id: 102631 AegisName: Cinnamon_Costume_Box Name: Cinnamoroll Costume Selection Box @@ -67129,6 +70117,74 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + - Id: 102632 + AegisName: Cos_EnchantStone_Box1 + Name: Costume Stone Mix I Box + Type: Usable + Weight: 30 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_COS_ENCHANTSTONE_BOX1); + - Id: 102633 + AegisName: Cos_EnchantStone_Box2 + Name: Costume Stone Mix II Box + Type: Usable + Weight: 30 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_COS_ENCHANTSTONE_BOX2); + - Id: 102634 + AegisName: Cos_EnchantStone_Box3 + Name: Costume Stone Mix III Box + Type: Usable + Weight: 30 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_COS_ENCHANTSTONE_BOX3); + - Id: 102638 + AegisName: S_Badge_pack + Name: Sonic Badge Package + Type: Usable + Weight: 100 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_S_BADGE_PACK); - Id: 102668 AegisName: Dimen_W_Refine Name: Dimensions Weapon Refinement Device @@ -67158,6 +70214,57 @@ Body: BuyingStore: true Script: | laphine_upgrade(); + - Id: 102701 + AegisName: Main_Lucky_Box_ + Name: "[Reward] Kachua's Secret Key" + Type: Usable + Weight: 10 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_MAIN_LUCKY_BOX_,true); + - Id: 102716 + AegisName: Bl_Depth_Ev_1 + Name: Deep Rune Box + Type: Usable + Weight: 10 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_BL_DEPTH_EV_1); + - Id: 102717 + AegisName: Bl_Depth_Ev_2 + Name: Deep Abyss Rune Box + Type: Usable + Weight: 10 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_BL_DEPTH_EV_2); - Id: 102732 AegisName: IsgardCrown_Box Name: Issgard Crown Selection Box @@ -67182,6 +70289,143 @@ Body: Type: DelayConsume Flags: BuyingStore: true + - Id: 102738 + AegisName: Brown_Dia_Box + Name: Golden Diamond 15 ea Box + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_BROWN_DIA_BOX); + - Id: 102740 + AegisName: PresentBox_EP17_2 + Name: Episode 17.2 Gift Box + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_PRESENTBOX_EP17_2); + - Id: 102741 + AegisName: PresentBox_EP18 + Name: Episode 18 Gift Box + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_PRESENTBOX_EP18); + - Id: 102742 + AegisName: Refine_Event_Box + Name: Refine Event Box + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_REFINE_EVENT_BOX); + - Id: 102745 + AegisName: PresentBox_EP19 + Name: Episode 19 Gift Box + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_PRESENTBOX_EP19); + - Id: 102746 + AegisName: PresentBox_EP20 + Name: Episode 20 Gift Box + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_PRESENTBOX_EP20); + - Id: 102747 + AegisName: PresentBox_GlastHeim + Name: Glast Heim Gift Box + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_PRESENTBOX_GLASTHEIM); + - Id: 102750 + AegisName: Black_Dia_3_Box + Name: Black Diamond 3 ea Box + Type: Cash + Weight: 900 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_BLACK_DIA_3_BOX); + - Id: 102767 + AegisName: R_Ep17_Album + Name: Episode 17-18 Card Album + Type: Usable + Flags: + Container: true + Script: | + getgroupitem(IG_R_EP17_ALBUM); - Id: 102771 AegisName: 2023_Xmas_Costume Name: Christmas Costume Selection Package @@ -67194,6 +70438,125 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + - Id: 102780 + AegisName: 2401_ev_LinTteok + Name: Inverse Scale Glutinous Rice Cake + Type: Usable + Weight: 10 + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 102781 + AegisName: 2401_ev_Galbi + Name: New Year Galbi-jjim + Type: Usable + Weight: 10 + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 102782 + AegisName: 2401_ev_Rice_Soup + Name: New Year Rice Cake Soup + Type: Usable + Weight: 10 + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 102783 + AegisName: 2401_ev_Lunch_Box + Name: Sulki's Lunch Box + Type: Usable + Weight: 50 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_2401_EV_LUNCH_BOX); + - Id: 102797 + AegisName: Super_Sonic_pack + Name: Super Sonic Package + Type: Usable + Weight: 100 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_SUPER_SONIC_PACK); + - Id: 102798 + AegisName: Chaos_Emerald_pack + Name: Chaos Emerald Package + Type: Usable + Weight: 100 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_CHAOS_EMERALD_PACK); + - Id: 102803 + AegisName: Force_Booster + Name: Force Booster + Type: Usable + Weight: 10 + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 102806 + AegisName: Brown_Dia_Box_3_7 + Name: Golden Diamond Box + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_BROWN_DIA_BOX_3_7); - Id: 102812 AegisName: 10AllMighty_Select_Box Name: +10 Almighty Shadow Selection Box @@ -67201,12 +70564,45 @@ Body: Weight: 10 Flags: BuyingStore: true + - Id: 102813 + AegisName: R_Ep178_boss + Name: Episode 17-18 Boss Card Album + Type: Usable + Flags: + Container: true + Script: | + getgroupitem(IG_R_EP178_BOSS); - Id: 102815 AegisName: R_Sealed_Card Name: Sealed Card Converter Type: DelayConsume Script: | laphine_synthesis(); + - Id: 102820 + AegisName: Enchant_Stone_Box34 + Name: Costume Enchant Stone Box 34 + Type: Usable + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_ENCHANT_STONE_BOX34); + - Id: 102858 + AegisName: VIP_Birthday_Box + Name: Birthday Gift Box + Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_VIP_BIRTHDAY_BOX); - Id: 102900 AegisName: Refine_Furious Name: Furious Refine Stone @@ -67868,6 +71264,155 @@ Body: NoAuction: true Script: | getgroupitem(IG_COSTUMEMILEAGE_PACKAGE3); + - Id: 200155 + AegisName: LI_Nyangvine_Box100_2 + Name: (Limited) Silvervine Cat Fruit Package IV + Type: Cash + Weight: 10 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_LI_NYANGVINE_BOX100_2); + - Id: 200163 + AegisName: LI_Nyangvine_Stone_Box3 +# Name: (Limited) Silvervine Cat Fruit Package(Stone Box 25) + Name: (Limited) Silvervine Cat Fruit Package(Stone Box + Type: Cash + Weight: 10 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_LI_NYANGVINE_STONE_BOX3); + - Id: 200168 + AegisName: 2021_Promo_Package_1 + Name: 2021 Promotional Commemorative Package I + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_2021_PROMO_PACKAGE_1); + - Id: 200169 + AegisName: 2021_Promo_Package_2 + Name: 2021 Promotional Commemorative Package II + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_2021_PROMO_PACKAGE_2); + - Id: 200170 + AegisName: CostumeMileage_Package4 + Name: Silvervine Costume Mileage Package IV + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_COSTUMEMILEAGE_PACKAGE4); + - Id: 200171 + AegisName: CostumeMileage_Package5 + Name: Silvervine Costume Mileage Package V + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_COSTUMEMILEAGE_PACKAGE5); + - Id: 200172 + AegisName: CostumeMileage_Package6 + Name: Silvervine Costume Mileage Package VI + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_COSTUMEMILEAGE_PACKAGE6); + - Id: 200174 + AegisName: Hero_Hammer_Package_6 + Name: Modified Hero's Weapon Refine Hammer Package VI + Type: Cash + Weight: 10 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_HERO_HAMMER_PACKAGE_6); + - Id: 200175 + AegisName: Hero_Up_Package_6 + Name: Hero's Weapon Modification Package VI + Type: Cash + Weight: 10 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_HERO_UP_PACKAGE_6); - Id: 200185 AegisName: LI_Nyangvine_Box1_26 # Name: (Limited) Actinidia Cat Fruit Box I (Stone Box 26) @@ -67973,6 +71518,1064 @@ Body: NoAuction: true Script: | getgroupitem(IG_COSTUME_MILE_PACK_26_3); + - Id: 200195 + AegisName: Monthly_Package_1 + Name: Monthly Supply Package I + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_MONTHLY_PACKAGE_1); + - Id: 200196 + AegisName: Monthly_Package_2 + Name: Monthly Supply Package II + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_MONTHLY_PACKAGE_2); + - Id: 200197 + AegisName: Monthly_Package_3 + Name: Monthly Supply Package III + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_MONTHLY_PACKAGE_3); + - Id: 200198 + AegisName: Monthly_Buff_Package + Name: Monthly Premium Buff Package + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_MONTHLY_BUFF_PACKAGE); + - Id: 200199 + AegisName: Monthly_Battle_Package + Name: Monthly Combat Manual Package + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_MONTHLY_BATTLE_PACKAGE); + - Id: 200214 + AegisName: CostumeMilePack_27_1 +# Name: Nyangdarae Costume Mileage Package I (Stone Box 27) + Name: Nyangdarae Costume Mileage Package I (Stone Box 2 # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_COSTUMEMILEPACK_27_1); + - Id: 200215 + AegisName: CostumeMilePack_27_2 +# Name: Nyangdarae Costume Mileage Package II (Stone Box 27) + Name: Nyangdarae Costume Mileage Package II (Stone Box # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_COSTUMEMILEPACK_27_2); + - Id: 200216 + AegisName: CostumeMilePack_27_3 +# Name: Nyangdarae Costume Mileage Package III (Stone Box 27) + Name: Nyangdarae Costume Mileage Package III (Stone Box # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_COSTUMEMILEPACK_27_3); + - Id: 200219 + AegisName: LI_Nyangvine_Box1_28 +# Name: (Limited) Nutcracker Fruit Package I (Stone Box 28) + Name: (Limited) Nutcracker Fruit Package I (Stone Box 2 # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_LI_NYANGVINE_BOX1_28); + - Id: 200220 + AegisName: LI_Nyangvine_Box2_28 +# Name: (Limited) Nutcracker Fruit Package II (Stone Box 28) + Name: (Limited) Nutcracker Fruit Package II (Stone Box # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_LI_NYANGVINE_BOX2_28); + - Id: 200221 + AegisName: LI_Nyangvine_Box3_28 +# Name: (Limited) Nutcracker Fruit Package III (Stone Box 28) + Name: (Limited) Nutcracker Fruit Package III (Stone Box # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_LI_NYANGVINE_BOX3_28); + - Id: 200236 + AegisName: LI_Nyangvine_Box1_29 +# Name: (Limited) Nyangdarae Fruit Package I (29 Stone Boxes) + Name: (Limited) Nyangdarae Fruit Package I (29 Stone Bo # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_LI_NYANGVINE_BOX1_29); + - Id: 200237 + AegisName: LI_Nyangvine_Box2_29 +# Name: (Limited) Nyandarae Fruit Package II (29 Stone Boxes) + Name: (Limited) Nyandarae Fruit Package II (29 Stone Bo # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_LI_NYANGVINE_BOX2_29); + - Id: 200238 + AegisName: LI_Nyangvine_Box3_29 +# Name: (Limited) Nyandarae Fruit Package III (29 Stone Boxes) + Name: (Limited) Nyandarae Fruit Package III (29 Stone B # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_LI_NYANGVINE_BOX3_29); + - Id: 200247 + AegisName: Cash_Booster_Box + Name: Growth Support Package # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_CASH_BOOSTER_BOX); + - Id: 200256 + AegisName: CostumeMilePack_29_1 +# Name: Nyangdarae Costume Mileage Package I (Stone Box 29) + Name: Nyangdarae Costume Mileage Package I (Stone Box 2 # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_COSTUMEMILEPACK_29_1); + - Id: 200257 + AegisName: CostumeMilePack_29_2 +# Name: Nyangdarae Costume Mileage Package II (Stone Box 29) + Name: Nyangdarae Costume Mileage Package II (Stone Box # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_COSTUMEMILEPACK_29_2); + - Id: 200258 + AegisName: CostumeMilePack_29_3 +# Name: Nyangdarae Costume Mileage Package III (Stone Box 29) + Name: Nyangdarae Costume Mileage Package III (Stone Box # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_COSTUMEMILEPACK_29_3); + - Id: 200287 + AegisName: LI_Nyangvine_Box1_30 +# Name: (Limited) Nyangdarae Fruit Package I (30 Stone Boxes) + Name: (Limited) Nyangdarae Fruit Package I (30 Stone Bo # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_LI_NYANGVINE_BOX1_30); + - Id: 200288 + AegisName: LI_Nyangvine_Box2_30 +# Name: (Limited) Nyandarae Fruit Package II (30 Stone Boxes) + Name: (Limited) Nyandarae Fruit Package II (30 Stone Bo # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_LI_NYANGVINE_BOX2_30); + - Id: 200289 + AegisName: LI_Nyangvine_Box3_30 +# Name: (Limited) Nyandarae Fruit Package III (Stone Box 30) + Name: (Limited) Nyandarae Fruit Package III (Stone Box # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_LI_NYANGVINE_BOX3_30); + - Id: 200291 + AegisName: CostumeMilePack_30_1 +# Name: Nyangdarae Costume Mileage Package I (30 Stone Box) + Name: Nyangdarae Costume Mileage Package I (30 Stone Bo # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_COSTUMEMILEPACK_30_1); + - Id: 200292 + AegisName: CostumeMilePack_30_2 +# Name: Nyangdarae Costume Mileage Package II (Stone Box 30) + Name: Nyangdarae Costume Mileage Package II (Stone Box # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_COSTUMEMILEPACK_30_2); + - Id: 200293 + AegisName: CostumeMilePack_30_3 +# Name: Nyangdarae Costume Mileage Package III (Stone Box 30) + Name: Nyangdarae Costume Mileage Package III (Stone Box # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_COSTUMEMILEPACK_30_3); + - Id: 200305 + AegisName: LI_Nyangvine_Box1_31 +# Name: (Limited) Nyandarae Fruit Package I (Stone Box 31) + Name: (Limited) Nyandarae Fruit Package I (Stone Box 31 # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_LI_NYANGVINE_BOX1_31); + - Id: 200306 + AegisName: LI_Nyangvine_Box2_31 +# Name: (Limited) Nyangdarae Fruit Package II (Stone Box 31) + Name: (Limited) Nyangdarae Fruit Package II (Stone Box # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_LI_NYANGVINE_BOX2_31); + - Id: 200307 + AegisName: LI_Nyangvine_Box3_31 +# Name: (Limited) Nyandarae Fruit Package III (Stone Box 31) + Name: (Limited) Nyandarae Fruit Package III (Stone Box # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_LI_NYANGVINE_BOX3_31); + - Id: 200312 + AegisName: CostumeMilePack_31_1 +# Name: Nyangdarae Costume Mileage Package I (Stone Box 31) + Name: Nyangdarae Costume Mileage Package I (Stone Box 3 # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_COSTUMEMILEPACK_31_1); + - Id: 200313 + AegisName: CostumeMilePack_31_2 +# Name: Nyangdarae Costume Mileage Package II (Stone Box 31) + Name: Nyangdarae Costume Mileage Package II (Stone Box # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_COSTUMEMILEPACK_31_2); + - Id: 200314 + AegisName: CostumeMilePack_31_3 +# Name: Nyangdarae Costume Mileage Package III (Stone Box 31) + Name: Nyangdarae Costume Mileage Package III (Stone Box # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_COSTUMEMILEPACK_31_3); + - Id: 200321 + AegisName: LI_Nyangvine_Box1_32 + Name: "[Limited] Silvervine Package I (Stone Box 32)" + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_LI_NYANGVINE_BOX1_32); + - Id: 200322 + AegisName: LI_Nyangvine_Box2_32 + Name: "[Limited] Silvervine Package II (Stone Box 32)" + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_LI_NYANGVINE_BOX2_32); + - Id: 200323 + AegisName: LI_Nyangvine_Box3_32 + Name: "[Limited] Silvervine Package III (Stone Box 32)" + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_LI_NYANGVINE_BOX3_32); + - Id: 200325 + AegisName: CostumeMilePack_32_1 +# Name: Nyangdarae Costume Mileage Package I (Stone Box 32) + Name: Nyangdarae Costume Mileage Package I (Stone Box 3 # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_COSTUMEMILEPACK_32_1); + - Id: 200326 + AegisName: CostumeMilePack_32_2 +# Name: Nyangdarae Costume Mileage Package II (Stone Box 32) + Name: Nyangdarae Costume Mileage Package II (Stone Box # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_COSTUMEMILEPACK_32_2); + - Id: 200327 + AegisName: CostumeMilePack_32_3 +# Name: Nyangdarae Costume Mileage Package III (Stone Box 32) + Name: Nyangdarae Costume Mileage Package III (Stone Box # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_COSTUMEMILEPACK_32_3); + - Id: 200330 + AegisName: LI_Nyangvine_Box1_33 +# Name: (Limited) Nyangvine Fruit Package I (Stone Box 33) + Name: (Limited) Nyangvine Fruit Package I (Stone Box 33 + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_LI_NYANGVINE_BOX1_33); + - Id: 200331 + AegisName: LI_Nyangvine_Box2_33 +# Name: (Limited) Nyangvine Fruit Package II (Stone Box 33) + Name: (Limited) Nyangvine Fruit Package II (Stone Box 3 + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_LI_NYANGVINE_BOX2_33); + - Id: 200332 + AegisName: LI_Nyangvine_Box3_33 +# Name: (Limited) Nyangvine Fruit Package III (Stone Box 33) + Name: (Limited) Nyangvine Fruit Package III (Stone Box + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_LI_NYANGVINE_BOX3_33); + - Id: 200333 + AegisName: Cinnamon_Pack1 + Name: Cinnamoroll Collaboration Package I + Type: Cash + Weight: 200 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_CINNAMON_PACK1); + - Id: 200334 + AegisName: Cinnamon_Pack2 + Name: Cinnamoroll Collaboration Package II + Type: Cash + Weight: 200 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_CINNAMON_PACK2); + - Id: 200335 + AegisName: Cinnamon_Pack3 + Name: Cinnamoroll Collaboration Package III + Type: Cash + Weight: 200 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_CINNAMON_PACK3); + - Id: 200336 + AegisName: Cinnamon_Pack4 + Name: RO x Cinnamoroll Box + Type: Cash + Weight: 10 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_CINNAMON_PACK4,true); + - Id: 200340 + AegisName: LI_Nyang_Cinna_Box1_33 +# Name: (Limited) Cinnamoroll Nyangvine Fruit Package I (Stone Box 33) + Name: (Limited) Cinnamoroll Nyangvine Fruit Package I ( + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_LI_NYANG_CINNA_BOX1_33); + - Id: 200341 + AegisName: LI_Nyang_Cinna_Box2_33 +# Name: (Limited) Cinnamoroll Nyangvine Fruit Package II (Stone Box 33) + Name: (Limited) Cinnamoroll Nyangvine Fruit Package II + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_LI_NYANG_CINNA_BOX2_33); + - Id: 200342 + AegisName: LI_Nyang_Cinna_Box3_33 +# Name: (Limited) Cinnamoroll Nyatarae Fruit Package III (Stone Box 33) + Name: (Limited) Cinnamoroll Nyatarae Fruit Package III # !todo check english name + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_LI_NYANG_CINNA_BOX3_33); + - Id: 200349 + AegisName: LI_A_Elunium_Box + Name: Enriched Elunium Account-limited Package + Type: Cash + Weight: 10 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_LI_A_ELUNIUM_BOX); + - Id: 200350 + AegisName: LI_A_Oridecon_Box + Name: Enriched Oridecon Account-limited Package + Type: Cash + Weight: 10 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_LI_A_ORIDECON_BOX); + - Id: 200351 + AegisName: CostumeMilePack_33_1 +# Name: Nyangvine Costume Mileage Package I (Stone Box 33) + Name: Nyangvine Costume Mileage Package I (Stone Box 33 + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_COSTUMEMILEPACK_33_1); + - Id: 200352 + AegisName: CostumeMilePack_33_2 +# Name: Nyangvine Costume Mileage Package II (Stone Box 33) + Name: Nyangvine Costume Mileage Package II (Stone Box 3 + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_COSTUMEMILEPACK_33_2); + - Id: 200353 + AegisName: CostumeMilePack_33_3 +# Name: Nyangvine Costume Mileage Package III (Stone Box 33) + Name: Nyangvine Costume Mileage Package III (Stone Box + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_COSTUMEMILEPACK_33_3); + - Id: 200354 + AegisName: 2023_Xmax_Pack_1 + Name: Christmas Account Limited Package I + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_2023_XMAX_PACK_1); + - Id: 200355 + AegisName: 2023_Xmax_Pack_2 + Name: Christmas Account Limited Package II + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_2023_XMAX_PACK_2); + - Id: 200366 + AegisName: A_Force_Booster_Box + Name: Force Booster Package (10) + Type: Cash + Weight: 10 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_A_FORCE_BOOSTER_BOX); + - Id: 200367 + AegisName: A_Force_Booster_10_Box + Name: Force Booster Package (100) + Type: Cash + Weight: 10 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_A_FORCE_BOOSTER_10_BOX); + - Id: 200368 + AegisName: LI_Nyangvine_Box1_34 +# Name: (Limited) Nyangvine Fruit Package I (Stone Box 34) + Name: (Limited) Nyangvine Fruit Package I (Stone Box 34 + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_LI_NYANGVINE_BOX1_34); + - Id: 200369 + AegisName: LI_Nyangvine_Box2_34 +# Name: (Limited) Nyangvine Fruit Package II (Stone Box 34) + Name: (Limited) Nyangvine Fruit Package II (Stone Box 3 + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_LI_NYANGVINE_BOX2_34); + - Id: 200370 + AegisName: LI_Nyangvine_Box3_34 +# Name: (Limited) Nyangvine Fruit Package III (Stone Box 34) + Name: (Limited) Nyangvine Fruit Package III (Stone Box + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_LI_NYANGVINE_BOX3_34); + - Id: 200375 + AegisName: Sonic_Premium_Pack1 + Name: Sonic Premium Package I + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_SONIC_PREMIUM_PACK1); + - Id: 200376 + AegisName: Sonic_Premium_Pack2 + Name: Sonic Premium Package II + Type: Cash + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_SONIC_PREMIUM_PACK2); + - Id: 200377 + AegisName: S_Badge_pack_ + Name: Sonic Badge Package + Type: Cash + Weight: 100 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_S_BADGE_PACK_); + - Id: 200378 + AegisName: Super_Sonic_pack_ + Name: Super Sonic Package + Type: Cash + Weight: 100 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_SUPER_SONIC_PACK_); + - Id: 200379 + AegisName: Chaos_Emerald_pack_ + Name: Chaos Emerald Package + Type: Cash + Weight: 100 + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_CHAOS_EMERALD_PACK_); - Id: 1100003 AegisName: Concentrated_R_P Name: Concentrated Red Potion @@ -68009,3 +72612,184 @@ Body: EquipLevelMin: 200 Script: | itemheal 1925,0; + - Id: 1100009 + AegisName: South_Pork_Ricebowl + Name: Southern Style Roast Pork with Rice Bowl + Type: Healing + Weight: 30 + EquipLevelMin: 180 + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemskill "PR_KYRIE",0; + - Id: 1100010 + AegisName: Poring_Kombucha + Name: Poring Kombucha + Type: Healing + Weight: 5 + EquipLevelMin: 180 + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal 0,350; /* average value */ + - Id: 1100011 + AegisName: Monster_Bread + Name: Monster Bread + Type: Healing + Weight: 3 + EquipLevelMin: 180 + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal 4500,0; /* average value */ + - Id: 1100012 + AegisName: Monster_Bread_ + Name: Forbidden Monster Bread + Type: Healing + Weight: 3 + EquipLevelMin: 180 + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal 0,450; /* average value */ + - Id: 1100013 + AegisName: South_Pork_Slice + Name: Southern Style Pork Head Meat + Type: Healing + Weight: 20 + EquipLevelMin: 120 + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + percentheal 30,30; + itemskill "AC_CONCENTRATION",5; + - Id: 1100014 + AegisName: Grilled_Fish + Name: Fire-grilled Fish + Type: Healing + Weight: 2 + EquipLevelMin: 60 + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal 0,40; /* average value */ + - Id: 1100015 + AegisName: Grilled_Veg_Skewers_ + Name: Fire-grilled Suspicious Skewers + Type: Healing + Weight: 10 + EquipLevelMin: 60 + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + percentheal 10,10; + - Id: 1100016 + AegisName: Night_M_Ice_Flakes + Name: Night Market Bingsu + Type: Healing + Weight: 3 + EquipLevelMin: 120 + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal 0,150; /* average value */ + - Id: 1100017 + AegisName: Night_M_Ice_Cream + Name: Night Market Ice Cream + Type: Healing + Weight: 2 + EquipLevelMin: 120 + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal 2500,0; /* average value */ + - Id: 1100018 + AegisName: Night_M_Cotton_Candy + Name: Night Market Cotton Candy + Type: Healing + Weight: 2 + EquipLevelMin: 120 + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal 0,250; /* average value */ + - Id: 1100019 + AegisName: Grilled_Veg_Skewers + Name: Fire-grilled Vegetable Skewers + Type: Healing + Weight: 1 + EquipLevelMin: 60 + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal 1200,0; /* average value */ + - Id: 1100020 + AegisName: Grilled_Hm_Sausage + Name: Fire-grilled Homemade Sausage + Type: Healing + Weight: 1 + EquipLevelMin: 60 + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal 0,120; /* average value */ diff --git a/db/re/item_group_db.yml b/db/re/item_group_db.yml index 9cf70cbb65..14242e4548 100644 --- a/db/re/item_group_db.yml +++ b/db/re/item_group_db.yml @@ -50,30 +50,91 @@ Header: Body: - Group: 2013_RWC_SCROLL SubGroups: - - SubGroup: 0 + - SubGroup: 1 List: - Index: 0 - Item: S_Neutral_Weapon - - Index: 1 - Item: S_Neutral_Earring - - Index: 2 - Item: S_Neutral_Pendent - - Index: 3 - Item: S_Curse_Lift_Earring - - Index: 4 - Item: S_Curse_Lift_Pendent - - Index: 5 - Item: Guarantee_Weapon_11Up - - Index: 6 Item: Guarantee_Armor_11Up - - Index: 7 - Item: Guarantee_Weapon_9Up - - Index: 8 + Rate: 1 + Announced: true + - Index: 1 + Item: Guarantee_Weapon_11Up + Rate: 1 + Announced: true + - Index: 2 + Item: Ticket_Incubus + Rate: 8 + Announced: true + - Index: 3 Item: Guarantee_Armor_9Up + Rate: 10 + Announced: true + - Index: 4 + Item: Guarantee_Weapon_9Up + Rate: 10 + Announced: true + - Index: 5 + Item: Guarantee_Armor_7Up + Rate: 100 + Announced: true + - Index: 6 + Item: Guarantee_Weapon_7Up + Rate: 100 + Announced: true + - Index: 7 + Item: S_Neutral_Weapon + Rate: 150 + Announced: true + - Index: 8 + Item: S_Neutral_Earring + Rate: 300 - Index: 9 - Item: C_Wings_Of_Victory + Item: S_Neutral_Pendent + Rate: 300 - Index: 10 - Item: Succu_Pet_Coupon + Item: S_Curse_Lift_Earring + Rate: 300 + - Index: 11 + Item: S_Curse_Lift_Pendent + Rate: 300 + - Index: 12 + Item: S_Stability_Shield + Rate: 550 + - Index: 13 + Item: C_Wings_Of_Victory + Rate: 150 + Announced: true + - Index: 14 + Item: Enchant_Stone_Box3 + Rate: 1000 + - Index: 15 + Item: Costume_Exchange + Rate: 1000 + - Index: 16 + Item: Poison_Bottle_Box2 + Rate: 1000 + - Index: 17 + Item: Comp_Battle_Manual + Rate: 1000 + Amount: 2 + - Index: 18 + Item: Comp_Bubble_Gum + Rate: 1000 + Amount: 2 + - Index: 19 + Item: C_Wing_Of_Fly_1Day_Box + Rate: 500 + - Index: 20 + Item: Enchant_Book + Rate: 500 + - Index: 21 + Item: RWC_Inicializer + Rate: 720 + - Index: 22 + Item: Old_C_Album_Shield + Rate: 500 + - Index: 23 + Item: Old_C_Album_Armor + Rate: 500 - Group: ACCESORY SubGroups: - SubGroup: 1 @@ -955,7 +1016,7 @@ Body: List: - Index: 0 Item: All_In_One_Ring - Duration: 65535 + Duration: 10080 UniqueId: true - Group: AMORA_LUCKY_SCROLL SubGroups: @@ -1076,19 +1137,19 @@ Body: UniqueId: true - Index: 6 Item: Gold_Spirit_Chain - Rate: 110 + Rate: 100 UniqueId: true - Index: 7 Item: Angeling_Card - Rate: 30 + Rate: 95 UniqueId: true - Index: 8 Item: Blessing_10_Scroll_Box - Rate: 420 + Rate: 350 UniqueId: true - Index: 9 Item: Archangeling_Card - Rate: 20 + Rate: 40 UniqueId: true - Group: ANIMAL_SCROLL SubGroups: @@ -1173,7 +1234,7 @@ Body: List: - Index: 0 Item: Apple_Of_Archer_C - Duration: 10080 + Duration: 20160 UniqueId: true - Group: AQUARIUS_DIADEM_SCROLL SubGroups: @@ -1391,6 +1452,10 @@ Body: - SubGroup: 0 List: - Index: 0 + Item: Holy_Water + Amount: 10 + UniqueId: true + - Index: 1 Item: Aspersio_5_Scroll Amount: 10 UniqueId: true @@ -5138,7 +5203,6 @@ Body: List: - Index: 0 Item: Boarding_Halter - Duration: 10080 UniqueId: true - Group: BOITATA_SCROLL SubGroups: @@ -5332,9 +5396,11 @@ Body: UniqueId: true - Index: 6 Item: Clip - Amount: 2 UniqueId: true - Index: 7 + Item: Clip + UniqueId: true + - Index: 8 Item: Biretta_ UniqueId: true - Group: BR_ARCHERPACKAGE @@ -5361,9 +5427,11 @@ Body: UniqueId: true - Index: 6 Item: Clip - Amount: 2 UniqueId: true - Index: 7 + Item: Clip + UniqueId: true + - Index: 8 Item: Apple_Of_Archer UniqueId: true - Group: BR_INDEPENDENCE_SCROLL @@ -5465,9 +5533,11 @@ Body: UniqueId: true - Index: 6 Item: Clip - Amount: 2 UniqueId: true - Index: 7 + Item: Clip + UniqueId: true + - Index: 8 Item: Wizardry_Hat UniqueId: true - Group: BR_MERPACKAGE @@ -5494,9 +5564,11 @@ Body: UniqueId: true - Index: 6 Item: Clip - Amount: 2 UniqueId: true - Index: 7 + Item: Clip + UniqueId: true + - Index: 8 Item: Bankruptcy_Of_Heart UniqueId: true - Group: BR_SWORDPACKAGE @@ -5523,12 +5595,14 @@ Body: UniqueId: true - Index: 6 Item: Clip - Amount: 2 UniqueId: true - Index: 7 - Item: Helm_ + Item: Clip UniqueId: true - Index: 8 + Item: Helm_ + UniqueId: true + - Index: 9 Item: Iron_Cane UniqueId: true - Group: BR_THIEFPACKAGE @@ -5555,9 +5629,11 @@ Body: UniqueId: true - Index: 6 Item: Clip - Amount: 2 UniqueId: true - Index: 7 + Item: Clip + UniqueId: true + - Index: 8 Item: Ghost_Bandana UniqueId: true - Group: BUDDAH_SCROLL @@ -5637,7 +5713,7 @@ Body: List: - Index: 0 Item: Bunny_Band_C - Duration: 10080 + Duration: 20160 UniqueId: true - Group: CANDY SubGroups: @@ -5841,2003 +5917,2258 @@ Body: List: - Index: 0 Item: Caracas_Ring - Duration: 4500 + Duration: 30240 + - Index: 1 + Item: Steel_Flower_C + Duration: 30240 - Group: CARDALBUM SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Vitata_Card - Rate: 95 - - Index: 1 - Item: Golem_Card - Rate: 95 - - Index: 2 - Item: Desert_Wolf_Card - Rate: 95 - - Index: 3 - Item: Rafflesia_Card - Rate: 95 - - Index: 4 - Item: Marine_Sphere_Card - Rate: 95 - - Index: 5 - Item: Orc_Skeleton_Card - Rate: 95 - - Index: 6 - Item: Soldier_Skeleton_Card - Rate: 95 - - Index: 7 - Item: Giearth_Card - Rate: 95 - - Index: 8 - Item: Frilldora_Card - Rate: 95 - - Index: 9 - Item: Sword_Fish_Card - Rate: 95 - - Index: 10 - Item: Munak_Card - Rate: 95 - - Index: 11 - Item: Kobold_Card - Rate: 95 - - Index: 12 - Item: Skel_Worker_Card - Rate: 95 - - Index: 13 - Item: Obeaune_Card - Rate: 95 - - Index: 14 - Item: Archer_Skeleton_Card - Rate: 95 - - Index: 15 - Item: Marse_Card - Rate: 95 - - Index: 16 - Item: Zenorc_Card - Rate: 95 - - Index: 17 - Item: Matyr_Card - Rate: 95 - - Index: 18 - Item: Dokebi_Card - Rate: 95 - - Index: 19 - Item: Pasana_Card - Rate: 95 - - Index: 20 - Item: Sohee_Card - Rate: 95 - - Index: 21 - Item: Sand_Man_Card - Rate: 95 - - Index: 22 - Item: Whisper_Card - Rate: 95 - - Index: 23 - Item: Horong_Card - Rate: 95 - - Index: 24 - Item: Requiem_Card - Rate: 95 - - Index: 25 - Item: Marc_Card - Rate: 95 - - Index: 26 - Item: Mummy_Card - Rate: 95 - - Index: 27 - Item: Verit_Card - Rate: 95 - - Index: 28 - Item: Myst_Card - Rate: 95 - - Index: 29 - Item: Jakk_Card - Rate: 95 - - Index: 30 - Item: Ghoul_Card - Rate: 95 - - Index: 31 - Item: Strouf_Card - Rate: 95 - - Index: 32 - Item: Marduk_Card - Rate: 95 - - Index: 33 - Item: Marionette_Card - Rate: 95 - - Index: 34 - Item: Argiope_Card - Rate: 95 - - Index: 35 - Item: Hunter_Fly_Card - Rate: 95 - - Index: 36 - Item: Isis_Card - Rate: 95 - - Index: 37 - Item: Side_Winder_Card - Rate: 95 - - Index: 38 - Item: Petit_Card - Rate: 95 - - Index: 39 - Item: Bathory_Card - Rate: 95 - - Index: 40 - Item: Petit__Card - Rate: 95 - - Index: 41 - Item: Deviruchi_Card - Rate: 95 - - Index: 42 - Item: Medusa_Card - Rate: 95 - - Index: 43 - Item: Deviace_Card - Rate: 95 - - Index: 44 - Item: Minorous_Card - Rate: 95 - - Index: 45 - Item: Nightmare_Card - Rate: 95 - - Index: 46 - Item: Baphomet__Card - Rate: 95 - - Index: 47 - Item: Scorpion_King_Card - Rate: 95 - - Index: 48 - Item: Daydric_Card - Rate: 95 - - Index: 49 - Item: Khalitzburg_Card - Rate: 95 - - Index: 50 - Item: Anubis_Card - Rate: 95 - - Index: 51 - Item: Joker_Card - Rate: 95 - - Index: 52 - Item: Knight_Of_Abyss_Card - Rate: 95 - - Index: 53 - Item: Evil_Druid_Card - Rate: 95 - - Index: 54 - Item: Gargoyle_Card - Rate: 95 - - Index: 55 - Item: Goat_Card - Rate: 95 - - Index: 56 - Item: Gajomart_Card - Rate: 95 - - Index: 57 - Item: Galapago_Card - Rate: 95 - - Index: 58 - Item: Crab_Card - Rate: 95 - - Index: 59 - Item: Rice_Cake_Boy_Card - Rate: 95 - - Index: 60 - Item: Goblin_Leader_Card - Rate: 95 - - Index: 61 - Item: Steam_Goblin_Card - Rate: 95 - - Index: 62 - Item: Goblin_Archer_Card - Rate: 95 - - Index: 63 - Item: Flying_Deleter_Card - Rate: 95 - - Index: 64 - Item: Nine_Tail_Card - Rate: 95 - - Index: 65 - Item: Antique_Firelock_Card - Rate: 95 - - Index: 66 - Item: Grand_Peco_Card - Rate: 95 - - Index: 67 - Item: Grizzly_Card - Rate: 95 - - Index: 68 - Item: Gullinbursti_Card - Rate: 95 - - Index: 69 - Item: Gig_Card - Rate: 95 - - Index: 70 - Item: Nightmare_Terror_Card - Rate: 95 - - Index: 71 - Item: Neraid_Card - Rate: 95 - - Index: 72 - Item: Dark_Frame_Card - Rate: 95 - - Index: 73 - Item: Dark_Priest_Card - Rate: 95 - - Index: 74 - Item: The_Paper_Card - Rate: 95 - - Index: 75 - Item: Demon_Pungus_Card - Rate: 95 - - Index: 76 - Item: Poison_Toad_Card - Rate: 95 - - Index: 77 - Item: Dullahan_Card - Rate: 95 - - Index: 78 - Item: Dryad_Card - Rate: 95 - - Index: 79 - Item: Dragon_Tail_Card - Rate: 95 - - Index: 80 - Item: Driller_Card - Rate: 95 - - Index: 81 - Item: Disguise_Card - Rate: 95 - - Index: 82 - Item: Diabolic_Card - Rate: 95 - - Index: 83 - Item: Lava_Golem_Card - Rate: 95 - - Index: 84 - Item: Rideword_Card - Rate: 95 - - Index: 85 - Item: Raggler_Card - Rate: 95 - - Index: 86 - Item: Raydric_Archer_Card - Rate: 95 - - Index: 87 - Item: Leib_Olmai_Card - Rate: 95 - - Index: 88 - Item: Wraith_Dead_Card - Rate: 95 - - Index: 89 - Item: Wraith_Card - Rate: 95 - - Index: 90 - Item: Loli_Ruri_Card - Rate: 95 - - Index: 91 - Item: Rotar_Zairo_Card - Rate: 95 - - Index: 92 - Item: Lude_Card - Rate: 95 - - Index: 93 - Item: Rybio_Card - Rate: 95 - - Index: 94 - Item: Leaf_Cat_Card - Rate: 95 - - Index: 95 - Item: Marin_Card - Rate: 95 - - Index: 96 - Item: Merman_Card - Rate: 95 - - Index: 97 - Item: Megalith_Card - Rate: 95 - - Index: 98 - Item: Majoruros_Card - Rate: 95 - - Index: 99 - Item: Civil_Servant_Card - Rate: 95 - - Index: 100 - Item: Mini_Demon_Card - Rate: 95 - - Index: 101 - Item: Mimic_Card - Rate: 95 - - Index: 102 - Item: Mystcase_Card - Rate: 95 - - Index: 103 - Item: Miyabi_Ningyo_Card - Rate: 95 - - Index: 104 - Item: Violy_Card - Rate: 95 - - Index: 105 - Item: Wander_Man_Card - Rate: 95 - - Index: 106 - Item: Vocal_Card - Rate: 95 - - Index: 107 - Item: Bon_Gun_Card - Rate: 95 - - Index: 108 - Item: Brilight_Card - Rate: 95 - - Index: 109 - Item: Bloody_Murderer_Card - Rate: 95 - - Index: 110 - Item: Blazzer_Card - Rate: 95 - - Index: 111 - Item: Sasquatch_Card - Rate: 95 - - Index: 112 - Item: Live_Peach_Tree_Card - Rate: 95 - - Index: 113 - Item: Succubus_Card - Rate: 95 - - Index: 114 - Item: Sageworm_Card - Rate: 95 - - Index: 115 - Item: Solider_Card - Rate: 95 - - Index: 116 - Item: Skeleton_General_Card - Rate: 95 - - Index: 117 - Item: Skel_Prisoner_Card - Rate: 95 - - Index: 118 - Item: Stalactic_Golem_Card - Rate: 95 - - Index: 119 - Item: Stem_Worm_Card - Rate: 95 - - Index: 120 - Item: Stone_Shooter_Card - Rate: 95 - - Index: 121 - Item: Sting_Card - Rate: 95 - - Index: 122 - Item: Spring_Rabbit_Card - Rate: 95 - - Index: 123 - Item: Sleeper_Card - Rate: 95 - - Index: 124 - Item: C_Tower_Manager_Card - Rate: 95 - - Index: 125 - Item: Shinobi_Card - Rate: 95 - - Index: 126 - Item: Increase_Soil_Card - Rate: 95 - - Index: 127 - Item: Wild_Ginseng_Card - Rate: 95 - - Index: 128 - Item: Baby_Leopard_Card - Rate: 95 - - Index: 129 - Item: Anolian_Card - Rate: 95 - - Index: 130 - Item: Cookie_XMAS_Card - Rate: 95 - - Index: 131 - Item: Iron_Fist_Card - Rate: 95 - - Index: 132 - Item: Arclouse_Card - Rate: 95 - - Index: 133 - Item: Apocalips_Card - Rate: 95 - - Index: 134 - Item: Alarm_Card - Rate: 95 - - Index: 135 - Item: Am_Mut_Card - Rate: 95 - - Index: 136 - Item: Assulter_Card - Rate: 95 - - Index: 137 - Item: Aster_Card - Rate: 95 - - Index: 138 - Item: Ancient_Mummy_Card - Rate: 95 - - Index: 139 - Item: Ancient_Worm_Card - Rate: 95 - - Index: 140 - Item: Elder_Card - Rate: 95 - - Index: 141 - Item: Alligator_Card - Rate: 95 - - Index: 142 - Item: Alice_Card - Rate: 95 - - Index: 143 - Item: Orc_Lady_Card - Rate: 95 - - Index: 144 - Item: Orc_Archer_Card - Rate: 95 - - Index: 145 - Item: Wild_Rose_Card - Rate: 95 - - Index: 146 - Item: Wicked_Nymph_Card - Rate: 95 - - Index: 147 - Item: Wooden_Golem_Card - Rate: 95 - - Index: 148 - Item: Wootan_Shooter_Card - Rate: 95 - - Index: 149 - Item: Wootan_Fighter_Card - Rate: 95 - - Index: 150 - Item: Evil_Cloud_Hermit_Card - Rate: 95 - - Index: 151 - Item: Wind_Ghost_Card - Rate: 95 - - Index: 152 - Item: Li_Me_Mang_Ryang_Card - Rate: 95 - - Index: 153 - Item: Explosion_Card - Rate: 95 - - Index: 154 - Item: Injustice_Card - Rate: 95 - - Index: 155 - Item: Incubus_Card - Rate: 95 - - Index: 156 - Item: Giant_Spider_Card - Rate: 95 - - Index: 157 - Item: Giant_Honet_Card - Rate: 95 - - Index: 158 - Item: Dancing_Dragon_Card - Rate: 95 - - Index: 159 - Item: Shellfish_Card - Rate: 95 - - Index: 160 - Item: Zombie_Master_Card - Rate: 95 - - Index: 161 - Item: Zombie_Prisoner_Card - Rate: 95 - - Index: 162 - Item: Zherlthsh_Card - Rate: 95 - - Index: 163 - Item: Gibbet_Card - Rate: 95 - - Index: 164 - Item: Deleter_Card - Rate: 95 - - Index: 165 - Item: Geographer_Card - Rate: 95 - - Index: 166 - Item: Zipper_Bear_Card - Rate: 95 - - Index: 167 - Item: Tengu_Card - Rate: 95 - - Index: 168 - Item: Greatest_General_Card - Rate: 95 - - Index: 169 - Item: Chepet_Card - Rate: 95 - - Index: 170 - Item: Choco_Card - Rate: 95 - - Index: 171 - Item: Karakasa_Card - Rate: 95 - - Index: 172 - Item: Kapha_Card - Rate: 95 - - Index: 173 - Item: Carat_Card - Rate: 95 - - Index: 174 - Item: Caterpillar_Card - Rate: 95 - - Index: 175 - Item: Kobold_Leader_Card - Rate: 95 - - Index: 176 - Item: Kobold_Archer_Card - Rate: 95 - - Index: 177 - Item: Cookie_Card - Rate: 95 - - Index: 178 - Item: Quve_Card - Rate: 95 - - Index: 179 - Item: Kraben_Card - Rate: 95 - - Index: 180 - Item: Cramp_Card - Rate: 95 - - Index: 181 - Item: Cruiser_Card - Rate: 95 - - Index: 182 - Item: Cremy_Fear_Card - Rate: 95 - - Index: 183 - Item: Clock_Card - Rate: 95 - - Index: 184 - Item: Killer_Mantis_Card - Rate: 95 - - Index: 185 - Item: Whisper_Boss_Card - Rate: 95 - - Index: 186 - Item: Tamruan_Card - Rate: 95 - - Index: 187 - Item: Kind_Of_Beetle_Card - Rate: 95 - - Index: 188 - Item: Tri_Joint_Card - Rate: 95 - - Index: 189 - Item: Parasite_Card - Rate: 95 - - Index: 190 - Item: Panzer_Goblin_Card - Rate: 95 - - Index: 191 - Item: Permeter_Card - Rate: 95 - - Index: 192 - Item: Fur_Seal_Card - Rate: 95 - - Index: 193 - Item: Punk_Card - Rate: 95 - - Index: 194 - Item: Penomena_Card - Rate: 95 - - Index: 195 - Item: Pest_Card - Rate: 95 - - Index: 196 - Item: Fake_Angel_Card - Rate: 95 - - Index: 197 - Item: Mobster_Card - Rate: 95 - - Index: 198 - Item: Freezer_Card - Rate: 95 - - Index: 199 - Item: Bloody_Knight_Card - Rate: 95 - - Index: 200 - Item: Hylozoist_Card - Rate: 95 - - Index: 201 - Item: Garm_Baby_Card - Rate: 95 - - Index: 202 - Item: Harpy_Card - Rate: 95 - - Index: 203 - Item: See_Otter_Card - Rate: 95 - - Index: 204 - Item: Blood_Butterfly_Card - Rate: 95 - - Index: 205 - Item: Hyegun_Card - Rate: 95 - - Index: 206 - Item: Phendark_Card - Rate: 95 - - Index: 207 - Item: Heater_Card - Rate: 95 - - Index: 208 - Item: Waste_Stove_Card - Rate: 95 - - Index: 209 - Item: Venomous_Card - Rate: 95 - - Index: 210 - Item: Noxious_Card - Rate: 95 - - Index: 211 - Item: Pitman_Card - Rate: 95 - - Index: 212 - Item: Ungoliant_Card - Rate: 95 - - Index: 213 - Item: Porcellio_Card - Rate: 95 - - Index: 214 - Item: Obsidian_Card - Rate: 95 - - Index: 215 - Item: Mineral_Card - Rate: 95 - - Index: 216 - Item: Teddy_Bear_Card - Rate: 95 - - Index: 217 - Item: Metaling_Card - Rate: 95 - - Index: 218 - Item: Mole_Card - Rate: 95 - - Index: 219 - Item: Ygnizem_Card - Rate: 95 - - Index: 220 - Item: Whikebain_Card - Rate: 95 - - Index: 221 - Item: Erend_Card - Rate: 95 - - Index: 222 - Item: Kavac_Card - Rate: 95 - - Index: 223 - Item: Removal_Card - Rate: 95 - - Index: 224 - Item: Beholder_Card - Rate: 95 - - Index: 225 - Item: Seyren_Card - Rate: 95 - - Index: 226 - Item: Harword_Card - Rate: 95 - - Index: 227 - Item: Magaleta_Card - Rate: 95 - - Index: 228 - Item: Katrinn_Card - Rate: 95 - - Index: 229 - Item: Shecil_Card - Rate: 95 - - Index: 230 - Item: Venatu_Card - Rate: 95 - - Index: 231 - Item: Dimik_Card - Rate: 95 - - Index: 232 - Item: Archdam_Card - Rate: 95 - - Index: 233 - Item: Chung_E_Card - Rate: 95 - - Index: 234 - Item: Orc_Baby_Card_Card - Rate: 95 - - Index: 235 - Item: Acidus_Card - Rate: 95 - - Index: 236 - Item: Acidus__Card - Rate: 95 - - Index: 237 - Item: Ferus__Card - Rate: 95 - - Index: 238 - Item: Novus__Card - Rate: 95 - - Index: 239 - Item: Ancient_Mimic_Card - Rate: 95 - - Index: 240 - Item: Plasma_Card - Rate: 95 - - Index: 241 - Item: Breeze_Card - Rate: 95 - - Index: 242 - Item: Aliza_Card - Rate: 95 - - Index: 243 - Item: Alicel_Card - Rate: 95 - - Index: 244 - Item: Aliot_Card - Rate: 95 - - Index: 245 - Item: Skogul_Card - Rate: 95 - - Index: 246 - Item: Frus_Card - Rate: 95 - - Index: 247 - Item: Agav_Card - Rate: 95 - - Index: 248 - Item: Echio_Card - Rate: 95 - - Index: 249 - Item: Vanberk_Card - Rate: 95 - - Index: 250 - Item: Isilla_Card - Rate: 95 - - Index: 251 - Item: Hodremlin_Card - Rate: 95 - - Index: 252 - Item: Seeker_Card - Rate: 95 - - Index: 253 - Item: Siroma_Card - Rate: 95 - - Index: 254 - Item: Ice_Titan_Card - Rate: 95 - - Index: 255 - Item: Gazeti_Card - Rate: 95 - - Index: 256 - Item: Muscipular_Card - Rate: 95 - - Index: 257 - Item: Roween_Card - Rate: 95 - - Index: 258 - Item: Imp_Card - Rate: 95 - - Index: 259 - Item: Knocker_Card - Rate: 95 - - Index: 260 - Item: Zombie_Slaughter_Card - Rate: 95 - - Index: 261 - Item: Flame_Skull_Card - Rate: 95 - - Index: 262 - Item: Tatacho_Card - Rate: 95 - - Index: 263 - Item: Aqua_Elemental_Card - Rate: 95 - - Index: 264 - Item: Draco_Card - Rate: 95 - - Index: 265 - Item: Luciola_Vespa_Card - Rate: 95 - - Index: 266 - Item: P_Skeleton_Card - Rate: 95 - - Index: 267 - Item: Centipede_Card - Rate: 95 - - Index: 268 - Item: Cornus_Card - Rate: 95 - - Index: 269 - Item: Dark_Shadow_Card - Rate: 95 - - Index: 270 - Item: Banshee_Master_Card - Rate: 95 - - Index: 271 - Item: Centipede_Larva_Card - Rate: 95 - - Index: 272 - Item: Hilsrion_Card - Rate: 95 - - Index: 273 - Item: Duneirre_Card - Rate: 95 - - Index: 274 - Item: Lata_Card - Rate: 95 - - Index: 275 - Item: Ringco_Card - Rate: 95 - - Index: 276 - Item: Pillar_Card - Rate: 95 - - Index: 277 - Item: Aunoe_Card - Rate: 95 - - Index: 278 - Item: Panat_Card - Rate: 95 - - Index: 279 - Item: Beholder_Master_Card - Rate: 95 - - Index: 280 - Item: Heavy_Metaling_Card - Rate: 95 - - Index: 281 - Item: Pinguicula_Dark_Card - Rate: 95 - - Index: 282 - Item: Naga_Card - Rate: 95 - - Index: 283 - Item: Nepenthes_Card - Rate: 95 - - Index: 284 - Item: Egg_Of_Draco_Card - Rate: 95 - - Index: 285 - Item: Bradium_Goram_Card - Rate: 95 - - Index: 286 - Item: Ancient_Tree_Card - Rate: 95 - - Index: 287 - Item: Jakudam_Card - Rate: 95 - - Index: 288 - Item: Cobalt_Mineral_Card - Rate: 95 - - Index: 289 - Item: Pinguicula_Card - Rate: 95 - - Index: 290 - Item: Hell_Apocalips_Card - Rate: 95 - - Index: 291 - Item: Scaraba_Card - Rate: 95 - - Index: 292 - Item: Dolomedes_Card - Rate: 95 - - Index: 293 - Item: Miming_Card - Rate: 95 - - Index: 294 - Item: Little_Fatum_Card - Rate: 95 - - Index: 295 - Item: Parus_Card - Rate: 95 - - Index: 296 - Item: Angra_Mantis_Card - Rate: 95 - - Index: 297 - Item: Pom_Spider_Card - Rate: 95 - - Index: 298 - Item: Alnoldi_Card - Rate: 95 - - Index: 299 - Item: Comodo_Card - Rate: 95 - - Index: 300 - Item: Cendrawasih_Card - Rate: 95 - - Index: 301 - Item: Banaspaty_Card - Rate: 95 - - Index: 302 - Item: Butoijo_Card - Rate: 95 - - Index: 303 - Item: Sedora_Card - Rate: 95 - - Index: 304 - Item: Sropho_Card - Rate: 95 - - Index: 305 - Item: Pot_Dofle_Card - Rate: 95 - - Index: 306 - Item: Siorava_Card - Rate: 95 - - Index: 307 - Item: Red_Eruma_Card - Rate: 95 - - Index: 308 - Item: Mini_Octopus_Card - Rate: 95 - - Index: 309 - Item: Alphoccio_Card - Rate: 95 - - Index: 310 - Item: Ceila_Card - Rate: 95 - - Index: 311 - Item: Chen_Card - Rate: 95 - - Index: 312 - Item: Flamel_Card - Rate: 95 - - Index: 313 - Item: Gertie_Card - Rate: 95 - - Index: 314 - Item: Randel_Card - Rate: 95 - - Index: 315 - Item: Trentini_Card - Rate: 95 - - Index: 316 - Item: Bungisngis_Card - Rate: 95 - - Index: 317 - Item: Engkanto_Card - Rate: 95 - - Index: 318 - Item: Manananggal_Card - Rate: 95 - - Index: 319 - Item: Mangkukulam_Card - Rate: 95 - - Index: 320 - Item: Tikbalang_Card - Rate: 95 - - Index: 321 - Item: Tiyanak_Card - Rate: 95 - - Index: 322 - Item: Wakwak_Card - Rate: 95 - - Index: 323 - Item: Jejeling_Card - Rate: 95 - - Index: 324 - Item: Menblatt_Card - Rate: 95 - - Index: 325 - Item: Petal_Card - Rate: 95 - - Index: 326 - Item: Cenere_Card - Rate: 95 - - Index: 327 - Item: AntiqueBook_Card - Rate: 95 - - Index: 328 - Item: LichternB_Card - Rate: 95 - - Index: 329 - Item: LichternY_Card - Rate: 95 - - Index: 330 - Item: LichternR_Card - Rate: 95 - - Index: 331 - Item: LichternG_Card - Rate: 95 - - Index: 332 - Item: FaithfulManager_Card - Rate: 95 - - Index: 333 - Item: White_Knightage_Card - Rate: 95 - - Index: 334 - Item: Khaliz_Knightage_Card - Rate: 95 - - Index: 335 - Item: Big_Ben_Card - Rate: 95 - - Index: 336 - Item: Big_Bell_Card - Rate: 95 - - Index: 337 - Item: Neo_Punk_Card - Rate: 95 - - Index: 338 - Item: Arc_Elder_Card - Rate: 95 - - Index: 339 - Item: Time_Keeper_Card - Rate: 95 - - Index: 340 - Item: P_Archer_Skeleton_Card - Rate: 95 - - Index: 341 - Item: P_Soldier_Skeleton_Card - Rate: 95 - - Index: 342 - Item: P_Amdarais_Card - Rate: 95 - - Index: 343 - Item: Immotal_Corps_Card - Rate: 95 - - Index: 344 - Item: Watcher_Card - Rate: 95 - - Index: 345 - Item: Tappy_Card - Rate: 95 - - Index: 346 - Item: Frozenwolf_Card - Rate: 95 - - Index: 347 - Item: Zombie_Guard_Card - Rate: 95 - - Index: 348 - Item: Grave_Arclouse_Card - Rate: 95 - - Index: 349 - Item: Grave_Mimic_Card - Rate: 95 - - Index: 350 - Item: Grave_Minorous_Card - Rate: 95 - - Index: 351 - Item: Grave_Mummy_Card - Rate: 95 - - Index: 352 - Item: Grave_A_Mummy_Card - Rate: 95 - - Index: 353 - Item: Grave_Verit_Card - Rate: 95 - - Index: 354 - Item: Eggring_Card - Rate: 95 - - Index: 355 - Item: Basilisk1_Card - Rate: 95 - - Index: 356 - Item: Basilisk2_Card - Rate: 95 - - Index: 357 - Item: Leaf_Lunatic_Card - Rate: 95 - - Index: 358 - Item: Grass_Fabre_Card - Rate: 95 - - Index: 359 - Item: Wild_Honet_Card - Rate: 95 - - Index: 360 - Item: Sw_Roda_Frog_Card - Rate: 95 - - Index: 361 - Item: Hunter_Wolf_Card - Rate: 95 - - Index: 362 - Item: Trance_Spore_Card - Rate: 95 - - Index: 363 - Item: Ju_Mandragora_Card - Rate: 95 - - Index: 364 - Item: Fru_Pom_Spider_Card - Rate: 95 - - Index: 365 - Item: Step_Card - Rate: 95 - - Index: 366 - Item: Rock_Step_Card - Rate: 95 - - Index: 367 - Item: Kick_Step_Card - Rate: 95 - - Index: 368 - Item: KickAndKick_Card - Rate: 95 - - Index: 369 - Item: GreenCenere_Card - Rate: 95 - - Index: 370 - Item: RepairRobot_T_Card - Rate: 95 - - Index: 371 - Item: ExplorationRover_T_Card - Rate: 95 - - Index: 372 - Item: Scr_MT_Robots_Card - Rate: 95 - - Index: 373 - Item: GC109_Card - Rate: 95 - - Index: 374 - Item: DR815_Card - Rate: 95 - - Index: 375 - Item: Fire_Condor_Card - Rate: 95 - - Index: 376 - Item: Fire_Sand_Man_Card - Rate: 95 - - Index: 377 - Item: Fire_Frilldora_Card - Rate: 95 - - Index: 378 - Item: Fire_Golem_Card - Rate: 95 - - Index: 379 - Item: Fulbuk_Card - Rate: 95 - - Index: 380 - Item: AngerNineTail_Card - Rate: 95 - - Index: 381 - Item: BitterBonGun_Card - Rate: 95 - - Index: 382 - Item: BitterSohee_Card - Rate: 95 - - Index: 383 - Item: BitterMunak_Card - Rate: 95 - - Index: 384 - Item: BitterArcherSk_Card - Rate: 95 - - Index: 385 - Item: WizardOfVeritas_Card - Rate: 95 - - Index: 386 - Item: FuryHero_Card - Rate: 95 - - Index: 387 - Item: SweetNightM_Card - Rate: 95 - - Index: 388 - Item: MattDrainliar_Card - Rate: 95 - - Index: 389 - Item: LivingDead_Card - Rate: 95 - - Index: 390 - Item: AngerGazeti_Card - Rate: 95 - - Index: 391 - Item: AngerSnowier_Card - Rate: 95 - - Index: 392 - Item: AngerIceTitan_Card - Rate: 95 - - Index: 393 - Item: OminousSolider_Card - Rate: 95 - - Index: 394 - Item: OminousPermeter_Card - Rate: 95 - - Index: 395 - Item: OminousHeater_Card - Rate: 95 - - Index: 396 - Item: OminousAssulter_Card - Rate: 95 - - Index: 397 - Item: OminousFreezer_Card - Rate: 95 - - Index: 398 - Item: Iara_Card - Rate: 95 - - Index: 399 - Item: Piranha_Card - Rate: 95 - - Index: 400 - Item: Curupira_Card - Rate: 95 - - Index: 401 - Item: Toucan_Card - Rate: 95 - - Index: 402 - Item: Jaguar_Card - Rate: 95 - - Index: 403 - Item: Headless_Mule_Card - Rate: 95 - - Index: 404 - Item: Human_Kimera_Card - Rate: 95 - - Index: 405 - Item: Matter_Kimera_Card - Rate: 95 - - Index: 406 - Item: Heart_Hunter_Card - Rate: 95 - - Index: 407 - Item: Wood_Goblin_Card - Rate: 95 - - Index: 408 - Item: Les_Card - Rate: 95 - - Index: 409 - Item: Uzhas_Card - Rate: 95 - - Index: 410 - Item: Vavayaga_Card - Rate: 95 - - Index: 411 - Item: Mavka_Card - Rate: 95 - - Index: 412 - Item: Faceworm_Card - Rate: 95 - - Index: 413 - Item: Faceworm_Egg_Card - Rate: 95 - - Index: 414 - Item: Faceworm_L_Card - Rate: 95 - - Index: 415 - Item: Payon_Soldier_Card - Rate: 95 - - Index: 416 - Item: Cowraiders1_Card - Rate: 95 - - Index: 417 - Item: Cowraiders2_Card - Rate: 95 - - Index: 418 - Item: Cowraiders3_Card - Rate: 95 - - Index: 419 - Item: E_Cowraiders1_Card - Rate: 95 - - Index: 420 - Item: E_Cowraiders2_Card - Rate: 95 - - Index: 421 - Item: E_Cowraiders3_Card - Rate: 95 - - Index: 422 - Item: Rr_Cramp_Card - Rate: 95 - - Index: 423 - Item: Rr_Arclouse_Card - Rate: 95 - - Index: 424 - Item: Gaster_Card - Rate: 95 - - Index: 425 - Item: Coyote_Card - Rate: 95 - - Index: 426 - Item: AirShip_Raid_Card - Rate: 95 - - Index: 427 - Item: Archi_Card - Rate: 95 - - Index: 428 - Item: Dio_Anemos_Card - Rate: 95 - - Index: 429 - Item: Geffen_Gang_Card - Rate: 95 - - Index: 430 - Item: Geffen_Thug_Card - Rate: 95 - - Index: 431 - Item: Geffen_Thief_Card - Rate: 95 - - Index: 432 - Item: Pa_Monk_Card - Rate: 95 - - Index: 433 - Item: Ordre_Card - Rate: 95 - - Index: 434 - Item: Blut_Hase_Card - Rate: 95 - - Index: 435 - Item: Kuro_Akuma_Card - Rate: 95 - - Index: 436 - Item: Hyper_Death_Card - Rate: 95 - - Index: 437 - Item: Rechenier_Card - Rate: 95 - - Index: 438 - Item: Odorico_Card - Rate: 95 - - Index: 439 - Item: Jew_Card - Rate: 95 - - Index: 440 - Item: Evil_Shadow_Card - Rate: 95 - - Index: 441 - Item: Colorful_T_Bear_Card - Rate: 95 - - Index: 442 - Item: Pitman_Worker_Card - Rate: 95 - - Index: 443 - Item: Fragment_Of_Soul_Card - Rate: 95 - - Index: 444 - Item: Sinister_Obsidian_Card - Rate: 95 - - Index: 445 - Item: Ancient_Trijoint_Card - Rate: 95 - - Index: 446 - Item: Ancient_Sta_Golem_Card - Rate: 95 - - Index: 447 - Item: Ancient_Megalith_Card - Rate: 95 - - Index: 448 - Item: Ancient_S_Shooter_Card - Rate: 95 - - Index: 449 - Item: Ancient_W_Shooter_Card - Rate: 95 - - Index: 450 - Item: Ancient_W_Fighter_Card - Rate: 95 - - Index: 451 - Item: E_EA2S_Card - Rate: 95 - - Index: 452 - Item: Bellare_Card - Rate: 95 - - Index: 453 - Item: High_Bellare_Card - Rate: 95 - - Index: 454 - Item: Sanare_Card - Rate: 95 - - Index: 455 - Item: High_Sanare_Card - Rate: 95 - - Index: 456 - Item: Plaga_Card - Rate: 95 - - Index: 457 - Item: Mutant_Plaga_Card - Rate: 95 - - Index: 458 - Item: Dolor_Card - Rate: 95 - - Index: 459 - Item: Mt_Dolor_Card - Rate: 95 - - Index: 460 - Item: Venenum_Card - Rate: 95 - - Index: 461 - Item: Mt_Venenum_Card - Rate: 95 - - Index: 462 - Item: Caput_Card - Rate: 95 - - Index: 463 - Item: Mt_Caput_Card - Rate: 95 - - Index: 464 - Item: E_EA1L_Card - Rate: 95 - - Index: 465 - Item: LivingDeath_Card - Rate: 95 - - Index: 466 - Item: Chaos_Ba_Jr_Card - Rate: 95 - - Index: 467 - Item: Chaos_S_Winder_Card - Rate: 95 - - Index: 468 - Item: Chaos_H_Fly_Card - Rate: 95 - - Index: 469 - Item: Chaos_Mantis_Card - Rate: 95 - - Index: 470 - Item: Chaos_Goring_Card - Rate: 95 - - Index: 471 - Item: Chaos_K_Mantis_Card - Rate: 95 - - Index: 472 - Item: Chaos_Poporing_Card - Rate: 95 - - Index: 473 - Item: Chaos_Stem_W_Card - Rate: 95 - - Index: 474 - Item: Firm_Kaho_Card - Rate: 95 - - Index: 475 - Item: Firm_Lava_G_Card - Rate: 95 - - Index: 476 - Item: Firm_Explosion_Card - Rate: 95 - - Index: 477 - Item: Firm_Deleter1_Card - Rate: 95 - - Index: 478 - Item: Firm_Deleter2_Card - Rate: 95 - - Index: 479 - Item: Firm_Nightmare_T_Card - Rate: 95 - - Index: 480 - Item: Firm_Blazzer_Card - Rate: 95 - - Index: 481 - Item: Polluted_Raydric_Card - Rate: 95 - - Index: 482 - Item: Polluted_Ray_A_Card - Rate: 95 - - Index: 483 - Item: Frozen_Gargoyle_Card - Rate: 95 - - Index: 484 - Item: Polluted_Sting_Card - Rate: 95 - - Index: 485 - Item: Prison_Breaker_Card - Rate: 95 - - Index: 486 - Item: Flame_Ghost_Card - Rate: 95 - - Index: 487 - Item: Polluted_W_Man_Card - Rate: 95 - - Index: 488 - Item: C_White_Knight_Card - Rate: 95 - - Index: 489 - Item: C_Khaliz_Knight_Card - Rate: 95 - - Index: 490 - Item: C_Raydric_Card - Rate: 95 - - Index: 491 - Item: C_Raydric_Archer_Card - Rate: 95 - - Index: 492 - Item: XM_Tree_Card - Rate: 95 - - Index: 493 - Item: XM_Cookie_Card - Rate: 95 - - Index: 494 - Item: XM_Mystcase_Card - Rate: 95 - - Index: 495 - Item: XM_Lude_Card - Rate: 95 - - Index: 496 - Item: XM_Hylozoist_Card - Rate: 95 - - Index: 497 - Item: XM_Marionette_Card - Rate: 95 - - Index: 498 - Item: XM_Teddy_Bear_Card - Rate: 95 - - Index: 499 - Item: Poisonous_Card - Rate: 95 - - Index: 500 - Item: Toxious_Card - Rate: 95 - - Index: 501 - Item: Porcellio_W_Card - Rate: 95 - - Index: 502 - Item: Neo_Mineral_Card - Rate: 95 - - Index: 503 - Item: Abyss_Man_Card - Rate: 95 - - Index: 504 - Item: Jeweliant_Card - Rate: 95 - - Index: 505 - Item: Angelgolt_Card - Rate: 95 - - Index: 506 - Item: Plasma_Spt_Card - Rate: 95 - - Index: 507 - Item: Plasma_Arch_Card - Rate: 95 - - Index: 508 - Item: Holy_Frus_Card - Rate: 95 - - Index: 509 - Item: Holy_Skogul_Card - Rate: 95 - - Index: 510 - Item: Ferus_P_Card - Rate: 95 - - Index: 511 - Item: Treasure_Mimic_Card - Rate: 95 - - Index: 512 - Item: Acidus_B_Card - Rate: 95 - - Index: 513 - Item: Acidus_S_Card - Rate: 95 - - Index: 514 - Item: Bone_Ferus_Card - Rate: 95 - - Index: 515 - Item: Bone_Acidus_Card - Rate: 95 - - Index: 516 - Item: Beta_Guards_Ng_Card - Rate: 95 - - Index: 517 - Item: O_Cleaner_Ng_Card - Rate: 95 - - Index: 518 - Item: Assistant_Card - Rate: 95 - - Index: 519 - Item: Assistant_H_Card - Rate: 95 - - Index: 520 - Item: Dry_Rafflesia_Card - Rate: 95 - - Index: 521 - Item: Dry_Rafflesia_H_Card - Rate: 95 - - Index: 522 - Item: Alnoldi_Ex_Card - Rate: 95 - - Index: 523 - Item: Alnoldi_Ex_H_Card - Rate: 95 - - Index: 524 - Item: Beta_Scissore_Ng_Card - Rate: 95 - - Index: 525 - Item: B_Scissore_Ng_H_Card - Rate: 95 - - Index: 526 - Item: Verporta_Card - Rate: 95 - - Index: 527 - Item: Verporte_H_Card - Rate: 95 - - Index: 528 - Item: Papila_Card - Rate: 95 - - Index: 529 - Item: Papila_H_Card - Rate: 95 - - Index: 530 - Item: Papila_Ruba_Card - Rate: 95 - - Index: 531 - Item: Papila_Ruba_H_Card - Rate: 95 - - Index: 532 - Item: Papila_Cae_Card - Rate: 95 - - Index: 533 - Item: Papila_Cae_H_Card - Rate: 95 - - Index: 534 - Item: Aries_Card - Rate: 95 - - Index: 535 - Item: Aries_H_Card - Rate: 95 - - Index: 536 - Item: Beta_Cleaner_Card - Rate: 95 - - Index: 537 - Item: Beta_Baths_A_Card - Rate: 95 - - Index: 538 - Item: Bath_Mermaid_Card - Rate: 95 - - Index: 539 - Item: Bookworm_Card - Rate: 95 - - Index: 540 - Item: Roaming_Splbook_Card - Rate: 95 - - Index: 541 - Item: Pitaya_R_Card - Rate: 95 - - Index: 542 - Item: Venenum3_Card - Rate: 95 - - Index: 543 - Item: EP17_2_Cramp_Card - Rate: 95 - - Index: 544 - Item: Waterfall_Card - Rate: 95 - - Index: 545 - Item: Bellare3_Card - Rate: 95 - - Index: 546 - Item: Dolor3_Card - Rate: 95 - - Index: 547 - Item: Plasma_Y_Card - Rate: 95 - - Index: 548 - Item: Plaga3_Card - Rate: 95 - - Index: 549 - Item: Sanare3_Card - Rate: 95 - - Index: 550 - Item: Plasma_R_Card - Rate: 95 - - Index: 551 - Item: Plasma_R2_Card - Rate: 95 - - Index: 552 - Item: EP17_2_Phen_Card - Rate: 95 - - Index: 553 - Item: EP17_2_Sword_Fish_Card - Rate: 95 - - Index: 554 - Item: EP17_2_Piranha_Card - Rate: 95 - - Index: 555 - Item: EP17_2_Marc_Card - Rate: 95 - - Index: 556 - Item: Pitaya_Y_Card - Rate: 95 - - Index: 557 - Item: Pitaya_V_Card - Rate: 95 - - Index: 558 - Item: Pitaya_B_Card - Rate: 95 - - Index: 559 - Item: Pitaya_G_Card - Rate: 95 - - Index: 560 - Item: ILL_Sropho_Card - Rate: 95 - - Index: 561 - Item: ILL_Obeaune_Card - Rate: 95 - - Index: 562 - Item: ILL_Deviace_Card - Rate: 95 - - Index: 563 - Item: ILL_Marse_Card - Rate: 95 - - Index: 564 - Item: ILL_Merman_Card - Rate: 95 - - Index: 565 - Item: ILL_Sedora_Card - Rate: 95 - - Index: 566 - Item: ILL_Sword_Fish_Card - Rate: 95 - - Index: 567 - Item: ILL_Strouf_Card - Rate: 95 - - Index: 568 - Item: ILL_Phen_Card - Rate: 95 - - Index: 569 - Item: ILL_King_Dramoh_Card - Rate: 95 - - Index: 570 - Item: Poring__Card - Rate: 190 - - Index: 571 - Item: Metaller_Card - Rate: 190 - - Index: 572 - Item: Thara_Frog_Card - Rate: 190 - - Index: 573 - Item: Goblin_Card - Rate: 190 - - Index: 574 - Item: Cornutus_Card - Rate: 190 - - Index: 575 - Item: Anacondaq_Card - Rate: 190 - - Index: 576 - Item: Caramel_Card - Rate: 190 - - Index: 577 - Item: Zerom_Card - Rate: 190 - - Index: 578 - Item: Kaho_Card - Rate: 190 - - Index: 579 - Item: Orc_Warrior_Card - Rate: 190 - - Index: 580 - Item: Megalodon_Card - Rate: 190 - - Index: 581 - Item: Scorpion_Card - Rate: 190 - - Index: 582 - Item: Drainliar_Card - Rate: 190 - - Index: 583 - Item: Eggyra_Card - Rate: 190 - - Index: 584 - Item: Orc_Zombie_Card - Rate: 190 - - Index: 585 - Item: Pirate_Skel_Card - Rate: 190 - - Index: 586 - Item: BigFoot_Card - Rate: 190 - - Index: 587 - Item: Argos_Card - Rate: 190 - - Index: 588 - Item: Magnolia_Card - Rate: 190 - - Index: 589 - Item: Phen_Card - Rate: 190 - - Index: 590 - Item: Savage_Card - Rate: 190 - - Index: 591 - Item: Mantis_Card - Rate: 190 - - Index: 592 - Item: Flora_Card - Rate: 190 - - Index: 593 - Item: Hode_Card - Rate: 190 - - Index: 594 - Item: Snowier_Card - Rate: 190 - - Index: 595 - Item: Drosera_Card - Rate: 190 - - Index: 596 - Item: Magmaring_Card - Rate: 190 - - Index: 597 - Item: Ragged_Zombie_Card - Rate: 190 - - Index: 598 - Item: Hell_Poodle_Card - Rate: 190 - - Index: 599 - Item: Banshee_Card - Rate: 190 - - Index: 600 - Item: Kukre_Card - Rate: 284 - - Index: 601 - Item: Pecopeco_Card - Rate: 284 - - Index: 602 - Item: Hydra_Card - Rate: 284 - - Index: 603 - Item: Muka_Card - Rate: 284 - - Index: 604 - Item: Snake_Card - Rate: 284 - - Index: 605 - Item: Zombie_Card - Rate: 284 - - Index: 606 - Item: Stainer_Card - Rate: 284 - - Index: 607 - Item: Creamy_Card - Rate: 284 - - Index: 608 - Item: Coco_Card - Rate: 284 - - Index: 609 - Item: Steel_Chonchon_Card - Rate: 284 - - Index: 610 - Item: Andre_Card - Rate: 284 - - Index: 611 - Item: Smokie_Card - Rate: 284 - - Index: 612 - Item: Horn_Card - Rate: 284 - - Index: 613 - Item: Martin_Card - Rate: 284 - - Index: 614 - Item: Poison_Spore_Card - Rate: 284 - - Index: 615 - Item: Vadon_Card - Rate: 284 - - Index: 616 - Item: Thief_Bug_Male_Card - Rate: 284 - - Index: 617 - Item: Yoyo_Card - Rate: 284 - - Index: 618 - Item: Elder_Wilow_Card - Rate: 284 - - Index: 619 - Item: Marina_Card - Rate: 284 - - Index: 620 - Item: Dustiness_Card - Rate: 284 - - Index: 621 - Item: Anopheles_Card - Rate: 284 - - Index: 622 - Item: Hill_Wind_Card - Rate: 284 - - Index: 623 - Item: Armaia_Card - Rate: 284 - - Index: 624 - Item: Rawrel_Card - Rate: 284 - - Index: 625 - Item: Gremlin_Card - Rate: 284 - - Index: 626 - Item: Eremes_Card - Rate: 284 - - Index: 627 - Item: Green_Iguana_Card - Rate: 284 - - Index: 628 - Item: Ferus_Card - Rate: 284 - - Index: 629 - Item: Novus_Card - Rate: 284 - - Index: 630 - Item: Dragon_Egg_Card - Rate: 284 - - Index: 631 - Item: Deathword_Card - Rate: 284 - - Index: 632 - Item: Stapo_Card - Rate: 284 - - Index: 633 - Item: Pecopeco_Egg_Card - Rate: 379 - - Index: 634 - Item: Roda_Frog_Card - Rate: 474 - - Index: 635 - Item: Savage_Babe_Card - Rate: 474 - - Index: 636 - Item: Desert_Wolf_Babe_Card - Rate: 474 - - Index: 637 - Item: Plankton_Card - Rate: 474 - - Index: 638 - Item: Skeleton_Card - Rate: 474 - - Index: 639 - Item: Pupa_Card - Rate: 569 - - Index: 640 - Item: Ambernite_Card - Rate: 569 - - Index: 641 - Item: Poporing_Card - Rate: 569 - - Index: 642 - Item: Worm_Tail_Card - Rate: 569 - - Index: 643 - Item: Thief_Bug_Female_Card - Rate: 853 - - Index: 644 - Item: Tarou_Card - Rate: 853 - - Index: 645 - Item: Wolf_Card - Rate: 853 - - Index: 646 - Item: Mandragora_Card - Rate: 853 - - Index: 647 - Item: Hornet_Card - Rate: 948 - - Index: 648 - Item: Farmiliar_Card - Rate: 948 - - Index: 649 - Item: Rocker_Card - Rate: 948 - - Index: 650 - Item: Spore_Card - Rate: 948 - - Index: 651 - Item: Novice_Poring_Card - Rate: 948 - - Index: 652 - Item: Andre_Egg_Card - Rate: 1137 - - Index: 653 - Item: Condor_Card - Rate: 1137 - - Index: 654 - Item: Thief_Bug_Card - Rate: 1137 - - Index: 655 - Item: Lunatic_Card - Rate: 1327 - - Index: 656 Item: Poring_Card - Rate: 1422 - - Index: 657 + Rate: 15 + - Index: 1 Item: Fabre_Card - Rate: 1611 - - Index: 658 - Item: Picky_Card - Rate: 1611 - - Index: 659 - Item: Chonchon_Card - Rate: 1611 - - Index: 660 - Item: Wilow_Card - Rate: 1611 - - Index: 661 - Item: Picky__Card - Rate: 1611 - - Index: 662 + Rate: 17 + - Index: 2 + Item: Pupa_Card + Rate: 6 + - Index: 3 Item: Drops_Card - Rate: 1706 - - Index: 663 + Rate: 18 + - Index: 4 + Item: Poring__Card + Rate: 2 + - Index: 5 + Item: Lunatic_Card + Rate: 14 + - Index: 6 + Item: Pecopeco_Egg_Card + Rate: 4 + - Index: 7 + Item: Picky_Card + Rate: 17 + - Index: 8 + Item: Chonchon_Card + Rate: 17 + - Index: 9 + Item: Wilow_Card + Rate: 17 + - Index: 10 + Item: Picky__Card + Rate: 17 + - Index: 11 Item: Thief_Bug_Egg_Card - Rate: 1801 + Rate: 19 + - Index: 12 + Item: Andre_Egg_Card + Rate: 12 + - Index: 13 + Item: Roda_Frog_Card + Rate: 5 + - Index: 14 + Item: Condor_Card + Rate: 12 + - Index: 15 + Item: Thief_Bug_Card + Rate: 12 + - Index: 16 + Item: Savage_Babe_Card + Rate: 5 + - Index: 17 + Item: Hornet_Card + Rate: 10 + - Index: 18 + Item: Farmiliar_Card + Rate: 10 + - Index: 19 + Item: Rocker_Card + Rate: 10 + - Index: 20 + Item: Spore_Card + Rate: 10 + - Index: 21 + Item: Desert_Wolf_Babe_Card + Rate: 5 + - Index: 22 + Item: Plankton_Card + Rate: 5 + - Index: 23 + Item: Skeleton_Card + Rate: 5 + - Index: 24 + Item: Thief_Bug_Female_Card + Rate: 9 + - Index: 25 + Item: Kukre_Card + Rate: 3 + - Index: 26 + Item: Tarou_Card + Rate: 9 + - Index: 27 + Item: Wolf_Card + Rate: 9 + - Index: 28 + Item: Mandragora_Card + Rate: 9 + - Index: 29 + Item: Pecopeco_Card + Rate: 3 + - Index: 30 + Item: Ambernite_Card + Rate: 6 + - Index: 31 + Item: Poporing_Card + Rate: 6 + - Index: 32 + Item: Worm_Tail_Card + Rate: 6 + - Index: 33 + Item: Hydra_Card + Rate: 3 + - Index: 34 + Item: Muka_Card + Rate: 3 + - Index: 35 + Item: Snake_Card + Rate: 3 + - Index: 36 + Item: Zombie_Card + Rate: 3 + - Index: 37 + Item: Stainer_Card + Rate: 3 + - Index: 38 + Item: Creamy_Card + Rate: 3 + - Index: 39 + Item: Coco_Card + Rate: 3 + - Index: 40 + Item: Steel_Chonchon_Card + Rate: 3 + - Index: 41 + Item: Andre_Card + Rate: 3 + - Index: 42 + Item: Smokie_Card + Rate: 3 + - Index: 43 + Item: Horn_Card + Rate: 3 + - Index: 44 + Item: Martin_Card + Rate: 3 + - Index: 45 + Item: Poison_Spore_Card + Rate: 3 + - Index: 46 + Item: Vadon_Card + Rate: 3 + - Index: 47 + Item: Thief_Bug_Male_Card + Rate: 3 + - Index: 48 + Item: Yoyo_Card + Rate: 3 + - Index: 49 + Item: Elder_Wilow_Card + Rate: 3 + - Index: 50 + Item: Vitata_Card + Rate: 1 + - Index: 51 + Item: Marina_Card + Rate: 3 + - Index: 52 + Item: Dustiness_Card + Rate: 3 + - Index: 53 + Item: Metaller_Card + Rate: 2 + - Index: 54 + Item: Thara_Frog_Card + Rate: 2 + - Index: 55 + Item: Goblin_Card + Rate: 2 + - Index: 56 + Item: Cornutus_Card + Rate: 2 + - Index: 57 + Item: Anacondaq_Card + Rate: 2 + - Index: 58 + Item: Caramel_Card + Rate: 2 + - Index: 59 + Item: Zerom_Card + Rate: 2 + - Index: 60 + Item: Kaho_Card + Rate: 2 + - Index: 61 + Item: Orc_Warrior_Card + Rate: 2 + - Index: 62 + Item: Megalodon_Card + Rate: 2 + - Index: 63 + Item: Scorpion_Card + Rate: 2 + - Index: 64 + Item: Drainliar_Card + Rate: 2 + - Index: 65 + Item: Eggyra_Card + Rate: 2 + - Index: 66 + Item: Orc_Zombie_Card + Rate: 2 + - Index: 67 + Item: Golem_Card + Rate: 1 + - Index: 68 + Item: Pirate_Skel_Card + Rate: 2 + - Index: 69 + Item: BigFoot_Card + Rate: 2 + - Index: 70 + Item: Argos_Card + Rate: 2 + - Index: 71 + Item: Magnolia_Card + Rate: 2 + - Index: 72 + Item: Phen_Card + Rate: 2 + - Index: 73 + Item: Savage_Card + Rate: 2 + - Index: 74 + Item: Mantis_Card + Rate: 2 + - Index: 75 + Item: Flora_Card + Rate: 2 + - Index: 76 + Item: Hode_Card + Rate: 2 + - Index: 77 + Item: Desert_Wolf_Card + Rate: 1 + - Index: 78 + Item: Rafflesia_Card + Rate: 1 + - Index: 79 + Item: Marine_Sphere_Card + Rate: 1 + - Index: 80 + Item: Orc_Skeleton_Card + Rate: 1 + - Index: 81 + Item: Soldier_Skeleton_Card + Rate: 1 + - Index: 82 + Item: Giearth_Card + Rate: 1 + - Index: 83 + Item: Frilldora_Card + Rate: 1 + - Index: 84 + Item: Sword_Fish_Card + Rate: 1 + - Index: 85 + Item: Munak_Card + Rate: 1 + - Index: 86 + Item: Kobold_Card + Rate: 1 + - Index: 87 + Item: Skel_Worker_Card + Rate: 1 + - Index: 88 + Item: Obeaune_Card + Rate: 1 + - Index: 89 + Item: Archer_Skeleton_Card + Rate: 1 + - Index: 90 + Item: Marse_Card + Rate: 1 + - Index: 91 + Item: Zenorc_Card + Rate: 1 + - Index: 92 + Item: Matyr_Card + Rate: 1 + - Index: 93 + Item: Dokebi_Card + Rate: 1 + - Index: 94 + Item: Pasana_Card + Rate: 1 + - Index: 95 + Item: Sohee_Card + Rate: 1 + - Index: 96 + Item: Sand_Man_Card + Rate: 1 + - Index: 97 + Item: Whisper_Card + Rate: 1 + - Index: 98 + Item: Horong_Card + Rate: 1 + - Index: 99 + Item: Requiem_Card + Rate: 1 + - Index: 100 + Item: Marc_Card + Rate: 1 + - Index: 101 + Item: Mummy_Card + Rate: 1 + - Index: 102 + Item: Verit_Card + Rate: 1 + - Index: 103 + Item: Myst_Card + Rate: 1 + - Index: 104 + Item: Jakk_Card + Rate: 1 + - Index: 105 + Item: Ghoul_Card + Rate: 1 + - Index: 106 + Item: Strouf_Card + Rate: 1 + - Index: 107 + Item: Marduk_Card + Rate: 1 + - Index: 108 + Item: Marionette_Card + Rate: 1 + - Index: 109 + Item: Argiope_Card + Rate: 1 + - Index: 110 + Item: Hunter_Fly_Card + Rate: 1 + - Index: 111 + Item: Isis_Card + Rate: 1 + - Index: 112 + Item: Side_Winder_Card + Rate: 1 + - Index: 113 + Item: Petit_Card + Rate: 1 + - Index: 114 + Item: Bathory_Card + Rate: 1 + - Index: 115 + Item: Petit__Card + Rate: 1 + - Index: 116 + Item: Deviruchi_Card + Rate: 1 + - Index: 117 + Item: Medusa_Card + Rate: 1 + - Index: 118 + Item: Deviace_Card + Rate: 1 + - Index: 119 + Item: Minorous_Card + Rate: 1 + - Index: 120 + Item: Nightmare_Card + Rate: 1 + - Index: 121 + Item: Baphomet__Card + Rate: 1 + - Index: 122 + Item: Scorpion_King_Card + Rate: 1 + - Index: 123 + Item: Daydric_Card + Rate: 1 + - Index: 124 + Item: Khalitzburg_Card + Rate: 1 + - Index: 125 + Item: Anubis_Card + Rate: 1 + - Index: 126 + Item: Joker_Card + Rate: 1 + - Index: 127 + Item: Knight_Of_Abyss_Card + Rate: 1 + - Index: 128 + Item: Evil_Druid_Card + Rate: 1 + - Index: 129 + Item: Gargoyle_Card + Rate: 1 + - Index: 130 + Item: Goat_Card + Rate: 1 + - Index: 131 + Item: Gajomart_Card + Rate: 1 + - Index: 132 + Item: Galapago_Card + Rate: 1 + - Index: 133 + Item: Crab_Card + Rate: 1 + - Index: 134 + Item: Rice_Cake_Boy_Card + Rate: 1 + - Index: 135 + Item: Steam_Goblin_Card + Rate: 1 + - Index: 136 + Item: Goblin_Archer_Card + Rate: 1 + - Index: 137 + Item: Flying_Deleter_Card + Rate: 1 + - Index: 138 + Item: Nine_Tail_Card + Rate: 1 + - Index: 139 + Item: Antique_Firelock_Card + Rate: 1 + - Index: 140 + Item: Grand_Peco_Card + Rate: 1 + - Index: 141 + Item: Grizzly_Card + Rate: 1 + - Index: 142 + Item: Gullinbursti_Card + Rate: 1 + - Index: 143 + Item: Gig_Card + Rate: 1 + - Index: 144 + Item: Nightmare_Terror_Card + Rate: 1 + - Index: 145 + Item: Neraid_Card + Rate: 1 + - Index: 146 + Item: Dark_Frame_Card + Rate: 1 + - Index: 147 + Item: Dark_Priest_Card + Rate: 1 + - Index: 148 + Item: The_Paper_Card + Rate: 1 + - Index: 149 + Item: Demon_Pungus_Card + Rate: 1 + - Index: 150 + Item: Poison_Toad_Card + Rate: 1 + - Index: 151 + Item: Dullahan_Card + Rate: 1 + - Index: 152 + Item: Dryad_Card + Rate: 1 + - Index: 153 + Item: Dragon_Tail_Card + Rate: 1 + - Index: 154 + Item: Driller_Card + Rate: 1 + - Index: 155 + Item: Disguise_Card + Rate: 1 + - Index: 156 + Item: Diabolic_Card + Rate: 1 + - Index: 157 + Item: Lava_Golem_Card + Rate: 1 + - Index: 158 + Item: Rideword_Card + Rate: 1 + - Index: 159 + Item: Raggler_Card + Rate: 1 + - Index: 160 + Item: Raydric_Archer_Card + Rate: 1 + - Index: 161 + Item: Leib_Olmai_Card + Rate: 1 + - Index: 162 + Item: Wraith_Dead_Card + Rate: 1 + - Index: 163 + Item: Wraith_Card + Rate: 1 + - Index: 164 + Item: Loli_Ruri_Card + Rate: 1 + - Index: 165 + Item: Rotar_Zairo_Card + Rate: 1 + - Index: 166 + Item: Lude_Card + Rate: 1 + - Index: 167 + Item: Rybio_Card + Rate: 1 + - Index: 168 + Item: Leaf_Cat_Card + Rate: 1 + - Index: 169 + Item: Marin_Card + Rate: 1 + - Index: 170 + Item: Merman_Card + Rate: 1 + - Index: 171 + Item: Megalith_Card + Rate: 1 + - Index: 172 + Item: Majoruros_Card + Rate: 1 + - Index: 173 + Item: Civil_Servant_Card + Rate: 1 + - Index: 174 + Item: Mini_Demon_Card + Rate: 1 + - Index: 175 + Item: Mimic_Card + Rate: 1 + - Index: 176 + Item: Mystcase_Card + Rate: 1 + - Index: 177 + Item: Miyabi_Ningyo_Card + Rate: 1 + - Index: 178 + Item: Violy_Card + Rate: 1 + - Index: 179 + Item: Wander_Man_Card + Rate: 1 + - Index: 180 + Item: Bon_Gun_Card + Rate: 1 + - Index: 181 + Item: Brilight_Card + Rate: 1 + - Index: 182 + Item: Bloody_Murderer_Card + Rate: 1 + - Index: 183 + Item: Blazzer_Card + Rate: 1 + - Index: 184 + Item: Sasquatch_Card + Rate: 1 + - Index: 185 + Item: Live_Peach_Tree_Card + Rate: 1 + - Index: 186 + Item: Succubus_Card + Rate: 1 + - Index: 187 + Item: Sageworm_Card + Rate: 1 + - Index: 188 + Item: Solider_Card + Rate: 1 + - Index: 189 + Item: Goblin_Leader_Card + Rate: 1 + - Index: 190 + Item: Chepet_Card + Rate: 1 + - Index: 191 + Item: Choco_Card + Rate: 1 + - Index: 192 + Item: Zherlthsh_Card + Rate: 1 + - Index: 193 + Item: Kobold_Leader_Card + Rate: 1 + - Index: 194 + Item: Vocal_Card + Rate: 1 + - Index: 195 + Item: Skeleton_General_Card + Rate: 1 + - Index: 196 + Item: Skel_Prisoner_Card + Rate: 1 + - Index: 197 + Item: Stalactic_Golem_Card + Rate: 1 + - Index: 198 + Item: Stem_Worm_Card + Rate: 1 + - Index: 199 + Item: Stone_Shooter_Card + Rate: 1 + - Index: 200 + Item: Sting_Card + Rate: 1 + - Index: 201 + Item: Spring_Rabbit_Card + Rate: 1 + - Index: 202 + Item: Sleeper_Card + Rate: 1 + - Index: 203 + Item: C_Tower_Manager_Card + Rate: 1 + - Index: 204 + Item: Shinobi_Card + Rate: 1 + - Index: 205 + Item: Increase_Soil_Card + Rate: 1 + - Index: 206 + Item: Wild_Ginseng_Card + Rate: 1 + - Index: 207 + Item: Baby_Leopard_Card + Rate: 1 + - Index: 208 + Item: Anolian_Card + Rate: 1 + - Index: 209 + Item: Cookie_XMAS_Card + Rate: 1 + - Index: 210 + Item: Iron_Fist_Card + Rate: 1 + - Index: 211 + Item: Arclouse_Card + Rate: 1 + - Index: 212 + Item: Apocalips_Card + Rate: 1 + - Index: 213 + Item: Alarm_Card + Rate: 1 + - Index: 214 + Item: Am_Mut_Card + Rate: 1 + - Index: 215 + Item: Assulter_Card + Rate: 1 + - Index: 216 + Item: Aster_Card + Rate: 1 + - Index: 217 + Item: Ancient_Mummy_Card + Rate: 1 + - Index: 218 + Item: Ancient_Worm_Card + Rate: 1 + - Index: 219 + Item: Elder_Card + Rate: 1 + - Index: 220 + Item: Alligator_Card + Rate: 1 + - Index: 221 + Item: Alice_Card + Rate: 1 + - Index: 222 + Item: Orc_Lady_Card + Rate: 1 + - Index: 223 + Item: Orc_Archer_Card + Rate: 1 + - Index: 224 + Item: Wild_Rose_Card + Rate: 1 + - Index: 225 + Item: Wicked_Nymph_Card + Rate: 1 + - Index: 226 + Item: Wooden_Golem_Card + Rate: 1 + - Index: 227 + Item: Wootan_Shooter_Card + Rate: 1 + - Index: 228 + Item: Wootan_Fighter_Card + Rate: 1 + - Index: 229 + Item: Evil_Cloud_Hermit_Card + Rate: 1 + - Index: 230 + Item: Wind_Ghost_Card + Rate: 1 + - Index: 231 + Item: Li_Me_Mang_Ryang_Card + Rate: 1 + - Index: 232 + Item: Explosion_Card + Rate: 1 + - Index: 233 + Item: Injustice_Card + Rate: 1 + - Index: 234 + Item: Incubus_Card + Rate: 1 + - Index: 235 + Item: Giant_Spider_Card + Rate: 1 + - Index: 236 + Item: Giant_Honet_Card + Rate: 1 + - Index: 237 + Item: Dancing_Dragon_Card + Rate: 1 + - Index: 238 + Item: Shellfish_Card + Rate: 1 + - Index: 239 + Item: Zombie_Master_Card + Rate: 1 + - Index: 240 + Item: Zombie_Prisoner_Card + Rate: 1 + - Index: 241 + Item: Gibbet_Card + Rate: 1 + - Index: 242 + Item: Deleter_Card + Rate: 1 + - Index: 243 + Item: Geographer_Card + Rate: 1 + - Index: 244 + Item: Zipper_Bear_Card + Rate: 1 + - Index: 245 + Item: Tengu_Card + Rate: 1 + - Index: 246 + Item: Greatest_General_Card + Rate: 1 + - Index: 247 + Item: Karakasa_Card + Rate: 1 + - Index: 248 + Item: Kapha_Card + Rate: 1 + - Index: 249 + Item: Carat_Card + Rate: 1 + - Index: 250 + Item: Caterpillar_Card + Rate: 1 + - Index: 251 + Item: Kobold_Archer_Card + Rate: 1 + - Index: 252 + Item: Cookie_Card + Rate: 1 + - Index: 253 + Item: Quve_Card + Rate: 1 + - Index: 254 + Item: Kraben_Card + Rate: 1 + - Index: 255 + Item: Cramp_Card + Rate: 1 + - Index: 256 + Item: Cruiser_Card + Rate: 1 + - Index: 257 + Item: Cremy_Fear_Card + Rate: 1 + - Index: 258 + Item: Clock_Card + Rate: 1 + - Index: 259 + Item: Killer_Mantis_Card + Rate: 1 + - Index: 260 + Item: Whisper_Boss_Card + Rate: 1 + - Index: 261 + Item: Tamruan_Card + Rate: 1 + - Index: 262 + Item: Kind_Of_Beetle_Card + Rate: 1 + - Index: 263 + Item: Tri_Joint_Card + Rate: 1 + - Index: 264 + Item: Parasite_Card + Rate: 1 + - Index: 265 + Item: Panzer_Goblin_Card + Rate: 1 + - Index: 266 + Item: Permeter_Card + Rate: 1 + - Index: 267 + Item: Fur_Seal_Card + Rate: 1 + - Index: 268 + Item: Punk_Card + Rate: 1 + - Index: 269 + Item: Penomena_Card + Rate: 1 + - Index: 270 + Item: Pest_Card + Rate: 1 + - Index: 271 + Item: Fake_Angel_Card + Rate: 1 + - Index: 272 + Item: Mobster_Card + Rate: 1 + - Index: 273 + Item: Freezer_Card + Rate: 1 + - Index: 274 + Item: Bloody_Knight_Card + Rate: 1 + - Index: 275 + Item: Hylozoist_Card + Rate: 1 + - Index: 276 + Item: Garm_Baby_Card + Rate: 1 + - Index: 277 + Item: Harpy_Card + Rate: 1 + - Index: 278 + Item: See_Otter_Card + Rate: 1 + - Index: 279 + Item: Blood_Butterfly_Card + Rate: 1 + - Index: 280 + Item: Hyegun_Card + Rate: 1 + - Index: 281 + Item: Phendark_Card + Rate: 1 + - Index: 282 + Item: Heater_Card + Rate: 1 + - Index: 283 + Item: Waste_Stove_Card + Rate: 1 + - Index: 284 + Item: Venomous_Card + Rate: 1 + - Index: 285 + Item: Noxious_Card + Rate: 1 + - Index: 286 + Item: Pitman_Card + Rate: 1 + - Index: 287 + Item: Ungoliant_Card + Rate: 1 + - Index: 288 + Item: Porcellio_Card + Rate: 1 + - Index: 289 + Item: Obsidian_Card + Rate: 1 + - Index: 290 + Item: Mineral_Card + Rate: 1 + - Index: 291 + Item: Teddy_Bear_Card + Rate: 1 + - Index: 292 + Item: Metaling_Card + Rate: 1 + - Index: 293 + Item: Mole_Card + Rate: 1 + - Index: 294 + Item: Anopheles_Card + Rate: 3 + - Index: 295 + Item: Hill_Wind_Card + Rate: 3 + - Index: 296 + Item: Ygnizem_Card + Rate: 1 + - Index: 297 + Item: Armaia_Card + Rate: 3 + - Index: 298 + Item: Whikebain_Card + Rate: 1 + - Index: 299 + Item: Erend_Card + Rate: 1 + - Index: 300 + Item: Rawrel_Card + Rate: 3 + - Index: 301 + Item: Kavac_Card + Rate: 1 + - Index: 302 + Item: Removal_Card + Rate: 1 + - Index: 303 + Item: Gremlin_Card + Rate: 3 + - Index: 304 + Item: Beholder_Card + Rate: 1 + - Index: 305 + Item: Seyren_Card + Rate: 1 + - Index: 306 + Item: Eremes_Card + Rate: 3 + - Index: 307 + Item: Harword_Card + Rate: 1 + - Index: 308 + Item: Magaleta_Card + Rate: 1 + - Index: 309 + Item: Katrinn_Card + Rate: 1 + - Index: 310 + Item: Shecil_Card + Rate: 1 + - Index: 311 + Item: Venatu_Card + Rate: 1 + - Index: 312 + Item: Dimik_Card + Rate: 1 + - Index: 313 + Item: Archdam_Card + Rate: 1 + - Index: 314 + Item: Chung_E_Card + Rate: 1 + - Index: 315 + Item: Orc_Baby_Card_Card + Rate: 1 + - Index: 316 + Item: Green_Iguana_Card + Rate: 3 + - Index: 317 + Item: Acidus_Card + Rate: 1 + - Index: 318 + Item: Acidus__Card + Rate: 1 + - Index: 319 + Item: Ferus_Card + Rate: 3 + - Index: 320 + Item: Ferus__Card + Rate: 1 + - Index: 321 + Item: Novus__Card + Rate: 1 + - Index: 322 + Item: Novus_Card + Rate: 3 + - Index: 323 + Item: Dragon_Egg_Card + Rate: 3 + - Index: 324 + Item: Ancient_Mimic_Card + Rate: 1 + - Index: 325 + Item: Deathword_Card + Rate: 3 + - Index: 326 + Item: Plasma_Card + Rate: 1 + - Index: 327 + Item: Breeze_Card + Rate: 1 + - Index: 328 + Item: Aliza_Card + Rate: 1 + - Index: 329 + Item: Alicel_Card + Rate: 1 + - Index: 330 + Item: Aliot_Card + Rate: 1 + - Index: 331 + Item: Skogul_Card + Rate: 1 + - Index: 332 + Item: Frus_Card + Rate: 1 + - Index: 333 + Item: Agav_Card + Rate: 1 + - Index: 334 + Item: Echio_Card + Rate: 1 + - Index: 335 + Item: Vanberk_Card + Rate: 1 + - Index: 336 + Item: Isilla_Card + Rate: 1 + - Index: 337 + Item: Hodremlin_Card + Rate: 1 + - Index: 338 + Item: Seeker_Card + Rate: 1 + - Index: 339 + Item: Snowier_Card + Rate: 2 + - Index: 340 + Item: Siroma_Card + Rate: 1 + - Index: 341 + Item: Ice_Titan_Card + Rate: 1 + - Index: 342 + Item: Gazeti_Card + Rate: 1 + - Index: 343 + Item: Muscipular_Card + Rate: 1 + - Index: 344 + Item: Drosera_Card + Rate: 2 + - Index: 345 + Item: Roween_Card + Rate: 1 + - Index: 346 + Item: Stapo_Card + Rate: 3 + - Index: 347 + Item: Magmaring_Card + Rate: 2 + - Index: 348 + Item: Imp_Card + Rate: 1 + - Index: 349 + Item: Knocker_Card + Rate: 1 + - Index: 350 + Item: Zombie_Slaughter_Card + Rate: 1 + - Index: 351 + Item: Ragged_Zombie_Card + Rate: 2 + - Index: 352 + Item: Hell_Poodle_Card + Rate: 2 + - Index: 353 + Item: Banshee_Card + Rate: 2 + - Index: 354 + Item: Flame_Skull_Card + Rate: 1 + - Index: 355 + Item: Tatacho_Card + Rate: 1 + - Index: 356 + Item: Aqua_Elemental_Card + Rate: 1 + - Index: 357 + Item: Draco_Card + Rate: 1 + - Index: 358 + Item: Luciola_Vespa_Card + Rate: 1 + - Index: 359 + Item: P_Skeleton_Card + Rate: 1 + - Index: 360 + Item: Centipede_Card + Rate: 1 + - Index: 361 + Item: Cornus_Card + Rate: 1 + - Index: 362 + Item: Dark_Shadow_Card + Rate: 1 + - Index: 363 + Item: Banshee_Master_Card + Rate: 1 + - Index: 364 + Item: Centipede_Larva_Card + Rate: 1 + - Index: 365 + Item: Hilsrion_Card + Rate: 1 + - Index: 366 + Item: Duneirre_Card + Rate: 1 + - Index: 367 + Item: Lata_Card + Rate: 1 + - Index: 368 + Item: Ringco_Card + Rate: 1 + - Index: 369 + Item: Pillar_Card + Rate: 1 + - Index: 370 + Item: Aunoe_Card + Rate: 1 + - Index: 371 + Item: Panat_Card + Rate: 1 + - Index: 372 + Item: Beholder_Master_Card + Rate: 1 + - Index: 373 + Item: Heavy_Metaling_Card + Rate: 1 + - Index: 374 + Item: Pinguicula_Dark_Card + Rate: 1 + - Index: 375 + Item: Naga_Card + Rate: 1 + - Index: 376 + Item: Nepenthes_Card + Rate: 1 + - Index: 377 + Item: Egg_Of_Draco_Card + Rate: 1 + - Index: 378 + Item: Bradium_Goram_Card + Rate: 1 + - Index: 379 + Item: Ancient_Tree_Card + Rate: 1 + - Index: 380 + Item: Jakudam_Card + Rate: 1 + - Index: 381 + Item: Cobalt_Mineral_Card + Rate: 1 + - Index: 382 + Item: Pinguicula_Card + Rate: 1 + - Index: 383 + Item: Hell_Apocalips_Card + Rate: 1 + - Index: 384 + Item: Scaraba_Card + Rate: 1 + - Index: 385 + Item: Dolomedes_Card + Rate: 1 + - Index: 386 + Item: Miming_Card + Rate: 1 + - Index: 387 + Item: Little_Fatum_Card + Rate: 1 + - Index: 388 + Item: Parus_Card + Rate: 1 + - Index: 389 + Item: Angra_Mantis_Card + Rate: 1 + - Index: 390 + Item: Pom_Spider_Card + Rate: 1 + - Index: 391 + Item: Alnoldi_Card + Rate: 1 + - Index: 392 + Item: Comodo_Card + Rate: 1 + - Index: 393 + Item: Cendrawasih_Card + Rate: 1 + - Index: 394 + Item: Banaspaty_Card + Rate: 1 + - Index: 395 + Item: Butoijo_Card + Rate: 1 + - Index: 396 + Item: Sedora_Card + Rate: 1 + - Index: 397 + Item: Sropho_Card + Rate: 1 + - Index: 398 + Item: Pot_Dofle_Card + Rate: 1 + - Index: 399 + Item: Siorava_Card + Rate: 1 + - Index: 400 + Item: Red_Eruma_Card + Rate: 1 + - Index: 401 + Item: Mini_Octopus_Card + Rate: 1 + - Index: 402 + Item: Novice_Poring_Card + Rate: 10 + - Index: 403 + Item: Alphoccio_Card + Rate: 1 + - Index: 404 + Item: Ceila_Card + Rate: 1 + - Index: 405 + Item: Chen_Card + Rate: 1 + - Index: 406 + Item: Flamel_Card + Rate: 1 + - Index: 407 + Item: Gertie_Card + Rate: 1 + - Index: 408 + Item: Randel_Card + Rate: 1 + - Index: 409 + Item: Trentini_Card + Rate: 1 + - Index: 410 + Item: Bungisngis_Card + Rate: 1 + - Index: 411 + Item: Engkanto_Card + Rate: 1 + - Index: 412 + Item: Manananggal_Card + Rate: 1 + - Index: 413 + Item: Mangkukulam_Card + Rate: 1 + - Index: 414 + Item: Tikbalang_Card + Rate: 1 + - Index: 415 + Item: Tiyanak_Card + Rate: 1 + - Index: 416 + Item: Wakwak_Card + Rate: 1 + - Index: 417 + Item: Jejeling_Card + Rate: 1 + - Index: 418 + Item: Menblatt_Card + Rate: 1 + - Index: 419 + Item: Petal_Card + Rate: 1 + - Index: 420 + Item: Cenere_Card + Rate: 1 + - Index: 421 + Item: AntiqueBook_Card + Rate: 1 + - Index: 422 + Item: LichternB_Card + Rate: 1 + - Index: 423 + Item: LichternY_Card + Rate: 1 + - Index: 424 + Item: LichternR_Card + Rate: 1 + - Index: 425 + Item: LichternG_Card + Rate: 1 + - Index: 426 + Item: FaithfulManager_Card + Rate: 1 + - Index: 427 + Item: Big_Ben_Card + Rate: 1 + - Index: 428 + Item: Big_Bell_Card + Rate: 1 + - Index: 429 + Item: Neo_Punk_Card + Rate: 1 + - Index: 430 + Item: Arc_Elder_Card + Rate: 1 + - Index: 431 + Item: Time_Keeper_Card + Rate: 1 + - Index: 432 + Item: P_Archer_Skeleton_Card + Rate: 1 + - Index: 433 + Item: P_Soldier_Skeleton_Card + Rate: 1 + - Index: 434 + Item: P_Amdarais_Card + Rate: 1 + - Index: 435 + Item: Immotal_Corps_Card + Rate: 1 + - Index: 436 + Item: Watcher_Card + Rate: 1 + - Index: 437 + Item: Tappy_Card + Rate: 1 + - Index: 438 + Item: Frozenwolf_Card + Rate: 1 + - Index: 439 + Item: Zombie_Guard_Card + Rate: 1 + - Index: 440 + Item: Grave_Arclouse_Card + Rate: 1 + - Index: 441 + Item: Grave_Mimic_Card + Rate: 1 + - Index: 442 + Item: Grave_Minorous_Card + Rate: 1 + - Index: 443 + Item: Grave_Mummy_Card + Rate: 1 + - Index: 444 + Item: Grave_A_Mummy_Card + Rate: 1 + - Index: 445 + Item: Grave_Verit_Card + Rate: 1 + - Index: 446 + Item: Eggring_Card + Rate: 1 + - Index: 447 + Item: Basilisk1_Card + Rate: 1 + - Index: 448 + Item: Basilisk2_Card + Rate: 1 + - Index: 449 + Item: Leaf_Lunatic_Card + Rate: 1 + - Index: 450 + Item: Grass_Fabre_Card + Rate: 1 + - Index: 451 + Item: Wild_Honet_Card + Rate: 1 + - Index: 452 + Item: Sw_Roda_Frog_Card + Rate: 1 + - Index: 453 + Item: Hunter_Wolf_Card + Rate: 1 + - Index: 454 + Item: Trance_Spore_Card + Rate: 1 + - Index: 455 + Item: Ju_Mandragora_Card + Rate: 1 + - Index: 456 + Item: Fru_Pom_Spider_Card + Rate: 1 + - Index: 457 + Item: Step_Card + Rate: 1 + - Index: 458 + Item: Rock_Step_Card + Rate: 1 + - Index: 459 + Item: Kick_Step_Card + Rate: 1 + - Index: 460 + Item: KickAndKick_Card + Rate: 1 + - Index: 461 + Item: GreenCenere_Card + Rate: 1 + - Index: 462 + Item: RepairRobot_T_Card + Rate: 1 + - Index: 463 + Item: ExplorationRover_T_Card + Rate: 1 + - Index: 464 + Item: Scr_MT_Robots_Card + Rate: 1 + - Index: 465 + Item: GC109_Card + Rate: 1 + - Index: 466 + Item: DR815_Card + Rate: 1 + - Index: 467 + Item: Fire_Condor_Card + Rate: 1 + - Index: 468 + Item: Fire_Sand_Man_Card + Rate: 1 + - Index: 469 + Item: Fire_Frilldora_Card + Rate: 1 + - Index: 470 + Item: Fire_Golem_Card + Rate: 1 + - Index: 471 + Item: Fulbuk_Card + Rate: 1 + - Index: 472 + Item: BitterBonGun_Card + Rate: 1 + - Index: 473 + Item: BitterSohee_Card + Rate: 1 + - Index: 474 + Item: BitterMunak_Card + Rate: 1 + - Index: 475 + Item: BitterArcherSk_Card + Rate: 1 + - Index: 476 + Item: WizardOfVeritas_Card + Rate: 1 + - Index: 477 + Item: FuryHero_Card + Rate: 1 + - Index: 478 + Item: SweetNightM_Card + Rate: 1 + - Index: 479 + Item: MattDrainliar_Card + Rate: 1 + - Index: 480 + Item: LivingDead_Card + Rate: 1 + - Index: 481 + Item: AngerGazeti_Card + Rate: 1 + - Index: 482 + Item: AngerSnowier_Card + Rate: 1 + - Index: 483 + Item: AngerIceTitan_Card + Rate: 1 + - Index: 484 + Item: OminousSolider_Card + Rate: 1 + - Index: 485 + Item: OminousPermeter_Card + Rate: 1 + - Index: 486 + Item: OminousHeater_Card + Rate: 1 + - Index: 487 + Item: OminousAssulter_Card + Rate: 1 + - Index: 488 + Item: OminousFreezer_Card + Rate: 1 + - Index: 489 + Item: Iara_Card + Rate: 1 + - Index: 490 + Item: Piranha_Card + Rate: 1 + - Index: 491 + Item: Curupira_Card + Rate: 1 + - Index: 492 + Item: Toucan_Card + Rate: 1 + - Index: 493 + Item: Jaguar_Card + Rate: 1 + - Index: 494 + Item: Headless_Mule_Card + Rate: 1 + - Index: 495 + Item: XM_Tree_Card + Rate: 1 + - Index: 496 + Item: XM_Cookie_Card + Rate: 1 + - Index: 497 + Item: XM_Mystcase_Card + Rate: 1 + - Index: 498 + Item: XM_Lude_Card + Rate: 1 + - Index: 499 + Item: XM_Hylozoist_Card + Rate: 1 + - Index: 500 + Item: XM_Marionette_Card + Rate: 1 + - Index: 501 + Item: XM_Teddy_Bear_Card + Rate: 1 + - Index: 502 + Item: Wood_Goblin_Card + Rate: 1 + - Index: 503 + Item: Les_Card + Rate: 1 + - Index: 504 + Item: Uzhas_Card + Rate: 1 + - Index: 505 + Item: Vavayaga_Card + Rate: 1 + - Index: 506 + Item: Mavka_Card + Rate: 1 + - Index: 507 + Item: AirShip_Raid_Card + Rate: 1 + - Index: 508 + Item: Faceworm_Card + Rate: 1 + - Index: 509 + Item: Faceworm_Egg_Card + Rate: 1 + - Index: 510 + Item: Faceworm_L_Card + Rate: 1 + - Index: 511 + Item: Payon_Soldier_Card + Rate: 1 + - Index: 512 + Item: Archi_Card + Rate: 1 + - Index: 513 + Item: Dio_Anemos_Card + Rate: 1 + - Index: 514 + Item: Geffen_Gang_Card + Rate: 1 + - Index: 515 + Item: Geffen_Thug_Card + Rate: 1 + - Index: 516 + Item: Geffen_Thief_Card + Rate: 1 + - Index: 517 + Item: Pa_Monk_Card + Rate: 1 + - Index: 518 + Item: Ordre_Card + Rate: 1 + - Index: 519 + Item: Blut_Hase_Card + Rate: 1 + - Index: 520 + Item: Kuro_Akuma_Card + Rate: 1 + - Index: 521 + Item: Hyper_Death_Card + Rate: 1 + - Index: 522 + Item: Rechenier_Card + Rate: 1 + - Index: 523 + Item: Odorico_Card + Rate: 1 + - Index: 524 + Item: Jew_Card + Rate: 1 + - Index: 525 + Item: Evil_Shadow_Card + Rate: 1 + - Index: 526 + Item: Cowraiders1_Card + Rate: 1 + - Index: 527 + Item: Cowraiders2_Card + Rate: 1 + - Index: 528 + Item: Cowraiders3_Card + Rate: 1 + - Index: 529 + Item: E_Cowraiders1_Card + Rate: 1 + - Index: 530 + Item: E_Cowraiders2_Card + Rate: 1 + - Index: 531 + Item: E_Cowraiders3_Card + Rate: 1 + - Index: 532 + Item: Rr_Cramp_Card + Rate: 1 + - Index: 533 + Item: Rr_Arclouse_Card + Rate: 1 + - Index: 534 + Item: Gaster_Card + Rate: 1 + - Index: 535 + Item: Coyote_Card + Rate: 1 + - Index: 536 + Item: Colorful_T_Bear_Card + Rate: 1 + - Index: 537 + Item: Pitman_Worker_Card + Rate: 1 + - Index: 538 + Item: Fragment_Of_Soul_Card + Rate: 1 + - Index: 539 + Item: Sinister_Obsidian_Card + Rate: 1 + - Index: 540 + Item: Ancient_Trijoint_Card + Rate: 1 + - Index: 541 + Item: Ancient_Sta_Golem_Card + Rate: 1 + - Index: 542 + Item: Ancient_Megalith_Card + Rate: 1 + - Index: 543 + Item: Ancient_S_Shooter_Card + Rate: 1 + - Index: 544 + Item: Ancient_W_Shooter_Card + Rate: 1 + - Index: 545 + Item: Ancient_W_Fighter_Card + Rate: 1 + - Index: 546 + Item: Human_Kimera_Card + Rate: 1 + - Index: 547 + Item: Matter_Kimera_Card + Rate: 1 + - Index: 548 + Item: Heart_Hunter_Card + Rate: 1 + - Index: 549 + Item: AngerNineTail_Card + Rate: 1 + - Index: 550 + Item: Chaos_Ba_Jr_Card + Rate: 1 + - Index: 551 + Item: Chaos_S_Winder_Card + Rate: 1 + - Index: 552 + Item: Chaos_H_Fly_Card + Rate: 1 + - Index: 553 + Item: Chaos_Mantis_Card + Rate: 1 + - Index: 554 + Item: Chaos_Goring_Card + Rate: 1 + - Index: 555 + Item: Chaos_K_Mantis_Card + Rate: 1 + - Index: 556 + Item: Chaos_Poporing_Card + Rate: 1 + - Index: 557 + Item: Chaos_Stem_W_Card + Rate: 1 + - Index: 558 + Item: E_EA2S_Card + Rate: 1 + - Index: 559 + Item: High_Bellare_Card + Rate: 1 + - Index: 560 + Item: Sanare_Card + Rate: 1 + - Index: 561 + Item: High_Sanare_Card + Rate: 1 + - Index: 562 + Item: Plaga_Card + Rate: 1 + - Index: 563 + Item: Mutant_Plaga_Card + Rate: 1 + - Index: 564 + Item: Dolor_Card + Rate: 1 + - Index: 565 + Item: Mt_Dolor_Card + Rate: 1 + - Index: 566 + Item: Venenum_Card + Rate: 1 + - Index: 567 + Item: Mt_Venenum_Card + Rate: 1 + - Index: 568 + Item: Caput_Card + Rate: 1 + - Index: 569 + Item: Mt_Caput_Card + Rate: 1 + - Index: 570 + Item: E_EA1L_Card + Rate: 1 + - Index: 571 + Item: Bellare_Card + Rate: 1 + - Index: 572 + Item: LivingDeath_Card + Rate: 1 + - Index: 573 + Item: Firm_Kaho_Card + Rate: 1 + - Index: 574 + Item: Firm_Lava_G_Card + Rate: 1 + - Index: 575 + Item: Firm_Explosion_Card + Rate: 1 + - Index: 576 + Item: Firm_Deleter1_Card + Rate: 1 + - Index: 577 + Item: Firm_Deleter2_Card + Rate: 1 + - Index: 578 + Item: Firm_Nightmare_T_Card + Rate: 1 + - Index: 579 + Item: Firm_Blazzer_Card + Rate: 1 + - Index: 580 + Item: Polluted_Raydric_Card + Rate: 1 + - Index: 581 + Item: Polluted_Ray_A_Card + Rate: 1 + - Index: 582 + Item: Frozen_Gargoyle_Card + Rate: 1 + - Index: 583 + Item: Polluted_Sting_Card + Rate: 1 + - Index: 584 + Item: Prison_Breaker_Card + Rate: 1 + - Index: 585 + Item: Flame_Ghost_Card + Rate: 1 + - Index: 586 + Item: Polluted_W_Man_Card + Rate: 1 + - Index: 587 + Item: White_Knightage_Card + Rate: 1 + - Index: 588 + Item: Khaliz_Knightage_Card + Rate: 1 + - Index: 589 + Item: C_White_Knight_Card + Rate: 1 + - Index: 590 + Item: C_Khaliz_Knight_Card + Rate: 1 + - Index: 591 + Item: C_Raydric_Card + Rate: 1 + - Index: 592 + Item: C_Raydric_Archer_Card + Rate: 1 + - Index: 593 + Item: Angelgolt_Card + Rate: 1 + - Index: 594 + Item: Plasma_Spt_Card + Rate: 1 + - Index: 595 + Item: Plasma_Arch_Card + Rate: 1 + - Index: 596 + Item: Holy_Frus_Card + Rate: 1 + - Index: 597 + Item: Holy_Skogul_Card + Rate: 1 + - Index: 598 + Item: Poisonous_Card + Rate: 1 + - Index: 599 + Item: Toxious_Card + Rate: 1 + - Index: 600 + Item: Porcellio_W_Card + Rate: 1 + - Index: 601 + Item: Neo_Mineral_Card + Rate: 1 + - Index: 602 + Item: Abyss_Man_Card + Rate: 1 + - Index: 603 + Item: Jeweliant_Card + Rate: 1 + - Index: 604 + Item: Ferus_P_Card + Rate: 1 + - Index: 605 + Item: Treasure_Mimic_Card + Rate: 1 + - Index: 606 + Item: Acidus_B_Card + Rate: 1 + - Index: 607 + Item: Acidus_S_Card + Rate: 1 + - Index: 608 + Item: Bone_Ferus_Card + Rate: 1 + - Index: 609 + Item: Bone_Acidus_Card + Rate: 1 + - Index: 610 + Item: ILL_Sropho_Card + Rate: 1 + - Index: 611 + Item: ILL_Obeaune_Card + Rate: 1 + - Index: 612 + Item: ILL_Deviace_Card + Rate: 1 + - Index: 613 + Item: ILL_Marse_Card + Rate: 1 + - Index: 614 + Item: ILL_Merman_Card + Rate: 1 + - Index: 615 + Item: ILL_Sedora_Card + Rate: 1 + - Index: 616 + Item: ILL_Sword_Fish_Card + Rate: 1 + - Index: 617 + Item: ILL_Strouf_Card + Rate: 1 + - Index: 618 + Item: ILL_Phen_Card + Rate: 1 + - Index: 619 + Item: ILL_King_Dramoh_Card + Rate: 1 + - Index: 620 + Item: Beta_Guards_Ng_Card + Rate: 1 + - Index: 621 + Item: O_Cleaner_Ng_Card + Rate: 1 + - Index: 622 + Item: Assistant_Card + Rate: 1 + - Index: 623 + Item: Assistant_H_Card + Rate: 1 + - Index: 624 + Item: Dry_Rafflesia_Card + Rate: 1 + - Index: 625 + Item: Dry_Rafflesia_H_Card + Rate: 1 + - Index: 626 + Item: Alnoldi_Ex_Card + Rate: 1 + - Index: 627 + Item: Alnoldi_Ex_H_Card + Rate: 1 + - Index: 628 + Item: Beta_Scissore_Ng_Card + Rate: 1 + - Index: 629 + Item: B_Scissore_Ng_H_Card + Rate: 1 + - Index: 630 + Item: Verporta_Card + Rate: 1 + - Index: 631 + Item: Verporte_H_Card + Rate: 1 + - Index: 632 + Item: Papila_Card + Rate: 1 + - Index: 633 + Item: Papila_H_Card + Rate: 1 + - Index: 634 + Item: Papila_Ruba_Card + Rate: 1 + - Index: 635 + Item: Papila_Ruba_H_Card + Rate: 1 + - Index: 636 + Item: Papila_Cae_Card + Rate: 1 + - Index: 637 + Item: Papila_Cae_H_Card + Rate: 1 + - Index: 638 + Item: Aries_Card + Rate: 1 + - Index: 639 + Item: Aries_H_Card + Rate: 1 + - Index: 640 + Item: Beta_Cleaner_Card + Rate: 1 + - Index: 641 + Item: Beta_Baths_A_Card + Rate: 1 + - Index: 642 + Item: Bath_Mermaid_Card + Rate: 1 + - Index: 643 + Item: Bookworm_Card + Rate: 1 + - Index: 644 + Item: Roaming_Splbook_Card + Rate: 1 + - Index: 645 + Item: Pitaya_R_Card + Rate: 1 + - Index: 646 + Item: EP17_2_Cramp_Card + Rate: 1 + - Index: 647 + Item: Waterfall_Card + Rate: 1 + - Index: 648 + Item: Bellare3_Card + Rate: 1 + - Index: 649 + Item: Dolor3_Card + Rate: 1 + - Index: 650 + Item: Plasma_Y_Card + Rate: 1 + - Index: 651 + Item: Plaga3_Card + Rate: 1 + - Index: 652 + Item: Sanare3_Card + Rate: 1 + - Index: 653 + Item: Plasma_R_Card + Rate: 1 + - Index: 654 + Item: Plasma_R2_Card + Rate: 1 + - Index: 655 + Item: EP17_2_Phen_Card + Rate: 1 + - Index: 656 + Item: EP17_2_Piranha_Card + Rate: 1 + - Index: 657 + Item: EP17_2_Sword_Fish_Card + Rate: 1 + - Index: 658 + Item: EP17_2_Marc_Card + Rate: 1 + - Index: 659 + Item: Pitaya_Y_Card + Rate: 1 + - Index: 660 + Item: Pitaya_V_Card + Rate: 1 + - Index: 661 + Item: Pitaya_B_Card + Rate: 1 + - Index: 662 + Item: Pitaya_G_Card + Rate: 1 + - Index: 663 + Item: Venenum3_Card + Rate: 1 + - Index: 664 + Item: ILL_Andre_Card + Rate: 1 + - Index: 665 + Item: ILL_Andre_soldier_Card + Rate: 1 + - Index: 666 + Item: ILL_Andre_larva_Card + Rate: 1 + - Index: 667 + Item: ILL_Deniro_Card + Rate: 1 + - Index: 668 + Item: ILL_Piere_Card + Rate: 1 + - Index: 669 + Item: ILL_Ant_egg_Card + Rate: 1 + - Index: 670 + Item: ILL_Giearth_Card + Rate: 1 + - Index: 671 + Item: ILL_Farmiliar_Card + Rate: 1 + - Index: 672 + Item: ILL_Vitata_Card + Rate: 1 + - Index: 673 + Item: EP18_Ash_Toad_Card + Rate: 1 + - Index: 674 + Item: EP18_Rakehand_Card + Rate: 1 + - Index: 675 + Item: EP18_Spark_Card + Rate: 1 + - Index: 676 + Item: EP18_Hot_Molar_Card + Rate: 1 + - Index: 677 + Item: EP18_Volcaring_Card + Rate: 1 + - Index: 678 + Item: EP18_Lava_Toad_Card + Rate: 1 + - Index: 679 + Item: EP18_Ashhopper_Card + Rate: 1 + - Index: 680 + Item: EP18_Ashring_Card + Rate: 1 + - Index: 681 + Item: EP18_Grey_Wolf_Card + Rate: 1 + - Index: 682 + Item: EP18_Tumble_Ring_Card + Rate: 1 + - Index: 683 + Item: EP18_Firewind_Kite_Card + Rate: 1 + - Index: 684 + Item: EP18_Phantom_Wolf_Card + Rate: 1 + - Index: 685 + Item: Ice_Gangu_Card + Rate: 1 + - Index: 686 + Item: Shining_Seaweed_Card + Rate: 1 + - Index: 687 + Item: Ice_Straw_Card + Rate: 1 + - Index: 688 + Item: Unfrost_Flower_card + Rate: 1 + - Index: 689 + Item: Limacina_Card + Rate: 1 + - Index: 690 + Item: Calmaring_Card + Rate: 1 + - Index: 691 + Item: Primitive_Rgan_Card + Rate: 1 + - Index: 692 + Item: Lowest_Rgan_Card + Rate: 1 + - Index: 693 + Item: Junior_Rgan_Card + Rate: 1 + - Index: 694 + Item: Middle_G_Rgan_Card + Rate: 1 + - Index: 695 + Item: Discarded_P_R_Card + Rate: 1 + - Index: 696 + Item: Discarded_L_R_Card + Rate: 1 + - Index: 697 + Item: Cave_Calmaring_Card + Rate: 1 + - Index: 698 + Item: Cave_Un_Flower_Card + Rate: 1 + - Index: 699 + Item: B_Hallucigenia_Card + Rate: 1 + - Index: 700 + Item: Hallucigenia_Card + Rate: 1 + - Index: 701 + Item: One_E_Dollocaris_Card + Rate: 1 + - Index: 702 + Item: Eyes_Dollocaris_Card + Rate: 1 + - Index: 703 + Item: R_Superior_Rgan_Card + Rate: 1 + - Index: 704 + Item: E_Inter_Rgan_Card + Rate: 1 + - Index: 705 + Item: Heart_Hunter_AT_Card + Rate: 1 + - Index: 706 + Item: Gan_Ceann_Card + Rate: 1 + - Index: 707 + Item: Brutal_Murderer_Card + Rate: 1 + - Index: 708 + Item: Ghost_Cube_Card + Rate: 1 + - Index: 709 + Item: Lude_Gal_Card + Rate: 1 + - Index: 710 + Item: Disguiser_Card + Rate: 1 + - Index: 711 + Item: Bluemoon_Loli_Ruri_Card + Rate: 1 + - Index: 712 + Item: Grote_Card + Rate: 1 + - Index: 713 + Item: Pierrotzoist_Card + Rate: 1 + - Index: 714 + Item: Giant_Caput_Card + Rate: 1 + - Index: 715 + Item: Dolorian_Card + Rate: 1 + - Index: 716 + Item: Plagarion_Card + Rate: 1 + - Index: 717 + Item: Deadre_Card + Rate: 1 + - Index: 718 + Item: Venedi_Card + Rate: 1 + - Index: 719 + Item: Amitera_Card + Rate: 1 + - Index: 720 + Item: Litus_Card + Rate: 1 + - Index: 721 + Item: Fillia_Card + Rate: 1 + - Index: 722 + Item: Vanilaqus_Card + Rate: 1 + - Index: 723 + Item: Lava_Eater_Card + Rate: 1 + - Index: 724 + Item: Fulgor_Card + Rate: 1 + - Index: 725 + Item: Napeo_Card + Rate: 1 + - Index: 726 + Item: Galensis_Card + Rate: 1 + - Index: 727 + Item: Reken_Guard_Card + Rate: 1 + - Index: 728 + Item: Reken_H_Guard_Card + Rate: 1 + - Index: 729 + Item: Regen_Scientist_Card + Rate: 1 + - Index: 730 + Item: Crow_Baron_Card + Rate: 1 + - Index: 731 + Item: Crow_Duke_Card + Rate: 1 + - Index: 732 + Item: Eldest_Card + Rate: 1 + - Index: 733 + Item: Empathizer_Card + Rate: 1 + - Index: 734 + Item: Happy_Giver_Card + Rate: 1 + - Index: 735 + Item: Pray_Giver_Card + Rate: 1 + - Index: 736 + Item: Smile_Giver_Card + Rate: 1 + - Index: 737 + Item: Tha_Anger_Card + Rate: 1 + - Index: 738 + Item: Tha_Horror_Card + Rate: 1 + - Index: 739 + Item: Tha_Regret_Card + Rate: 1 + - Index: 740 + Item: Tha_Resent_Card + Rate: 1 + - Index: 741 + Item: Void_Mimic_Card + Rate: 1 + - Index: 742 + Item: Book_Of_Death_Card + Rate: 1 + - Index: 743 + Item: Extra_Joker_Card + Rate: 1 + - Index: 744 + Item: Erzsebet_Card + Rate: 1 + - Index: 745 + Item: Jeniffer_Card + Rate: 1 + - Index: 746 + Item: General_Orc_Card + Rate: 1 + - Index: 747 + Item: Sieglouse_Card + Rate: 1 - Group: CARDALBUM_ACC SubGroups: - SubGroup: 1 @@ -7861,203 +8192,422 @@ Body: Item: Muka_Card Rate: 1 - Index: 6 - Item: Smokie_Card + Item: Creamy_Card Rate: 1 - Index: 7 - Item: Poison_Spore_Card + Item: Smokie_Card Rate: 1 - Index: 8 - Item: Yoyo_Card + Item: Poison_Spore_Card Rate: 1 - Index: 9 - Item: Vitata_Card + Item: Yoyo_Card Rate: 1 - Index: 10 - Item: Zerom_Card + Item: Vitata_Card Rate: 1 - Index: 11 - Item: Pirate_Skel_Card + Item: Zerom_Card Rate: 1 - Index: 12 - Item: Phen_Card + Item: Pirate_Skel_Card Rate: 1 - Index: 13 - Item: Mantis_Card + Item: Phen_Card Rate: 1 - Index: 14 - Item: Marine_Sphere_Card + Item: Mantis_Card Rate: 1 - Index: 15 - Item: Kobold_Card + Item: Marine_Sphere_Card Rate: 1 - Index: 16 - Item: Obeaune_Card + Item: Kobold_Card Rate: 1 - Index: 17 - Item: Horong_Card + Item: Obeaune_Card Rate: 1 - Index: 18 - Item: Joker_Card + Item: Horong_Card Rate: 1 - Index: 19 - Item: Gargoyle_Card + Item: Joker_Card Rate: 1 - Index: 20 - Item: Galapago_Card + Item: Gargoyle_Card Rate: 1 - Index: 21 - Item: Rice_Cake_Boy_Card + Item: Galapago_Card Rate: 1 - Index: 22 - Item: Poison_Toad_Card + Item: Rice_Cake_Boy_Card Rate: 1 - Index: 23 - Item: Raydric_Archer_Card + Item: Poison_Toad_Card Rate: 1 - Index: 24 - Item: Wraith_Card + Item: Raydric_Archer_Card Rate: 1 - Index: 25 - Item: Lude_Card + Item: Wraith_Card Rate: 1 - Index: 26 - Item: Marin_Card + Item: Lude_Card Rate: 1 - Index: 27 - Item: Mimic_Card + Item: Marin_Card Rate: 1 - Index: 28 - Item: Violy_Card + Item: Mimic_Card Rate: 1 - Index: 29 - Item: Bon_Gun_Card + Item: Violy_Card Rate: 1 - Index: 30 - Item: Blazzer_Card + Item: Bon_Gun_Card Rate: 1 - Index: 31 - Item: Sageworm_Card + Item: Blazzer_Card Rate: 1 - Index: 32 - Item: Stem_Worm_Card + Item: Sageworm_Card Rate: 1 - Index: 33 - Item: Spring_Rabbit_Card + Item: Stem_Worm_Card Rate: 1 - Index: 34 - Item: Sleeper_Card + Item: Spring_Rabbit_Card Rate: 1 - Index: 35 - Item: Shinobi_Card + Item: Sleeper_Card Rate: 1 - Index: 36 - Item: Wild_Ginseng_Card + Item: Shinobi_Card Rate: 1 - Index: 37 - Item: Owl_Duke_Card + Item: Wild_Ginseng_Card Rate: 1 - Index: 38 - Item: Owl_Baron_Card - Rate: 1 - - Index: 39 Item: Alligator_Card Rate: 1 - - Index: 40 + - Index: 39 Item: Orc_Archer_Card Rate: 1 - - Index: 41 + - Index: 40 Item: Evil_Cloud_Hermit_Card Rate: 1 - - Index: 42 + - Index: 41 Item: Wind_Ghost_Card Rate: 1 - - Index: 43 + - Index: 42 Item: Li_Me_Mang_Ryang_Card Rate: 1 - - Index: 44 + - Index: 43 Item: Dancing_Dragon_Card Rate: 1 - - Index: 45 + - Index: 44 Item: Tengu_Card Rate: 1 - - Index: 46 + - Index: 45 Item: Greatest_General_Card Rate: 1 - - Index: 47 + - Index: 46 Item: Cookie_Card Rate: 1 - - Index: 48 + - Index: 47 Item: Quve_Card Rate: 1 - - Index: 49 + - Index: 48 Item: Hylozoist_Card Rate: 1 - - Index: 50 + - Index: 49 Item: See_Otter_Card Rate: 1 - - Index: 51 + - Index: 50 Item: Blood_Butterfly_Card Rate: 1 - - Index: 52 + - Index: 51 Item: Heater_Card Rate: 1 - - Index: 53 + - Index: 52 Item: Anopheles_Card Rate: 1 - - Index: 54 + - Index: 53 Item: Armaia_Card Rate: 1 - - Index: 55 + - Index: 54 Item: Whikebain_Card Rate: 1 - - Index: 56 + - Index: 55 Item: Erend_Card Rate: 1 - - Index: 57 + - Index: 56 Item: Gremlin_Card Rate: 1 - - Index: 58 + - Index: 57 Item: Beholder_Card Rate: 1 - - Index: 59 + - Index: 58 Item: Green_Iguana_Card Rate: 1 - - Index: 60 - Item: Hydro_Card - Rate: 1 - - Index: 61 + - Index: 59 Item: Dragon_Egg_Card Rate: 1 - - Index: 62 + - Index: 60 Item: Plasma_Card Rate: 1 - - Index: 63 - Item: Retribution_Card - Rate: 1 - - Index: 64 + - Index: 61 Item: Snowier_Card Rate: 1 - - Index: 65 + - Index: 62 Item: Siroma_Card Rate: 1 - - Index: 66 + - Index: 63 Item: Gazeti_Card Rate: 1 - - Index: 67 - Item: Galion_Card - Rate: 1 - - Index: 68 + - Index: 64 Item: Stapo_Card Rate: 1 - - Index: 69 + - Index: 65 Item: Imp_Card Rate: 1 - - Index: 70 + - Index: 66 Item: Ragged_Zombie_Card Rate: 1 - - Index: 71 + - Index: 67 Item: Hell_Poodle_Card Rate: 1 + - Index: 68 + Item: Scaraba_Card + Rate: 1 + - Index: 69 + Item: Tiyanak_Card + Rate: 1 + - Index: 70 + Item: Tappy_Card + Rate: 1 + - Index: 71 + Item: Frozenwolf_Card + Rate: 1 + - Index: 72 + Item: GC109_Card + Rate: 1 + - Index: 73 + Item: DR815_Card + Rate: 1 + - Index: 74 + Item: Fire_Condor_Card + Rate: 1 + - Index: 75 + Item: AngerSnowier_Card + Rate: 1 + - Index: 76 + Item: OminousHeater_Card + Rate: 1 + - Index: 77 + Item: Iara_Card + Rate: 1 + - Index: 78 + Item: Headless_Mule_Card + Rate: 1 + - Index: 79 + Item: XM_Lude_Card + Rate: 1 + - Index: 80 + Item: XM_Hylozoist_Card + Rate: 1 + - Index: 81 + Item: Mavka_Card + Rate: 1 + - Index: 82 + Item: Faceworm_Card + Rate: 1 + - Index: 83 + Item: Cowraiders1_Card + Rate: 1 + - Index: 84 + Item: Cowraiders2_Card + Rate: 1 + - Index: 85 + Item: Human_Kimera_Card + Rate: 1 + - Index: 86 + Item: Matter_Kimera_Card + Rate: 1 + - Index: 87 + Item: Mavka_Card + Rate: 1 + - Index: 88 + Item: Faceworm_Card + Rate: 1 + - Index: 89 + Item: Cowraiders1_Card + Rate: 1 + - Index: 90 + Item: Cowraiders2_Card + Rate: 1 + - Index: 91 + Item: Human_Kimera_Card + Rate: 1 + - Index: 92 + Item: Matter_Kimera_Card + Rate: 1 + - Index: 93 + Item: Chaos_Mantis_Card + Rate: 1 + - Index: 94 + Item: Chaos_K_Mantis_Card + Rate: 1 + - Index: 95 + Item: E_EA2S_Card + Rate: 1 + - Index: 96 + Item: Dolor_Card + Rate: 1 + - Index: 97 + Item: Mt_Caput_Card + Rate: 1 + - Index: 98 + Item: C_Raydric_Card + Rate: 1 + - Index: 99 + Item: C_Raydric_Archer_Card + Rate: 1 + - Index: 100 + Item: ILL_Obeaune_Card + Rate: 1 + - Index: 101 + Item: Beta_Guards_Ng_Card + Rate: 1 + - Index: 102 + Item: O_Cleaner_Ng_Card + Rate: 1 + - Index: 103 + Item: Beta_Cleaner_Card + Rate: 1 + - Index: 104 + Item: Beta_Baths_A_Card + Rate: 1 + - Index: 105 + Item: Bookworm_Card + Rate: 1 + - Index: 106 + Item: Roaming_Splbook_Card + Rate: 1 + - Index: 107 + Item: EP17_2_Cramp_Card + Rate: 1 + - Index: 108 + Item: Waterfall_Card + Rate: 1 + - Index: 109 + Item: Bellare3_Card + Rate: 1 + - Index: 110 + Item: Dolor3_Card + Rate: 1 + - Index: 111 + Item: Plasma_Y_Card + Rate: 1 + - Index: 112 + Item: Sanare3_Card + Rate: 1 + - Index: 113 + Item: Plasma_R_Card + Rate: 1 + - Index: 114 + Item: Plasma_R2_Card + Rate: 1 + - Index: 115 + Item: EP17_2_Phen_Card + Rate: 1 + - Index: 116 + Item: EP17_2_Piranha_Card + Rate: 1 + - Index: 117 + Item: EP17_2_Sword_Fish_Card + Rate: 1 + - Index: 118 + Item: Pitaya_G_Card + Rate: 1 + - Index: 119 + Item: Bone_Acidus_Card + Rate: 1 + - Index: 120 + Item: Jeweliant_Card + Rate: 1 + - Index: 121 + Item: Bone_Ferus_Card + Rate: 1 + - Index: 122 + Item: Venenum3_Card + Rate: 1 + - Index: 123 + Item: Ghost_Cube_Card + Rate: 1 + - Index: 124 + Item: Lude_Gal_Card + Rate: 1 + - Index: 125 + Item: Giant_Caput_Card + Rate: 1 + - Index: 126 + Item: Dolorian_Card + Rate: 1 + - Index: 127 + Item: Void_Mimic_Card + Rate: 1 + - Index: 128 + Item: Jeniffer_Card + Rate: 1 + - Index: 129 + Item: EP18_Phantom_Wolf_Card + Rate: 1 + - Index: 130 + Item: Primitive_Rgan_Card + Rate: 1 + - Index: 131 + Item: Lowest_Rgan_Card + Rate: 1 + - Index: 132 + Item: Crow_Duke_Card + Rate: 1 + - Index: 133 + Item: EP18_Ash_Toad_Card + Rate: 1 + - Index: 134 + Item: EP18_Lava_Toad_Card + Rate: 1 + - Index: 135 + Item: EP18_Ashhopper_Card + Rate: 1 + - Index: 136 + Item: EP18_Grey_Wolf_Card + Rate: 1 + - Index: 137 + Item: EP18_Firewind_Kite_Card + Rate: 1 + - Index: 138 + Item: Calmaring_Card + Rate: 1 + - Index: 139 + Item: Junior_Rgan_Card + Rate: 1 + - Index: 140 + Item: Middle_G_Rgan_Card + Rate: 1 + - Index: 141 + Item: Discarded_P_R_Card + Rate: 1 + - Index: 142 + Item: Discarded_L_R_Card + Rate: 1 + - Index: 143 + Item: Cave_Calmaring_Card + Rate: 1 + - Index: 144 + Item: Crow_Baron_Card + Rate: 1 - Group: CARDALBUM_ARMOR SubGroups: - SubGroup: 1 @@ -8204,82 +8754,166 @@ Body: Item: Clock_Card Rate: 1 - Index: 47 - Item: Chimera_Card - Rate: 1 - - Index: 48 Item: Killer_Mantis_Card Rate: 1 - - Index: 49 + - Index: 48 Item: Pest_Card Rate: 1 - - Index: 50 + - Index: 49 Item: Waste_Stove_Card Rate: 1 - - Index: 51 + - Index: 50 Item: Venomous_Card Rate: 1 - - Index: 52 + - Index: 51 Item: Porcellio_Card Rate: 1 - - Index: 53 + - Index: 52 Item: Obsidian_Card Rate: 1 - - Index: 54 + - Index: 53 Item: Mineral_Card Rate: 1 - - Index: 55 + - Index: 54 Item: Ygnizem_Card Rate: 1 - - Index: 56 + - Index: 55 Item: Removal_Card Rate: 1 - - Index: 57 + - Index: 56 Item: Venatu_Card Rate: 1 - - Index: 58 + - Index: 57 Item: Dimik_Card Rate: 1 - - Index: 59 + - Index: 58 Item: Archdam_Card Rate: 1 - - Index: 60 + - Index: 59 Item: Novus__Card Rate: 1 - - Index: 61 + - Index: 60 Item: Novus_Card Rate: 1 - - Index: 62 + - Index: 61 Item: Ancient_Mimic_Card Rate: 1 - - Index: 63 - Item: Observation_Card - Rate: 1 - - Index: 64 - Item: Shelter_Card - Rate: 1 - - Index: 65 + - Index: 62 Item: Aliza_Card Rate: 1 - - Index: 66 + - Index: 63 Item: Alicel_Card Rate: 1 - - Index: 67 + - Index: 64 Item: Skogul_Card Rate: 1 - - Index: 68 + - Index: 65 Item: Frus_Card Rate: 1 - - Index: 69 + - Index: 66 Item: Agav_Card Rate: 1 - - Index: 70 + - Index: 67 Item: Echio_Card Rate: 1 + - Index: 68 + Item: Banshee_Master_Card + Rate: 2 + - Index: 69 + Item: Comodo_Card + Rate: 1 + - Index: 70 + Item: Pot_Dofle_Card + Rate: 1 - Index: 71 - Item: Byorgue_Card + Item: Mangkukulam_Card Rate: 1 - Index: 72 - Item: Banshee_Master_Card + Item: P_Amdarais_Card + Rate: 1 + - Index: 73 + Item: Watcher_Card + Rate: 1 + - Index: 74 + Item: Eggring_Card + Rate: 1 + - Index: 75 + Item: Grass_Fabre_Card + Rate: 1 + - Index: 76 + Item: Sw_Roda_Frog_Card + Rate: 1 + - Index: 77 + Item: Kick_Step_Card + Rate: 1 + - Index: 78 + Item: Fire_Sand_Man_Card + Rate: 1 + - Index: 79 + Item: AngerNineTail_Card + Rate: 1 + - Index: 80 + Item: BitterBonGun_Card + Rate: 1 + - Index: 81 + Item: BitterSohee_Card + Rate: 1 + - Index: 82 + Item: SweetNightM_Card + Rate: 1 + - Index: 83 + Item: LivingDead_Card + Rate: 1 + - Index: 84 + Item: AngerGazeti_Card + Rate: 1 + - Index: 85 + Item: AngerIceTitan_Card + Rate: 1 + - Index: 86 + Item: OminousSolider_Card + Rate: 1 + - Index: 87 + Item: XM_Tree_Card + Rate: 1 + - Index: 88 + Item: Wood_Goblin_Card + Rate: 1 + - Index: 89 + Item: Pitman_Worker_Card + Rate: 1 + - Index: 90 + Item: Caput_Card + Rate: 1 + - Index: 91 + Item: Polluted_Raydric_Card + Rate: 1 + - Index: 92 + Item: Polluted_Sting_Card + Rate: 1 + - Index: 93 + Item: Toxious_Card + Rate: 1 + - Index: 94 + Item: ILL_Strouf_Card + Rate: 1 + - Index: 95 + Item: EP18_Rakehand_Card + Rate: 1 + - Index: 96 + Item: Ice_Straw_Card + Rate: 1 + - Index: 97 + Item: Unfrost_Flower_card + Rate: 1 + - Index: 98 + Item: Eyes_Dollocaris_Card + Rate: 1 + - Index: 99 + Item: Heart_Hunter_AT_Card + Rate: 1 + - Index: 100 + Item: Amitera_Card Rate: 1 - Group: CARDALBUM_GARMENT SubGroups: @@ -8287,118 +8921,229 @@ Body: List: - Index: 0 Item: Condor_Card - Rate: 32 + Rate: 6 - Index: 1 Item: Dustiness_Card - Rate: 32 + Rate: 6 - Index: 2 Item: Orc_Zombie_Card - Rate: 32 + Rate: 6 - Index: 3 Item: Hode_Card - Rate: 32 + Rate: 6 - Index: 4 Item: Frilldora_Card - Rate: 32 + Rate: 6 - Index: 5 Item: Marse_Card - Rate: 32 + Rate: 6 - Index: 6 Item: Whisper_Card - Rate: 32 + Rate: 6 - Index: 7 Item: Myst_Card - Rate: 32 + Rate: 6 - Index: 8 Item: Jakk_Card - Rate: 32 + Rate: 6 - Index: 9 Item: Marionette_Card - Rate: 32 + Rate: 6 - Index: 10 Item: Isis_Card - Rate: 32 + Rate: 6 - Index: 11 Item: Baphomet__Card - Rate: 32 + Rate: 6 - Index: 12 Item: Daydric_Card - Rate: 32 + Rate: 1 - Index: 13 Item: Nine_Tail_Card - Rate: 32 + Rate: 1 - Index: 14 - Item: Deviling_Card + Item: Dragon_Tail_Card Rate: 1 - Index: 15 - Item: Dragon_Tail_Card - Rate: 32 - - Index: 16 - Item: Dragon_Fly_Card - Rate: 32 - - Index: 17 - Item: Vagabond_Wolf_Card - Rate: 1 - - Index: 18 - Item: Mastering_Card - Rate: 1 - - Index: 19 Item: Wander_Man_Card Rate: 1 + - Index: 16 + Item: Choco_Card + Rate: 1 + - Index: 17 + Item: Kapha_Card + Rate: 1 + - Index: 18 + Item: Whisper_Boss_Card + Rate: 1 + - Index: 19 + Item: Punk_Card + Rate: 1 - Index: 20 - Item: Vocal_Card + Item: Harpy_Card Rate: 1 - Index: 21 - Item: Eclipse_Card - Rate: 32 - - Index: 22 - Item: Choco_Card - Rate: 32 - - Index: 23 - Item: Kapha_Card - Rate: 32 - - Index: 24 - Item: Whisper_Boss_Card - Rate: 32 - - Index: 25 - Item: Toad_Card - Rate: 1 - - Index: 26 - Item: Punk_Card - Rate: 32 - - Index: 27 - Item: Harpy_Card - Rate: 32 - - Index: 28 Item: Hyegun_Card - Rate: 32 - - Index: 29 + Rate: 1 + - Index: 22 Item: Noxious_Card - Rate: 32 - - Index: 30 + Rate: 1 + - Index: 23 Item: Kavac_Card Rate: 1 - - Index: 31 + - Index: 24 Item: Chung_E_Card - Rate: 32 - - Index: 32 + Rate: 1 + - Index: 25 Item: Orc_Baby_Card_Card - Rate: 32 - - Index: 33 + Rate: 1 + - Index: 26 Item: Aliot_Card - Rate: 32 - - Index: 34 + Rate: 1 + - Index: 27 Item: Roween_Card - Rate: 32 - - Index: 35 - Item: Salamander_Card - Rate: 32 - - Index: 36 - Item: Kasa_Card - Rate: 32 - - Index: 37 + Rate: 1 + - Index: 28 Item: Magmaring_Card - Rate: 33 + Rate: 1 + - Index: 29 + Item: Alphoccio_Card + Rate: 1 + - Index: 30 + Item: Ceila_Card + Rate: 1 + - Index: 31 + Item: Chen_Card + Rate: 1 + - Index: 32 + Item: Flamel_Card + Rate: 1 + - Index: 33 + Item: Gertie_Card + Rate: 1 + - Index: 34 + Item: Randel_Card + Rate: 1 + - Index: 35 + Item: Trentini_Card + Rate: 1 + - Index: 36 + Item: Wakwak_Card + Rate: 1 + - Index: 37 + Item: Jejeling_Card + Rate: 1 + - Index: 38 + Item: Menblatt_Card + Rate: 1 + - Index: 39 + Item: Petal_Card + Rate: 1 + - Index: 40 + Item: Cenere_Card + Rate: 1 + - Index: 41 + Item: AntiqueBook_Card + Rate: 1 + - Index: 42 + Item: Arc_Elder_Card + Rate: 1 + - Index: 43 + Item: Immotal_Corps_Card + Rate: 1 + - Index: 44 + Item: Grave_A_Mummy_Card + Rate: 1 + - Index: 45 + Item: Scr_MT_Robots_Card + Rate: 1 + - Index: 46 + Item: Faceworm_L_Card + Rate: 1 + - Index: 47 + Item: Rr_Cramp_Card + Rate: 1 + - Index: 48 + Item: Rr_Arclouse_Card + Rate: 1 + - Index: 49 + Item: Sinister_Obsidian_Card + Rate: 1 + - Index: 50 + Item: Ancient_S_Shooter_Card + Rate: 1 + - Index: 51 + Item: Ancient_W_Shooter_Card + Rate: 1 + - Index: 52 + Item: Ancient_Sta_Golem_Card + Rate: 1 + - Index: 53 + Item: Chaos_Stem_W_Card + Rate: 1 + - Index: 54 + Item: Venenum_Card + Rate: 1 + - Index: 55 + Item: Mt_Venenum_Card + Rate: 1 + - Index: 56 + Item: Prison_Breaker_Card + Rate: 1 + - Index: 57 + Item: Neo_Mineral_Card + Rate: 1 + - Index: 58 + Item: Treasure_Mimic_Card + Rate: 1 + - Index: 59 + Item: ILL_Phen_Card + Rate: 1 + - Index: 60 + Item: Dry_Rafflesia_H_Card + Rate: 1 + - Index: 61 + Item: Aries_H_Card + Rate: 1 + - Index: 62 + Item: Pitaya_Y_Card + Rate: 1 + - Index: 63 + Item: Pitaya_V_Card + Rate: 1 + - Index: 64 + Item: EP18_Spark_Card + Rate: 1 + - Index: 65 + Item: Cave_Un_Flower_Card + Rate: 1 + - Index: 66 + Item: One_E_Dollocaris_Card + Rate: 1 + - Index: 67 + Item: Napeo_Card + Rate: 1 + - Index: 68 + Item: Galensis_Card + Rate: 1 + - Index: 69 + Item: Eldest_Card + Rate: 1 + - Index: 70 + Item: Empathizer_Card + Rate: 1 + - Index: 71 + Item: Happy_Giver_Card + Rate: 1 + - Index: 72 + Item: Pray_Giver_Card + Rate: 1 + - Index: 73 + Item: Smile_Giver_Card + Rate: 1 + - Index: 74 + Item: Erzsebet_Card + Rate: 1 - Group: CARDALBUM_HELM SubGroups: - SubGroup: 1 @@ -8437,99 +9182,246 @@ Body: Item: Grand_Peco_Card Rate: 1 - Index: 11 - Item: Dark_Illusion_Card - Rate: 1 - - Index: 12 Item: Dryad_Card Rate: 1 - - Index: 13 + - Index: 12 Item: Rideword_Card Rate: 1 - - Index: 14 + - Index: 13 Item: Leib_Olmai_Card Rate: 1 - - Index: 15 + - Index: 14 Item: Leaf_Cat_Card Rate: 1 - - Index: 16 + - Index: 15 Item: Mystcase_Card Rate: 1 - - Index: 17 + - Index: 16 Item: Stalactic_Golem_Card Rate: 1 - - Index: 18 + - Index: 17 Item: C_Tower_Manager_Card Rate: 1 - - Index: 19 - Item: Archangeling_Card - Rate: 1 - - Index: 20 + - Index: 18 Item: Wicked_Nymph_Card Rate: 1 - - Index: 21 + - Index: 19 Item: Wootan_Shooter_Card Rate: 1 - - Index: 22 + - Index: 20 Item: Wootan_Fighter_Card Rate: 1 - - Index: 23 + - Index: 21 Item: Incubus_Card Rate: 1 - - Index: 24 + - Index: 22 Item: Giant_Honet_Card Rate: 1 - - Index: 25 + - Index: 23 Item: Gibbet_Card Rate: 1 - - Index: 26 + - Index: 24 Item: Carat_Card Rate: 1 - - Index: 27 + - Index: 25 Item: Cramp_Card Rate: 1 - - Index: 28 + - Index: 26 Item: Permeter_Card Rate: 1 - - Index: 29 + - Index: 27 Item: Ungoliant_Card Rate: 1 - - Index: 30 + - Index: 28 Item: Mole_Card Rate: 1 - - Index: 31 - Item: Gemini_Card - Rate: 1 - - Index: 32 + - Index: 29 Item: Seyren_Card Rate: 1 - - Index: 33 + - Index: 30 Item: Magaleta_Card Rate: 1 - - Index: 34 + - Index: 31 Item: Katrinn_Card Rate: 1 - - Index: 35 + - Index: 32 Item: Acidus__Card Rate: 1 - - Index: 36 + - Index: 33 Item: Vanberk_Card Rate: 1 - - Index: 37 + - Index: 34 Item: Isilla_Card Rate: 1 - - Index: 38 + - Index: 35 Item: Knocker_Card Rate: 1 - - Index: 39 + - Index: 36 Item: Banshee_Card Rate: 1 + - Index: 37 + Item: Duneirre_Card + Rate: 2 + - Index: 38 + Item: Lata_Card + Rate: 2 + - Index: 39 + Item: Ringco_Card + Rate: 2 + - Index: 40 + Item: Pillar_Card + Rate: 2 + - Index: 41 + Item: Pinguicula_Dark_Card + Rate: 2 + - Index: 42 + Item: Dolomedes_Card + Rate: 1 + - Index: 43 + Item: Parus_Card + Rate: 1 + - Index: 44 + Item: Angra_Mantis_Card + Rate: 1 + - Index: 45 + Item: Cendrawasih_Card + Rate: 1 + - Index: 46 + Item: Siorava_Card + Rate: 1 + - Index: 47 + Item: Novice_Poring_Card + Rate: 1 + - Index: 48 + Item: Bungisngis_Card + Rate: 1 + - Index: 49 + Item: Engkanto_Card + Rate: 1 + - Index: 50 + Item: Tikbalang_Card + Rate: 1 + - Index: 51 + Item: LichternB_Card + Rate: 1 + - Index: 52 + Item: LichternY_Card + Rate: 1 + - Index: 53 + Item: LichternR_Card + Rate: 1 + - Index: 54 + Item: LichternG_Card + Rate: 1 + - Index: 55 + Item: Trance_Spore_Card + Rate: 1 + - Index: 56 + Item: RepairRobot_T_Card + Rate: 1 + - Index: 57 + Item: Fulbuk_Card + Rate: 1 + - Index: 58 + Item: FuryHero_Card + Rate: 1 + - Index: 59 + Item: MattDrainliar_Card + Rate: 1 + - Index: 60 + Item: OminousPermeter_Card + Rate: 1 + - Index: 61 + Item: Toucan_Card + Rate: 1 + - Index: 62 + Item: Jaguar_Card + Rate: 1 + - Index: 63 + Item: Uzhas_Card + Rate: 1 + - Index: 64 + Item: High_Sanare_Card + Rate: 1 + - Index: 65 + Item: Plaga_Card + Rate: 1 + - Index: 66 + Item: LivingDeath_Card + Rate: 1 + - Index: 67 + Item: Firm_Deleter1_Card + Rate: 1 + - Index: 68 + Item: Firm_Deleter2_Card + Rate: 1 + - Index: 69 + Item: Ferus_P_Card + Rate: 1 + - Index: 70 + Item: ILL_Sword_Fish_Card + Rate: 1 + - Index: 71 + Item: ILL_King_Dramoh_Card + Rate: 1 + - Index: 72 + Item: ILL_Giearth_Card + Rate: 1 + - Index: 73 + Item: ILL_Vitata_Card + Rate: 1 + - Index: 74 + Item: Ice_Gangu_Card + Rate: 1 + - Index: 75 + Item: Shining_Seaweed_Card + Rate: 1 + - Index: 76 + Item: Limacina_Card + Rate: 1 + - Index: 77 + Item: Disguiser_Card + Rate: 1 + - Index: 78 + Item: Bluemoon_Loli_Ruri_Card + Rate: 1 + - Index: 79 + Item: Grote_Card + Rate: 1 + - Index: 80 + Item: Pierrotzoist_Card + Rate: 1 + - Index: 81 + Item: Plagarion_Card + Rate: 1 + - Index: 82 + Item: Deadre_Card + Rate: 1 + - Index: 83 + Item: Venedi_Card + Rate: 1 + - Index: 84 + Item: Litus_Card + Rate: 1 + - Index: 85 + Item: Fillia_Card + Rate: 1 + - Index: 86 + Item: Vanilaqus_Card + Rate: 1 + - Index: 87 + Item: Lava_Eater_Card + Rate: 1 + - Index: 88 + Item: Fulgor_Card + Rate: 1 - Group: CARDALBUM_SHIELD SubGroups: - SubGroup: 1 List: - Index: 0 Item: Thief_Bug_Egg_Card - Rate: 1 + Rate: 2 - Index: 1 Item: Andre_Egg_Card Rate: 1 @@ -8573,85 +9465,157 @@ Body: Item: Anubis_Card Rate: 1 - Index: 15 - Item: Mysteltainn_Card - Rate: 1 - - Index: 16 Item: Live_Peach_Tree_Card Rate: 1 - - Index: 17 + - Index: 16 Item: Sting_Card Rate: 1 - - Index: 18 + - Index: 17 Item: Increase_Soil_Card Rate: 1 - - Index: 19 + - Index: 18 Item: Arclouse_Card Rate: 1 - - Index: 20 + - Index: 19 Item: Ancient_Mummy_Card Rate: 1 - - Index: 21 - Item: Executioner_Card - Rate: 1 - - Index: 22 + - Index: 20 Item: Alice_Card Rate: 1 - - Index: 23 - Item: Tirfing_Card - Rate: 1 - - Index: 24 + - Index: 21 Item: Zherlthsh_Card Rate: 1 - - Index: 25 + - Index: 22 Item: Tamruan_Card Rate: 1 - - Index: 26 + - Index: 23 Item: Parasite_Card Rate: 1 - - Index: 27 + - Index: 24 Item: Penomena_Card Rate: 1 - - Index: 28 + - Index: 25 Item: High_Orc_Card Rate: 1 - - Index: 29 + - Index: 26 Item: Teddy_Bear_Card Rate: 1 - - Index: 30 - Item: Tha_Despero_Card - Rate: 1 - - Index: 31 + - Index: 27 Item: Hodremlin_Card Rate: 1 - - Index: 32 + - Index: 28 Item: Seeker_Card Rate: 1 - - Index: 33 + - Index: 29 Item: Muscipular_Card Rate: 1 - - Index: 34 + - Index: 30 Item: Flame_Skull_Card Rate: 1 - - Index: 35 + - Index: 31 Item: Tatacho_Card - Rate: 1 - - Index: 36 + Rate: 2 + - Index: 32 Item: Aqua_Elemental_Card - Rate: 1 - - Index: 37 + Rate: 2 + - Index: 33 Item: Draco_Card - Rate: 1 - - Index: 38 + Rate: 2 + - Index: 34 Item: Luciola_Vespa_Card + Rate: 2 + - Index: 35 + Item: Centipede_Card + Rate: 2 + - Index: 36 + Item: Cornus_Card + Rate: 2 + - Index: 37 + Item: Dark_Shadow_Card + Rate: 2 + - Index: 38 + Item: Alnoldi_Card Rate: 1 - Index: 39 - Item: Centipede_Card + Item: Neo_Punk_Card Rate: 1 - Index: 40 - Item: Cornus_Card + Item: Zombie_Guard_Card Rate: 1 - Index: 41 - Item: Dark_Shadow_Card + Item: Grave_Arclouse_Card + Rate: 1 + - Index: 42 + Item: Basilisk1_Card + Rate: 1 + - Index: 43 + Item: Basilisk2_Card + Rate: 1 + - Index: 44 + Item: Fire_Golem_Card + Rate: 1 + - Index: 45 + Item: Les_Card + Rate: 1 + - Index: 46 + Item: Evil_Shadow_Card + Rate: 1 + - Index: 47 + Item: Gaster_Card + Rate: 1 + - Index: 48 + Item: Chaos_S_Winder_Card + Rate: 1 + - Index: 49 + Item: Chaos_H_Fly_Card + Rate: 1 + - Index: 50 + Item: Chaos_Poporing_Card + Rate: 1 + - Index: 51 + Item: Firm_Explosion_Card + Rate: 1 + - Index: 52 + Item: Firm_Blazzer_Card + Rate: 1 + - Index: 53 + Item: Frozen_Gargoyle_Card + Rate: 1 + - Index: 54 + Item: Khaliz_Knightage_Card + Rate: 1 + - Index: 55 + Item: C_Khaliz_Knight_Card + Rate: 1 + - Index: 56 + Item: ILL_Marse_Card + Rate: 1 + - Index: 57 + Item: ILL_Andre_Card + Rate: 1 + - Index: 58 + Item: ILL_Deniro_Card + Rate: 1 + - Index: 59 + Item: ILL_Piere_Card + Rate: 1 + - Index: 60 + Item: ILL_Ant_egg_Card + Rate: 1 + - Index: 61 + Item: B_Hallucigenia_Card + Rate: 1 + - Index: 62 + Item: R_Superior_Rgan_Card + Rate: 1 + - Index: 63 + Item: Tha_Anger_Card + Rate: 1 + - Index: 64 + Item: Tha_Horror_Card + Rate: 1 + - Index: 65 + Item: Tha_Resent_Card Rate: 1 - Group: CARDALBUM_SHOES SubGroups: @@ -8730,26 +9694,176 @@ Body: Item: Zombie_Prisoner_Card Rate: 1 - Index: 24 - Item: Cat_O_Nine_Tail_Card - Rate: 1 - - Index: 25 Item: Freezer_Card Rate: 1 - - Index: 26 + - Index: 25 Item: Acidus_Card Rate: 1 - - Index: 27 + - Index: 26 Item: Ferus__Card Rate: 1 - - Index: 28 - Item: Tha_Odium_Card - Rate: 1 - - Index: 29 + - Index: 27 Item: Ice_Titan_Card Rate: 1 - - Index: 30 + - Index: 28 Item: Zombie_Slaughter_Card Rate: 1 + - Index: 29 + Item: Heavy_Metaling_Card + Rate: 2 + - Index: 30 + Item: Time_Keeper_Card + Rate: 1 + - Index: 31 + Item: Grave_Mummy_Card + Rate: 1 + - Index: 32 + Item: Grave_Verit_Card + Rate: 1 + - Index: 33 + Item: Leaf_Lunatic_Card + Rate: 1 + - Index: 34 + Item: Hunter_Wolf_Card + Rate: 1 + - Index: 35 + Item: GreenCenere_Card + Rate: 1 + - Index: 36 + Item: OminousFreezer_Card + Rate: 1 + - Index: 37 + Item: Piranha_Card + Rate: 1 + - Index: 38 + Item: XM_Cookie_Card + Rate: 1 + - Index: 39 + Item: XM_Teddy_Bear_Card + Rate: 1 + - Index: 40 + Item: Vavayaga_Card + Rate: 1 + - Index: 41 + Item: Faceworm_Egg_Card + Rate: 1 + - Index: 42 + Item: Archi_Card + Rate: 1 + - Index: 43 + Item: Dio_Anemos_Card + Rate: 1 + - Index: 44 + Item: Geffen_Gang_Card + Rate: 1 + - Index: 45 + Item: Geffen_Thug_Card + Rate: 1 + - Index: 46 + Item: Geffen_Thief_Card + Rate: 1 + - Index: 47 + Item: Pa_Monk_Card + Rate: 1 + - Index: 48 + Item: Ordre_Card + Rate: 1 + - Index: 49 + Item: Blut_Hase_Card + Rate: 1 + - Index: 50 + Item: Kuro_Akuma_Card + Rate: 1 + - Index: 51 + Item: Hyper_Death_Card + Rate: 1 + - Index: 52 + Item: Rechenier_Card + Rate: 1 + - Index: 53 + Item: Odorico_Card + Rate: 1 + - Index: 54 + Item: Coyote_Card + Rate: 1 + - Index: 55 + Item: Chaos_Ba_Jr_Card + Rate: 1 + - Index: 56 + Item: Firm_Nightmare_T_Card + Rate: 1 + - Index: 57 + Item: Porcellio_W_Card + Rate: 1 + - Index: 58 + Item: Abyss_Man_Card + Rate: 1 + - Index: 59 + Item: ILL_Merman_Card + Rate: 1 + - Index: 60 + Item: Assistant_Card + Rate: 1 + - Index: 61 + Item: Dry_Rafflesia_Card + Rate: 1 + - Index: 62 + Item: Alnoldi_Ex_Card + Rate: 1 + - Index: 63 + Item: Beta_Scissore_Ng_Card + Rate: 1 + - Index: 64 + Item: Verporta_Card + Rate: 1 + - Index: 65 + Item: Verporte_H_Card + Rate: 1 + - Index: 66 + Item: Papila_Card + Rate: 1 + - Index: 67 + Item: Papila_H_Card + Rate: 1 + - Index: 68 + Item: Papila_Ruba_Card + Rate: 1 + - Index: 69 + Item: Papila_Cae_Card + Rate: 1 + - Index: 70 + Item: Aries_Card + Rate: 1 + - Index: 71 + Item: Bath_Mermaid_Card + Rate: 1 + - Index: 72 + Item: EP17_2_Marc_Card + Rate: 1 + - Index: 73 + Item: Holy_Skogul_Card + Rate: 1 + - Index: 74 + Item: EP18_Volcaring_Card + Rate: 1 + - Index: 75 + Item: EP18_Tumble_Ring_Card + Rate: 1 + - Index: 76 + Item: Hallucigenia_Card + Rate: 1 + - Index: 77 + Item: E_Inter_Rgan_Card + Rate: 1 + - Index: 78 + Item: Extra_Joker_Card + Rate: 1 + - Index: 79 + Item: General_Orc_Card + Rate: 1 + - Index: 80 + Item: Sieglouse_Card + Rate: 1 - Group: CARDALBUM_WEAPON SubGroups: - SubGroup: 1 @@ -8902,172 +10016,451 @@ Body: Item: Goblin_Archer_Card Rate: 1 - Index: 49 - Item: Gryphon_Card - Rate: 1 - - Index: 50 Item: Gig_Card Rate: 1 - - Index: 51 + - Index: 50 Item: Neraid_Card Rate: 1 - - Index: 52 + - Index: 51 Item: Dark_Priest_Card Rate: 1 - - Index: 53 + - Index: 52 Item: The_Paper_Card Rate: 1 - - Index: 54 + - Index: 53 Item: Dullahan_Card Rate: 1 - - Index: 55 + - Index: 54 Item: Driller_Card Rate: 1 - - Index: 56 + - Index: 55 Item: Diabolic_Card Rate: 1 - - Index: 57 + - Index: 56 Item: Lava_Golem_Card Rate: 1 - - Index: 58 + - Index: 57 Item: Rotar_Zairo_Card Rate: 1 - - Index: 59 + - Index: 58 Item: Civil_Servant_Card Rate: 1 - - Index: 60 - Item: Mutant_Dragon_Card - Rate: 1 - - Index: 61 + - Index: 59 Item: Bloody_Murderer_Card Rate: 1 - - Index: 62 + - Index: 60 Item: Stone_Shooter_Card Rate: 1 - - Index: 63 + - Index: 61 Item: Assulter_Card Rate: 1 - - Index: 64 + - Index: 62 Item: Aster_Card Rate: 1 - - Index: 65 + - Index: 63 Item: Elder_Card Rate: 1 - - Index: 66 + - Index: 64 Item: Orc_Lady_Card Rate: 1 - - Index: 67 + - Index: 65 Item: Injustice_Card Rate: 1 - - Index: 68 + - Index: 66 Item: Shellfish_Card Rate: 1 - - Index: 69 + - Index: 67 Item: Zombie_Master_Card Rate: 1 - - Index: 70 + - Index: 68 Item: Zipper_Bear_Card Rate: 1 - - Index: 71 + - Index: 69 Item: Chepet_Card Rate: 1 - - Index: 72 + - Index: 70 Item: Caterpillar_Card Rate: 1 - - Index: 73 + - Index: 71 Item: Kobold_Leader_Card Rate: 1 - - Index: 74 + - Index: 72 Item: Kobold_Archer_Card Rate: 1 - - Index: 75 + - Index: 73 Item: Cruiser_Card Rate: 1 - - Index: 76 + - Index: 74 Item: Kind_Of_Beetle_Card Rate: 1 - - Index: 77 + - Index: 75 Item: Tri_Joint_Card Rate: 1 - - Index: 78 + - Index: 76 Item: Panzer_Goblin_Card Rate: 1 - - Index: 79 + - Index: 77 Item: Fur_Seal_Card Rate: 1 - - Index: 80 + - Index: 78 Item: Fake_Angel_Card Rate: 1 - - Index: 81 + - Index: 79 Item: Mobster_Card Rate: 1 - - Index: 82 + - Index: 80 Item: Bloody_Knight_Card Rate: 1 - - Index: 83 + - Index: 81 Item: Garm_Baby_Card Rate: 1 - - Index: 84 + - Index: 82 Item: Phendark_Card Rate: 1 - - Index: 85 + - Index: 83 Item: Pitman_Card Rate: 1 - - Index: 86 + - Index: 84 Item: Metaling_Card Rate: 1 - - Index: 87 + - Index: 85 Item: Hill_Wind_Card Rate: 1 - - Index: 88 + - Index: 86 Item: Rawrel_Card Rate: 1 - - Index: 89 + - Index: 87 Item: Eremes_Card Rate: 1 - - Index: 90 + - Index: 88 Item: Harword_Card Rate: 1 - - Index: 91 + - Index: 89 Item: Shecil_Card Rate: 1 - - Index: 92 + - Index: 90 Item: Ferus_Card Rate: 1 - - Index: 93 + - Index: 91 Item: Deathword_Card Rate: 1 - - Index: 94 + - Index: 92 Item: Breeze_Card Rate: 1 - - Index: 95 - Item: Solace_Card - Rate: 1 - - Index: 96 - Item: Tha_Maero_Card - Rate: 1 - - Index: 97 - Item: Tha_Dolor_Card - Rate: 1 - - Index: 98 - Item: Skeggiold_Card - Rate: 1 - - Index: 99 + - Index: 93 Item: Drosera_Card Rate: 1 - - Index: 100 - Item: Sword_Guardian_Card + - Index: 94 + Item: P_Skeleton_Card Rate: 1 - - Index: 101 - Item: Bow_Guardian_Card - Rate: 1 - - Index: 102 - Item: Necromancer_Card - Rate: 1 - - Index: 103 + - Index: 95 Item: Centipede_Larva_Card - Rate: 1 - - Index: 104 + Rate: 2 + - Index: 96 Item: Hilsrion_Card + Rate: 2 + - Index: 97 + Item: Aunoe_Card + Rate: 2 + - Index: 98 + Item: Panat_Card + Rate: 2 + - Index: 99 + Item: Beholder_Master_Card + Rate: 2 + - Index: 100 + Item: Naga_Card + Rate: 2 + - Index: 101 + Item: Nepenthes_Card + Rate: 2 + - Index: 102 + Item: Egg_Of_Draco_Card + Rate: 2 + - Index: 103 + Item: Bradium_Goram_Card + Rate: 2 + - Index: 104 + Item: Ancient_Tree_Card + Rate: 2 + - Index: 105 + Item: Jakudam_Card + Rate: 2 + - Index: 106 + Item: Cobalt_Mineral_Card + Rate: 2 + - Index: 107 + Item: Pinguicula_Card + Rate: 2 + - Index: 108 + Item: Hell_Apocalips_Card + Rate: 2 + - Index: 109 + Item: Miming_Card + Rate: 1 + - Index: 110 + Item: Little_Fatum_Card + Rate: 1 + - Index: 111 + Item: Pom_Spider_Card + Rate: 1 + - Index: 112 + Item: Banaspaty_Card + Rate: 1 + - Index: 113 + Item: Butoijo_Card + Rate: 1 + - Index: 114 + Item: Sedora_Card + Rate: 1 + - Index: 115 + Item: Sropho_Card + Rate: 1 + - Index: 116 + Item: Red_Eruma_Card + Rate: 1 + - Index: 117 + Item: Mini_Octopus_Card + Rate: 1 + - Index: 118 + Item: Manananggal_Card + Rate: 1 + - Index: 119 + Item: FaithfulManager_Card + Rate: 1 + - Index: 120 + Item: Big_Ben_Card + Rate: 1 + - Index: 121 + Item: Big_Bell_Card + Rate: 1 + - Index: 122 + Item: P_Archer_Skeleton_Card + Rate: 1 + - Index: 123 + Item: P_Soldier_Skeleton_Card + Rate: 1 + - Index: 124 + Item: Grave_Mimic_Card + Rate: 1 + - Index: 125 + Item: Grave_Minorous_Card + Rate: 1 + - Index: 126 + Item: Wild_Honet_Card + Rate: 1 + - Index: 127 + Item: Ju_Mandragora_Card + Rate: 1 + - Index: 128 + Item: Fru_Pom_Spider_Card + Rate: 1 + - Index: 129 + Item: Step_Card + Rate: 1 + - Index: 130 + Item: Rock_Step_Card + Rate: 1 + - Index: 131 + Item: KickAndKick_Card + Rate: 1 + - Index: 132 + Item: ExplorationRover_T_Card + Rate: 1 + - Index: 133 + Item: Fire_Frilldora_Card + Rate: 1 + - Index: 134 + Item: BitterMunak_Card + Rate: 1 + - Index: 135 + Item: BitterArcherSk_Card + Rate: 1 + - Index: 136 + Item: WizardOfVeritas_Card + Rate: 1 + - Index: 137 + Item: OminousAssulter_Card + Rate: 1 + - Index: 138 + Item: Curupira_Card + Rate: 1 + - Index: 139 + Item: XM_Mystcase_Card + Rate: 1 + - Index: 140 + Item: XM_Marionette_Card + Rate: 1 + - Index: 141 + Item: AirShip_Raid_Card + Rate: 1 + - Index: 142 + Item: Payon_Soldier_Card + Rate: 1 + - Index: 143 + Item: Jew_Card + Rate: 1 + - Index: 144 + Item: Cowraiders3_Card + Rate: 1 + - Index: 145 + Item: E_Cowraiders1_Card + Rate: 1 + - Index: 146 + Item: E_Cowraiders2_Card + Rate: 1 + - Index: 147 + Item: E_Cowraiders3_Card + Rate: 1 + - Index: 148 + Item: Colorful_T_Bear_Card + Rate: 1 + - Index: 149 + Item: Fragment_Of_Soul_Card + Rate: 1 + - Index: 150 + Item: Ancient_W_Fighter_Card + Rate: 1 + - Index: 151 + Item: Heart_Hunter_Card + Rate: 1 + - Index: 152 + Item: Ancient_Trijoint_Card + Rate: 1 + - Index: 153 + Item: Ancient_Megalith_Card + Rate: 1 + - Index: 154 + Item: Chaos_Goring_Card + Rate: 1 + - Index: 155 + Item: High_Bellare_Card + Rate: 1 + - Index: 156 + Item: Sanare_Card + Rate: 1 + - Index: 157 + Item: Mutant_Plaga_Card + Rate: 1 + - Index: 158 + Item: Mt_Dolor_Card + Rate: 1 + - Index: 159 + Item: E_EA1L_Card + Rate: 1 + - Index: 160 + Item: Bellare_Card + Rate: 1 + - Index: 161 + Item: Firm_Kaho_Card + Rate: 1 + - Index: 162 + Item: Firm_Lava_G_Card + Rate: 1 + - Index: 163 + Item: Polluted_Ray_A_Card + Rate: 1 + - Index: 164 + Item: Flame_Ghost_Card + Rate: 1 + - Index: 165 + Item: Polluted_W_Man_Card + Rate: 1 + - Index: 166 + Item: White_Knightage_Card + Rate: 1 + - Index: 167 + Item: C_White_Knight_Card + Rate: 1 + - Index: 168 + Item: Angelgolt_Card + Rate: 1 + - Index: 169 + Item: Plasma_Spt_Card + Rate: 1 + - Index: 170 + Item: Plasma_Arch_Card + Rate: 1 + - Index: 171 + Item: Holy_Frus_Card + Rate: 1 + - Index: 172 + Item: Poisonous_Card + Rate: 1 + - Index: 173 + Item: Acidus_B_Card + Rate: 1 + - Index: 174 + Item: Acidus_S_Card + Rate: 1 + - Index: 175 + Item: ILL_Sropho_Card + Rate: 1 + - Index: 176 + Item: ILL_Deviace_Card + Rate: 1 + - Index: 177 + Item: ILL_Sedora_Card + Rate: 1 + - Index: 178 + Item: Assistant_H_Card + Rate: 1 + - Index: 179 + Item: Alnoldi_Ex_H_Card + Rate: 1 + - Index: 180 + Item: B_Scissore_Ng_H_Card + Rate: 1 + - Index: 181 + Item: Papila_Ruba_H_Card + Rate: 1 + - Index: 182 + Item: Papila_Cae_H_Card + Rate: 1 + - Index: 183 + Item: Pitaya_R_Card + Rate: 1 + - Index: 184 + Item: Plaga3_Card + Rate: 1 + - Index: 185 + Item: Pitaya_B_Card + Rate: 1 + - Index: 186 + Item: ILL_Andre_soldier_Card + Rate: 1 + - Index: 187 + Item: ILL_Andre_larva_Card + Rate: 1 + - Index: 188 + Item: ILL_Farmiliar_Card + Rate: 1 + - Index: 189 + Item: EP18_Hot_Molar_Card + Rate: 1 + - Index: 190 + Item: EP18_Ashring_Card + Rate: 1 + - Index: 191 + Item: Gan_Ceann_Card + Rate: 1 + - Index: 192 + Item: Brutal_Murderer_Card + Rate: 1 + - Index: 193 + Item: Reken_Guard_Card + Rate: 1 + - Index: 194 + Item: Reken_H_Guard_Card + Rate: 1 + - Index: 195 + Item: Regen_Scientist_Card + Rate: 1 + - Index: 196 + Item: Tha_Regret_Card + Rate: 1 + - Index: 197 + Item: Book_Of_Death_Card Rate: 1 - Group: CASH_FOOD SubGroups: @@ -9108,7 +10501,10 @@ Body: Rate: 800 - Index: 1 Item: Egrade_Coin - Rate: 200 + Rate: 50 + - Index: 2 + Item: Egrade_Coin + Rate: 150 - SubGroup: 3 List: - Index: 0 @@ -9617,27 +11013,22 @@ Body: UniqueId: true - Group: COUPLE_EVENT_BASKET SubGroups: - - SubGroup: 1 + - SubGroup: 0 List: - Index: 0 Item: Fire_Cracker_Love - Rate: 1 Amount: 10 - Index: 1 Item: Fire_Cracker_Wday - Rate: 1 Amount: 10 - Index: 2 Item: Fire_Cracker_Vday - Rate: 1 Amount: 10 - Index: 3 Item: Fire_Cracker_Bday - Rate: 1 Amount: 10 - Index: 4 Item: Fire_Cracker_Xmas - Rate: 1 Amount: 10 - Group: CP_ARMOR_SCROLL_BOX SubGroups: @@ -10180,7 +11571,7 @@ Body: List: - Index: 0 Item: Elven_Ears_C - Duration: 10080 + Duration: 20160 UniqueId: true - Group: ENCHANT_STONE_BOX SubGroups: @@ -10188,2250 +11579,2280 @@ Body: List: - Index: 0 Item: STRStone_Top - Rate: 1000 + Rate: 100 - Index: 1 Item: INTStone_Top - Rate: 1000 + Rate: 100 - Index: 2 Item: AGIStone_Top - Rate: 1000 + Rate: 100 - Index: 3 Item: DEXStone_Top - Rate: 1000 + Rate: 100 - Index: 4 Item: VITStone_Top - Rate: 1000 + Rate: 100 - Index: 5 Item: LUKStone_Top - Rate: 1000 + Rate: 100 - Index: 6 Item: ATKStone_Middle - Rate: 1000 + Rate: 100 - Index: 7 Item: MATKStone_Middle - Rate: 1000 + Rate: 100 - Index: 8 Item: HITStone_Bottom - Rate: 1000 + Rate: 100 - Index: 9 Item: FLEEStone_Bottom - Rate: 1000 + Rate: 100 - Group: ENCHANT_STONE_BOX10 SubGroups: - SubGroup: 1 List: - Index: 0 Item: SPdrainStone_Robe - Rate: 78 + Rate: 1 - Index: 1 Item: SPdrainStone_Top - Rate: 78 + Rate: 1 - Index: 2 - Item: HPdrainStone_Top - Rate: 156 - - Index: 3 - Item: Greed_Stone - Rate: 156 - - Index: 4 - Item: ASPDStone_Top - Rate: 156 - - Index: 5 Item: Kyrie_Stone - Rate: 156 + Rate: 2 + - Index: 3 + Item: ASPDStone_Top + Rate: 2 + - Index: 4 + Item: Greed_Stone + Rate: 2 + - Index: 5 + Item: HPdrainStone_Top + Rate: 2 - Index: 6 - Item: MinorCastingStone_Robe - Rate: 156 - - Index: 7 - Item: LexAeternaStone_Middle - Rate: 156 - - Index: 8 Item: ShadowEffect_Middle - Rate: 156 + Rate: 2 + - Index: 7 + Item: MinorCastingStone_Robe + Rate: 2 + - Index: 8 + Item: LexAeternaStone_Middle + Rate: 2 - Index: 9 - Item: ATKStone_Middle - Rate: 234 - - Index: 10 - Item: MATKStone_Middle - Rate: 234 - - Index: 11 Item: ATKStone_Top - Rate: 234 + Rate: 3 + - Index: 10 + Item: ATKStone_Middle + Rate: 3 + - Index: 11 + Item: ATKStone_Bottom + Rate: 3 - Index: 12 Item: MATKStone_Top - Rate: 234 + Rate: 3 - Index: 13 - Item: ATKStone_Bottom - Rate: 234 + Item: MATKStone_Middle + Rate: 3 - Index: 14 Item: MATKStone_Bottom - Rate: 234 + Rate: 3 - Index: 15 Item: Critical_Stone - Rate: 234 + Rate: 3 - Index: 16 Item: Range_Stone - Rate: 234 + Rate: 3 - Index: 17 - Item: CastingStone_Top - Rate: 234 - - Index: 18 - Item: CastingStone_Middle - Rate: 234 - - Index: 19 - Item: CastingStone_Bottom - Rate: 234 - - Index: 20 - Item: BlueAuraEffect_Middle - Rate: 234 - - Index: 21 Item: PinkGlowEffect_Middle - Rate: 234 + Rate: 3 + - Index: 18 + Item: BlueAuraEffect_Middle + Rate: 3 + - Index: 19 + Item: CastingStone_Top + Rate: 3 + - Index: 20 + Item: CastingStone_Middle + Rate: 3 + - Index: 21 + Item: CastingStone_Bottom + Rate: 3 - Index: 22 - Item: ChangeLUK_Middle - Rate: 312 + Item: ChangeSTR_Bottom + Rate: 4 - Index: 23 Item: ChangeSTR_Middle - Rate: 313 + Rate: 4 - Index: 24 - Item: ChangeAGI_Middle - Rate: 313 + Item: ChangeINT_Bottom + Rate: 4 - Index: 25 Item: ChangeINT_Middle - Rate: 313 + Rate: 4 - Index: 26 - Item: ChangeVIT_Middle - Rate: 313 + Item: ChangeDEX_Bottom + Rate: 4 - Index: 27 Item: ChangeDEX_Middle - Rate: 313 + Rate: 4 - Index: 28 Item: ChangeVIT_Bottom - Rate: 313 + Rate: 4 - Index: 29 - Item: ChangeAGI_Bottom - Rate: 313 + Item: ChangeVIT_Middle + Rate: 4 - Index: 30 - Item: ChangeDEX_Bottom - Rate: 313 + Item: ChangeAGI_Bottom + Rate: 4 - Index: 31 - Item: ChangeLUK_Bottom - Rate: 313 + Item: ChangeAGI_Middle + Rate: 4 - Index: 32 - Item: ChangeSTR_Bottom - Rate: 313 + Item: ChangeLUK_Bottom + Rate: 4 - Index: 33 - Item: ChangeINT_Bottom - Rate: 313 + Item: ChangeLUK_Middle + Rate: 4 - Index: 34 - Item: EXPStone_Bottom - Rate: 391 - - Index: 35 Item: MaxHP2_Stone - Rate: 391 - - Index: 36 + Rate: 5 + - Index: 35 Item: MaxSP2_Stone - Rate: 391 - - Index: 37 + Rate: 5 + - Index: 36 Item: EXPStone_Middle - Rate: 391 + Rate: 5 + - Index: 37 + Item: EXPStone_Bottom + Rate: 5 - Index: 38 Item: EXPStone_Top - Rate: 391 + Rate: 5 - Group: ENCHANT_STONE_BOX11 SubGroups: - SubGroup: 1 List: - Index: 0 Item: CastingStone_Robe - Rate: 20 + Rate: 2 - Index: 1 Item: SPdrainStone_Robe - Rate: 80 + Rate: 8 - Index: 2 Item: SPdrainStone_Top - Rate: 80 + Rate: 8 - Index: 3 - Item: ASPDStone_Robe - Rate: 160 - - Index: 4 Item: HPdrainStone_Robe - Rate: 160 - - Index: 5 + Rate: 16 + - Index: 4 Item: HPdrainStone_Top - Rate: 160 - - Index: 6 + Rate: 16 + - Index: 5 Item: ASPDStone_Top - Rate: 160 + Rate: 16 + - Index: 6 + Item: ASPDStone_Robe + Rate: 16 - Index: 7 Item: MinorCastingStone_Robe - Rate: 160 + Rate: 16 - Index: 8 Item: WhiteBodyEffect_Middle - Rate: 160 + Rate: 16 - Index: 9 - Item: ATKStone_Middle - Rate: 240 - - Index: 10 - Item: MATKStone_Middle - Rate: 240 - - Index: 11 Item: ATKStone_Top - Rate: 240 + Rate: 24 + - Index: 10 + Item: ATKStone_Middle + Rate: 24 + - Index: 11 + Item: ATKStone_Bottom + Rate: 24 - Index: 12 Item: MATKStone_Top - Rate: 240 + Rate: 24 - Index: 13 - Item: ATKStone_Bottom - Rate: 240 + Item: MATKStone_Middle + Rate: 24 - Index: 14 Item: MATKStone_Bottom - Rate: 240 + Rate: 24 - Index: 15 Item: Critical_Stone - Rate: 240 + Rate: 24 - Index: 16 Item: Range_Stone - Rate: 240 + Rate: 24 - Index: 17 Item: ExplodingEffect_Middle - Rate: 240 + Rate: 24 - Index: 18 Item: WaterFieldEffect_Bottom - Rate: 240 + Rate: 24 - Index: 19 Item: Heal_Stone - Rate: 240 + Rate: 24 - Index: 20 Item: Teleport_Stone - Rate: 240 + Rate: 24 - Index: 21 Item: Steal_Stone - Rate: 240 + Rate: 24 - Index: 22 - Item: ChangeLUK_Middle - Rate: 320 + Item: ChangeSTR_Bottom + Rate: 32 - Index: 23 Item: ChangeSTR_Middle - Rate: 320 + Rate: 32 - Index: 24 - Item: ChangeAGI_Middle - Rate: 320 + Item: ChangeINT_Bottom + Rate: 32 - Index: 25 Item: ChangeINT_Middle - Rate: 320 + Rate: 32 - Index: 26 - Item: ChangeVIT_Middle - Rate: 320 + Item: ChangeDEX_Bottom + Rate: 32 - Index: 27 Item: ChangeDEX_Middle - Rate: 320 + Rate: 32 - Index: 28 Item: ChangeVIT_Bottom - Rate: 320 + Rate: 32 - Index: 29 - Item: ChangeAGI_Bottom - Rate: 320 + Item: ChangeVIT_Middle + Rate: 32 - Index: 30 - Item: ChangeDEX_Bottom - Rate: 320 + Item: ChangeAGI_Bottom + Rate: 32 - Index: 31 - Item: ChangeLUK_Bottom - Rate: 320 + Item: ChangeAGI_Middle + Rate: 32 - Index: 32 - Item: ChangeSTR_Bottom - Rate: 320 + Item: ChangeLUK_Bottom + Rate: 32 - Index: 33 - Item: ChangeINT_Bottom - Rate: 320 + Item: ChangeLUK_Middle + Rate: 32 - Index: 34 - Item: EXPStone_Bottom - Rate: 380 - - Index: 35 Item: MaxHP2_Stone - Rate: 380 - - Index: 36 + Rate: 38 + - Index: 35 Item: MaxSP2_Stone - Rate: 380 - - Index: 37 + Rate: 38 + - Index: 36 Item: EXPStone_Middle - Rate: 380 + Rate: 38 + - Index: 37 + Item: EXPStone_Bottom + Rate: 38 - Index: 38 Item: EXPStone_Top - Rate: 380 + Rate: 38 - Group: ENCHANT_STONE_BOX12 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: CastingStone_Robe - Rate: 20 - - Index: 1 Item: DoubleAttack_Stone - Rate: 20 - - Index: 2 + Rate: 2 + Announced: true + - Index: 1 Item: Critical_Stone_Robe - Rate: 20 + Rate: 2 + Announced: true + - Index: 2 + Item: CastingStone_Robe + Rate: 2 + Announced: true - Index: 3 Item: SPdrainStone_Robe - Rate: 80 + Rate: 8 - Index: 4 Item: SPdrainStone_Top - Rate: 80 + Rate: 8 - Index: 5 - Item: ShrinkEffect_Bottom - Rate: 80 - - Index: 6 Item: CastStone_Robe - Rate: 80 + Rate: 8 + - Index: 6 + Item: ShrinkEffect_Bottom + Rate: 8 - Index: 7 - Item: ASPDStone_Robe - Rate: 160 - - Index: 8 Item: HPdrainStone_Robe - Rate: 160 - - Index: 9 + Rate: 16 + - Index: 8 Item: HPdrainStone_Top - Rate: 160 - - Index: 10 + Rate: 16 + - Index: 9 Item: ASPDStone_Top - Rate: 160 + Rate: 16 + - Index: 10 + Item: ASPDStone_Robe + Rate: 16 - Index: 11 Item: MinorCastingStone_Robe - Rate: 160 + Rate: 16 - Index: 12 - Item: ATKStone_Middle - Rate: 240 - - Index: 13 - Item: MATKStone_Middle - Rate: 240 - - Index: 14 Item: ATKStone_Top - Rate: 240 + Rate: 24 + - Index: 13 + Item: ATKStone_Middle + Rate: 24 + - Index: 14 + Item: ATKStone_Bottom + Rate: 24 - Index: 15 Item: MATKStone_Top - Rate: 240 + Rate: 24 - Index: 16 - Item: EXPStone_Bottom - Rate: 240 + Item: MATKStone_Middle + Rate: 24 - Index: 17 - Item: ATKStone_Bottom - Rate: 240 - - Index: 18 Item: MATKStone_Bottom - Rate: 240 - - Index: 19 + Rate: 24 + - Index: 18 Item: Range_Stone - Rate: 240 - - Index: 20 + Rate: 24 + - Index: 19 Item: EXPStone_Middle - Rate: 240 + Rate: 24 + - Index: 20 + Item: EXPStone_Bottom + Rate: 24 - Index: 21 Item: EXPStone_Top - Rate: 240 + Rate: 24 - Index: 22 - Item: CastingStone_Top - Rate: 240 + Item: CastingStone_Bottom + Rate: 24 - Index: 23 Item: CastingStone_Middle - Rate: 240 + Rate: 24 - Index: 24 - Item: CastingStone_Bottom - Rate: 240 + Item: CastingStone_Top + Rate: 24 - Index: 25 - Item: ChangeLUK_Middle - Rate: 380 + Item: ChangeSTR_Bottom + Rate: 38 - Index: 26 Item: ChangeSTR_Middle - Rate: 380 + Rate: 38 - Index: 27 - Item: ChangeAGI_Middle - Rate: 380 + Item: ChangeINT_Bottom + Rate: 38 - Index: 28 Item: ChangeINT_Middle - Rate: 380 + Rate: 38 - Index: 29 - Item: ChangeVIT_Middle - Rate: 380 + Item: ChangeDEX_Bottom + Rate: 38 - Index: 30 Item: ChangeDEX_Middle - Rate: 380 + Rate: 38 - Index: 31 Item: ChangeVIT_Bottom - Rate: 380 + Rate: 38 - Index: 32 - Item: ChangeAGI_Bottom - Rate: 380 + Item: ChangeVIT_Middle + Rate: 38 - Index: 33 - Item: ChangeDEX_Bottom - Rate: 380 + Item: ChangeAGI_Bottom + Rate: 38 - Index: 34 - Item: ChangeLUK_Bottom - Rate: 380 + Item: ChangeAGI_Middle + Rate: 38 - Index: 35 - Item: ChangeSTR_Bottom - Rate: 380 + Item: ChangeLUK_Bottom + Rate: 38 - Index: 36 - Item: ChangeINT_Bottom - Rate: 380 + Item: ChangeLUK_Middle + Rate: 38 - Index: 37 Item: Critical_Stone - Rate: 380 + Rate: 38 - Index: 38 Item: Critical_Stone_Top - Rate: 380 + Rate: 38 - Index: 39 Item: Critical_Stone_Bottom - Rate: 380 + Rate: 38 - Group: ENCHANT_STONE_BOX13 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: CastingStone_Robe - Rate: 20 - - Index: 1 Item: DoubleAttack_Stone - Rate: 20 - - Index: 2 + Rate: 2 + Announced: true + - Index: 1 Item: Critical_Stone_Robe - Rate: 20 + Rate: 2 + Announced: true + - Index: 2 + Item: CastingStone_Robe + Rate: 2 + Announced: true - Index: 3 Item: SPdrainStone_Robe - Rate: 80 + Rate: 8 - Index: 4 Item: SPdrainStone_Top - Rate: 80 + Rate: 8 - Index: 5 - Item: ShrinkEffect_Bottom - Rate: 80 - - Index: 6 Item: CastStone_Robe - Rate: 80 + Rate: 8 + - Index: 6 + Item: ShrinkEffect_Bottom + Rate: 8 - Index: 7 - Item: ASPDStone_Robe - Rate: 160 - - Index: 8 Item: HPdrainStone_Robe - Rate: 160 - - Index: 9 + Rate: 16 + - Index: 8 Item: HPdrainStone_Top - Rate: 160 - - Index: 10 + Rate: 16 + - Index: 9 Item: ASPDStone_Top - Rate: 160 + Rate: 16 + - Index: 10 + Item: ASPDStone_Robe + Rate: 16 - Index: 11 Item: MinorCastingStone_Robe - Rate: 160 + Rate: 16 - Index: 12 Item: SuraStone_Robe - Rate: 160 + Rate: 16 - Index: 13 Item: RangerStone_Robe - Rate: 160 + Rate: 16 - Index: 14 Item: SorcererStone_Robe - Rate: 160 + Rate: 16 - Index: 15 - Item: EXPStone_Bottom - Rate: 240 - - Index: 16 Item: Range_Stone - Rate: 240 - - Index: 17 + Rate: 24 + - Index: 16 Item: EXPStone_Middle - Rate: 240 + Rate: 24 + - Index: 17 + Item: EXPStone_Bottom + Rate: 24 - Index: 18 Item: EXPStone_Top - Rate: 240 + Rate: 24 - Index: 19 - Item: CastingStone_Top - Rate: 240 + Item: CastingStone_Bottom + Rate: 24 - Index: 20 Item: CastingStone_Middle - Rate: 240 + Rate: 24 - Index: 21 - Item: CastingStone_Bottom - Rate: 240 + Item: CastingStone_Top + Rate: 24 - Index: 22 - Item: ATKStone_Middle - Rate: 370 - - Index: 23 - Item: MATKStone_Middle - Rate: 370 - - Index: 24 Item: ATKStone_Top - Rate: 370 + Rate: 37 + - Index: 23 + Item: ATKStone_Middle + Rate: 37 + - Index: 24 + Item: ATKStone_Bottom + Rate: 37 - Index: 25 Item: MATKStone_Top - Rate: 370 + Rate: 37 - Index: 26 - Item: ATKStone_Bottom - Rate: 370 + Item: MATKStone_Middle + Rate: 37 - Index: 27 Item: MATKStone_Bottom - Rate: 370 + Rate: 37 - Index: 28 - Item: Critical_Stone - Rate: 370 - - Index: 29 - Item: Critical_Stone_Top - Rate: 370 - - Index: 30 - Item: Critical_Stone_Bottom - Rate: 370 - - Index: 31 Item: SuraStone_Top - Rate: 370 - - Index: 32 + Rate: 37 + - Index: 29 Item: SuraStone_Middle - Rate: 370 - - Index: 33 + Rate: 37 + - Index: 30 Item: SuraStone_Bottom - Rate: 370 - - Index: 34 + Rate: 37 + - Index: 31 Item: RangerStone_Top - Rate: 370 - - Index: 35 + Rate: 37 + - Index: 32 Item: RangerStone_Middle - Rate: 370 - - Index: 36 + Rate: 37 + - Index: 33 Item: RangerStone_Bottom - Rate: 370 - - Index: 37 + Rate: 37 + - Index: 34 Item: SorcererStone_Top - Rate: 370 - - Index: 38 + Rate: 37 + - Index: 35 Item: SorcererStone_Middle - Rate: 370 - - Index: 39 + Rate: 37 + - Index: 36 Item: SorcererStone_Bottom - Rate: 370 + Rate: 37 + - Index: 37 + Item: Critical_Stone + Rate: 37 + - Index: 38 + Item: Critical_Stone_Top + Rate: 37 + - Index: 39 + Item: Critical_Stone_Bottom + Rate: 37 - Group: ENCHANT_STONE_BOX14 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: CastingStone_Robe - Rate: 20 - - Index: 1 Item: DoubleAttack_Stone - Rate: 20 - - Index: 2 + Rate: 2 + Announced: true + - Index: 1 Item: Critical_Stone_Robe - Rate: 20 + Rate: 2 + Announced: true + - Index: 2 + Item: CastingStone_Robe + Rate: 2 + Announced: true - Index: 3 Item: SPdrainStone_Robe - Rate: 80 + Rate: 8 - Index: 4 Item: SPdrainStone_Top - Rate: 80 + Rate: 8 - Index: 5 - Item: ShrinkEffect_Bottom - Rate: 80 - - Index: 6 Item: CastStone_Robe - Rate: 80 + Rate: 8 + - Index: 6 + Item: ShrinkEffect_Bottom + Rate: 8 - Index: 7 - Item: ASPDStone_Robe - Rate: 160 - - Index: 8 Item: HPdrainStone_Robe - Rate: 160 - - Index: 9 + Rate: 16 + - Index: 8 Item: HPdrainStone_Top - Rate: 160 - - Index: 10 + Rate: 16 + - Index: 9 Item: ASPDStone_Top - Rate: 160 + Rate: 16 + - Index: 10 + Item: ASPDStone_Robe + Rate: 16 - Index: 11 Item: MinorCastingStone_Robe - Rate: 160 + Rate: 16 - Index: 12 Item: RuneknightStone_Robe - Rate: 160 + Rate: 16 - Index: 13 Item: GeneticStone_Robe - Rate: 160 + Rate: 16 - Index: 14 Item: WarlockStone_Robe - Rate: 160 + Rate: 16 - Index: 15 - Item: EXPStone_Bottom - Rate: 240 - - Index: 16 Item: Range_Stone - Rate: 240 - - Index: 17 + Rate: 24 + - Index: 16 Item: EXPStone_Middle - Rate: 240 + Rate: 24 + - Index: 17 + Item: EXPStone_Bottom + Rate: 24 - Index: 18 Item: EXPStone_Top - Rate: 240 + Rate: 24 - Index: 19 - Item: CastingStone_Top - Rate: 240 + Item: CastingStone_Bottom + Rate: 24 - Index: 20 Item: CastingStone_Middle - Rate: 240 + Rate: 24 - Index: 21 - Item: CastingStone_Bottom - Rate: 240 + Item: CastingStone_Top + Rate: 24 - Index: 22 - Item: ATKStone_Middle - Rate: 370 - - Index: 23 - Item: MATKStone_Middle - Rate: 370 - - Index: 24 - Item: ATKStone_Top - Rate: 370 - - Index: 25 - Item: MATKStone_Top - Rate: 370 - - Index: 26 - Item: ATKStone_Bottom - Rate: 370 - - Index: 27 - Item: MATKStone_Bottom - Rate: 370 - - Index: 28 - Item: Critical_Stone - Rate: 370 - - Index: 29 - Item: Critical_Stone_Top - Rate: 370 - - Index: 30 - Item: Critical_Stone_Bottom - Rate: 370 - - Index: 31 Item: RuneknightStone_Top - Rate: 370 - - Index: 32 + Rate: 37 + - Index: 23 Item: RuneknightStone_Middle - Rate: 370 - - Index: 33 + Rate: 37 + - Index: 24 Item: RuneknightStone_Bottom - Rate: 370 - - Index: 34 + Rate: 37 + - Index: 25 Item: GeneticStone_Top - Rate: 370 - - Index: 35 + Rate: 37 + - Index: 26 Item: GeneticStone_Middle - Rate: 370 - - Index: 36 + Rate: 37 + - Index: 27 Item: GeneticStone_Bottom - Rate: 370 + Rate: 37 + - Index: 28 + Item: WarlockStone_Top + Rate: 37 + - Index: 29 + Item: WarlockStone_Middle + Rate: 37 + - Index: 30 + Item: WarlockStone_Bottom + Rate: 37 + - Index: 31 + Item: ATKStone_Top + Rate: 37 + - Index: 32 + Item: ATKStone_Middle + Rate: 37 + - Index: 33 + Item: ATKStone_Bottom + Rate: 37 + - Index: 34 + Item: MATKStone_Top + Rate: 37 + - Index: 35 + Item: MATKStone_Middle + Rate: 37 + - Index: 36 + Item: MATKStone_Bottom + Rate: 37 - Index: 37 - Item: WarlockStone_Top3 - Rate: 370 + Item: Critical_Stone + Rate: 37 - Index: 38 - Item: WarlockStone_Middle3 - Rate: 370 + Item: Critical_Stone_Top + Rate: 37 - Index: 39 - Item: WarlockStone_Bottom3 - Rate: 370 + Item: Critical_Stone_Bottom + Rate: 37 - Group: ENCHANT_STONE_BOX15 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: CastingStone_Robe - Rate: 20 - - Index: 1 Item: DoubleAttack_Stone - Rate: 20 - - Index: 2 + Rate: 2 + Announced: true + - Index: 1 Item: Critical_Stone_Robe - Rate: 20 + Rate: 2 + Announced: true + - Index: 2 + Item: CastingStone_Robe + Rate: 2 + Announced: true - Index: 3 Item: SPdrainStone_Robe - Rate: 80 + Rate: 8 - Index: 4 Item: SPdrainStone_Top - Rate: 80 + Rate: 8 - Index: 5 - Item: ShrinkEffect_Bottom - Rate: 80 - - Index: 6 Item: CastStone_Robe - Rate: 80 + Rate: 8 + - Index: 6 + Item: ShrinkEffect_Bottom + Rate: 8 - Index: 7 - Item: ASPDStone_Robe - Rate: 160 - - Index: 8 Item: HPdrainStone_Robe - Rate: 160 - - Index: 9 + Rate: 16 + - Index: 8 Item: HPdrainStone_Top - Rate: 160 - - Index: 10 + Rate: 16 + - Index: 9 Item: ASPDStone_Top - Rate: 160 + Rate: 16 + - Index: 10 + Item: ASPDStone_Robe + Rate: 16 - Index: 11 Item: MinorCastingStone_Robe - Rate: 160 + Rate: 16 - Index: 12 Item: ShadowchaserStone_Robe - Rate: 160 + Rate: 16 - Index: 13 Item: MechanicStone_Robe - Rate: 160 + Rate: 16 - Index: 14 Item: WanderMinstreStone_Robe - Rate: 160 + Rate: 16 - Index: 15 - Item: EXPStone_Bottom - Rate: 240 - - Index: 16 Item: Range_Stone - Rate: 240 - - Index: 17 + Rate: 24 + - Index: 16 Item: EXPStone_Middle - Rate: 240 + Rate: 24 + - Index: 17 + Item: EXPStone_Bottom + Rate: 24 - Index: 18 Item: EXPStone_Top - Rate: 240 + Rate: 24 - Index: 19 - Item: CastingStone_Top - Rate: 240 + Item: CastingStone_Bottom + Rate: 24 - Index: 20 Item: CastingStone_Middle - Rate: 240 + Rate: 24 - Index: 21 - Item: CastingStone_Bottom - Rate: 240 + Item: CastingStone_Top + Rate: 24 - Index: 22 - Item: ATKStone_Middle - Rate: 370 - - Index: 23 - Item: MATKStone_Middle - Rate: 370 - - Index: 24 - Item: ATKStone_Top - Rate: 370 - - Index: 25 - Item: MATKStone_Top - Rate: 370 - - Index: 26 - Item: ATKStone_Bottom - Rate: 370 - - Index: 27 - Item: MATKStone_Bottom - Rate: 370 - - Index: 28 - Item: Critical_Stone - Rate: 370 - - Index: 29 - Item: Critical_Stone_Top - Rate: 370 - - Index: 30 - Item: Critical_Stone_Bottom - Rate: 370 - - Index: 31 Item: ShadowchaserStone_Top - Rate: 370 - - Index: 32 + Rate: 37 + - Index: 23 Item: ShadowchaseStone_Middle - Rate: 370 - - Index: 33 + Rate: 37 + - Index: 24 Item: ShadowchaseStone_Bottom - Rate: 370 - - Index: 34 + Rate: 37 + - Index: 25 Item: MechanicStone_Top - Rate: 370 - - Index: 35 + Rate: 37 + - Index: 26 Item: MechanicStone_Middle - Rate: 370 - - Index: 36 + Rate: 37 + - Index: 27 Item: MechanicStone_Bottom - Rate: 370 - - Index: 37 + Rate: 37 + - Index: 28 Item: WanderMinstrelStone_Top - Rate: 370 - - Index: 38 + Rate: 37 + - Index: 29 Item: WanderMinstStone_Middle - Rate: 370 - - Index: 39 + Rate: 37 + - Index: 30 Item: WanderMinstStone_Bottom - Rate: 370 + Rate: 37 + - Index: 31 + Item: ATKStone_Top + Rate: 37 + - Index: 32 + Item: ATKStone_Middle + Rate: 37 + - Index: 33 + Item: ATKStone_Bottom + Rate: 37 + - Index: 34 + Item: MATKStone_Top + Rate: 37 + - Index: 35 + Item: MATKStone_Middle + Rate: 37 + - Index: 36 + Item: MATKStone_Bottom + Rate: 37 + - Index: 37 + Item: Critical_Stone + Rate: 37 + - Index: 38 + Item: Critical_Stone_Top + Rate: 37 + - Index: 39 + Item: Critical_Stone_Bottom + Rate: 37 - Group: ENCHANT_STONE_BOX16 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: CastingStone_Robe - Rate: 20 - - Index: 1 Item: DoubleAttack_Stone - Rate: 20 - - Index: 2 + Rate: 2 + Announced: true + - Index: 1 Item: Critical_Stone_Robe - Rate: 20 + Rate: 2 + Announced: true + - Index: 2 + Item: CastingStone_Robe + Rate: 2 + Announced: true - Index: 3 Item: SPdrainStone_Robe - Rate: 80 + Rate: 8 - Index: 4 Item: SPdrainStone_Top - Rate: 80 + Rate: 8 - Index: 5 - Item: ShrinkEffect_Bottom - Rate: 80 - - Index: 6 Item: CastStone_Robe - Rate: 80 + Rate: 8 + - Index: 6 + Item: ShrinkEffect_Bottom + Rate: 8 - Index: 7 - Item: ASPDStone_Robe - Rate: 160 - - Index: 8 Item: HPdrainStone_Robe - Rate: 160 - - Index: 9 + Rate: 16 + - Index: 8 Item: HPdrainStone_Top - Rate: 160 - - Index: 10 + Rate: 16 + - Index: 9 Item: ASPDStone_Top - Rate: 160 + Rate: 16 + - Index: 10 + Item: ASPDStone_Robe + Rate: 16 - Index: 11 Item: MinorCastingStone_Robe - Rate: 160 + Rate: 16 - Index: 12 Item: ArchbishopStone_Robe - Rate: 160 + Rate: 16 - Index: 13 Item: RoyalguardStone_Robe - Rate: 160 + Rate: 16 - Index: 14 Item: GuillcrossStone_Robe - Rate: 160 + Rate: 16 - Index: 15 - Item: EXPStone_Bottom - Rate: 240 - - Index: 16 Item: Range_Stone - Rate: 240 - - Index: 17 + Rate: 24 + - Index: 16 Item: EXPStone_Middle - Rate: 240 + Rate: 24 + - Index: 17 + Item: EXPStone_Bottom + Rate: 24 - Index: 18 Item: EXPStone_Top - Rate: 240 + Rate: 24 - Index: 19 - Item: CastingStone_Top - Rate: 240 + Item: CastingStone_Bottom + Rate: 24 - Index: 20 Item: CastingStone_Middle - Rate: 240 + Rate: 24 - Index: 21 - Item: CastingStone_Bottom - Rate: 240 + Item: CastingStone_Top + Rate: 24 - Index: 22 - Item: ATKStone_Middle - Rate: 370 - - Index: 23 - Item: MATKStone_Middle - Rate: 370 - - Index: 24 - Item: ATKStone_Top - Rate: 370 - - Index: 25 - Item: MATKStone_Top - Rate: 370 - - Index: 26 - Item: ATKStone_Bottom - Rate: 370 - - Index: 27 - Item: MATKStone_Bottom - Rate: 370 - - Index: 28 - Item: Critical_Stone - Rate: 370 - - Index: 29 - Item: Critical_Stone_Top - Rate: 370 - - Index: 30 - Item: Critical_Stone_Bottom - Rate: 370 - - Index: 31 Item: HighpriestStone_Top - Rate: 370 - - Index: 32 + Rate: 37 + - Index: 23 Item: HighpriestStone_Middle - Rate: 370 - - Index: 33 + Rate: 37 + - Index: 24 Item: HighpriestStone_Bottom - Rate: 370 - - Index: 34 + Rate: 37 + - Index: 25 Item: PaladinStone_Top - Rate: 370 - - Index: 35 + Rate: 37 + - Index: 26 Item: PaladinStone_Middle - Rate: 370 - - Index: 36 + Rate: 37 + - Index: 27 Item: PaladinStone_Bottom - Rate: 370 - - Index: 37 + Rate: 37 + - Index: 28 Item: AssacrossStone_Top - Rate: 370 - - Index: 38 + Rate: 37 + - Index: 29 Item: AssacrossStone_Middle - Rate: 370 - - Index: 39 + Rate: 37 + - Index: 30 Item: AssacrossStone_Bottom - Rate: 370 + Rate: 37 + - Index: 31 + Item: ATKStone_Top + Rate: 37 + - Index: 32 + Item: ATKStone_Middle + Rate: 37 + - Index: 33 + Item: ATKStone_Bottom + Rate: 37 + - Index: 34 + Item: MATKStone_Top + Rate: 37 + - Index: 35 + Item: MATKStone_Middle + Rate: 37 + - Index: 36 + Item: MATKStone_Bottom + Rate: 37 + - Index: 37 + Item: Critical_Stone + Rate: 37 + - Index: 38 + Item: Critical_Stone_Top + Rate: 37 + - Index: 39 + Item: Critical_Stone_Bottom + Rate: 37 - Group: ENCHANT_STONE_BOX17 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: CastingStone_Robe - Rate: 20 - - Index: 1 Item: DoubleAttack_Stone - Rate: 20 - - Index: 2 + Rate: 2 + Announced: true + - Index: 1 Item: Critical_Stone_Robe - Rate: 20 + Rate: 2 + Announced: true + - Index: 2 + Item: CastingStone_Robe + Rate: 2 + Announced: true - Index: 3 Item: SPdrainStone_Robe - Rate: 80 + Rate: 8 - Index: 4 Item: SPdrainStone_Top - Rate: 80 + Rate: 8 - Index: 5 - Item: ShrinkEffect_Bottom - Rate: 80 - - Index: 6 Item: CastStone_Robe - Rate: 80 + Rate: 8 + - Index: 6 + Item: ShrinkEffect_Bottom + Rate: 8 - Index: 7 - Item: ASPDStone_Robe - Rate: 160 - - Index: 8 Item: HPdrainStone_Robe - Rate: 160 - - Index: 9 + Rate: 16 + - Index: 8 Item: HPdrainStone_Top - Rate: 160 - - Index: 10 + Rate: 16 + - Index: 9 Item: ASPDStone_Top - Rate: 160 + Rate: 16 + - Index: 10 + Item: ASPDStone_Robe + Rate: 16 - Index: 11 Item: MinorCastingStone_Robe - Rate: 160 + Rate: 16 - Index: 12 Item: SuraStone_Robe2 - Rate: 160 + Rate: 16 - Index: 13 Item: SorcererStone_Robe2 - Rate: 160 + Rate: 16 - Index: 14 Item: ShadowchaserStone_Robe2 - Rate: 160 + Rate: 16 - Index: 15 - Item: EXPStone_Bottom - Rate: 240 - - Index: 16 Item: Range_Stone - Rate: 240 - - Index: 17 + Rate: 24 + - Index: 16 Item: EXPStone_Middle - Rate: 240 + Rate: 24 + - Index: 17 + Item: EXPStone_Bottom + Rate: 24 - Index: 18 Item: EXPStone_Top - Rate: 240 + Rate: 24 - Index: 19 - Item: CastingStone_Top - Rate: 240 + Item: CastingStone_Bottom + Rate: 24 - Index: 20 Item: CastingStone_Middle - Rate: 240 + Rate: 24 - Index: 21 - Item: CastingStone_Bottom - Rate: 240 + Item: CastingStone_Top + Rate: 24 - Index: 22 - Item: ATKStone_Middle - Rate: 370 - - Index: 23 - Item: MATKStone_Middle - Rate: 370 - - Index: 24 Item: ATKStone_Top - Rate: 370 + Rate: 37 + - Index: 23 + Item: ATKStone_Middle + Rate: 37 + - Index: 24 + Item: ATKStone_Bottom + Rate: 37 - Index: 25 Item: MATKStone_Top - Rate: 370 + Rate: 37 - Index: 26 - Item: ATKStone_Bottom - Rate: 370 + Item: MATKStone_Middle + Rate: 37 - Index: 27 Item: MATKStone_Bottom - Rate: 370 + Rate: 37 - Index: 28 - Item: Critical_Stone - Rate: 370 - - Index: 29 - Item: Critical_Stone_Top - Rate: 370 - - Index: 30 - Item: Critical_Stone_Bottom - Rate: 370 - - Index: 31 - Item: SuraStone_Bottom2 - Rate: 370 - - Index: 32 - Item: SuraStone_Middle2 - Rate: 370 - - Index: 33 Item: SuraStone_Top2 - Rate: 370 - - Index: 34 - Item: SorcererStone_Bottom2 - Rate: 370 - - Index: 35 - Item: SorcererStone_Middle2 - Rate: 370 - - Index: 36 + Rate: 37 + - Index: 29 + Item: SuraStone_Middle2 + Rate: 37 + - Index: 30 + Item: SuraStone_Bottom2 + Rate: 37 + - Index: 31 Item: SorcererStone_Top2 - Rate: 370 - - Index: 37 - Item: ShadowchasStone_Bottom2 - Rate: 370 - - Index: 38 - Item: ShadowchasStone_Middle2 - Rate: 370 - - Index: 39 + Rate: 37 + - Index: 32 + Item: SorcererStone_Middle2 + Rate: 37 + - Index: 33 + Item: SorcererStone_Bottom2 + Rate: 37 + - Index: 34 Item: ShadowchaserStone_Top2 - Rate: 370 + Rate: 37 + - Index: 35 + Item: ShadowchasStone_Middle2 + Rate: 37 + - Index: 36 + Item: ShadowchasStone_Bottom2 + Rate: 37 + - Index: 37 + Item: Critical_Stone + Rate: 37 + - Index: 38 + Item: Critical_Stone_Top + Rate: 37 + - Index: 39 + Item: Critical_Stone_Bottom + Rate: 37 - Group: ENCHANT_STONE_BOX18 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: EXPStone_Bottom - Rate: 27 + Item: DoubleAttack_Stone + Rate: 2 + Announced: true - Index: 1 - Item: Range_Stone - Rate: 27 + Item: Critical_Stone_Robe + Rate: 2 + Announced: true - Index: 2 Item: CastingStone_Robe - Rate: 27 + Rate: 2 + Announced: true - Index: 3 - Item: ReloadStone_Top - Rate: 27 - - Index: 4 - Item: ReloadStone_Middle - Rate: 27 - - Index: 5 - Item: ReloadStone_Bottom - Rate: 27 - - Index: 6 - Item: GreenFloor_Bottom - Rate: 27 - - Index: 7 - Item: EXPStone_Middle - Rate: 27 - - Index: 8 - Item: EXPStone_Top - Rate: 27 - - Index: 9 - Item: CastingStone_Top - Rate: 27 - - Index: 10 - Item: CastingStone_Middle - Rate: 27 - - Index: 11 - Item: CastingStone_Bottom - Rate: 27 - - Index: 12 - Item: BlueAuraEffect_Middle - Rate: 27 - - Index: 13 - Item: PinkGlowEffect_Middle - Rate: 27 - - Index: 14 - Item: ExplodingEffect_Middle - Rate: 27 - - Index: 15 - Item: DoubleAttack_Stone - Rate: 27 - - Index: 16 - Item: Critical_Stone_Robe - Rate: 27 - - Index: 17 Item: SPdrainStone_Robe - Rate: 107 - - Index: 18 + Rate: 8 + - Index: 4 Item: SPdrainStone_Top - Rate: 107 - - Index: 19 - Item: ShrinkEffect_Bottom - Rate: 107 - - Index: 20 + Rate: 8 + - Index: 5 Item: CastStone_Robe - Rate: 107 - - Index: 21 - Item: SoulreaperStone_Robe - Rate: 214 - - Index: 22 - Item: StaremperorStone_Robe - Rate: 214 - - Index: 23 - Item: KagerouStone_Robe - Rate: 214 - - Index: 24 - Item: OboroStone_Robe - Rate: 214 - - Index: 25 - Item: RebellionStone_Robe - Rate: 214 - - Index: 26 - Item: DoramStone_Robe - Rate: 214 - - Index: 27 - Item: ElectricEffect_Middle - Rate: 227 - - Index: 28 + Rate: 8 + - Index: 6 + Item: ShrinkEffect_Bottom + Rate: 8 + - Index: 7 Item: WaterFieldEffect_Bottom - Rate: 227 + Rate: 17 + - Index: 8 + Item: ElectricEffect_Middle + Rate: 17 + - Index: 9 + Item: SoulreaperStone_Robe + Rate: 16 + - Index: 10 + Item: StaremperorStone_Robe + Rate: 16 + - Index: 11 + Item: KagerouStone_Robe + Rate: 16 + - Index: 12 + Item: OboroStone_Robe + Rate: 16 + - Index: 13 + Item: RebellionStone_Robe + Rate: 16 + - Index: 14 + Item: DoramStone_Robe + Rate: 16 + - Index: 15 + Item: Range_Stone + Rate: 20 + - Index: 16 + Item: PinkGlowEffect_Middle + Rate: 20 + - Index: 17 + Item: BlueAuraEffect_Middle + Rate: 20 + - Index: 18 + Item: GreenFloor_Bottom + Rate: 20 + - Index: 19 + Item: ExplodingEffect_Middle + Rate: 20 + - Index: 20 + Item: EXPStone_Middle + Rate: 20 + - Index: 21 + Item: EXPStone_Bottom + Rate: 20 + - Index: 22 + Item: EXPStone_Top + Rate: 20 + - Index: 23 + Item: ReloadStone_Top + Rate: 20 + - Index: 24 + Item: ReloadStone_Middle + Rate: 20 + - Index: 25 + Item: ReloadStone_Bottom + Rate: 20 + - Index: 26 + Item: CastingStone_Bottom + Rate: 20 + - Index: 27 + Item: CastingStone_Middle + Rate: 20 + - Index: 28 + Item: CastingStone_Top + Rate: 20 - Index: 29 Item: SoullinkerStone_Top - Rate: 348 + Rate: 26 - Index: 30 Item: SoullinkerStone_Middle - Rate: 348 + Rate: 26 - Index: 31 Item: SoullinkerStone_Bottom - Rate: 348 + Rate: 26 - Index: 32 Item: GladiatorStone_Top - Rate: 348 + Rate: 26 - Index: 33 Item: GladiatorStone_Middle - Rate: 348 + Rate: 26 - Index: 34 Item: GladiatorStone_Bottom - Rate: 348 + Rate: 26 - Index: 35 Item: NinjaStone_Top - Rate: 348 + Rate: 26 - Index: 36 Item: NinjaStone_Middle - Rate: 348 + Rate: 26 - Index: 37 Item: NinjaStone_Bottom - Rate: 348 + Rate: 26 - Index: 38 Item: GunslingerStone_Top - Rate: 348 + Rate: 26 - Index: 39 Item: GunslingerStone_Middle - Rate: 348 + Rate: 26 - Index: 40 Item: GunslingerStone_Bottom - Rate: 348 + Rate: 26 - Index: 41 Item: DoramStone_Top - Rate: 348 + Rate: 26 - Index: 42 Item: DoramStone_Middle - Rate: 348 + Rate: 26 - Index: 43 Item: DoramStone_Bottom - Rate: 348 + Rate: 26 - Index: 44 - Item: ATKStone_Middle - Rate: 361 - - Index: 45 - Item: MATKStone_Middle - Rate: 361 - - Index: 46 Item: ATKStone_Top - Rate: 361 + Rate: 27 + - Index: 45 + Item: ATKStone_Middle + Rate: 27 + - Index: 46 + Item: ATKStone_Bottom + Rate: 27 - Index: 47 Item: MATKStone_Top - Rate: 361 + Rate: 27 - Index: 48 - Item: ATKStone_Bottom - Rate: 361 + Item: MATKStone_Middle + Rate: 27 - Index: 49 Item: MATKStone_Bottom - Rate: 361 + Rate: 27 - Group: ENCHANT_STONE_BOX19 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: CastingStone_Robe - Rate: 20 - - Index: 1 Item: DoubleAttack_Stone - Rate: 20 - - Index: 2 + Rate: 2 + Announced: true + - Index: 1 Item: Critical_Stone_Robe - Rate: 20 + Rate: 2 + Announced: true + - Index: 2 + Item: CastingStone_Robe + Rate: 2 + Announced: true - Index: 3 Item: SPdrainStone_Robe - Rate: 80 + Rate: 8 - Index: 4 Item: SPdrainStone_Top - Rate: 80 + Rate: 8 - Index: 5 - Item: ShrinkEffect_Bottom - Rate: 80 - - Index: 6 Item: CastStone_Robe - Rate: 80 + Rate: 8 + - Index: 6 + Item: ShrinkEffect_Bottom + Rate: 8 - Index: 7 - Item: ASPDStone_Robe - Rate: 160 - - Index: 8 Item: HPdrainStone_Robe - Rate: 160 - - Index: 9 + Rate: 16 + - Index: 8 Item: HPdrainStone_Top - Rate: 160 - - Index: 10 + Rate: 16 + - Index: 9 Item: ASPDStone_Top - Rate: 160 + Rate: 16 + - Index: 10 + Item: ASPDStone_Robe + Rate: 16 - Index: 11 Item: MinorCastingStone_Robe - Rate: 160 + Rate: 16 - Index: 12 Item: RangerStone_Robe2 - Rate: 160 + Rate: 16 - Index: 13 Item: MechanicStone_Robe2 - Rate: 160 + Rate: 16 - Index: 14 Item: ArchbishopStone_Robe2 - Rate: 160 + Rate: 16 - Index: 15 - Item: EXPStone_Bottom - Rate: 240 - - Index: 16 Item: Range_Stone - Rate: 240 - - Index: 17 + Rate: 24 + - Index: 16 Item: EXPStone_Middle - Rate: 240 + Rate: 24 + - Index: 17 + Item: EXPStone_Bottom + Rate: 24 - Index: 18 Item: EXPStone_Top - Rate: 240 + Rate: 24 - Index: 19 - Item: CastingStone_Top - Rate: 240 + Item: CastingStone_Bottom + Rate: 24 - Index: 20 Item: CastingStone_Middle - Rate: 240 + Rate: 24 - Index: 21 - Item: CastingStone_Bottom - Rate: 240 + Item: CastingStone_Top + Rate: 24 - Index: 22 - Item: ATKStone_Middle - Rate: 370 - - Index: 23 - Item: MATKStone_Middle - Rate: 370 - - Index: 24 Item: ATKStone_Top - Rate: 370 + Rate: 37 + - Index: 23 + Item: ATKStone_Middle + Rate: 37 + - Index: 24 + Item: ATKStone_Bottom + Rate: 37 - Index: 25 Item: MATKStone_Top - Rate: 370 + Rate: 37 - Index: 26 - Item: ATKStone_Bottom - Rate: 370 + Item: MATKStone_Middle + Rate: 37 - Index: 27 Item: MATKStone_Bottom - Rate: 370 + Rate: 37 - Index: 28 - Item: Critical_Stone - Rate: 370 - - Index: 29 - Item: Critical_Stone_Top - Rate: 370 - - Index: 30 - Item: Critical_Stone_Bottom - Rate: 370 - - Index: 31 Item: RangerStone_Top2 - Rate: 370 - - Index: 32 + Rate: 37 + - Index: 29 Item: RangerStone_Middle2 - Rate: 370 - - Index: 33 + Rate: 37 + - Index: 30 Item: RangerStone_Bottom2 - Rate: 370 - - Index: 34 + Rate: 37 + - Index: 31 Item: MechanicStone_Top2 - Rate: 370 - - Index: 35 + Rate: 37 + - Index: 32 Item: MechanicStone_Middle2 - Rate: 370 - - Index: 36 + Rate: 37 + - Index: 33 Item: MechanicStone_Bottom2 - Rate: 370 - - Index: 37 + Rate: 37 + - Index: 34 Item: HighpriestStone_Top2 - Rate: 370 - - Index: 38 + Rate: 37 + - Index: 35 Item: HighpriestStone_Middle2 - Rate: 370 - - Index: 39 + Rate: 37 + - Index: 36 Item: HighpriestStone_Bottom2 - Rate: 370 + Rate: 37 + - Index: 37 + Item: Critical_Stone + Rate: 37 + - Index: 38 + Item: Critical_Stone_Top + Rate: 37 + - Index: 39 + Item: Critical_Stone_Bottom + Rate: 37 - Group: ENCHANT_STONE_BOX2 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: STRStone_Top - Rate: 330 - - Index: 1 - Item: INTStone_Top - Rate: 330 - - Index: 2 - Item: AGIStone_Top - Rate: 330 - - Index: 3 - Item: DEXStone_Top - Rate: 330 - - Index: 4 - Item: VITStone_Top - Rate: 330 - - Index: 5 - Item: LUKStone_Top - Rate: 330 - - Index: 6 - Item: ATKStone_Middle - Rate: 330 - - Index: 7 - Item: MATKStone_Middle - Rate: 330 - - Index: 8 - Item: HITStone_Bottom - Rate: 330 - - Index: 9 - Item: FLEEStone_Bottom - Rate: 330 - - Index: 10 - Item: SPStone_Middle - Rate: 1110 - - Index: 11 - Item: HealStone_Bottom - Rate: 1110 - - Index: 12 Item: HealStone_Top - Rate: 1120 - - Index: 13 + Rate: 112 + - Index: 1 Item: HealStone2_Top - Rate: 1120 - - Index: 14 + Rate: 112 + - Index: 2 Item: HealStone_Middle - Rate: 1120 - - Index: 15 + Rate: 112 + - Index: 3 Item: HPStone_Middle - Rate: 1120 + Rate: 112 + - Index: 4 + Item: SPStone_Middle + Rate: 111 + - Index: 5 + Item: HealStone_Bottom + Rate: 111 + - Index: 6 + Item: STRStone_Top + Rate: 33 + - Index: 7 + Item: INTStone_Top + Rate: 33 + - Index: 8 + Item: AGIStone_Top + Rate: 33 + - Index: 9 + Item: DEXStone_Top + Rate: 33 + - Index: 10 + Item: VITStone_Top + Rate: 33 + - Index: 11 + Item: LUKStone_Top + Rate: 33 + - Index: 12 + Item: ATKStone_Middle + Rate: 33 + - Index: 13 + Item: MATKStone_Middle + Rate: 33 + - Index: 14 + Item: HITStone_Bottom + Rate: 33 + - Index: 15 + Item: FLEEStone_Bottom + Rate: 33 - Group: ENCHANT_STONE_BOX20 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: CastingStone_Robe - Rate: 20 - - Index: 1 Item: DoubleAttack_Stone - Rate: 20 - - Index: 2 + Rate: 2 + Announced: true + - Index: 1 Item: Critical_Stone_Robe - Rate: 20 + Rate: 2 + Announced: true + - Index: 2 + Item: CastingStone_Robe + Rate: 2 + Announced: true - Index: 3 Item: SPdrainStone_Robe - Rate: 80 + Rate: 8 - Index: 4 Item: SPdrainStone_Top - Rate: 80 + Rate: 8 - Index: 5 - Item: Greed_Stone - Rate: 80 - - Index: 6 Item: CastStone_Robe - Rate: 80 + Rate: 8 + - Index: 6 + Item: Greed_Stone + Rate: 8 - Index: 7 - Item: ASPDStone_Robe - Rate: 160 - - Index: 8 Item: HPdrainStone_Robe - Rate: 160 - - Index: 9 + Rate: 16 + - Index: 8 Item: HPdrainStone_Top - Rate: 160 - - Index: 10 + Rate: 16 + - Index: 9 Item: ASPDStone_Top - Rate: 160 + Rate: 16 + - Index: 10 + Item: ASPDStone_Robe + Rate: 16 - Index: 11 Item: WaterFieldEffect_Bottom - Rate: 160 + Rate: 16 - Index: 12 Item: WarlockStone_Robe2 - Rate: 160 + Rate: 16 - Index: 13 Item: RoyalguardStone_Robe2 - Rate: 160 + Rate: 16 - Index: 14 Item: GuillcrossStone_Robe2 - Rate: 160 + Rate: 16 - Index: 15 - Item: EXPStone_Bottom - Rate: 240 - - Index: 16 Item: Range_Stone - Rate: 240 - - Index: 17 + Rate: 24 + - Index: 16 Item: EXPStone_Middle - Rate: 240 + Rate: 24 + - Index: 17 + Item: EXPStone_Bottom + Rate: 24 - Index: 18 Item: EXPStone_Top - Rate: 240 + Rate: 24 - Index: 19 - Item: CastingStone_Top - Rate: 240 + Item: CastingStone_Bottom + Rate: 24 - Index: 20 Item: CastingStone_Middle - Rate: 240 + Rate: 24 - Index: 21 - Item: CastingStone_Bottom - Rate: 240 + Item: CastingStone_Top + Rate: 24 - Index: 22 - Item: ATKStone_Middle - Rate: 370 - - Index: 23 - Item: MATKStone_Middle - Rate: 370 - - Index: 24 Item: ATKStone_Top - Rate: 370 + Rate: 37 + - Index: 23 + Item: ATKStone_Middle + Rate: 37 + - Index: 24 + Item: ATKStone_Bottom + Rate: 37 - Index: 25 Item: MATKStone_Top - Rate: 370 + Rate: 37 - Index: 26 - Item: ATKStone_Bottom - Rate: 370 + Item: MATKStone_Middle + Rate: 37 - Index: 27 Item: MATKStone_Bottom - Rate: 370 + Rate: 37 - Index: 28 - Item: Critical_Stone - Rate: 370 - - Index: 29 - Item: Critical_Stone_Top - Rate: 370 - - Index: 30 - Item: Critical_Stone_Bottom - Rate: 370 - - Index: 31 Item: WarlockStone_Top2 - Rate: 370 - - Index: 32 + Rate: 37 + - Index: 29 Item: WarlockStone_Middle2 - Rate: 370 - - Index: 33 + Rate: 37 + - Index: 30 Item: WarlockStone_Bottom2 - Rate: 370 - - Index: 34 + Rate: 37 + - Index: 31 Item: PaladinStone_Top2 - Rate: 370 - - Index: 35 + Rate: 37 + - Index: 32 Item: PaladinStone_Middle2 - Rate: 370 - - Index: 36 + Rate: 37 + - Index: 33 Item: PaladinStone_Bottom2 - Rate: 370 - - Index: 37 + Rate: 37 + - Index: 34 Item: AssacrossStone_Top2 - Rate: 370 - - Index: 38 + Rate: 37 + - Index: 35 Item: AssacrossStone_Middle2 - Rate: 370 - - Index: 39 + Rate: 37 + - Index: 36 Item: AssacrossStone_Bottom2 - Rate: 370 + Rate: 37 + - Index: 37 + Item: Critical_Stone + Rate: 37 + - Index: 38 + Item: Critical_Stone_Top + Rate: 37 + - Index: 39 + Item: Critical_Stone_Bottom + Rate: 37 - Group: ENCHANT_STONE_BOX21 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: CastingStone_Robe - Rate: 20 - - Index: 1 Item: DoubleAttack_Stone - Rate: 20 - - Index: 2 + Rate: 2 + Announced: true + - Index: 1 Item: Critical_Stone_Robe - Rate: 20 + Rate: 2 + Announced: true + - Index: 2 + Item: CastingStone_Robe + Rate: 2 + Announced: true - Index: 3 Item: SPdrainStone_Robe - Rate: 80 + Rate: 8 - Index: 4 Item: SPdrainStone_Top - Rate: 80 + Rate: 8 - Index: 5 - Item: Greed_Stone - Rate: 80 - - Index: 6 Item: CastStone_Robe - Rate: 80 + Rate: 8 + - Index: 6 + Item: Greed_Stone + Rate: 8 - Index: 7 - Item: ASPDStone_Robe - Rate: 160 - - Index: 8 Item: HPdrainStone_Robe - Rate: 160 - - Index: 9 + Rate: 16 + - Index: 8 Item: HPdrainStone_Top - Rate: 160 - - Index: 10 + Rate: 16 + - Index: 9 Item: ASPDStone_Top - Rate: 160 + Rate: 16 + - Index: 10 + Item: ASPDStone_Robe + Rate: 16 - Index: 11 Item: WaterFieldEffect_Bottom - Rate: 160 + Rate: 16 - Index: 12 Item: RuneknightStone_Robe2 - Rate: 160 + Rate: 16 - Index: 13 Item: GeneticStone_Robe2 - Rate: 160 + Rate: 16 - Index: 14 Item: WanderMinsStone_Robe2 - Rate: 160 + Rate: 16 - Index: 15 - Item: EXPStone_Bottom - Rate: 240 - - Index: 16 Item: Range_Stone - Rate: 240 - - Index: 17 + Rate: 24 + - Index: 16 Item: EXPStone_Middle - Rate: 240 + Rate: 24 + - Index: 17 + Item: EXPStone_Bottom + Rate: 24 - Index: 18 Item: EXPStone_Top - Rate: 240 + Rate: 24 - Index: 19 - Item: CastingStone_Top - Rate: 240 + Item: CastingStone_Bottom + Rate: 24 - Index: 20 Item: CastingStone_Middle - Rate: 240 + Rate: 24 - Index: 21 - Item: CastingStone_Bottom - Rate: 240 + Item: CastingStone_Top + Rate: 24 - Index: 22 - Item: ATKStone_Middle - Rate: 370 - - Index: 23 - Item: MATKStone_Middle - Rate: 370 - - Index: 24 Item: ATKStone_Top - Rate: 370 + Rate: 37 + - Index: 23 + Item: ATKStone_Middle + Rate: 37 + - Index: 24 + Item: ATKStone_Bottom + Rate: 37 - Index: 25 Item: MATKStone_Top - Rate: 370 + Rate: 37 - Index: 26 - Item: ATKStone_Bottom - Rate: 370 + Item: MATKStone_Middle + Rate: 37 - Index: 27 Item: MATKStone_Bottom - Rate: 370 + Rate: 37 - Index: 28 - Item: Critical_Stone - Rate: 370 - - Index: 29 - Item: Critical_Stone_Top - Rate: 370 - - Index: 30 - Item: Critical_Stone_Bottom - Rate: 370 - - Index: 31 Item: RuneknightStone_Top2 - Rate: 370 - - Index: 32 + Rate: 37 + - Index: 29 Item: RuneknightStone_Middle2 - Rate: 370 - - Index: 33 + Rate: 37 + - Index: 30 Item: RuneknightStone_Bottom2 - Rate: 370 - - Index: 34 + Rate: 37 + - Index: 31 Item: GeneticStone_Top2 - Rate: 370 - - Index: 35 + Rate: 37 + - Index: 32 Item: GeneticStone_Middle2 - Rate: 370 - - Index: 36 + Rate: 37 + - Index: 33 Item: GeneticStone_Bottom2 - Rate: 370 - - Index: 37 + Rate: 37 + - Index: 34 Item: WanderMinsStone_Top2 - Rate: 370 - - Index: 38 + Rate: 37 + - Index: 35 Item: WanderMinsStone_Middle2 - Rate: 370 - - Index: 39 + Rate: 37 + - Index: 36 Item: WanderMinsStone_Bottom2 - Rate: 370 + Rate: 37 + - Index: 37 + Item: Critical_Stone + Rate: 37 + - Index: 38 + Item: Critical_Stone_Top + Rate: 37 + - Index: 39 + Item: Critical_Stone_Bottom + Rate: 37 - Group: ENCHANT_STONE_BOX3 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: STRStone_Top - Rate: 500 - - Index: 1 - Item: INTStone_Top - Rate: 500 - - Index: 2 - Item: AGIStone_Top - Rate: 500 - - Index: 3 - Item: DEXStone_Top - Rate: 500 - - Index: 4 - Item: VITStone_Top - Rate: 500 - - Index: 5 - Item: LUKStone_Top - Rate: 500 - - Index: 6 - Item: ATKStone_Middle - Rate: 500 - - Index: 7 - Item: MATKStone_Middle - Rate: 500 - - Index: 8 - Item: HITStone_Bottom - Rate: 500 - - Index: 9 - Item: FLEEStone_Bottom - Rate: 500 - - Index: 10 Item: HealStone_Top - Rate: 500 - - Index: 11 + Rate: 33 + - Index: 1 Item: HealStone2_Top - Rate: 500 - - Index: 12 + Rate: 33 + - Index: 2 Item: HealStone_Middle - Rate: 500 - - Index: 13 - Item: HealStone_Bottom - Rate: 500 - - Index: 14 + Rate: 33 + - Index: 3 Item: HPStone_Middle - Rate: 600 - - Index: 15 + Rate: 33 + - Index: 4 Item: SPStone_Middle - Rate: 600 + Rate: 33 + - Index: 5 + Item: HealStone_Bottom + Rate: 33 + - Index: 6 + Item: STRStone_Top + Rate: 33 + - Index: 7 + Item: INTStone_Top + Rate: 33 + - Index: 8 + Item: AGIStone_Top + Rate: 33 + - Index: 9 + Item: DEXStone_Top + Rate: 33 + - Index: 10 + Item: VITStone_Top + Rate: 33 + - Index: 11 + Item: LUKStone_Top + Rate: 33 + - Index: 12 + Item: ATKStone_Middle + Rate: 33 + - Index: 13 + Item: MATKStone_Middle + Rate: 33 + - Index: 14 + Item: HITStone_Bottom + Rate: 33 + - Index: 15 + Item: FLEEStone_Bottom + Rate: 33 - Index: 16 Item: BigStone_Top - Rate: 600 + Rate: 176 - Index: 17 Item: MediumStone_Top - Rate: 600 + Rate: 176 - Index: 18 Item: SmallStone_Top - Rate: 600 + Rate: 176 - Group: ENCHANT_STONE_BOX4 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: STRStone_Top - Rate: 500 - - Index: 1 - Item: INTStone_Top - Rate: 500 - - Index: 2 - Item: AGIStone_Top - Rate: 500 - - Index: 3 - Item: DEXStone_Top - Rate: 500 - - Index: 4 - Item: VITStone_Top - Rate: 500 - - Index: 5 - Item: LUKStone_Top - Rate: 500 - - Index: 6 - Item: ATKStone_Middle - Rate: 500 - - Index: 7 - Item: MATKStone_Middle - Rate: 500 - - Index: 8 - Item: HITStone_Bottom - Rate: 500 - - Index: 9 - Item: FLEEStone_Bottom - Rate: 500 - - Index: 10 Item: HealStone_Top - Rate: 500 - - Index: 11 + Rate: 50 + - Index: 1 Item: HealStone2_Top - Rate: 500 - - Index: 12 + Rate: 50 + - Index: 2 Item: HealStone_Middle - Rate: 500 - - Index: 13 + Rate: 50 + - Index: 3 Item: HPStone_Middle - Rate: 500 - - Index: 14 + Rate: 50 + - Index: 4 Item: SPStone_Middle - Rate: 500 - - Index: 15 + Rate: 50 + - Index: 5 Item: HealStone_Bottom - Rate: 500 + Rate: 50 + - Index: 6 + Item: STRStone_Top + Rate: 50 + - Index: 7 + Item: INTStone_Top + Rate: 50 + - Index: 8 + Item: AGIStone_Top + Rate: 50 + - Index: 9 + Item: DEXStone_Top + Rate: 50 + - Index: 10 + Item: VITStone_Top + Rate: 50 + - Index: 11 + Item: LUKStone_Top + Rate: 50 + - Index: 12 + Item: ATKStone_Middle + Rate: 50 + - Index: 13 + Item: MATKStone_Middle + Rate: 50 + - Index: 14 + Item: HITStone_Bottom + Rate: 50 + - Index: 15 + Item: FLEEStone_Bottom + Rate: 50 - Index: 16 Item: BigStone_Top - Rate: 500 + Rate: 50 - Index: 17 Item: MediumStone_Top - Rate: 500 + Rate: 50 - Index: 18 Item: SmallStone_Top - Rate: 500 + Rate: 50 - Index: 19 Item: ASPDStone_Robe - Rate: 500 + Rate: 50 - Group: ENCHANT_STONE_BOX5 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: HITStone_Bottom - Rate: 64 - - Index: 1 - Item: FLEEStone_Bottom - Rate: 64 - - Index: 2 - Item: HealStone_Top - Rate: 64 - - Index: 3 - Item: HealStone2_Top - Rate: 64 - - Index: 4 - Item: HealStone_Middle - Rate: 64 - - Index: 5 - Item: HealStone_Bottom - Rate: 64 - - Index: 6 - Item: BigStone_Top - Rate: 64 - - Index: 7 - Item: MediumStone_Top - Rate: 64 - - Index: 8 - Item: SmallStone_Top - Rate: 64 - - Index: 9 Item: ASPDStone_Robe - Rate: 255 - - Index: 10 - Item: ATKStone_Middle - Rate: 382 - - Index: 11 - Item: MATKStone_Middle - Rate: 382 - - Index: 12 + Rate: 20 + - Index: 1 Item: ATKStone_Top - Rate: 382 - - Index: 13 + Rate: 30 + - Index: 2 Item: MATKStone_Top - Rate: 382 - - Index: 14 + Rate: 30 + - Index: 3 + Item: ATKStone_Middle + Rate: 30 + - Index: 4 + Item: MATKStone_Middle + Rate: 30 + - Index: 5 Item: STRStone_Top - Rate: 510 - - Index: 15 + Rate: 40 + - Index: 6 Item: INTStone_Top - Rate: 510 - - Index: 16 + Rate: 40 + - Index: 7 Item: AGIStone_Top - Rate: 510 - - Index: 17 + Rate: 40 + - Index: 8 Item: DEXStone_Top - Rate: 510 - - Index: 18 + Rate: 40 + - Index: 9 Item: VITStone_Top - Rate: 510 - - Index: 19 + Rate: 40 + - Index: 10 Item: LUKStone_Top - Rate: 510 - - Index: 20 - Item: HPStone_Middle - Rate: 510 - - Index: 21 - Item: SPStone_Middle - Rate: 510 - - Index: 22 + Rate: 40 + - Index: 11 Item: STRStone_Middle - Rate: 510 - - Index: 23 + Rate: 40 + - Index: 12 Item: INTStone_Middle - Rate: 510 - - Index: 24 + Rate: 40 + - Index: 13 Item: AGIStone_Middle - Rate: 510 - - Index: 25 + Rate: 40 + - Index: 14 Item: DEXStone_Middle - Rate: 510 - - Index: 26 + Rate: 40 + - Index: 15 Item: VITStone_Middle - Rate: 510 - - Index: 27 + Rate: 40 + - Index: 16 Item: LUKStone_Middle - Rate: 510 - - Index: 28 + Rate: 40 + - Index: 17 + Item: HPStone_Middle + Rate: 40 + - Index: 18 + Item: SPStone_Middle + Rate: 40 + - Index: 19 Item: HPStone_Bottom - Rate: 510 + Rate: 40 + - Index: 20 + Item: BigStone_Top + Rate: 50 + - Index: 21 + Item: MediumStone_Top + Rate: 50 + - Index: 22 + Item: SmallStone_Top + Rate: 50 + - Index: 23 + Item: HealStone_Top + Rate: 50 + - Index: 24 + Item: HealStone2_Top + Rate: 50 + - Index: 25 + Item: HealStone_Middle + Rate: 50 + - Index: 26 + Item: HealStone_Bottom + Rate: 50 + - Index: 27 + Item: HITStone_Bottom + Rate: 50 + - Index: 28 + Item: FLEEStone_Bottom + Rate: 50 - Group: ENCHANT_STONE_BOX6 SubGroups: - SubGroup: 1 List: - Index: 0 Item: HPdrainStone_Robe - Rate: 83 + Rate: 20 - Index: 1 Item: SPdrainStone_Robe - Rate: 83 + Rate: 20 - Index: 2 Item: ASPDStone_Robe - Rate: 165 + Rate: 20 - Index: 3 - Item: ATKStone_Middle - Rate: 248 - - Index: 4 - Item: MATKStone_Middle - Rate: 248 - - Index: 5 Item: ATKStone_Top - Rate: 248 - - Index: 6 + Rate: 30 + - Index: 4 Item: MATKStone_Top - Rate: 248 + Rate: 30 + - Index: 5 + Item: ATKStone_Middle + Rate: 30 + - Index: 6 + Item: MATKStone_Middle + Rate: 30 - Index: 7 Item: STRStone_Top - Rate: 331 + Rate: 40 - Index: 8 Item: INTStone_Top - Rate: 331 + Rate: 40 - Index: 9 Item: AGIStone_Top - Rate: 331 + Rate: 40 - Index: 10 Item: DEXStone_Top - Rate: 331 + Rate: 40 - Index: 11 Item: VITStone_Top - Rate: 331 + Rate: 40 - Index: 12 Item: LUKStone_Top - Rate: 331 + Rate: 40 - Index: 13 - Item: HPStone_Middle - Rate: 331 - - Index: 14 - Item: SPStone_Middle - Rate: 331 - - Index: 15 Item: STRStone_Middle - Rate: 331 - - Index: 16 + Rate: 40 + - Index: 14 Item: INTStone_Middle - Rate: 331 - - Index: 17 + Rate: 40 + - Index: 15 Item: AGIStone_Middle - Rate: 331 - - Index: 18 + Rate: 40 + - Index: 16 Item: DEXStone_Middle - Rate: 331 - - Index: 19 + Rate: 40 + - Index: 17 Item: VITStone_Middle - Rate: 331 - - Index: 20 + Rate: 40 + - Index: 18 Item: LUKStone_Middle - Rate: 331 + Rate: 40 + - Index: 19 + Item: HPStone_Middle + Rate: 40 + - Index: 20 + Item: SPStone_Middle + Rate: 40 - Index: 21 Item: HPStone_Bottom - Rate: 331 + Rate: 40 - Index: 22 - Item: HITStone_Bottom - Rate: 413 - - Index: 23 - Item: FLEEStone_Bottom - Rate: 413 - - Index: 24 - Item: HealStone_Top - Rate: 413 - - Index: 25 - Item: HealStone2_Top - Rate: 413 - - Index: 26 - Item: HealStone_Middle - Rate: 413 - - Index: 27 - Item: HealStone_Bottom - Rate: 413 - - Index: 28 Item: BigStone_Top - Rate: 413 - - Index: 29 + Rate: 50 + - Index: 23 Item: MediumStone_Top - Rate: 413 - - Index: 30 + Rate: 50 + - Index: 24 Item: SmallStone_Top - Rate: 413 + Rate: 50 + - Index: 25 + Item: HealStone_Top + Rate: 50 + - Index: 26 + Item: HealStone2_Top + Rate: 50 + - Index: 27 + Item: HealStone_Middle + Rate: 50 + - Index: 28 + Item: HealStone_Bottom + Rate: 50 + - Index: 29 + Item: HITStone_Bottom + Rate: 50 + - Index: 30 + Item: FLEEStone_Bottom + Rate: 50 - Group: ENCHANT_STONE_BOX7 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: SPdrainStone_Robe - Rate: 85 - - Index: 1 Item: HPdrainStone_Robe - Rate: 169 + Rate: 20 + - Index: 1 + Item: SPdrainStone_Robe + Rate: 10 - Index: 2 Item: HPdrainStone_Top - Rate: 169 + Rate: 20 - Index: 3 Item: SPdrainStone_Top - Rate: 169 + Rate: 20 - Index: 4 - Item: ATKStone_Middle - Rate: 254 - - Index: 5 - Item: MATKStone_Middle - Rate: 254 - - Index: 6 Item: ATKStone_Top - Rate: 254 + Rate: 30 + - Index: 5 + Item: ATKStone_Middle + Rate: 30 + - Index: 6 + Item: ATKStone_Bottom + Rate: 30 - Index: 7 Item: MATKStone_Top - Rate: 254 + Rate: 30 - Index: 8 - Item: ATKStone_Bottom - Rate: 254 + Item: MATKStone_Middle + Rate: 30 - Index: 9 Item: MATKStone_Bottom - Rate: 254 + Rate: 30 - Index: 10 - Item: ChangeLUK_Middle - Rate: 339 + Item: ChangeSTR_Bottom + Rate: 40 - Index: 11 Item: ChangeSTR_Middle - Rate: 339 + Rate: 40 - Index: 12 - Item: ChangeAGI_Middle - Rate: 339 + Item: ChangeINT_Bottom + Rate: 40 - Index: 13 Item: ChangeINT_Middle - Rate: 339 + Rate: 40 - Index: 14 - Item: ChangeVIT_Middle - Rate: 339 + Item: ChangeDEX_Bottom + Rate: 40 - Index: 15 Item: ChangeDEX_Middle - Rate: 339 + Rate: 40 - Index: 16 Item: ChangeVIT_Bottom - Rate: 339 + Rate: 40 - Index: 17 - Item: ChangeAGI_Bottom - Rate: 339 + Item: ChangeVIT_Middle + Rate: 40 - Index: 18 - Item: ChangeDEX_Bottom - Rate: 339 + Item: ChangeAGI_Bottom + Rate: 40 - Index: 19 - Item: ChangeLUK_Bottom - Rate: 339 + Item: ChangeAGI_Middle + Rate: 40 - Index: 20 - Item: ChangeSTR_Bottom - Rate: 339 + Item: ChangeLUK_Bottom + Rate: 40 - Index: 21 - Item: ChangeINT_Bottom - Rate: 339 + Item: ChangeLUK_Middle + Rate: 40 - Index: 22 - Item: HealStone_Top - Rate: 424 - - Index: 23 - Item: HealStone2_Top - Rate: 424 - - Index: 24 Item: HPStone_Middle - Rate: 424 - - Index: 25 + Rate: 50 + - Index: 23 Item: SPStone_Middle - Rate: 424 - - Index: 26 - Item: HealStone_Bottom - Rate: 424 - - Index: 27 + Rate: 50 + - Index: 24 Item: HPStone_Bottom - Rate: 424 + Rate: 50 + - Index: 25 + Item: HealStone_Top + Rate: 50 + - Index: 26 + Item: HealStone2_Top + Rate: 50 + - Index: 27 + Item: HealStone_Bottom + Rate: 50 - Index: 28 Item: DEFStone_Middle - Rate: 424 + Rate: 50 - Index: 29 Item: MDEFStone_Bottom - Rate: 424 + Rate: 50 - Index: 30 Item: EXPStone_Bottom - Rate: 424 + Rate: 50 - Group: ENCHANT_STONE_BOX8 SubGroups: - SubGroup: 1 List: - Index: 0 Item: CastingStone_Robe - Rate: 37 + Rate: 1 - Index: 1 Item: SPdrainStone_Robe - Rate: 74 + Rate: 2 - Index: 2 Item: SPdrainStone_Top - Rate: 74 + Rate: 2 - Index: 3 - Item: HPdrainStone_Robe - Rate: 149 + Item: Kyrie_Stone + Rate: 4 - Index: 4 - Item: HPdrainStone_Top - Rate: 149 + Item: ASPDStone_Top + Rate: 4 - Index: 5 Item: Greed_Stone - Rate: 149 + Rate: 4 - Index: 6 - Item: ASPDStone_Top - Rate: 149 + Item: HPdrainStone_Robe + Rate: 4 - Index: 7 - Item: Kyrie_Stone - Rate: 149 + Item: HPdrainStone_Top + Rate: 4 - Index: 8 - Item: ATKStone_Middle - Rate: 223 - - Index: 9 - Item: MATKStone_Middle - Rate: 223 - - Index: 10 Item: ATKStone_Top - Rate: 223 + Rate: 6 + - Index: 9 + Item: ATKStone_Middle + Rate: 6 + - Index: 10 + Item: ATKStone_Bottom + Rate: 6 - Index: 11 Item: MATKStone_Top - Rate: 223 + Rate: 6 - Index: 12 - Item: ATKStone_Bottom - Rate: 223 + Item: MATKStone_Middle + Rate: 6 - Index: 13 Item: MATKStone_Bottom - Rate: 223 + Rate: 6 - Index: 14 - Item: TwinkleEffect_Top - Rate: 223 - - Index: 15 - Item: GhostEffect_Middle - Rate: 223 - - Index: 16 - Item: Critical_Stone - Rate: 223 - - Index: 17 - Item: Range_Stone - Rate: 223 - - Index: 18 Item: ReloadStone_Top - Rate: 223 - - Index: 19 + Rate: 6 + - Index: 15 Item: ReloadStone_Middle - Rate: 223 - - Index: 20 + Rate: 6 + - Index: 16 Item: ReloadStone_Bottom - Rate: 223 + Rate: 6 + - Index: 17 + Item: Critical_Stone + Rate: 6 + - Index: 18 + Item: Range_Stone + Rate: 6 + - Index: 19 + Item: TwinkleEffect_Top + Rate: 6 + - Index: 20 + Item: GhostEffect_Middle + Rate: 6 - Index: 21 - Item: ChangeLUK_Middle - Rate: 297 + Item: ChangeSTR_Bottom + Rate: 8 - Index: 22 Item: ChangeSTR_Middle - Rate: 297 + Rate: 8 - Index: 23 - Item: ChangeAGI_Middle - Rate: 297 + Item: ChangeINT_Bottom + Rate: 8 - Index: 24 Item: ChangeINT_Middle - Rate: 297 + Rate: 8 - Index: 25 - Item: ChangeVIT_Middle - Rate: 297 + Item: ChangeDEX_Bottom + Rate: 8 - Index: 26 Item: ChangeDEX_Middle - Rate: 297 + Rate: 8 - Index: 27 Item: ChangeVIT_Bottom - Rate: 297 + Rate: 8 - Index: 28 - Item: ChangeAGI_Bottom - Rate: 297 + Item: ChangeVIT_Middle + Rate: 8 - Index: 29 - Item: ChangeDEX_Bottom - Rate: 297 + Item: ChangeAGI_Bottom + Rate: 8 - Index: 30 - Item: ChangeLUK_Bottom - Rate: 297 + Item: ChangeAGI_Middle + Rate: 8 - Index: 31 - Item: ChangeSTR_Bottom - Rate: 297 + Item: ChangeLUK_Bottom + Rate: 8 - Index: 32 - Item: ChangeINT_Bottom - Rate: 297 + Item: ChangeLUK_Middle + Rate: 8 - Index: 33 - Item: DEFStone_Middle - Rate: 372 - - Index: 34 - Item: MDEFStone_Bottom - Rate: 372 - - Index: 35 - Item: EXPStone_Bottom - Rate: 372 - - Index: 36 Item: MaxHP2_Stone - Rate: 372 - - Index: 37 + Rate: 10 + - Index: 34 Item: MaxSP2_Stone - Rate: 372 - - Index: 38 + Rate: 10 + - Index: 35 Item: Detoxify_Stone - Rate: 372 - - Index: 39 + Rate: 10 + - Index: 36 Item: Recovery_Stone - Rate: 372 + Rate: 10 + - Index: 37 + Item: DEFStone_Middle + Rate: 10 + - Index: 38 + Item: MDEFStone_Bottom + Rate: 10 + - Index: 39 + Item: EXPStone_Bottom + Rate: 10 - Group: ENCHANT_STONE_BOX9 SubGroups: - SubGroup: 1 List: - Index: 0 Item: SPdrainStone_Robe - Rate: 79 + Rate: 1 - Index: 1 Item: SPdrainStone_Top - Rate: 79 + Rate: 1 - Index: 2 - Item: HPdrainStone_Robe - Rate: 159 + Item: Kyrie_Stone + Rate: 2 - Index: 3 - Item: HPdrainStone_Top - Rate: 159 + Item: ASPDStone_Top + Rate: 2 - Index: 4 Item: Greed_Stone - Rate: 159 + Rate: 2 - Index: 5 - Item: ASPDStone_Top - Rate: 159 + Item: HPdrainStone_Robe + Rate: 2 - Index: 6 - Item: Kyrie_Stone - Rate: 159 + Item: HPdrainStone_Top + Rate: 2 - Index: 7 Item: ShrinkEffect_Middle - Rate: 159 + Rate: 2 - Index: 8 - Item: ATKStone_Middle - Rate: 238 - - Index: 9 - Item: MATKStone_Middle - Rate: 238 - - Index: 10 Item: ATKStone_Top - Rate: 238 + Rate: 3 + - Index: 9 + Item: ATKStone_Middle + Rate: 3 + - Index: 10 + Item: ATKStone_Bottom + Rate: 3 - Index: 11 Item: MATKStone_Top - Rate: 238 + Rate: 3 - Index: 12 - Item: ATKStone_Bottom - Rate: 238 + Item: MATKStone_Middle + Rate: 3 - Index: 13 Item: MATKStone_Bottom - Rate: 238 + Rate: 3 - Index: 14 - Item: Critical_Stone - Rate: 238 - - Index: 15 - Item: Range_Stone - Rate: 238 - - Index: 16 Item: ReloadStone_Top - Rate: 238 - - Index: 17 + Rate: 3 + - Index: 15 Item: ReloadStone_Middle - Rate: 238 - - Index: 18 + Rate: 3 + - Index: 16 Item: ReloadStone_Bottom - Rate: 238 + Rate: 3 + - Index: 17 + Item: Critical_Stone + Rate: 3 + - Index: 18 + Item: Range_Stone + Rate: 3 - Index: 19 Item: ElectricEffect_Middle - Rate: 238 + Rate: 3 - Index: 20 Item: GreenFloor_Bottom - Rate: 238 + Rate: 3 - Index: 21 - Item: ChangeLUK_Middle - Rate: 317 + Item: ChangeSTR_Bottom + Rate: 4 - Index: 22 Item: ChangeSTR_Middle - Rate: 317 + Rate: 4 - Index: 23 - Item: ChangeAGI_Middle - Rate: 317 + Item: ChangeINT_Bottom + Rate: 4 - Index: 24 Item: ChangeINT_Middle - Rate: 317 + Rate: 4 - Index: 25 - Item: ChangeVIT_Middle - Rate: 317 + Item: ChangeDEX_Bottom + Rate: 4 - Index: 26 Item: ChangeDEX_Middle - Rate: 317 + Rate: 4 - Index: 27 Item: ChangeVIT_Bottom - Rate: 317 + Rate: 4 - Index: 28 - Item: ChangeAGI_Bottom - Rate: 317 + Item: ChangeVIT_Middle + Rate: 4 - Index: 29 - Item: ChangeDEX_Bottom - Rate: 317 + Item: ChangeAGI_Bottom + Rate: 4 - Index: 30 - Item: ChangeLUK_Bottom - Rate: 317 + Item: ChangeAGI_Middle + Rate: 4 - Index: 31 - Item: ChangeSTR_Bottom - Rate: 317 + Item: ChangeLUK_Bottom + Rate: 4 - Index: 32 - Item: ChangeINT_Bottom - Rate: 317 + Item: ChangeLUK_Middle + Rate: 4 - Index: 33 - Item: EXPStone_Bottom - Rate: 398 - - Index: 34 Item: MaxHP2_Stone - Rate: 398 - - Index: 35 + Rate: 5 + - Index: 34 Item: MaxSP2_Stone - Rate: 398 - - Index: 36 + Rate: 5 + - Index: 35 Item: Identify_Stone - Rate: 398 - - Index: 37 + Rate: 5 + - Index: 36 Item: EXPStone_Middle - Rate: 398 + Rate: 5 + - Index: 37 + Item: EXPStone_Bottom + Rate: 5 - Group: ENERGETIC_PISCES_BOX SubGroups: - SubGroup: 0 @@ -12685,27 +14106,27 @@ Body: Announced: true - Group: EVENT_ALMIGHTY_BOX SubGroups: - - SubGroup: 1 + - SubGroup: 0 List: - Index: 0 Item: Almighty - Rate: 1 Amount: 10 + UniqueId: true - Index: 1 Item: Sealed_Kiel_Scroll - Rate: 1 + UniqueId: true - Group: EVENT_ALMIGHTY_BOX_100 SubGroups: - - SubGroup: 1 + - SubGroup: 0 List: - Index: 0 Item: Almighty - Rate: 1 Amount: 100 + UniqueId: true - Index: 1 Item: Sealed_Kiel_Scroll - Rate: 1 Amount: 11 + UniqueId: true - Group: EVIL_INCARNATION SubGroups: - SubGroup: 1 @@ -13394,53 +14815,189 @@ Body: - SubGroup: 1 List: - Index: 0 - Item: Apple - Rate: 6 - - Index: 1 - Item: Banana - Rate: 5 - - Index: 2 - Item: Grape - Rate: 4 - - Index: 3 - Item: Fruit_Of_Mastela - Rate: 3 - - Index: 4 - Item: Pumpkin - Rate: 2 - - Index: 5 - Item: Lemon - Rate: 6 - - Index: 6 - Item: Prickly_Fruit - Rate: 2 - - Index: 7 - Item: Strawberry - Rate: 4 - - Index: 8 - Item: Orange - Rate: 3 - - Index: 9 - Item: Prickly_Fruit_ - Rate: 2 - - Index: 10 - Item: Yggdrasilberry - Rate: 1 - - Index: 11 - Item: Seed_Of_Yggdrasil - Rate: 1 - - Index: 12 Item: Hard_Peach + Rate: 50 + Amount: 3 + - Index: 1 + Item: Unripe_Apple Rate: 5 + Amount: 2 + - Index: 2 + Item: Tropical_Banana + Rate: 2 + Amount: 2 + - Index: 3 + Item: Fatty_Chubby_Earthworm + Rate: 2 + - Index: 4 + Item: Stone + Rate: 20 + - Index: 5 + Item: Strawberry + Rate: 50 + Amount: 4 + - Index: 6 + Item: Apple + Rate: 50 + Amount: 4 + - Index: 7 + Item: Banana + Rate: 50 + Amount: 4 + - Index: 8 + Item: Grape + Rate: 50 + Amount: 4 + - Index: 9 + Item: Lemon + Rate: 50 + Amount: 4 + - Index: 10 + Item: Fruit_Of_Mastela + Rate: 20 + Amount: 2 + - Index: 11 + Item: Yggdrasilberry + Rate: 10 + - Index: 12 + Item: Prickly_Fruit + Rate: 20 + Amount: 2 - Index: 13 - Item: Cacao - Rate: 4 + Item: Prickly_Fruit_ + Rate: 20 + Amount: 2 - Index: 14 - Item: Mora_Mandarin + Item: Mora_Berry Rate: 5 - Index: 15 + Item: Mora_Mandarin + Rate: 20 + Amount: 2 + - SubGroup: 2 + List: + - Index: 0 + Item: Hard_Peach + Rate: 50 + Amount: 3 + - Index: 1 + Item: Unripe_Apple + Rate: 5 + Amount: 2 + - Index: 2 + Item: Tropical_Banana + Rate: 2 + Amount: 2 + - Index: 3 + Item: Fatty_Chubby_Earthworm + Rate: 2 + - Index: 4 + Item: Stone + Rate: 20 + - Index: 5 + Item: Strawberry + Rate: 50 + Amount: 4 + - Index: 6 + Item: Apple + Rate: 50 + Amount: 4 + - Index: 7 + Item: Banana + Rate: 50 + Amount: 4 + - Index: 8 + Item: Grape + Rate: 50 + Amount: 4 + - Index: 9 + Item: Lemon + Rate: 50 + Amount: 4 + - Index: 10 + Item: Fruit_Of_Mastela + Rate: 20 + Amount: 2 + - Index: 11 + Item: Yggdrasilberry + Rate: 10 + - Index: 12 + Item: Prickly_Fruit + Rate: 20 + Amount: 2 + - Index: 13 + Item: Prickly_Fruit_ + Rate: 20 + Amount: 2 + - Index: 14 Item: Mora_Berry - Rate: 4 + Rate: 5 + - Index: 15 + Item: Mora_Mandarin + Rate: 20 + Amount: 2 + - SubGroup: 3 + List: + - Index: 0 + Item: Hard_Peach + Rate: 50 + Amount: 3 + - Index: 1 + Item: Unripe_Apple + Rate: 5 + Amount: 2 + - Index: 2 + Item: Tropical_Banana + Rate: 2 + Amount: 2 + - Index: 3 + Item: Fatty_Chubby_Earthworm + Rate: 2 + - Index: 4 + Item: Stone + Rate: 20 + - Index: 5 + Item: Strawberry + Rate: 50 + Amount: 4 + - Index: 6 + Item: Apple + Rate: 50 + Amount: 4 + - Index: 7 + Item: Banana + Rate: 50 + Amount: 4 + - Index: 8 + Item: Grape + Rate: 50 + Amount: 4 + - Index: 9 + Item: Lemon + Rate: 50 + Amount: 4 + - Index: 10 + Item: Fruit_Of_Mastela + Rate: 20 + Amount: 2 + - Index: 11 + Item: Yggdrasilberry + Rate: 10 + - Index: 12 + Item: Prickly_Fruit + Rate: 20 + Amount: 2 + - Index: 13 + Item: Prickly_Fruit_ + Rate: 20 + Amount: 2 + - Index: 14 + Item: Mora_Berry + Rate: 5 + - Index: 15 + Item: Mora_Mandarin + Rate: 20 + Amount: 2 - Group: CLOVER_BOX_MOUTH SubGroups: - SubGroup: 0 @@ -15728,31 +17285,39 @@ Body: - SubGroup: 0 List: - Index: 0 - Item: Small_Life_Potion + Item: E_Small_Life_Potion Amount: 5 - Index: 1 - Item: Blessing_10_Scroll + Item: E_Blessing_10_Scroll Amount: 5 - Index: 2 - Item: Inc_Agi_10_Scroll + Item: E_Inc_Agi_10_Scroll Amount: 5 + - SubGroup: 2 + List: + - Index: 0 + Item: E_Vit_Dish10_ + Rate: 10 + Amount: 2 + - Index: 1 + Item: E_Str_Dish10_ + Rate: 10 + Amount: 2 + - Index: 2 + Item: E_Agi_Dish10_ + Rate: 10 + Amount: 2 - Index: 3 - Item: Str_Dish10 + Item: E_Int_Dish10_ + Rate: 10 Amount: 2 - Index: 4 - Item: Int_Dish10 + Item: E_Dex_Dish10_ + Rate: 10 Amount: 2 - Index: 5 - Item: Vit_Dish10 - Amount: 2 - - Index: 6 - Item: Agi_Dish10 - Amount: 2 - - Index: 7 - Item: Dex_Dish10 - Amount: 2 - - Index: 8 - Item: Luk_Dish10 + Item: E_Luk_Dish10_ + Rate: 10 Amount: 2 - Group: GIFT_BUNDLE SubGroups: @@ -15763,10 +17328,9 @@ Body: Amount: 30 - Index: 1 Item: Seed_Of_Yggdrasil - Amount: 30 + Amount: 2 - Index: 2 Item: GM_Handwriting - Amount: 30 - Group: GLORY_FB_HAT_BOX SubGroups: - SubGroup: 0 @@ -15949,62 +17513,48 @@ Body: - SubGroup: 1 List: - Index: 0 - Item: Immortal_Heart - Rate: 1 - Amount: 30 + Item: Pumpkin + Rate: 500 + Amount: 2 - Index: 1 - Item: Starsand_Of_Witch - Rate: 1 - Amount: 30 + Item: Pumpkin_Cake + Rate: 100 + Amount: 2 - Index: 2 - Item: Empty_Bottle - Rate: 1 - Amount: 30 + Item: Pumpkin_Pie + Rate: 100 + Amount: 2 - Index: 3 - Item: Alchol - Rate: 1 - Amount: 30 + Item: Candy + Rate: 500 + Amount: 3 - Index: 4 - Item: Karvodailnirol - Rate: 1 - Amount: 30 + Item: Candy_Striper + Rate: 500 + Amount: 2 - Index: 5 - Item: Transparent_Cloth - Rate: 1 - Amount: 30 - - Index: 6 - Item: Stem - Rate: 1 - Amount: 30 - - Index: 7 - Item: Poison_Spore - Rate: 1 - Amount: 30 - - Index: 8 - Item: Speed_Up_Potion - Rate: 1 - Amount: 5 - - Index: 9 - Item: Chocolate - Rate: 1 - Amount: 5 - - Index: 10 Item: Guarana_Candy - Rate: 1 - Amount: 5 + Rate: 500 + Amount: 2 + - Index: 6 + Item: Piece_Of_Cake + Rate: 500 + Amount: 3 + - Index: 7 + Item: C_Gloomy_Pumpkin_Hat + Rate: 50 + - Index: 8 + Item: C_Cube_Mask_ + Rate: 30 + - Index: 9 + Item: C_Lude_Mask + Rate: 30 + - Index: 10 + Item: C_Witchs_Hat + Rate: 5 - Index: 11 - Item: Seed_Of_Yggdrasil - Rate: 1 - Amount: 5 - - Index: 12 - Item: Old_Blue_Box - Rate: 1 - - Index: 13 - Item: Old_Card_Album - Rate: 1 - - Index: 14 - Item: Old_Violet_Box - Rate: 1 + Item: C_Adv_Whisper_Mask + Rate: 5 - Group: HALLOW_RING_BOX SubGroups: - SubGroup: 0 @@ -16240,7 +17790,7 @@ Body: Rate: 20 UniqueId: true - Index: 15 - Item: Ear_Mufs + Item: Chullos Rate: 45 UniqueId: true - Group: HEAVEN_SCROLL @@ -17365,47 +18915,40 @@ Body: - SubGroup: 1 List: - Index: 0 - Item: Old_Blue_Box - Rate: 66 + Item: E_Small_Life_Potion + Rate: 300 + Amount: 3 - Index: 1 - Item: Old_Card_Album - Rate: 66 + Item: E_Med_Life_Potion + Rate: 300 + Amount: 3 - Index: 2 - Item: Old_Violet_Box - Rate: 66 + Item: E_Red_Booster + Rate: 300 - Index: 3 - Item: Gift_Box - Rate: 1333 + Item: Comp_M_DEFScroll + Rate: 300 - Index: 4 - Item: Blue_Gemstone - Rate: 666 + Item: Comp_Power_Booster + Rate: 300 - Index: 5 - Item: Jellopy - Rate: 2666 + Item: Comp_Almighty + Rate: 300 - Index: 6 - Item: Crystal_Blue - Rate: 1333 + Item: 2009_Rice_Cake_Soup + Rate: 500 - Index: 7 - Item: Large_Jellopy - Rate: 1333 + Item: Octupus_Leg + Rate: 1000 - Index: 8 - Item: Treasure_Box - Rate: 399 + Item: Choco_Tteokguk + Rate: 3900 - Index: 9 - Item: Accessory_Box - Rate: 66 + Item: Sesame_Pastry + Rate: 1400 - Index: 10 - Item: Wrapped_Mask - Rate: 66 - - Index: 11 - Item: First_Aid_Kit - Rate: 333 - - Index: 12 - Item: Food_Package - Rate: 666 - - Index: 13 - Item: Hometown_Gift - Rate: 933 + Item: Honey_Pastry + Rate: 1400 - Group: INSECTICIDE_RING_BOX SubGroups: - SubGroup: 0 @@ -17590,91 +19133,55 @@ Body: Rate: 1 - Group: JULY7_SCROLL SubGroups: - - SubGroup: 0 - List: - - Index: 0 - Item: Basic_Siege_Supply_Box - UniqueId: true - SubGroup: 1 List: - Index: 0 - Item: Underripe_Yggseed - Rate: 1500 - Amount: 10 + Item: Heart_Hair_Pin + Rate: 150 UniqueId: true - Index: 1 - Item: Str_Dish_Box - Rate: 1500 + Item: Alice_Doll + Rate: 10 UniqueId: true - Index: 2 - Item: Bubble_Gum_Box - Rate: 1550 + Item: Fire_Cracker_Love + Rate: 180 + Amount: 20 UniqueId: true - Index: 3 - Item: Battle_Manual_Box - Rate: 1500 + Item: Guyak_Pudding + Rate: 121 + Amount: 10 UniqueId: true - Index: 4 - Item: Convex_Mirror_Box - Rate: 1500 + Item: Magic_Card_Album + Rate: 3 UniqueId: true - Index: 5 - Item: Eddga_Scroll - Rate: 400 + Item: Tirfing_Card + Rate: 5 UniqueId: true - Index: 6 - Item: Token_Of_Siegfried_Box - Rate: 1500 + Item: New_Style_Box + Rate: 110 UniqueId: true - Index: 7 - Item: Rabbit_Ribbon - Rate: 150 - Announced: true + Item: B_Eremes_Card + Rate: 1 UniqueId: true - Index: 8 - Item: Rainbow - Rate: 56 - Announced: true + Item: Headset_OST + Rate: 20 UniqueId: true - Index: 9 - Item: Upd_Maya_Puple_Card - Rate: 3 - Announced: true + Item: Cute_Strawberry_Choco + Rate: 200 + Amount: 10 UniqueId: true - Index: 10 - Item: Gold_Ingot_Poring_Hat - Rate: 150 - Announced: true - UniqueId: true - - Index: 11 - Item: Berzebub_Card - Rate: 1 - Announced: true - UniqueId: true - - Index: 12 - Item: C_Hair_Of_The_Strong - Rate: 70 - Announced: true - UniqueId: true - - Index: 13 - Item: Guarantee_Weapon_9Up - Rate: 20 - Announced: true - UniqueId: true - - Index: 14 - Item: Guarantee_Armor_9Up - Rate: 20 - Announced: true - UniqueId: true - - Index: 15 - Item: RWC2010_Indonesia - Rate: 5 - Announced: true - UniqueId: true - - Index: 16 - Item: Rocket_Helm_RWC - Rate: 75 - Announced: true + Item: Lovely_Choco_Tart + Rate: 200 + Amount: 10 UniqueId: true - Group: JULY_LUCKY_SCROLL SubGroups: @@ -18022,47 +19529,58 @@ Body: - SubGroup: 0 List: - Index: 0 - Item: Guarantee_Weapon_6Up + Item: Comp_Battle_Bubble + Amount: 2 - Index: 1 - Item: 120LVUP + Item: Reward_Job_BM25 + Amount: 2 + - Index: 2 + Item: World_Tour_Ticket + Amount: 15 + - Index: 3 + Item: 110LVUP - Group: LEVEL_UP_BOX120 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Battle_Manual - Amount: 5 + Item: Comp_Battle_Bubble + Amount: 2 - Index: 1 - Item: Bubble_Gum - Amount: 5 + Item: Reward_Job_BM25 + Amount: 2 - Index: 2 - Item: Insurance - Amount: 5 + Item: World_Tour_Ticket + Amount: 15 - Index: 3 - Item: Job_Manual50 - Amount: 5 + Item: E_Wing_Of_Fly_3Day_Box - Index: 4 - Item: Guarantee_Armor_6Up + Item: Comp_Power_Booster + Amount: 10 - Index: 5 + Item: Comp_Almighty + Amount: 10 + - Index: 6 Item: 130LVUP - Group: LEVEL_UP_BOX130 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Battle_Manual - Amount: 5 + Item: Comp_Battle_Bubble + Amount: 2 - Index: 1 - Item: Bubble_Gum - Amount: 5 + Item: Reward_Job_BM25 + Amount: 2 - Index: 2 - Item: Insurance - Amount: 5 + Item: World_Tour_Ticket + Amount: 10 - Index: 3 - Item: Job_Manual50 - Amount: 5 + Item: E_Small_Life_Potion + Amount: 30 - Index: 4 - Item: Guarantee_Weapon_7Up + Item: E_Med_Life_Potion + Amount: 30 - Index: 5 Item: 140LVUP - Group: LEVEL_UP_BOX140 @@ -18070,19 +19588,19 @@ Body: - SubGroup: 0 List: - Index: 0 - Item: Battle_Manual - Amount: 5 + Item: Battle_Manual100 - Index: 1 - Item: Bubble_Gum - Amount: 5 + Item: World_Tour_Ticket + Amount: 10 - Index: 2 - Item: Insurance - Amount: 5 + Item: Comp_Power_Booster + Amount: 15 - Index: 3 - Item: Job_Manual50 - Amount: 5 + Item: Comp_Almighty + Amount: 15 - Index: 4 - Item: Guarantee_Armor_7Up + Item: Comp_Small_Mana_Potion + Amount: 15 - Index: 5 Item: 150LVUP - Group: LEVEL_UP_BOX150 @@ -18090,19 +19608,20 @@ Body: - SubGroup: 0 List: - Index: 0 - Item: Battle_Manual - Amount: 5 + Item: Comp_Battle_Bubble + Amount: 3 - Index: 1 - Item: Bubble_Gum - Amount: 5 + Item: Comp_M_DEFScroll + Amount: 30 - Index: 2 - Item: Insurance - Amount: 5 + Item: E_Small_Life_Potion + Amount: 30 - Index: 3 - Item: Job_Manual50 - Amount: 5 + Item: E_Med_Life_Potion + Amount: 30 - Index: 4 - Item: Guarantee_Weapon_8Up + Item: Comp_Small_Mana_Potion + Amount: 15 - Index: 5 Item: 160LVUP - Group: LEVEL_UP_BOX160 @@ -18110,20 +19629,21 @@ Body: - SubGroup: 0 List: - Index: 0 - Item: Battle_Manual - Amount: 5 - - Index: 1 - Item: Bubble_Gum - Amount: 5 - - Index: 2 - Item: Insurance - Amount: 5 - - Index: 3 - Item: Job_Manual50 - Amount: 5 - - Index: 4 - Item: Guarantee_Armor_8Up + Item: Battle_Manual100 Amount: 2 + - Index: 1 + Item: Comp_Power_Booster + Amount: 15 + - Index: 2 + Item: Comp_Almighty + Amount: 15 + - Index: 3 + Item: Comp_M_DEFScroll + Amount: 30 + - Index: 4 + Item: Guarantee_Weapon_8Up + - Index: 5 + Item: 175LVUP - Group: LIBRA_SCROLL SubGroups: - SubGroup: 1 @@ -18217,7 +19737,7 @@ Body: List: - Index: 0 Item: Lord_Circlet_C - Duration: 10080 + Duration: 20160 UniqueId: true - Group: LOTTOBOX SubGroups: @@ -18559,502 +20079,472 @@ Body: - SubGroup: 1 List: - Index: 0 - Item: Sealed_Mistress_Card - Rate: 1 - Announced: true + Item: Old_Card_Album + Rate: 10 - Index: 1 Item: Magic_Card_Album - Rate: 50 - Announced: true + Rate: 5 - Index: 2 Item: White_Slim_Pot_Box2 - Rate: 1500 + Rate: 100 - Index: 3 Item: Poison_Bottle_Box2 - Rate: 1500 + Rate: 100 - Index: 4 Item: Blue_Herb_Box2 - Rate: 1500 + Rate: 100 - Index: 5 Item: Chung_E_Pet_Coupon - Rate: 1200 + Rate: 20 - Index: 6 Item: Succu_Pet_Coupon - Rate: 1200 + Rate: 14 - Index: 7 Item: Imp_Pet_Coupon - Rate: 1200 + Rate: 20 - Index: 8 - Item: Guarantee_Weapon_5Up - Rate: 200 + Item: Agav_Card + Rate: 80 - Index: 9 - Item: Guarantee_Armor_5Up - Rate: 200 + Item: Echio_Card + Rate: 80 - Index: 10 Item: Crown_ - Rate: 290 + Rate: 50 - Index: 11 Item: Sharp_Gear_ - Rate: 250 - - Index: 12 - Item: Ribbon_Of_Bride Rate: 50 - Announced: true + - Index: 12 + Item: Wind_Sprits_Armor_ + Rate: 10 - Index: 13 Item: Odin's_Blessing - Rate: 599 + Rate: 60 - Index: 14 - Item: Archangel_Wing - Rate: 50 - Announced: true + Item: Treasure_Box + Rate: 200 - Index: 15 - Item: Elven_Ears_ - Rate: 10 - Announced: true + Item: Elven_Ears + Rate: 100 - Index: 16 Item: Rabbit_Earplug - Rate: 200 + Rate: 1 - Group: LUCKY_EGG_C10 SubGroups: - SubGroup: 1 List: - Index: 0 Item: Guarantee_Weapon_8Up - Rate: 5 + Rate: 10 Announced: true - Index: 1 Item: Guarantee_Armor_8Up - Rate: 5 + Rate: 10 Announced: true - Index: 2 Item: Magic_Card_Album - Rate: 50 + Rate: 5 Announced: true - Index: 3 Item: Evil_Marcher_Hat - Rate: 15 + Rate: 182 Announced: true - Index: 4 - Item: Battle_Manual_Box + Item: Comp_Battle_Manual Rate: 500 + Amount: 2 - Index: 5 Item: Comp_Bubble_Gum - Rate: 1000 - Amount: 3 + Rate: 500 + Amount: 2 - Index: 6 Item: Comp_Insurance - Rate: 1000 - Amount: 3 + Rate: 300 + Amount: 2 - Index: 7 Item: Poison_Bottle_Box2 - Rate: 1000 + Rate: 100 - Index: 8 Item: Bloody_Dead_Branch - Rate: 100 + Rate: 50 Announced: true - Index: 9 Item: Guarantee_Weapon_5Up - Rate: 200 - Announced: true + Rate: 100 - Index: 10 Item: Guarantee_Armor_5Up - Rate: 200 - Announced: true + Rate: 100 - Index: 11 Item: E_WOB_Rune - Rate: 900 - Amount: 10 + Rate: 300 + Amount: 5 - Index: 12 Item: E_WOB_Schwaltz - Rate: 900 - Amount: 10 + Rate: 300 + Amount: 5 - Index: 13 Item: E_WOB_Rachel - Rate: 900 - Amount: 10 + Rate: 300 + Amount: 5 - Index: 14 Item: E_WOB_Local - Rate: 900 - Amount: 10 + Rate: 300 + Amount: 5 - Index: 15 - Item: RWC2010_Indonesia - Rate: 1 - Announced: true + Item: Old_Violet_Box + Rate: 770 - Index: 16 - Item: Sealed_Kiel_Card - Rate: 1 - Announced: true + Item: Treasure_Box + Rate: 880 - Index: 17 Item: White_Slim_Pot_Box2 - Rate: 800 + Rate: 1400 - Index: 18 - Item: Sealed_B_Ygnizem_Card - Rate: 1 - Announced: true + Item: Old_Card_Album + Rate: 400 - Index: 19 Item: Heart_Eye_Patch1 - Rate: 150 - Announced: true + Rate: 396 - Index: 20 Item: Heart_Eye_Patch2 - Rate: 150 - Announced: true + Rate: 397 - Index: 21 Item: Boy's_Naivety - Rate: 400 + Rate: 200 + Amount: 10 - Index: 22 Item: Flaming_Ice - Rate: 400 + Rate: 200 + Amount: 10 - Index: 23 Item: Tantanmen - Rate: 400 + Rate: 200 + Amount: 10 - Index: 24 Item: Enchant_Book - Rate: 22 - Announced: true + Rate: 2100 - Group: LUCKY_EGG_C2 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Magic_Card_Album - Rate: 50 + Item: Old_Card_Album + Rate: 10 - Index: 1 - Item: White_Slim_Pot_Box2 - Rate: 900 + Item: Magic_Card_Album + Rate: 5 - Index: 2 - Item: Poison_Bottle_Box2 - Rate: 900 + Item: White_Slim_Pot_Box2 + Rate: 90 - Index: 3 - Item: Blue_Herb_Box2 - Rate: 900 + Item: Poison_Bottle_Box2 + Rate: 90 - Index: 4 - Item: Guarantee_Weapon_5Up - Rate: 200 + Item: Blue_Herb_Box2 + Rate: 90 - Index: 5 - Item: Guarantee_Armor_5Up - Rate: 200 + Item: Carat_Card + Rate: 20 - Index: 6 - Item: Sealed_Dracula_Card - Rate: 1 + Item: Nine_Tail_Card + Rate: 20 - Index: 7 - Item: Drake_Card - Rate: 1 + Item: Pupa_Card + Rate: 14 - Index: 8 - Item: Cancer_Diadem - Rate: 150 + Item: Morrigane's_Belt + Rate: 50 - Index: 9 - Item: Cancer_Crown - Rate: 150 + Item: Morrigane's_Pendant + Rate: 50 - Index: 10 - Item: Mini_Propeller_ - Rate: 150 + Item: An_Eye_Of_Dullahan + Rate: 50 - Index: 11 - Item: Battle_Manual_Box - Rate: 1000 - Announced: true + Item: Comp_Battle_Manual + Rate: 30 - Index: 12 Item: Comp_Bubble_Gum - Rate: 800 + Rate: 30 - Index: 13 Item: Comp_Insurance - Rate: 800 + Rate: 50 Amount: 3 - Announced: true - Index: 14 Item: J_Aspersio_5_Scroll - Rate: 800 + Rate: 60 Amount: 5 - Announced: true - Index: 15 - Item: Underripe_Yggseed - Rate: 800 - Amount: 10 - Announced: true - - Index: 16 Item: Psychic_ArmorS - Rate: 800 + Rate: 30 Amount: 2 - Announced: true + - Index: 16 + Item: Underripe_Yggseed + Rate: 50 + Amount: 10 - Index: 17 - Item: Yggdrasilberry_Box_ - Rate: 948 - Announced: true + Item: Yggdrasilberry + Rate: 50 + Amount: 5 - Index: 18 - Item: Bogy_Horn + Item: Treasure_Box Rate: 150 - Announced: true - Index: 19 - Item: Flame_Sprits_Armor__ - Rate: 150 - Announced: true + Item: Bogy_Horn + Rate: 20 - Index: 20 + Item: Flame_Sprits_Armor__ + Rate: 20 + - Index: 21 + Item: Machoman_Glasses + Rate: 20 + - Index: 22 Item: Jasper_Crest - Rate: 150 - Announced: true + Rate: 1 - Group: LUCKY_EGG_C3 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Magic_Card_Album - Rate: 50 - Announced: true - - Index: 1 - Item: White_Slim_Pot_Box2 - Rate: 800 - - Index: 2 - Item: Poison_Bottle_Box2 - Rate: 800 - - Index: 3 - Item: Blue_Herb_Box2 - Rate: 800 - - Index: 4 - Item: Chung_E_Pet_Coupon - Rate: 500 - Announced: true - - Index: 5 - Item: Succu_Pet_Coupon - Rate: 500 - Announced: true - - Index: 6 - Item: Imp_Pet_Coupon - Rate: 500 - Announced: true - - Index: 7 - Item: Leo_Crown - Rate: 150 - Announced: true - - Index: 8 - Item: Dress_Hat - Rate: 100 - Announced: true - - Index: 9 - Item: Sunglasses_ + Item: Old_Card_Album Rate: 10 - Announced: true + - Index: 1 + Item: Magic_Card_Album + Rate: 5 + - Index: 2 + Item: White_Slim_Pot_Box2 + Rate: 100 + - Index: 3 + Item: Poison_Bottle_Box2 + Rate: 100 + - Index: 4 + Item: Blue_Herb_Box2 + Rate: 100 + - Index: 5 + Item: Carat_Card + Rate: 20 + - Index: 6 + Item: Nine_Tail_Card + Rate: 20 + - Index: 7 + Item: Antique_Firelock_Card + Rate: 20 + - Index: 8 + Item: Pupa_Card + Rate: 14 + - Index: 9 + Item: Linen_Glove + Rate: 21 - Index: 10 - Item: Battle_Manual_Box - Rate: 489 + Item: Pinguicula_Corsage + Rate: 55 - Index: 11 - Item: Comp_Bubble_Gum - Rate: 800 - Amount: 3 + Item: Comp_Battle_Manual + Rate: 30 - Index: 12 - Item: Comp_Insurance - Rate: 800 - Amount: 3 + Item: Comp_Bubble_Gum + Rate: 30 - Index: 13 - Item: J_Aspersio_5_Scroll - Rate: 800 - Amount: 5 + Item: Comp_Insurance + Rate: 50 + Amount: 3 - Index: 14 - Item: Underripe_Yggseed - Rate: 800 - Amount: 10 + Item: J_Aspersio_5_Scroll + Rate: 60 + Amount: 5 - Index: 15 Item: Psychic_ArmorS - Rate: 800 + Rate: 30 Amount: 2 - Index: 16 - Item: Yggdrasilberry_Box_ - Rate: 800 + Item: Underripe_Yggseed + Rate: 55 + Amount: 10 - Index: 17 - Item: Upg_Buckler_Box - Rate: 100 - Announced: true - - Index: 18 - Item: Flame_Sprits_Armor__ - Rate: 200 - Announced: true - - Index: 19 - Item: Sealed_Kiel_Card - Rate: 1 - Announced: true - - Index: 20 - Item: Donut_In_Mouth - Rate: 150 - Announced: true - - Index: 21 - Item: K_Rabbit_Bonnet + Item: Yggdrasilberry Rate: 50 - Announced: true + Amount: 5 + - Index: 18 + Item: Treasure_Box + Rate: 150 + - Index: 19 + Item: Flame_Sprits_Armor__ + Rate: 30 + - Index: 20 + Item: Machoman_Glasses + Rate: 30 + - Index: 21 + Item: Donut_In_Mouth + Rate: 15 + - Index: 22 + Item: K_Rabbit_Bonnet + Rate: 5 - Group: LUCKY_EGG_C4 SubGroups: - SubGroup: 1 List: - Index: 0 Item: White_Slim_Pot_Box2 - Rate: 790 + Rate: 95 - Index: 1 Item: Poison_Bottle_Box2 - Rate: 720 + Rate: 90 - Index: 2 Item: Blue_Herb_Box2 - Rate: 720 + Rate: 90 - Index: 3 - Item: Battle_Manual_Box - Rate: 700 + Item: Comp_Battle_Manual + Rate: 70 - Index: 4 Item: J_Aspersio_5_Scroll - Rate: 720 + Rate: 70 Amount: 5 - Index: 5 - Item: Deviling_Card - Rate: 1 - Announced: true + Item: Puente_Robe + Rate: 50 - Index: 6 Item: Comp_Bubble_Gum - Rate: 720 - Amount: 3 + Rate: 50 - Index: 7 Item: Comp_Insurance - Rate: 720 + Rate: 50 Amount: 3 - Index: 8 - Item: Underripe_Yggseed - Rate: 720 - Amount: 10 - - Index: 9 Item: Psychic_ArmorS - Rate: 720 + Rate: 50 Amount: 2 + - Index: 9 + Item: Underripe_Yggseed + Rate: 50 + Amount: 10 - Index: 10 - Item: Yggdrasilberry_Box_ - Rate: 720 + Item: Yggdrasilberry + Rate: 50 + Amount: 5 - Index: 11 - Item: Sealed_B_Ygnizem_Card - Rate: 1 - Announced: true + Item: Treasure_Box + Rate: 120 - Index: 12 - Item: Lunatic_Hat_Box - Rate: 200 - Announced: true + Item: Lunatic_Hat + Rate: 25 - Index: 13 Item: Necromencer's_Hood - Rate: 200 - Announced: true + Rate: 25 - Index: 14 Item: Fried_Egg - Rate: 200 - Announced: true + Rate: 25 - Index: 15 - Item: Sagittarius_Crown - Rate: 200 - Announced: true - - Index: 16 Item: Savage_Baby_Hat - Rate: 198 - Announced: true + Rate: 25 + - Index: 16 + Item: Fur_Seal_Hat + Rate: 25 - Index: 17 - Item: Fur_Seal_Hat_Box - Rate: 200 - Announced: true + Item: Old_Card_Album + Rate: 25 - Index: 18 - Item: Chung_E_Pet_Coupon - Rate: 500 - Announced: true + Item: Hilsrion_Card + Rate: 10 - Index: 19 - Item: Succu_Pet_Coupon - Rate: 500 - Announced: true - - Index: 20 - Item: Imp_Pet_Coupon - Rate: 500 - Announced: true - - Index: 21 Item: Magic_Card_Album - Rate: 50 - Announced: true + Rate: 5 - Group: LUCKY_EGG_C5 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Yggdrasilberry_Box_ - Rate: 900 + Item: Treasure_Box + Rate: 500 - Index: 1 - Item: Underripe_Yggseed - Rate: 900 - Amount: 10 - - Index: 2 - Item: Psychic_ArmorS - Rate: 900 - Amount: 2 - - Index: 3 - Item: J_Aspersio_5_Scroll - Rate: 900 + Item: Yggdrasilberry + Rate: 500 Amount: 5 + - Index: 2 + Item: Underripe_Yggseed + Rate: 500 + Amount: 10 + - Index: 3 + Item: Psychic_ArmorS + Rate: 500 + Amount: 2 - Index: 4 - Item: Vanberk_Card - Rate: 1 - Announced: true + Item: J_Aspersio_5_Scroll + Rate: 700 + Amount: 5 - Index: 5 - Item: Sealed_Ktullanux_Card - Rate: 1 - Announced: true + Item: Vanberk_Card + Rate: 200 - Index: 6 - Item: Comp_Bubble_Gum - Rate: 900 - Amount: 3 + Item: Isilla_Card + Rate: 200 - Index: 7 - Item: Comp_Insurance - Rate: 900 - Amount: 3 + Item: Comp_Bubble_Gum + Rate: 500 + Amount: 2 - Index: 8 - Item: Battle_Manual_Box - Rate: 800 + Item: Comp_Insurance + Rate: 500 + Amount: 3 - Index: 9 - Item: Blue_Herb_Box2 - Rate: 800 + Item: Comp_Battle_Manual + Rate: 700 + Amount: 2 - Index: 10 - Item: Poison_Bottle_Box2 - Rate: 800 + Item: Blue_Herb_Box2 + Rate: 1000 - Index: 11 - Item: White_Slim_Pot_Box2 - Rate: 800 + Item: Poison_Bottle_Box2 + Rate: 1050 - Index: 12 + Item: White_Slim_Pot_Box2 + Rate: 1050 + - Index: 13 Item: Magic_Card_Album Rate: 50 Announced: true - - Index: 13 - Item: Magestic_Goat_ - Rate: 150 - Announced: true - Index: 14 - Item: Fallen_Angel_Wing - Rate: 1 - Announced: true + Item: Old_Card_Album + Rate: 250 - Index: 15 - Item: Delicious_Shaved_Ice - Rate: 299 - Announced: true - - Index: 16 - Item: Fit_Pipe - Rate: 299 - Announced: true - - Index: 17 - Item: Gril's_Naivety - Rate: 299 - Announced: true - - Index: 18 - Item: Ring_Of_Flame_Lord - Rate: 50 - Announced: true - - Index: 19 - Item: Samambaia_Box + Item: Linen_Glove Rate: 200 Announced: true + - Index: 16 + Item: Magestic_Goat + Rate: 150 + Announced: true + - Index: 17 + Item: Sharp_Gear_ + Rate: 150 + - Index: 18 + Item: Delicious_Shaved_Ice + Rate: 300 + Amount: 2 + - Index: 19 + Item: Fit_Pipe + Rate: 300 + Amount: 2 - Index: 20 + Item: Gril's_Naivety + Rate: 300 + Amount: 2 + - Index: 21 + Item: Crown_ + Rate: 300 + - Index: 22 + Item: Samambaia + Rate: 100 + Announced: true + - Index: 23 Item: Ring_Of_Resonance - Rate: 50 + Rate: 1 Announced: true - Group: LUCKY_EGG_C6 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Pierre_Treasurebox + Item: Treasure_Box Rate: 500 - Index: 1 Item: Yggdrasilberry @@ -19129,149 +20619,150 @@ Body: - SubGroup: 1 List: - Index: 0 - Item: Magic_Card_Album - Rate: 50 - Announced: true + Item: Treasure_Box + Rate: 1200 - Index: 1 - Item: Yggdrasilberry_Box_ - Rate: 1043 + Item: Yggdrasilberry + Rate: 500 + Amount: 5 - Index: 2 Item: Underripe_Yggseed - Rate: 1000 + Rate: 500 Amount: 10 - Index: 3 Item: Psychic_ArmorS - Rate: 1000 + Rate: 500 Amount: 2 - Index: 4 Item: J_Aspersio_5_Scroll - Rate: 1000 + Rate: 700 Amount: 5 - Index: 5 Item: Comp_Insurance - Rate: 1000 + Rate: 800 Amount: 3 - Index: 6 Item: Comp_Bubble_Gum - Rate: 1000 - Amount: 3 - - Index: 7 - Item: Battle_Manual_Box Rate: 800 + Amount: 2 + - Index: 7 + Item: Comp_Battle_Manual + Rate: 800 + Amount: 2 - Index: 8 Item: Blue_Herb_Box2 Rate: 1000 - Index: 9 Item: Poison_Bottle_Box2 - Rate: 1000 + Rate: 1200 - Index: 10 Item: White_Slim_Pot_Box2 - Rate: 1000 + Rate: 1200 - Index: 11 - Item: Valkyrie_Helm + Item: Magic_Card_Album Rate: 50 Announced: true - Index: 12 - Item: Ifrit_Card - Rate: 1 - Announced: true + Item: Old_Card_Album + Rate: 380 - Index: 13 Item: Guarantee_Armor_7Up - Rate: 25 + Rate: 90 Announced: true - Index: 14 Item: Guarantee_Weapon_7Up - Rate: 25 + Rate: 80 Announced: true - Index: 15 Item: Guarantee_Armor_9Up - Rate: 2 + Rate: 1 Announced: true - Index: 16 Item: Guarantee_Weapon_9Up - Rate: 2 + Rate: 1 Announced: true - Index: 17 Item: Mask_Of_Ifrit - Rate: 1 + Rate: 100 Announced: true - Index: 18 Item: Ifrit's_Ear - Rate: 1 + Rate: 100 Announced: true - Group: LUCKY_EGG_C8 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Yggdrasilberry_Box_ - Rate: 900 + Item: Treasure_Box + Rate: 1200 - Index: 1 Item: Bloody_Dead_Branch - Rate: 95 + Rate: 50 Announced: true - Index: 2 - Item: Dead_Tree_Branch_Box2 - Rate: 1000 + Item: Branch_Of_Dead_Tree + Rate: 500 + Amount: 5 - Index: 3 Item: Psychic_ArmorS - Rate: 1000 - Amount: 2 + Rate: 500 + Amount: 4 - Index: 4 Item: J_Aspersio_5_Scroll - Rate: 1000 - Amount: 5 + Rate: 700 + Amount: 10 - Index: 5 Item: Comp_Insurance - Rate: 1000 + Rate: 800 Amount: 3 - Index: 6 Item: Comp_Bubble_Gum - Rate: 1000 - Amount: 3 + Rate: 800 + Amount: 2 - Index: 7 - Item: Battle_Manual_Box - Rate: 900 + Item: Comp_Battle_Manual + Rate: 800 + Amount: 2 - Index: 8 Item: Fruit_Of_Mastela_Box2 - Rate: 900 + Rate: 1000 - Index: 9 Item: Poison_Bottle_Box2 - Rate: 900 + Rate: 1200 - Index: 10 Item: White_Slim_Pot_Box2 - Rate: 900 + Rate: 1200 - Index: 11 Item: Magic_Card_Album Rate: 50 Announced: true - Index: 12 - Item: Black_Devil_Mask_ - Rate: 1 - Announced: true + Item: Old_Card_Album + Rate: 380 - Index: 13 Item: Guarantee_Armor_7Up - Rate: 25 + Rate: 90 Announced: true - Index: 14 Item: Guarantee_Weapon_7Up - Rate: 25 + Rate: 80 Announced: true - Index: 15 Item: Guarantee_Armor_9Up - Rate: 2 + Rate: 1 Announced: true - Index: 16 Item: Guarantee_Weapon_9Up - Rate: 2 + Rate: 1 Announced: true - Index: 17 Item: Drooping_Morocc_Minion - Rate: 150 + Rate: 50 Announced: true - Index: 18 Item: Wanderer's_Sakkat - Rate: 150 + Rate: 108 Announced: true - Group: LUCKY_EGG_C9 SubGroups: @@ -19279,67 +20770,68 @@ Body: List: - Index: 0 Item: Comp_Bubble_Gum - Rate: 1500 - Amount: 3 + Rate: 1600 + Amount: 2 - Index: 1 - Item: Battle_Manual_Box - Rate: 1459 + Item: Comp_Battle_Manual + Rate: 1600 + Amount: 2 - Index: 2 - Item: Comp_Insurance - Rate: 1500 - Amount: 3 + Item: Treasure_Box + Rate: 1484 - Index: 3 - Item: White_Slim_Pot_Box2 - Rate: 1500 + Item: Comp_Insurance + Rate: 1056 + Amount: 2 - Index: 4 - Item: Poison_Bottle_Box2 - Rate: 1500 + Item: White_Slim_Pot_Box2 + Rate: 1000 - Index: 5 - Item: Dead_Tree_Branch_Box2 - Rate: 1500 + Item: Poison_Bottle_Box2 + Rate: 980 - Index: 6 - Item: Elven_Ears_ - Rate: 10 - Announced: true + Item: Branch_Of_Dead_Tree + Rate: 500 + Amount: 5 - Index: 7 - Item: Holy_Marching_Hat_J - Rate: 300 - Announced: true + Item: Old_Card_Album + Rate: 400 - Index: 8 - Item: Auger_Of_Spirit - Rate: 20 + Item: Holy_Marching_Hat_J + Rate: 350 Announced: true - Index: 9 - Item: Orc_Hero_Card - Rate: 1 - Announced: true + Item: Auger_Of_Spirit + Rate: 250 - Index: 10 - Item: Flying_Angel - Rate: 100 - Announced: true + Item: Elven_Ears + Rate: 200 - Index: 11 - Item: Guarantee_Armor_7Up - Rate: 25 - Announced: true + Item: Ear_Of_Angel's_Wing + Rate: 150 - Index: 12 - Item: Guarantee_Weapon_7Up - Rate: 25 + Item: Guarantee_Armor_7Up + Rate: 150 Announced: true - Index: 13 - Item: Bloody_Dead_Branch - Rate: 500 + Item: Guarantee_Weapon_7Up + Rate: 150 Announced: true - Index: 14 - Item: Magic_Card_Album + Item: Bloody_Dead_Branch Rate: 50 Announced: true - Index: 15 - Item: Guarantee_Armor_8Up - Rate: 5 + Item: Magic_Card_Album + Rate: 50 Announced: true - Index: 16 + Item: Guarantee_Armor_8Up + Rate: 15 + Announced: true + - Index: 17 Item: Guarantee_Weapon_8Up - Rate: 5 + Rate: 15 Announced: true - Group: LUCKY_SCROLL08 SubGroups: @@ -19348,7 +20840,7 @@ Body: - Index: 0 Item: Kafra_Card Rate: 220 - Amount: 5 + Amount: 15 UniqueId: true - Index: 1 Item: Battle_Manual @@ -19361,9 +20853,9 @@ Body: Amount: 5 UniqueId: true - Index: 3 - Item: Token_Of_Siegfried_Box + Item: Token_Of_Siegfried Rate: 100 - Amount: 5 + Amount: 15 UniqueId: true - Index: 4 Item: Neuralizer @@ -19386,11 +20878,11 @@ Body: Rate: 1 UniqueId: true - Index: 9 - Item: Angelic_Chain_ + Item: Angelic_Chain Rate: 2 UniqueId: true - Index: 10 - Item: Satanic_Chain_ + Item: Satanic_Chain Rate: 3 UniqueId: true - Index: 11 @@ -19410,7 +20902,7 @@ Body: Rate: 65 UniqueId: true - Index: 15 - Item: Insurance_Package + Item: Insurance Rate: 60 UniqueId: true - Index: 16 @@ -19426,7 +20918,11 @@ Body: Item: Silvervine Amount: 10 - Index: 1 + Item: Malang_Sp_Can + Amount: 30 + - Index: 2 Item: Sealed_Apo_H_Scroll + UniqueId: true - Group: LUCKY_SILVERVINE_FRUIT_BOX_III110 SubGroups: - SubGroup: 0 @@ -19435,288 +20931,289 @@ Body: Item: Silvervine Amount: 110 - Index: 1 + Item: Malang_Sp_Can + Amount: 330 + - Index: 2 Item: Sealed_Apo_H_Scroll Amount: 11 + UniqueId: true - Group: MAGICCARDALBUM SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Real_Eremes_Card - Rate: 3 - - Index: 1 - Item: Real_Magaleta_Card - Rate: 3 - - Index: 2 - Item: Real_Katrinn_Card - Rate: 3 - - Index: 3 - Item: Real_Shecil_Card - Rate: 3 - - Index: 4 - Item: Real_Harword_Card - Rate: 3 - - Index: 5 - Item: Real_Seyren_Card - Rate: 3 - - Index: 6 - Item: Real_Randel_Card - Rate: 3 - - Index: 7 - Item: Real_Flamel_Card - Rate: 3 - - Index: 8 - Item: Real_Ceila_Card - Rate: 3 - - Index: 9 - Item: Real_Chen_Card - Rate: 3 - - Index: 10 - Item: Real_Gertie_Card - Rate: 3 - - Index: 11 - Item: Real_Trentini_Card - Rate: 3 - - Index: 12 - Item: Real_Alphoccio_Card - Rate: 3 - - Index: 13 - Item: Bomi_Card - Rate: 3 - - Index: 14 - Item: Knight_Sakray_Card - Rate: 3 - - Index: 15 - Item: Chaos_Acolyte_Card - Rate: 3 - - Index: 16 - Item: As_Bdy_Knight_Card - Rate: 3 - - Index: 17 - Item: As_Wind_Ghost_Card - Rate: 3 - - Index: 18 - Item: Fenrir_Card_ - Rate: 16 - - Index: 19 - Item: UndeadKnightM_Card - Rate: 16 - - Index: 20 - Item: UndeadKnightF_Card - Rate: 16 - - Index: 21 - Item: Faceworm_D_Card - Rate: 16 - - Index: 22 - Item: Irene_Elder_Card - Rate: 16 - - Index: 23 - Item: Toad_Card - Rate: 16 - - Index: 24 - Item: Gigantes_Card - Rate: 16 - - Index: 25 - Item: Fei_Kanabian_Card - Rate: 16 - - Index: 26 - Item: Ahat_Card - Rate: 16 - - Index: 27 - Item: Shnaim_Card - Rate: 16 - - Index: 28 - Item: Brinaranea_Card - Rate: 16 - - Index: 29 - Item: Muspellskoll_Card - Rate: 16 - - Index: 30 - Item: Antonio_Card - Rate: 156 - - Index: 31 - Item: Dy_Card - Rate: 156 - - Index: 32 Item: Ghostring_Card - Rate: 312 - - Index: 33 + Rate: 100 + - Index: 1 Item: Angeling_Card - Rate: 312 - - Index: 34 + Rate: 100 + - Index: 2 Item: Gryphon_Card - Rate: 312 - - Index: 35 + Rate: 100 + - Index: 3 Item: Dark_Illusion_Card - Rate: 312 - - Index: 36 + Rate: 100 + - Index: 4 Item: Deviling_Card - Rate: 312 - - Index: 37 + Rate: 100 + - Index: 5 + Item: Dragon_Fly_Card + Rate: 1000 + - Index: 6 + Item: Vagabond_Wolf_Card + Rate: 1000 + - Index: 7 + Item: Mastering_Card + Rate: 1000 + - Index: 8 Item: Maya_Puple_Card - Rate: 312 - - Index: 38 + Rate: 100 + - Index: 9 + Item: Mutant_Dragon_Card + Rate: 1000 + - Index: 10 Item: Mysteltainn_Card - Rate: 312 - - Index: 39 - Item: Vocal_Card - Rate: 312 - - Index: 40 + Rate: 100 + - Index: 11 + Item: Owl_Duke_Card + Rate: 500 + - Index: 12 + Item: Owl_Baron_Card + Rate: 500 + - Index: 13 Item: Archangeling_Card - Rate: 312 - - Index: 41 + Rate: 100 + - Index: 14 + Item: Antonio_Card + Rate: 50 + - Index: 15 Item: Executioner_Card - Rate: 312 - - Index: 42 + Rate: 100 + - Index: 16 Item: Tirfing_Card - Rate: 312 - - Index: 43 + Rate: 100 + - Index: 17 Item: Eclipse_Card - Rate: 312 - - Index: 44 - Item: Bloody_Knight_Card - Rate: 312 - - Index: 45 - Item: Ungoliant_Card - Rate: 312 - - Index: 46 + Rate: 100 + - Index: 18 + Item: Cat_O_Nine_Tail_Card + Rate: 500 + - Index: 19 + Item: Chimera_Card + Rate: 1000 + - Index: 20 + Item: Toad_Card + Rate: 1000 + - Index: 21 Item: Gemini_Card - Rate: 312 - - Index: 47 + Rate: 100 + - Index: 22 + Item: Hydro_Card + Rate: 1000 + - Index: 23 + Item: Retribution_Card + Rate: 1000 + - Index: 24 + Item: Observation_Card + Rate: 1000 + - Index: 25 + Item: Shelter_Card + Rate: 1000 + - Index: 26 + Item: Solace_Card + Rate: 1000 + - Index: 27 + Item: Tha_Maero_Card + Rate: 1000 + - Index: 28 + Item: Tha_Odium_Card + Rate: 1000 + - Index: 29 + Item: Tha_Despero_Card + Rate: 1000 + - Index: 30 + Item: Tha_Dolor_Card + Rate: 1000 + - Index: 31 + Item: Skeggiold_Card + Rate: 1000 + - Index: 32 + Item: Salamander_Card + Rate: 1000 + - Index: 33 + Item: Kasa_Card + Rate: 1000 + - Index: 34 + Item: Galion_Card + Rate: 1000 + - Index: 35 + Item: Byorgue_Card + Rate: 1000 + - Index: 36 + Item: Sword_Guardian_Card + Rate: 1000 + - Index: 37 + Item: Bow_Guardian_Card + Rate: 1000 + - Index: 38 + Item: Necromancer_Card + Rate: 1000 + - Index: 39 + Item: Hardrock_Mommos_Card + Rate: 600 + - Index: 40 + Item: Tendrilion_Card + Rate: 600 + - Index: 41 + Item: Gold_Scaraba_Card + Rate: 500 + - Index: 42 Item: King_Dramoh_Card - Rate: 312 - - Index: 48 + Rate: 100 + - Index: 43 Item: Wild_Rider_Card - Rate: 312 - - Index: 49 + Rate: 100 + - Index: 44 + Item: Fenrir_Card_ + Rate: 5 + - Index: 45 Item: Soheon_Card - Rate: 312 - - Index: 50 + Rate: 100 + - Index: 46 Item: Elvira_Card - Rate: 312 - - Index: 51 + Rate: 100 + - Index: 47 Item: Lora_Card - Rate: 312 - - Index: 52 + Rate: 100 + - Index: 48 Item: Rudo_Card - Rate: 312 + Rate: 100 + - Index: 49 + Item: UndeadKnightM_Card + Rate: 5 + - Index: 50 + Item: UndeadKnightF_Card + Rate: 5 + - Index: 51 + Item: Owl_Viscount_Card + Rate: 500 + - Index: 52 + Item: Owl_Marquees_Card + Rate: 500 - Index: 53 Item: IFN_Toad_Card - Rate: 312 + Rate: 100 - Index: 54 Item: IFN_V_Wolf_Card - Rate: 312 + Rate: 100 - Index: 55 Item: IFN_Vocal_Card - Rate: 312 + Rate: 100 - Index: 56 Item: IFN_Eclipse_Card - Rate: 312 + Rate: 100 - Index: 57 Item: IFN_Chimera_Card - Rate: 312 + Rate: 100 - Index: 58 - Item: Owl_Duke_Card - Rate: 1559 + Item: Real_Eremes_Card + Rate: 1 + Announced: true - Index: 59 - Item: Owl_Baron_Card - Rate: 1559 + Item: Real_Magaleta_Card + Rate: 1 + Announced: true - Index: 60 - Item: Cat_O_Nine_Tail_Card - Rate: 1559 + Item: Real_Katrinn_Card + Rate: 1 + Announced: true - Index: 61 - Item: Gold_Scaraba_Card - Rate: 1559 + Item: Real_Shecil_Card + Rate: 1 + Announced: true - Index: 62 - Item: Owl_Viscount_Card - Rate: 1559 + Item: Real_Harword_Card + Rate: 1 + Announced: true - Index: 63 - Item: Owl_Marquees_Card - Rate: 1559 + Item: Real_Seyren_Card + Rate: 1 + Announced: true - Index: 64 - Item: Hardrock_Mommos_Card - Rate: 1871 + Item: Real_Randel_Card + Rate: 1 + Announced: true - Index: 65 - Item: Tendrilion_Card - Rate: 1871 + Item: Real_Flamel_Card + Rate: 1 + Announced: true - Index: 66 - Item: Chepet_Card - Rate: 2183 + Item: Real_Ceila_Card + Rate: 1 + Announced: true - Index: 67 - Item: Choco_Card - Rate: 2183 + Item: Real_Chen_Card + Rate: 1 + Announced: true - Index: 68 - Item: Kobold_Leader_Card - Rate: 2183 + Item: Real_Gertie_Card + Rate: 1 + Announced: true - Index: 69 - Item: Dragon_Fly_Card - Rate: 3118 + Item: Real_Trentini_Card + Rate: 1 + Announced: true - Index: 70 - Item: Vagabond_Wolf_Card - Rate: 3118 + Item: Real_Alphoccio_Card + Rate: 1 + Announced: true - Index: 71 - Item: Mastering_Card - Rate: 3118 + Item: Bomi_Card + Rate: 1 + Announced: true - Index: 72 - Item: Mutant_Dragon_Card - Rate: 3118 + Item: As_Bdy_Knight_Card + Rate: 1 + Announced: true - Index: 73 - Item: Chimera_Card - Rate: 3118 + Item: As_Wind_Ghost_Card + Rate: 1 + Announced: true - Index: 74 - Item: Toad_Card - Rate: 3118 + Item: Gigantes_Card + Rate: 5 - Index: 75 - Item: Hydro_Card - Rate: 3118 + Item: Faceworm_D_Card + Rate: 5 - Index: 76 - Item: Retribution_Card - Rate: 3118 + Item: Irene_Elder_Card + Rate: 5 - Index: 77 - Item: Observation_Card - Rate: 3118 + Item: Dy_Card + Rate: 50 - Index: 78 - Item: Shelter_Card - Rate: 3118 + Item: Fei_Kanabian_Card + Rate: 5 - Index: 79 - Item: Solace_Card - Rate: 3118 + Item: Chaos_Acolyte_Card + Rate: 1 + Announced: true - Index: 80 - Item: Tha_Maero_Card - Rate: 3118 + Item: Knight_Sakray_Card + Rate: 1 + Announced: true - Index: 81 - Item: Tha_Odium_Card - Rate: 3118 + Item: Ahat_Card + Rate: 5 - Index: 82 - Item: Tha_Despero_Card - Rate: 3118 + Item: Shnaim_Card + Rate: 5 - Index: 83 - Item: Tha_Dolor_Card - Rate: 3118 + Item: Brinaranea_Card + Rate: 5 - Index: 84 - Item: Skeggiold_Card - Rate: 3118 - - Index: 85 - Item: Galion_Card - Rate: 3118 - - Index: 86 - Item: Byorgue_Card - Rate: 3118 - - Index: 87 - Item: Sword_Guardian_Card - Rate: 3118 - - Index: 88 - Item: Bow_Guardian_Card - Rate: 3118 - - Index: 89 - Item: Salamander_Card - Rate: 3118 - - Index: 90 - Item: Kasa_Card - Rate: 3118 - - Index: 91 - Item: Necromancer_Card - Rate: 3118 + Item: Muspellskoll_Card + Rate: 5 - Group: MAGICIAN_CARD_BOX SubGroups: - SubGroup: 0 @@ -19747,6 +21244,9 @@ Body: Item: Magic_Candy Amount: 10 UniqueId: true + - Index: 1 + Item: Lucky_Egg_C7 + UniqueId: true - Group: MAJESTIC_DEVIL_SCROLL SubGroups: - SubGroup: 1 @@ -19928,8 +21428,10 @@ Body: List: - Index: 0 Item: Ptotection_Seagod_Box + UniqueId: true - Index: 1 Item: Octo_Hstick_Box + UniqueId: true - Group: MASK SubGroups: - SubGroup: 1 @@ -20839,7 +22341,7 @@ Body: List: - Index: 0 Item: Yellow_Baseball_Cap - Rate: 1 + Rate: 10 UniqueId: true - Index: 1 Item: Valkyrie_Feather_Band @@ -20851,51 +22353,51 @@ Body: UniqueId: true - Index: 3 Item: Afro_Wig - Rate: 1 + Rate: 50 UniqueId: true - Index: 4 Item: Happy_Wig - Rate: 1 + Rate: 80 UniqueId: true - Index: 5 Item: Shiny_Wig - Rate: 1 + Rate: 80 UniqueId: true - Index: 6 Item: Ring_Of_Water - Rate: 2 + Rate: 20 UniqueId: true - Index: 7 Item: Ring_Of_Fire - Rate: 2 + Rate: 20 UniqueId: true - Index: 8 Item: Dun_Tele_Scroll1 - Rate: 2 + Rate: 20 UniqueId: true - Index: 9 Item: Dun_Tele_Scroll1_Box - Rate: 5 + Rate: 50 UniqueId: true - Index: 10 Item: Shadow_Armor_S_Box10 - Rate: 5 + Rate: 50 UniqueId: true - Index: 11 Item: Holy_Armor_S_Box10 - Rate: 5 + Rate: 50 UniqueId: true - Index: 12 Item: Small_Life_Potion_Box30 - Rate: 200 + Rate: 100 UniqueId: true - Index: 13 Item: Med_Life_Potion_Box30 - Rate: 200 + Rate: 100 UniqueId: true - Index: 14 Item: S_Def_Potion_Box30 - Rate: 200 + Rate: 100 UniqueId: true - Index: 15 Item: S_Mdef_Potion_Box30 @@ -20907,7 +22409,7 @@ Body: UniqueId: true - Index: 17 Item: Regeneration_Box10 - Rate: 205 + Rate: 100 UniqueId: true - Group: MYSTERIOUS_TRAVEL_SACK2 SubGroups: @@ -21066,72 +22568,72 @@ Body: - SubGroup: 1 List: - Index: 0 - Item: Charming_Ribbon - Rate: 1 + Item: Twin_Ribbon + Rate: 30 UniqueId: true - Index: 1 - Item: Twin_Ribbon - Rate: 2 + Item: Ribbon_Of_Bride + Rate: 38 UniqueId: true - Index: 2 - Item: Ribbon_Pink - Rate: 2 + Item: Big_Sis'_Ribbon + Rate: 30 UniqueId: true - Index: 3 - Item: Ribbon_Orange - Rate: 2 + Item: Ribbon_Pink + Rate: 50 UniqueId: true - Index: 4 - Item: Ribbon_White - Rate: 2 + Item: Ribbon_Orange + Rate: 50 UniqueId: true - Index: 5 - Item: Red_Glasses - Rate: 1 + Item: Ribbon_White + Rate: 50 UniqueId: true - Index: 6 - Item: Ribbon_Of_Bride - Rate: 2 + Item: Red_Glasses + Rate: 32 UniqueId: true - Index: 7 - Item: Dun_Tele_Scroll1_Box - Rate: 5 + Item: Dun_Tele_Scroll1 + Rate: 10 UniqueId: true - Index: 8 - Item: Max_Weight_Up_Box - Rate: 80 + Item: Dun_Tele_Scroll1_Box + Rate: 50 UniqueId: true - Index: 9 - Item: Small_Life_Potion_Box30 - Rate: 203 + Item: Shadow_Armor_S_Box10 + Rate: 50 UniqueId: true - Index: 10 - Item: Med_Life_Potion_Box30 - Rate: 203 + Item: Holy_Armor_S_Box10 + Rate: 50 UniqueId: true - Index: 11 - Item: Regeneration_Box10 - Rate: 203 + Item: Small_Life_Potion_Box30 + Rate: 100 UniqueId: true - Index: 12 - Item: Shadow_Armor_S_Box10 - Rate: 5 + Item: Med_Life_Potion_Box30 + Rate: 100 UniqueId: true - Index: 13 - Item: Holy_Armor_S_Box10 - Rate: 5 + Item: S_Def_Potion_Box30 + Rate: 100 UniqueId: true - Index: 14 - Item: S_Def_Potion_Box30 - Rate: 203 - UniqueId: true - - Index: 15 Item: S_Mdef_Potion_Box30 Rate: 80 UniqueId: true + - Index: 15 + Item: Max_Weight_Up_Box + Rate: 80 + UniqueId: true - Index: 16 - Item: Dun_Tele_Scroll1 - Rate: 1 + Item: Regeneration_Box10 + Rate: 100 UniqueId: true - Group: MY_SCROLL1 SubGroups: @@ -21337,122 +22839,91 @@ Body: - SubGroup: 1 List: - Index: 0 - Item: Str_Dish_Box - Rate: 1500 + Item: Silver_Tiara + Rate: 1 + UniqueId: true - Index: 1 - Item: Agi_Dish_Box - Rate: 1500 + Item: Magic_Card_Album + Rate: 5 + UniqueId: true - Index: 2 - Item: Int_Dish_Box - Rate: 1500 + Item: Guyak_Pudding + Rate: 180 + Amount: 10 + UniqueId: true - Index: 3 - Item: Dex_Dish_Box - Rate: 1500 + Item: Zeny_Scroll + Rate: 180 + Amount: 10 + UniqueId: true - Index: 4 - Item: Luk_Dish_Box - Rate: 1500 + Item: Clothing_Dye_Coupon + Rate: 50 + Amount: 2 + UniqueId: true - Index: 5 - Item: Vit_Dish_Box - Rate: 1500 + Item: Marcher_Hat + Rate: 1 + UniqueId: true - Index: 6 Item: Yggdrasilberry_Box_ - Rate: 950 - - Index: 7 - Item: Superb_Fish_Box50 - Rate: 50 - - SubGroup: 2 - List: - - Index: 0 - Item: Berzebub_Card - Rate: 1 - Announced: true - - Index: 1 - Item: Sealed_Kiel_Card - Rate: 1 - Announced: true - - Index: 2 - Item: Sealed_Pharaoh_Card - Rate: 3 - Announced: true - - Index: 3 - Item: Fallen_Angel_Wing - Rate: 10 - Announced: true - UniqueId: true - - Index: 4 - Item: Black_Devil_Mask_ - Rate: 5 - Announced: true - UniqueId: true - - Index: 5 - Item: Yellow_Baseball_Cap - Rate: 50 - Announced: true - UniqueId: true - - Index: 6 - Item: Pink_Pajamas_Hat - Rate: 30 - Announced: true + Rate: 100 UniqueId: true - Index: 7 - Item: Flame_Sprits_Armor_ - Rate: 50 - Announced: true + Item: Dead_Tree_Branch_Box1 + Rate: 132 UniqueId: true - Index: 8 - Item: YellowBunny_Hairband - Rate: 500 - Announced: true + Item: Megaphone_Box + Rate: 150 UniqueId: true - Index: 9 - Item: Max_Weight_Up_Box - Rate: 200 - Announced: true + Item: Mini_Propeller_ + Rate: 1 + UniqueId: true - Index: 10 - Item: Bloody_Dead_Branch - Rate: 300 - Announced: true + Item: Token_Of_Siegfried_Box + Rate: 100 + UniqueId: true - Index: 11 - Item: 17Carat_Dia - Rate: 1250 - - Index: 12 - Item: Guyak_Pudding - Rate: 2000 - Amount: 5 - - Index: 13 - Item: Psychic_ArmorS - Rate: 2000 - Amount: 10 - - Index: 14 - Item: Fruit_Of_Mastela_Box2 - Rate: 2000 - - Index: 15 - Item: Blue_Herb_Box2 - Rate: 1600 + Item: Old_Violet_Box + Rate: 100 + Amount: 2 + UniqueId: true - Group: NOIVE_BOX SubGroups: - - SubGroup: 1 + - SubGroup: 0 List: - Index: 0 - Item: Cracked_Buckler - Rate: 1 - Duration: 10080 + Item: E_Blessing_10_Scroll + Amount: 50 - Index: 1 - Item: Old_Pant - Rate: 1 - Duration: 10080 + Item: E_Inc_Agi_10_Scroll + Amount: 50 - Index: 2 - Item: Boots_Perforated - Rate: 1 - Duration: 10080 + Item: E_Small_Life_Potion + Amount: 30 - Index: 3 - Item: Cheap_Running_Shirts - Rate: 1 - Duration: 10080 + Item: E_Med_Life_Potion + Amount: 30 - Index: 4 - Item: Old_Bandanna - Rate: 1 - Duration: 10080 + Item: E_Mysterious_Water + Amount: 30 + - Index: 5 + Item: Comp_Almighty + Amount: 20 + - Index: 6 + Item: Comp_Power_Booster + Amount: 20 + - Index: 7 + Item: E_Infinity_Drink + Amount: 20 + - Index: 8 + Item: Comp_Small_Mana_Potion + Amount: 20 + - Index: 9 + Item: World_Tour_Ticket + Amount: 20 - Group: OCTO_HSTICK_BOX SubGroups: - SubGroup: 0 @@ -21560,68 +23031,45 @@ Body: Rate: 60 - Group: OLD_ORE_BOX SubGroups: - - SubGroup: 1 + - SubGroup: 0 List: - Index: 0 - Item: Emperium - Rate: 50 - - Index: 1 - Item: Oridecon_Stone - Rate: 80 - - Index: 2 - Item: Elunium_Stone - Rate: 70 - - Index: 3 - Item: Gold - Rate: 10 - - Index: 4 Item: Oridecon - Rate: 20 - - Index: 5 + Amount: 2 + - Index: 1 Item: Elunium - Rate: 20 - - Index: 6 - Item: Boody_Red - Rate: 100 - - Index: 7 - Item: Crystal_Blue - Rate: 100 - - Index: 8 - Item: Wind_Of_Verdure - Rate: 100 - - Index: 9 - Item: Yellow_Live - Rate: 100 - - Index: 10 - Item: Flame_Heart - Rate: 40 - - Index: 11 - Item: Mistic_Frozen - Rate: 40 - - Index: 12 - Item: Rough_Wind - Rate: 40 - - Index: 13 - Item: Great_Nature - Rate: 40 - - Index: 14 - Item: Iron - Rate: 380 - - Index: 15 - Item: Steel + Amount: 2 + - SubGroup: 2 + List: + - Index: 0 + Item: Oridecon_Stone + Rate: 150 + Amount: 3 + - Index: 1 + Item: Elunium_Stone + Rate: 150 + Amount: 3 + - Index: 2 + Item: Carnium + Rate: 50 + - Index: 3 + Item: Bradium + Rate: 50 + - Index: 4 + Item: Crystal_Jewel__ + Rate: 100 + Amount: 2 + - Index: 5 + Item: Gemstone + Rate: 200 + Amount: 5 + - Index: 6 + Item: Stone + Rate: 200 + Amount: 4 + - Index: 7 + Item: Gold Rate: 50 - - Index: 16 - Item: Iron_Ore - Rate: 600 - - Index: 17 - Item: Coal - Rate: 80 - - Index: 18 - Item: Phracon - Rate: 600 - - Index: 19 - Item: Emveretarcon - Rate: 380 - Group: ORE SubGroups: - SubGroup: 1 @@ -21691,82 +23139,65 @@ Body: - SubGroup: 1 List: - Index: 0 - Item: Yggdrasilberry_Box_ - Rate: 1420 + Item: Bubble_Gum_Box + Rate: 150 UniqueId: true - Index: 1 - Item: Luk_Dish_Box - Rate: 1420 + Item: Token_Of_Siegfried_Box + Rate: 20 UniqueId: true - Index: 2 - Item: Kafra_Card_Box - Rate: 1420 + Item: Yggdrasilberry_Box_ + Rate: 100 UniqueId: true - Index: 3 - Item: Token_Of_Siegfried_Box - Rate: 1420 + Item: Vit_Dish_Box + Rate: 150 UniqueId: true - Index: 4 - Item: Insurance_Package - Rate: 1420 + Item: Silver_Tiara_ + Rate: 3 UniqueId: true - Index: 5 - Item: Zealotus_Scroll - Rate: 300 - Amount: 5 + Item: Neuralizer_Box + Rate: 5 UniqueId: true - Index: 6 - Item: Assumptio_5_Scroll_Box - Rate: 1400 + Item: Enriched_Elunium_Box + Rate: 55 UniqueId: true - Index: 7 - Item: Max_Weight_Up_Box - Rate: 500 + Item: Guyak_Pudding + Rate: 150 + Amount: 10 UniqueId: true - Index: 8 - Item: B_Dragon_Hat_Box - Rate: 150 - Announced: true + Item: Wreath + Rate: 3 UniqueId: true - Index: 9 - Item: Rain_Cloud - Rate: 87 - Announced: true + Item: Bloody_Dead_Branch + Rate: 100 UniqueId: true - Index: 10 - Item: Gold_Ingot_Poring_Hat - Rate: 3 - Announced: true + Item: Enriched_Oridecon_Box + Rate: 80 UniqueId: true - Index: 11 - Item: Maneater_Flower_Hat - Rate: 150 - Announced: true + Item: Bison_Horn + Rate: 21 UniqueId: true - Index: 12 - Item: Chilly_Breath - Rate: 100 - Announced: true + Item: Token_Of_Siegfried_Box + Rate: 10 UniqueId: true - Index: 13 - Item: Choco_Stick_In_Mouth - Rate: 100 - Announced: true + Item: Light_White_Pot_Box + Rate: 150 UniqueId: true - Index: 14 - Item: Eyes_Of_Ifrit - Rate: 5 - Announced: true - UniqueId: true - - Index: 15 - Item: Majoruros_Horn - Rate: 100 - Announced: true - UniqueId: true - - Index: 16 - Item: Sealed_D_Lord_Card - Rate: 5 - Announced: true + Item: Gold_Tiara_ + Rate: 3 UniqueId: true - Group: PASSION_FB_HAT_BOX SubGroups: @@ -21868,16 +23299,16 @@ Body: UniqueId: true - Index: 2 Item: Enriched_Oridecon - Rate: 80 + Rate: 50 UniqueId: true - Index: 3 Item: Kafra_Card - Rate: 300 + Rate: 340 Amount: 2 UniqueId: true - Index: 4 Item: Adrenaline_Scroll - Rate: 300 + Rate: 290 Amount: 2 UniqueId: true - Index: 5 @@ -21887,6 +23318,7 @@ Body: - Index: 6 Item: Red_Deviruchi_Cap Rate: 10 + Announced: true UniqueId: true - Group: PET_EGG_SCROLL10 SubGroups: @@ -22018,16 +23450,16 @@ Body: - Index: 1 Item: Vit_Dish10_ Rate: 150 - Amount: 10 + Amount: 5 UniqueId: true - Index: 2 Item: Old_Violet_Box Rate: 80 UniqueId: true - Index: 3 - Item: Dex_Dish10_ + Item: Dex_Dish10 Rate: 150 - Amount: 10 + Amount: 5 UniqueId: true - Index: 4 Item: Megaphone_ @@ -22040,9 +23472,9 @@ Body: Amount: 5 UniqueId: true - Index: 6 - Item: Luk_Dish10_ + Item: PVP_Tele_Scroll Rate: 180 - Amount: 10 + Amount: 5 UniqueId: true - Index: 7 Item: Elven_Ears @@ -22071,12 +23503,12 @@ Body: - Index: 2 Item: Enriched_Oridecon Rate: 170 - Amount: 5 + Amount: 3 UniqueId: true - Index: 3 Item: Enriched_Elunium Rate: 300 - Amount: 5 + Amount: 3 UniqueId: true - Index: 4 Item: Zeny_Scroll @@ -22090,7 +23522,7 @@ Body: - Index: 6 Item: Fruit_Of_Mastela Rate: 100 - Amount: 15 + Amount: 7 UniqueId: true - Index: 7 Item: Blue_Herb @@ -22121,13 +23553,13 @@ Body: UniqueId: true - Index: 2 Item: Enriched_Oridecon - Rate: 150 - Amount: 5 + Rate: 100 + Amount: 3 UniqueId: true - Index: 3 Item: Enriched_Elunium - Rate: 250 - Amount: 5 + Rate: 300 + Amount: 3 UniqueId: true - Index: 4 Item: Zeny_Scroll @@ -22141,12 +23573,12 @@ Body: - Index: 6 Item: Fruit_Of_Mastela Rate: 100 - Amount: 15 + Amount: 7 UniqueId: true - Index: 7 Item: Grape_Juice Rate: 100 - Amount: 20 + Amount: 9 UniqueId: true - Index: 8 Item: Insurance @@ -22174,22 +23606,22 @@ Body: UniqueId: true - Index: 2 Item: Token_Of_Siegfried - Rate: 200 + Rate: 150 Amount: 2 UniqueId: true - Index: 3 Item: Giant_Fly_Wing - Rate: 200 + Rate: 250 Amount: 2 UniqueId: true - Index: 4 Item: Aspersio_5_Scroll - Rate: 200 + Rate: 250 Amount: 2 UniqueId: true - Index: 5 Item: Bubble_Gum - Rate: 150 + Rate: 100 Amount: 2 UniqueId: true - Index: 6 @@ -22202,7 +23634,7 @@ Body: List: - Index: 0 Item: Battle_Manual - Rate: 100 + Rate: 150 Amount: 2 UniqueId: true - Index: 1 @@ -22212,16 +23644,16 @@ Body: UniqueId: true - Index: 2 Item: Enriched_Oridecon - Rate: 80 + Rate: 50 UniqueId: true - Index: 3 Item: Kafra_Card - Rate: 300 + Rate: 200 Amount: 2 UniqueId: true - Index: 4 Item: Adrenaline_Scroll - Rate: 300 + Rate: 200 Amount: 2 UniqueId: true - Index: 5 @@ -22230,7 +23662,7 @@ Body: UniqueId: true - Index: 6 Item: Pink_Drooping_Kitty - Rate: 100 + Rate: 10 UniqueId: true - Group: PET_EGG_SCROLL4 SubGroups: @@ -22238,12 +23670,12 @@ Body: List: - Index: 0 Item: Battle_Manual - Rate: 90 + Rate: 150 Amount: 2 UniqueId: true - Index: 1 Item: Wind_Walk_10_Scroll - Rate: 150 + Rate: 200 Amount: 2 UniqueId: true - Index: 2 @@ -22263,7 +23695,7 @@ Body: UniqueId: true - Index: 5 Item: Bubble_Gum - Rate: 150 + Rate: 200 Amount: 2 UniqueId: true - Index: 6 @@ -22281,7 +23713,7 @@ Body: UniqueId: true - Index: 1 Item: Enriched_Elunium - Rate: 135 + Rate: 50 UniqueId: true - Index: 2 Item: Token_Of_Siegfried @@ -22290,7 +23722,7 @@ Body: UniqueId: true - Index: 3 Item: Giant_Fly_Wing - Rate: 300 + Rate: 200 Amount: 2 UniqueId: true - Index: 4 @@ -23138,19 +24570,24 @@ Body: - SubGroup: 0 List: - Index: 0 - Item: Repair_Scroll + Item: Repair_Scroll_ + Amount: 5 UniqueId: true - Index: 1 Item: Iron_Ore + Amount: 5 UniqueId: true - Index: 2 Item: Iron + Amount: 5 UniqueId: true - Index: 3 Item: Oridecon_Stone + Amount: 5 UniqueId: true - Index: 4 Item: Steel + Amount: 5 UniqueId: true - Group: REQUIEM_SCROLL SubGroups: @@ -23408,7 +24845,7 @@ Body: - Index: 2 Item: Enriched_Slim_Pot Amount: 30 - - SubGroup: 1 + - SubGroup: 2 List: - Index: 0 Item: Rafini_Staff @@ -23439,38 +24876,17 @@ Body: - SubGroup: 1 List: - Index: 0 - Item: Fruit_Of_Mastela - Rate: 200 - Amount: 30 + Item: C_Rose_Corsage + Rate: 330 - Index: 1 - Item: White_Slim_Potion - Rate: 150 - Amount: 10 + Item: C_Tha_Despero_Mask + Rate: 10 - Index: 2 - Item: Yggdrasilberry_Box - Rate: 150 + Item: C_Sinsuncho_Hat + Rate: 330 - Index: 3 - Item: Guildsman_Recruiter - Rate: 4 - - Index: 4 - Item: Megaphone_Box - Rate: 150 - - Index: 5 - Item: Token_Of_Siegfried_Box - Rate: 100 - - Index: 6 - Item: Royal_Jelly_Box - Rate: 200 - - Index: 7 - Item: Insurance_Package - Rate: 44 - - Index: 8 - Item: Ygnizem_Card - Rate: 1 - - Index: 9 - Item: B_Ygnizem_Card - Rate: 1 - Amount: 50 + Item: C_Spore_Hat + Rate: 330 - Group: RWC_PARTI_BOX SubGroups: - SubGroup: 1 @@ -23488,6 +24904,7 @@ Body: - Index: 3 Item: Cookie_Bag Rate: 90 + Amount: 2 - Index: 4 Item: Mysterious_Can2 Rate: 70 @@ -23577,11 +24994,9 @@ Body: - Index: 1 Item: Guarantee_Armor_7Up Rate: 90 - Announced: true - Index: 2 Item: Guarantee_Weapon_7Up Rate: 90 - Announced: true - Index: 3 Item: Guarantee_Armor_9Up Rate: 5 @@ -23597,14 +25012,16 @@ Body: Item: Poison_Bottle_Box2 Rate: 1000 - Index: 7 - Item: Bubble_Gum_Box5 + Item: Comp_Bubble_Gum Rate: 1500 + Amount: 2 - Index: 8 - Item: 17Carat_Dia + Item: Treasure_Box Rate: 1000 - Index: 9 - Item: Battle_Manual_Box5 + Item: Comp_Battle_Manual Rate: 1500 + Amount: 2 - Index: 10 Item: Old_C_Album_Weapon Rate: 500 @@ -23618,7 +25035,6 @@ Body: - Index: 13 Item: Magic_Card_Album Rate: 100 - Announced: true - Index: 14 Item: RWC_Memory_Staff Rate: 150 @@ -23633,12 +25049,11 @@ Body: Announced: true - Index: 17 Item: Rainbow_Feather_Deco - Rate: 150 + Rate: 140 Announced: true - Index: 18 Item: C_Rainbow_Feather_Deco - Rate: 110 - Announced: true + Rate: 120 - Group: RWC_SPECIAL_SCROLL SubGroups: - SubGroup: 1 @@ -23646,37 +25061,48 @@ Body: - Index: 0 Item: Party_Recruiter_Hat Rate: 4 + UniqueId: true - Index: 1 Item: Convex_Mirror Rate: 150 + UniqueId: true - Index: 2 Item: Megaphone_Box Rate: 200 + UniqueId: true - Index: 3 Item: Enriched_Elunium_Box Rate: 50 + UniqueId: true - Index: 4 Item: Enriched_Oridecon_Box Rate: 50 + UniqueId: true - Index: 5 Item: Daydric_Card Rate: 2 + UniqueId: true - Index: 6 Item: Pharaoh_Card Rate: 2 + UniqueId: true - Index: 7 Item: Marc_Card Rate: 2 + UniqueId: true - Index: 8 Item: Royal_Jelly_Box Rate: 200 + UniqueId: true - Index: 9 Item: Seed_Of_Yggdrasil Rate: 190 Amount: 50 + UniqueId: true - Index: 10 Item: Str_Dish_Box Rate: 150 + UniqueId: true - Group: RWC_SUPER_SCROLL SubGroups: - SubGroup: 1 @@ -23899,7 +25325,7 @@ Body: List: - Index: 0 Item: Sahkkat_C - Duration: 10080 + Duration: 20160 UniqueId: true - Group: SAKURA_SCROLL SubGroups: @@ -24781,23 +26207,23 @@ Body: - SubGroup: 1 List: - Index: 0 - Item: Force3 - Rate: 83 + Item: Force1 + Rate: 1167 - Index: 1 - Item: Intellect3 - Rate: 83 + Item: Intellect1 + Rate: 1167 - Index: 2 - Item: Swiftness3 - Rate: 83 + Item: Swiftness1 + Rate: 1167 - Index: 3 - Item: Tough3 - Rate: 83 + Item: Tough1 + Rate: 1167 - Index: 4 - Item: Artful3 - Rate: 83 + Item: Artful1 + Rate: 1167 - Index: 5 - Item: Fortune3 - Rate: 83 + Item: Fortune1 + Rate: 1167 - Index: 6 Item: Force2 Rate: 416 @@ -24817,23 +26243,47 @@ Body: Item: Fortune2 Rate: 416 - Index: 12 - Item: Force1 - Rate: 1167 + Item: Force3 + Rate: 83 - Index: 13 - Item: Intellect1 - Rate: 1167 + Item: Intellect3 + Rate: 83 - Index: 14 - Item: Swiftness1 - Rate: 1167 + Item: Swiftness3 + Rate: 83 - Index: 15 - Item: Tough1 - Rate: 1167 + Item: Tough3 + Rate: 83 - Index: 16 - Item: Artful1 - Rate: 1167 + Item: Artful3 + Rate: 83 - Index: 17 - Item: Fortune1 - Rate: 1167 + Item: Fortune3 + Rate: 83 + - SubGroup: 2 + List: + - Index: 0 + Item: Frost_Crystal + Rate: 400 + - Index: 1 + Item: Treasure_Box + Rate: 100 + - Index: 2 + Item: White_Slim_Potion + Rate: 3500 + Amount: 10 + - Index: 3 + Item: Blue_Potion + Rate: 4000 + Amount: 10 + - Index: 4 + Item: Seed_Of_Yggdrasil + Rate: 1000 + Amount: 5 + - Index: 5 + Item: Yggdrasilberry + Rate: 1000 + Amount: 3 - Group: SQUAD_PRIZE2 SubGroups: - SubGroup: 1 @@ -25363,133 +26813,131 @@ Body: Item: C_Cat_Santa_Hat Rate: 1 - Index: 1 - Item: Old_Blue_Box - Rate: 1 - - Index: 2 - Item: Oh_Holy_Night - Rate: 1 - - Index: 3 - Item: Angeling_Potion - Rate: 1 - Amount: 3 - - Index: 4 - Item: Solo_Cookie + Item: Fire_Cracker_Xmas Rate: 1 Amount: 5 - - Index: 5 + - Index: 2 + Item: Old_Blue_Box + Rate: 1 + - Index: 3 Item: Buche_De_Noel Rate: 1 Amount: 5 + - Index: 4 + Item: Vivid_Notation + Rate: 1 + Amount: 5 + - Index: 5 + Item: Oh_Holy_Night + Rate: 1 - Index: 6 Item: Event_Cake Rate: 1 Amount: 5 - Index: 7 - Item: Vivid_Notation + Item: Solo_Cookie Rate: 1 Amount: 5 + - Index: 8 + Item: Angeling_Potion + Rate: 1 + Amount: 3 - Group: SOLO_GIFT_BASKET SubGroups: - - SubGroup: 1 + - SubGroup: 0 List: - Index: 0 Item: Lovely_Choco_Tart - Rate: 1 Amount: 5 - Index: 1 Item: Cute_Strawberry_Choco - Rate: 1 Amount: 3 - Index: 2 Item: White_Chocolate - Rate: 1 Amount: 3 - Index: 3 Item: Chocolate_Drink - Rate: 1 Amount: 4 - Index: 4 Item: HandMade_Chocolate - Rate: 1 Amount: 10 - Index: 5 Item: HandMade_Chocolate_ - Rate: 1 Amount: 10 - Group: SOMETHING_CANDY_HOLDER SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Meat - Rate: 5 - Amount: 5 - - Index: 1 Item: Honey Rate: 9 Amount: 3 - - Index: 2 + - Index: 1 Item: Candy Rate: 9 Amount: 7 - - Index: 3 + - Index: 2 Item: Well_Baked_Cookie Rate: 10 Amount: 2 - - Index: 4 + - Index: 3 Item: Piece_Of_Cake Rate: 10 - - Index: 5 + - Index: 4 Item: Bread Rate: 5 Amount: 3 - - Index: 6 - Item: Old_Blue_Box - Rate: 2 - - Index: 7 - Item: Yggdrasilberry - Rate: 2 - - Index: 8 - Item: Old_Card_Album - Rate: 1 - - Index: 9 - Item: Old_Violet_Box - Rate: 1 - - Index: 10 + - Index: 5 Item: Pumpkin_Cake Rate: 7 - - Index: 11 - Item: Trance_Candy_R - Rate: 6 - Amount: 3 - - Index: 12 - Item: Trance_Candy_B - Rate: 6 - Amount: 3 - - Index: 13 - Item: Trance_Candy_Y - Rate: 6 - Amount: 3 - - Index: 14 - Item: Trance_Candy_G - Rate: 6 - Amount: 3 - - Index: 15 + - Index: 6 Item: Pumpkin_Pie Rate: 7 Amount: 3 - - Index: 16 - Item: C_There_Is_Something - Rate: 1 - - Index: 17 - Item: Witch_Shoes - Rate: 1 - - Index: 18 + - Index: 7 + Item: Meat + Rate: 5 + Amount: 5 + - Index: 8 Item: HALLOWEEN_G_BOX Rate: 5 - - Index: 19 + - Index: 9 + Item: Trance_Candy_R + Rate: 6 + Amount: 3 + - Index: 10 + Item: Trance_Candy_B + Rate: 6 + Amount: 3 + - Index: 11 + Item: Trance_Candy_Y + Rate: 6 + Amount: 3 + - Index: 12 + Item: Trance_Candy_G + Rate: 6 + Amount: 3 + - Index: 13 + Item: Old_Blue_Box + Rate: 2 + - Index: 14 + Item: Yggdrasilberry + Rate: 2 + - Index: 15 + Item: Old_Card_Album + Rate: 1 + - Index: 16 + Item: Old_Violet_Box + Rate: 1 + - Index: 17 Item: DARK_INVITATION Rate: 1 + - Index: 18 + Item: C_There_Is_Something + Rate: 1 + - Index: 19 + Item: Witch_Shoes + Rate: 1 - Group: SPEARFISH_BOX1 SubGroups: - SubGroup: 0 @@ -26113,7 +27561,7 @@ Body: List: - Index: 0 Item: Steel_Flower_C - Duration: 10080 + Duration: 20160 UniqueId: true - Group: SUMMER_SCROLL3 SubGroups: @@ -26264,7 +27712,7 @@ Body: Amount: 15 UniqueId: true - Index: 18 - Item: Seed_Of_Yggdrasil + Item: Leaf_Of_Yggdrasil Rate: 166 Amount: 20 UniqueId: true @@ -26351,7 +27799,7 @@ Body: Amount: 15 UniqueId: true - Index: 18 - Item: Seed_Of_Yggdrasil + Item: Leaf_Of_Yggdrasil Rate: 165 Amount: 20 UniqueId: true @@ -26438,7 +27886,7 @@ Body: Amount: 15 UniqueId: true - Index: 18 - Item: Seed_Of_Yggdrasil + Item: Leaf_Of_Yggdrasil Rate: 170 Amount: 20 UniqueId: true @@ -26525,7 +27973,7 @@ Body: Amount: 15 UniqueId: true - Index: 18 - Item: Seed_Of_Yggdrasil + Item: Leaf_Of_Yggdrasil Rate: 165 Amount: 20 UniqueId: true @@ -26602,7 +28050,7 @@ Body: Amount: 15 UniqueId: true - Index: 15 - Item: Seed_Of_Yggdrasil + Item: Leaf_Of_Yggdrasil Rate: 170 Amount: 30 UniqueId: true @@ -26739,7 +28187,7 @@ Body: Amount: 15 UniqueId: true - Index: 15 - Item: Seed_Of_Yggdrasil + Item: Leaf_Of_Yggdrasil Rate: 170 Amount: 30 UniqueId: true @@ -26816,7 +28264,7 @@ Body: Amount: 15 UniqueId: true - Index: 15 - Item: Seed_Of_Yggdrasil + Item: Leaf_Of_Yggdrasil Rate: 170 Amount: 30 UniqueId: true @@ -26893,7 +28341,7 @@ Body: Amount: 15 UniqueId: true - Index: 15 - Item: Seed_Of_Yggdrasil + Item: Leaf_Of_Yggdrasil Rate: 170 Amount: 30 UniqueId: true @@ -27018,7 +28466,7 @@ Body: Amount: 15 UniqueId: true - Index: 12 - Item: Seed_Of_Yggdrasil + Item: Leaf_Of_Yggdrasil Rate: 230 Amount: 30 UniqueId: true @@ -27084,7 +28532,7 @@ Body: Amount: 15 UniqueId: true - Index: 12 - Item: Seed_Of_Yggdrasil + Item: Leaf_Of_Yggdrasil Rate: 230 Amount: 30 UniqueId: true @@ -27150,7 +28598,7 @@ Body: Amount: 15 UniqueId: true - Index: 12 - Item: Seed_Of_Yggdrasil + Item: Leaf_Of_Yggdrasil Rate: 230 Amount: 30 UniqueId: true @@ -27216,7 +28664,7 @@ Body: Amount: 15 UniqueId: true - Index: 12 - Item: Seed_Of_Yggdrasil + Item: Leaf_Of_Yggdrasil Rate: 230 Amount: 30 UniqueId: true @@ -27227,144 +28675,169 @@ Body: UniqueId: true - Group: SUPPORT_PACKAGE SubGroups: - - SubGroup: 1 + - SubGroup: 0 List: - Index: 0 Item: Battle_Manual - Rate: 1 Amount: 2 + UniqueId: true - Index: 1 Item: Bubble_Gum - Rate: 1 Amount: 2 + UniqueId: true - Index: 2 Item: Almighty - Rate: 1 Amount: 2 + UniqueId: true - Index: 3 Item: Mental_Potion - Rate: 1 Amount: 2 + UniqueId: true - Index: 4 + Item: Mysterious_Water + Amount: 6 + UniqueId: true + - Index: 5 Item: Sealed_D_Lord_Scroll - Rate: 1 + UniqueId: true - Group: SUPPORT_PACKAGE_10 SubGroups: - - SubGroup: 1 + - SubGroup: 0 List: - Index: 0 Item: Battle_Manual - Rate: 1 Amount: 20 + UniqueId: true - Index: 1 Item: Bubble_Gum - Rate: 1 Amount: 20 + UniqueId: true - Index: 2 Item: Almighty - Rate: 1 Amount: 20 + UniqueId: true - Index: 3 Item: Mental_Potion - Rate: 1 Amount: 20 + UniqueId: true - Index: 4 + Item: Mysterious_Water + Amount: 60 + UniqueId: true + - Index: 5 Item: Sealed_D_Lord_Scroll - Rate: 1 Amount: 11 + UniqueId: true - Group: SUPPORT_PACKAGE_II SubGroups: - - SubGroup: 1 + - SubGroup: 0 List: - Index: 0 Item: Battle_Manual - Rate: 1 Amount: 2 + UniqueId: true - Index: 1 Item: Bubble_Gum - Rate: 1 Amount: 2 + UniqueId: true - Index: 2 Item: Almighty - Rate: 1 Amount: 2 + UniqueId: true - Index: 3 Item: Mental_Potion - Rate: 1 Amount: 2 + UniqueId: true - Index: 4 - Item: Sealed_Bacsojin_Scroll - Rate: 1 + Item: Mysterious_Water + Amount: 6 + UniqueId: true + - Index: 5 + Item: 2013_RWC_Scroll + UniqueId: true - Group: SUPPORT_PACKAGE_III SubGroups: - - SubGroup: 1 + - SubGroup: 0 List: - Index: 0 Item: Battle_Manual - Rate: 1 Amount: 2 + UniqueId: true - Index: 1 Item: Bubble_Gum - Rate: 1 Amount: 2 + UniqueId: true - Index: 2 Item: Almighty - Rate: 1 Amount: 2 + UniqueId: true - Index: 3 Item: Mental_Potion - Rate: 1 Amount: 2 + UniqueId: true - Index: 4 + Item: Mysterious_Water + Amount: 6 + UniqueId: true + - Index: 5 Item: Sealed_Bacsojin_Scroll - Rate: 1 + UniqueId: true - Group: SUPPORT_PACKAGE_III_10 SubGroups: - - SubGroup: 1 + - SubGroup: 0 List: - Index: 0 Item: Battle_Manual - Rate: 1 Amount: 20 + UniqueId: true - Index: 1 Item: Bubble_Gum - Rate: 1 Amount: 20 + UniqueId: true - Index: 2 Item: Almighty - Rate: 1 Amount: 20 + UniqueId: true - Index: 3 Item: Mental_Potion - Rate: 1 Amount: 20 + UniqueId: true - Index: 4 + Item: Mysterious_Water + Amount: 60 + UniqueId: true + - Index: 5 Item: Sealed_Bacsojin_Scroll - Rate: 1 Amount: 11 + UniqueId: true - Group: SUPPORT_PACKAGE_II_10 SubGroups: - - SubGroup: 1 + - SubGroup: 0 List: - Index: 0 Item: Battle_Manual - Rate: 1 Amount: 20 + UniqueId: true - Index: 1 Item: Bubble_Gum - Rate: 1 Amount: 20 + UniqueId: true - Index: 2 Item: Almighty - Rate: 1 Amount: 20 + UniqueId: true - Index: 3 Item: Mental_Potion - Rate: 1 Amount: 20 + UniqueId: true - Index: 4 - Item: Sealed_Bacsojin_Scroll - Rate: 1 + Item: Mysterious_Water + Amount: 60 + UniqueId: true + - Index: 5 + Item: 2013_RWC_Scroll + Amount: 11 + UniqueId: true - Group: SURPRISE_SCROLL SubGroups: - SubGroup: 1 @@ -27936,35 +29409,43 @@ Body: UniqueId: true - Group: THREE_MASTER_PACKAGE_III SubGroups: - - SubGroup: 1 + - SubGroup: 0 List: - Index: 0 Item: Small_Life_Potion - Rate: 1 Amount: 20 + UniqueId: true - Index: 1 Item: Med_Life_Potion - Rate: 1 Amount: 20 + UniqueId: true - Index: 2 + Item: Mysterious_Water + Amount: 20 + UniqueId: true + - Index: 3 Item: Sealed_M_Flower_Scroll - Rate: 1 + UniqueId: true - Group: THREE_MASTER_PACKAGE_III_10 SubGroups: - - SubGroup: 1 + - SubGroup: 0 List: - Index: 0 Item: Small_Life_Potion - Rate: 1 Amount: 200 + UniqueId: true - Index: 1 Item: Med_Life_Potion - Rate: 1 Amount: 200 + UniqueId: true - Index: 2 + Item: Mysterious_Water + Amount: 200 + UniqueId: true + - Index: 3 Item: Sealed_M_Flower_Scroll - Rate: 1 Amount: 11 + UniqueId: true - Group: THROWABLE SubGroups: - SubGroup: 1 @@ -28151,70 +29632,6 @@ Body: Item: DF_Token_Of_Siegfried Rate: 1 - Group: TRESURE_BOX_WOE - SubGroups: - - SubGroup: 1 - List: - - Index: 0 - Item: Old_Blue_Box - Rate: 6 - - Index: 1 - Item: Union_Of_Tribe - Rate: 6 - - Index: 2 - Item: Poison_Bottle - Rate: 3 - - Index: 3 - Item: Crystal_Jewel__ - Rate: 9 - - Index: 4 - Item: Wind_Arrow_Container - Rate: 24 - - Index: 5 - Item: Stone_Arrow_Container - Rate: 25 - - Index: 6 - Item: Crystal_Arrow_Container - Rate: 26 - - Index: 7 - Item: Set_Of_Taiming_Item - Rate: 12 - - Index: 8 - Item: Wrapped_Mask - Rate: 2 - - Index: 9 - Item: Bundle_Of_Magic_Scroll - Rate: 9 - - Index: 10 - Item: First_Aid_Kit - Rate: 9 - - Index: 11 - Item: Food_Package - Rate: 36 - - Index: 12 - Item: Cookie_Bag - Rate: 48 - - Index: 13 - Item: Bullet_Case - Rate: 27 - - Index: 14 - Item: Bullet_Case_Blood - Rate: 27 - - Index: 15 - Item: Bullet_Case_Silver - Rate: 27 - - Index: 16 - Item: Holy_Arrow_Quiver - Rate: 7 - - Index: 17 - Item: Hometown_Gift - Rate: 6 - - Index: 18 - Item: Cool_Summer_Outfit - Rate: 22 - - Index: 19 - Item: Old_Bleu_Box - Rate: 8 - - Group: TRESURE_BOX_WOE_ SubGroups: - SubGroup: 1 List: @@ -28885,54 +30302,64 @@ Body: - SubGroup: 1 List: - Index: 0 - Item: Int_Dish_Box - Rate: 1400 + Item: Yggdrasilberry_Box + Rate: 191 + UniqueId: true - Index: 1 - Item: Angeling_Pot_Box - Rate: 1477 + Item: Gingerbread + Rate: 150 + Amount: 10 + UniqueId: true - Index: 2 - Item: Dun_Tele_Scroll_Box10 - Rate: 1500 + Item: Guyak_Pudding + Rate: 130 + Amount: 10 + UniqueId: true - Index: 3 - Item: Kafra_Card_Box - Rate: 1200 + Item: S_Def_Potion_Box30 + Rate: 105 + UniqueId: true - Index: 4 - Item: Holy_Armor_S_Box10 - Rate: 1400 + Item: S_Mdef_Potion_Box30 + Rate: 104 + UniqueId: true - Index: 5 - Item: Insurance_Package - Rate: 1200 + Item: Luk_Dish_Box + Rate: 103 + UniqueId: true - Index: 6 - Item: Job_Manual50_Box - Rate: 1200 + Item: Vit_Dish_Box + Rate: 102 + UniqueId: true - Index: 7 - Item: Archangel_Wing - Rate: 10 - Announced: true + Item: Sunflower_Hairpin + Rate: 50 + UniqueId: true - Index: 8 - Item: Baby_Pacifier - Rate: 200 - Announced: true + Item: Scuba_Mask + Rate: 23 + UniqueId: true - Index: 9 - Item: Guarantee_Weapon_5Up - Rate: 200 - Announced: true + Item: Hat_Of_Judge + Rate: 22 + UniqueId: true - Index: 10 - Item: Red_Hood - Rate: 149 - Announced: true + Item: Filir_Hat + Rate: 9 + UniqueId: true - Index: 11 - Item: Sleeping_Kitty_Cat - Rate: 60 - Announced: true + Item: Side_Cap + Rate: 8 + UniqueId: true - Index: 12 - Item: Guarantee_Weapon_9Up - Rate: 3 - Announced: true + Item: Bloody_Dead_Branch + Rate: 2 + Amount: 2 + UniqueId: true - Index: 13 - Item: B_Katrinn_Card + Item: Miracle_Medicine Rate: 1 - Announced: true + UniqueId: true - Group: TW_YELLOW_SCROLL SubGroups: - SubGroup: 1 @@ -29108,39 +30535,54 @@ Body: - SubGroup: 0 List: - Index: 0 + Item: ASPD_Potion + Amount: 5 + UniqueId: true + - Index: 1 Item: Red_Booster Amount: 10 - - Index: 1 - Item: Golden_Treasure_Box + UniqueId: true + - Index: 2 + Item: GoldenTreasureBox + UniqueId: true - Group: UNLIMITED_BOX_II SubGroups: - SubGroup: 0 List: - Index: 0 + Item: ASPD_Potion + Amount: 5 + UniqueId: true + - Index: 1 Item: Red_Booster Amount: 10 - - Index: 1 - Item: Golden_Treasure_Box - Amount: 11 + UniqueId: true - Index: 2 Item: Sealed_Pharaoh_Scroll + UniqueId: true - Group: UNLIMITED_BOX_II_10 SubGroups: - SubGroup: 0 List: - Index: 0 + Item: ASPD_Potion + Amount: 50 + UniqueId: true + - Index: 1 Item: Red_Booster Amount: 100 - - Index: 1 + UniqueId: true + - Index: 2 Item: Sealed_Pharaoh_Scroll Amount: 11 + UniqueId: true - Group: VALENTINE_PLEDGE_BOX SubGroups: - SubGroup: 0 List: - Index: 0 Item: Valentine_Pledge - Duration: 8760 + Duration: 525600 UniqueId: true - Group: VALERIAN_SCROLL SubGroups: @@ -29513,11 +30955,11 @@ Body: Amount: 4 UniqueId: true - Index: 1 - Item: Int_Dish10_ + Item: Str_Dish10_ Amount: 4 UniqueId: true - Index: 2 - Item: Vit_Dish10_ + Item: Int_Dish10_ Amount: 4 UniqueId: true - Index: 3 @@ -29645,7 +31087,7 @@ Body: Amount: 2 UniqueId: true - Index: 2 - Item: Dex_Dish10_ + Item: Vit_Dish10_ Amount: 2 UniqueId: true - Index: 3 @@ -29671,11 +31113,11 @@ Body: Amount: 2 UniqueId: true - Index: 1 - Item: Int_Dish10_ + Item: Str_Dish10_ Amount: 2 UniqueId: true - Index: 2 - Item: Dex_Dish10_ + Item: Int_Dish10_ Amount: 2 UniqueId: true - Index: 3 @@ -29771,7 +31213,7 @@ Body: Amount: 4 UniqueId: true - Index: 2 - Item: Agi_Dish10_ + Item: Vit_Dish10_ Amount: 4 UniqueId: true - Index: 3 @@ -33355,37 +34797,42 @@ Body: Rate: 80 UniqueId: true - Index: 10 - Item: Old_Violet_Box + Item: Old_Gift_Box Rate: 100 Amount: 3 UniqueId: true - Index: 11 + Item: Old_Violet_Box + Rate: 100 + Amount: 3 + UniqueId: true + - Index: 12 Item: Yggdrasilberry Rate: 110 Amount: 30 UniqueId: true - - Index: 12 + - Index: 13 Item: Leaf_Of_Yggdrasil Rate: 100 Amount: 30 UniqueId: true - - Index: 13 + - Index: 14 Item: Crystal_Jewel Rate: 100 Amount: 20 UniqueId: true - - Index: 14 + - Index: 15 Item: Crystal_Jewel__ Rate: 150 Amount: 10 UniqueId: true - - Index: 15 + - Index: 16 Item: Zeny_Scroll Rate: 150 Amount: 10 UniqueId: true - - Index: 16 - Item: Max_Weight_Up_Scroll + - Index: 17 + Item: Max_Weight_Up_Box Rate: 50 Amount: 5 UniqueId: true @@ -33481,112 +34928,87 @@ Body: Item: Event_Cake Rate: 800 Amount: 10 - UniqueId: true - Index: 1 Item: White_Slim_Potion_B Rate: 800 Amount: 5 - UniqueId: true - Index: 2 Item: White_Potion_B Rate: 900 Amount: 5 - UniqueId: true - Index: 3 + Item: Cookie_Bag_B + Rate: 700 + Amount: 3 + - Index: 4 Item: Chocolate_Drink_B Rate: 700 Amount: 3 - UniqueId: true - - Index: 4 + - Index: 5 Item: Blue_Potion_B Rate: 700 Amount: 3 - UniqueId: true - - Index: 5 + - Index: 6 Item: Center_Potion_B Rate: 800 Amount: 3 - UniqueId: true - - Index: 6 + - Index: 7 Item: Berserk_Potion_B Rate: 800 Amount: 3 - UniqueId: true - - Index: 7 + - Index: 8 Item: Awakening_Potion_B Rate: 800 Amount: 3 - UniqueId: true - - Index: 8 + - Index: 9 Item: Yggdrasilberry Rate: 294 Amount: 3 - UniqueId: true - - Index: 9 + - Index: 10 Item: C_Polar_Bear_Cap Rate: 1 - Amount: 1 - UniqueId: true - - Index: 10 + - Index: 11 Item: C_Mini_Tree_J Rate: 1 - Amount: 1 - UniqueId: true - - Index: 11 + - Index: 12 Item: C_Cat_Santa_Hat Rate: 1 - Amount: 1 - UniqueId: true - - Index: 12 + - Index: 13 Item: C_Rudolph_Santa_Hat Rate: 1 - Amount: 1 - UniqueId: true - - Index: 13 + - Index: 14 Item: C_Santa_Hat_2 Rate: 1 - Amount: 1 - UniqueId: true - - Index: 14 + - Index: 15 Item: C_ShineSantaPoring Rate: 1 - Amount: 1 - UniqueId: true - - Index: 15 + - Index: 16 Item: Str_Dish07 Rate: 400 - Amount: 1 - UniqueId: true - - Index: 16 + - Index: 17 Item: Agi_Dish07 Rate: 400 - Amount: 1 - UniqueId: true - - Index: 17 + - Index: 18 Item: Vit_Dish07 Rate: 400 - Amount: 1 - UniqueId: true - - Index: 18 + - Index: 19 Item: Int_Dish07 Rate: 400 - Amount: 1 - UniqueId: true - - Index: 19 + - Index: 20 Item: Dex_Dish07 Rate: 400 - Amount: 1 - UniqueId: true - - Index: 20 + - Index: 21 Item: Luk_Dish07 Rate: 400 - Amount: 1 - UniqueId: true - - Index: 21 + - Index: 22 Item: Old_Card_Album Rate: 100 - Amount: 1 - UniqueId: true + - Index: 23 + Item: Guarantee_Weapon_9Up + Rate: 100 + - Index: 24 + Item: Guarantee_Armor_9Up + Rate: 100 - Group: EASTER_EGG SubGroups: - SubGroup: 1 @@ -33618,11 +35040,9 @@ Body: - Index: 0 Item: Solo_Gift_Basket Rate: 1000 - Amount: 1 - Index: 1 Item: Couple_Event_Basket Rate: 1000 - Amount: 1 - Index: 2 Item: Strawberry_Choco Rate: 2000 @@ -33642,18 +35062,12 @@ Body: - Index: 6 Item: Diamond_Ring Rate: 300 - Amount: 1 - Announced: true - Index: 7 Item: Witherless_Rose Rate: 400 - Amount: 1 - Announced: true - Index: 8 Item: Jewel_Ring Rate: 300 - Amount: 1 - Announced: true - Group: HAPPY_BOX_J SubGroups: - SubGroup: 1 @@ -33756,339 +35170,348 @@ Body: - SubGroup: 1 List: - Index: 0 - Item: S_Ninja_Shield - Rate: 58 - - Index: 1 - Item: S_Taekwon_Shield - Rate: 58 - - Index: 2 - Item: S_DoramPhysical_Shield - Rate: 58 - - Index: 3 - Item: S_DoramMagical_Shield - Rate: 58 - - Index: 4 - Item: S_Rebellion_Armor - Rate: 58 - - Index: 5 - Item: S_Kagerou_Armor - Rate: 58 - - Index: 6 - Item: S_Oboro_Armor - Rate: 58 - - Index: 7 - Item: S_Rebellion_Shoes - Rate: 58 - - Index: 8 - Item: S_Kagerou_Shoes - Rate: 58 - - Index: 9 - Item: S_Oboro_Shoes - Rate: 58 - - Index: 10 - Item: S_DoramPhysical_Armor - Rate: 58 - - Index: 11 - Item: S_DoramPhysical_Shoes - Rate: 58 - - Index: 12 - Item: S_DoramMagical_Armor - Rate: 58 - - Index: 13 - Item: S_DoramMagical_Shoes - Rate: 58 - - Index: 14 - Item: S_Star_Emperor_Armor - Rate: 58 - - Index: 15 - Item: S_Star_Emperor_Shoes - Rate: 58 - - Index: 16 - Item: S_Soul_Reaper_Armor - Rate: 58 - - Index: 17 - Item: S_Soul_Reaper_Shoes - Rate: 58 - - Index: 18 - Item: S_Bard_Shoes - Rate: 59 - - Index: 19 - Item: S_Dancer_Shoes - Rate: 59 - - Index: 20 - Item: S_Bard_Armor - Rate: 59 - - Index: 21 - Item: S_Dancer_Armor - Rate: 59 - - Index: 22 - Item: S_SuperNovice_Weapon - Rate: 59 - - Index: 23 - Item: S_Gunslinger_Weapon - Rate: 59 - - Index: 24 - Item: S_Taekwon_Weapon - Rate: 59 - - Index: 25 - Item: S_Ninja_Weapon - Rate: 59 - - Index: 26 - Item: S_DoramMagical_Weapon - Rate: 59 - - Index: 27 - Item: S_DoramPhysical_Weapon - Rate: 59 - - Index: 28 - Item: S_Minstrel_Weapon - Rate: 59 - - Index: 29 - Item: S_Wanderer_Weapon - Rate: 59 - - Index: 30 - Item: S_Minstrel_Shield - Rate: 59 - - Index: 31 - Item: S_Wanderer_Shield - Rate: 59 - - Index: 32 - Item: S_SuperNovice_Shield - Rate: 59 - - Index: 33 - Item: S_Gunslinger_Shield - Rate: 59 - - Index: 34 - Item: S_Knight_Shoes - Rate: 118 - - Index: 35 - Item: S_Crusader_Shoes - Rate: 118 - - Index: 36 - Item: S_Blacksmith_Shoes - Rate: 118 - - Index: 37 - Item: S_Alchemist_Shoes - Rate: 118 - - Index: 38 - Item: S_Priest_Shoes - Rate: 118 - - Index: 39 - Item: S_Monk_Shoes - Rate: 118 - - Index: 40 - Item: S_Assassin_Shoes - Rate: 118 - - Index: 41 - Item: S_Rogue_Shoes - Rate: 118 - - Index: 42 - Item: S_Wizard_Shoes - Rate: 118 - - Index: 43 - Item: S_Sage_Shoes - Rate: 118 - - Index: 44 - Item: S_Hunter_Shoes - Rate: 118 - - Index: 45 - Item: S_Knight_Armor - Rate: 118 - - Index: 46 - Item: S_Crusader_Armor - Rate: 118 - - Index: 47 - Item: S_Blacksmith_Armor - Rate: 118 - - Index: 48 - Item: S_Alchemist_Armor - Rate: 118 - - Index: 49 - Item: S_Priest_Armor - Rate: 118 - - Index: 50 - Item: S_Monk_Armor - Rate: 118 - - Index: 51 - Item: S_Assassin_Armor - Rate: 118 - - Index: 52 - Item: S_Rogue_Armor - Rate: 118 - - Index: 53 - Item: S_Wizard_Armor - Rate: 118 - - Index: 54 - Item: S_Sage_Armor - Rate: 118 - - Index: 55 - Item: S_Hunter_Armor - Rate: 118 - - Index: 56 - Item: S_Runeknight_Weapon - Rate: 118 - - Index: 57 - Item: S_Royalguard_Weapon - Rate: 118 - - Index: 58 - Item: S_Mechanic_weapon - Rate: 118 - - Index: 59 - Item: S_Genetic_Weapon - Rate: 118 - - Index: 60 - Item: S_Archbishop_Weapon - Rate: 118 - - Index: 61 - Item: S_Sura_weapon - Rate: 118 - - Index: 62 - Item: S_Guillotine_Weapon - Rate: 118 - - Index: 63 - Item: S_Shadowchaser_Weapon - Rate: 118 - - Index: 64 - Item: S_Warlock_Weapon - Rate: 118 - - Index: 65 - Item: S_Sorcerer_Weapon - Rate: 118 - - Index: 66 - Item: S_Ranger_Weapon - Rate: 118 - - Index: 67 - Item: S_Runeknight_Shield - Rate: 118 - - Index: 68 - Item: S_Royalguard_Shield - Rate: 118 - - Index: 69 - Item: S_Mechanic_Shield - Rate: 118 - - Index: 70 - Item: S_Genetic_Shield - Rate: 118 - - Index: 71 - Item: S_Archbishop_Shield - Rate: 118 - - Index: 72 - Item: S_Sura_Shield - Rate: 118 - - Index: 73 - Item: S_Guillotine_Shield - Rate: 118 - - Index: 74 - Item: S_Shadowchaser_Shield - Rate: 118 - - Index: 75 - Item: S_Warlock_Shield - Rate: 118 - - Index: 76 - Item: S_Sorcerer_Shield - Rate: 118 - - Index: 77 - Item: S_Ranger_Shield - Rate: 118 - - Index: 78 Item: S_Swordman_earring - Rate: 235 - - Index: 79 - Item: S_Merchant_earring - Rate: 235 - - Index: 80 - Item: S_Acolyte_earring - Rate: 235 - - Index: 81 - Item: S_Magician_earring - Rate: 235 - - Index: 82 + Rate: 4 + - Index: 1 Item: S_Swordman_Pendant - Rate: 235 - - Index: 83 + Rate: 4 + - Index: 2 + Item: S_Knight_Armor + Rate: 2 + - Index: 3 + Item: S_Knight_Shoes + Rate: 2 + - Index: 4 + Item: S_Runeknight_Shield + Rate: 2 + - Index: 5 + Item: S_Runeknight_Weapon + Rate: 2 + - Index: 6 + Item: S_Crusader_Armor + Rate: 2 + - Index: 7 + Item: S_Crusader_Shoes + Rate: 2 + - Index: 8 + Item: S_Royalguard_Shield + Rate: 2 + - Index: 9 + Item: S_Royalguard_Weapon + Rate: 2 + - Index: 10 + Item: S_Merchant_earring + Rate: 4 + - Index: 11 Item: S_Merchant_Pendant - Rate: 235 - - Index: 84 + Rate: 4 + - Index: 12 + Item: S_Blacksmith_Armor + Rate: 2 + - Index: 13 + Item: S_Blacksmith_Shoes + Rate: 2 + - Index: 14 + Item: S_Mechanic_Shield + Rate: 2 + - Index: 15 + Item: S_Mechanic_weapon + Rate: 2 + - Index: 16 + Item: S_Alchemist_Armor + Rate: 2 + - Index: 17 + Item: S_Alchemist_Shoes + Rate: 2 + - Index: 18 + Item: S_Genetic_Shield + Rate: 2 + - Index: 19 + Item: S_Genetic_Weapon + Rate: 2 + - Index: 20 + Item: S_Acolyte_earring + Rate: 4 + - Index: 21 Item: S_Acolyte_Pendant - Rate: 235 - - Index: 85 - Item: S_Thief_Pendant - Rate: 235 - - Index: 86 - Item: S_Magician_Pendant - Rate: 235 - - Index: 87 - Item: S_Archer_Pendant - Rate: 235 - - Index: 88 + Rate: 4 + - Index: 22 + Item: S_Priest_Armor + Rate: 2 + - Index: 23 + Item: S_Priest_Shoes + Rate: 2 + - Index: 24 + Item: S_Archbishop_Shield + Rate: 2 + - Index: 25 + Item: S_Archbishop_Weapon + Rate: 2 + - Index: 26 + Item: S_Monk_Armor + Rate: 2 + - Index: 27 + Item: S_Monk_Shoes + Rate: 2 + - Index: 28 + Item: S_Sura_Shield + Rate: 2 + - Index: 29 + Item: S_Sura_weapon + Rate: 2 + - Index: 30 Item: S_Thief_earring - Rate: 235 - - Index: 89 + Rate: 4 + - Index: 31 + Item: S_Thief_Pendant + Rate: 4 + - Index: 32 + Item: S_Assassin_Armor + Rate: 2 + - Index: 33 + Item: S_Assassin_Shoes + Rate: 2 + - Index: 34 + Item: S_Guillotine_Shield + Rate: 2 + - Index: 35 + Item: S_Guillotine_Weapon + Rate: 2 + - Index: 36 + Item: S_Rogue_Armor + Rate: 2 + - Index: 37 + Item: S_Rogue_Shoes + Rate: 2 + - Index: 38 + Item: S_Shadowchaser_Shield + Rate: 2 + - Index: 39 + Item: S_Shadowchaser_Weapon + Rate: 2 + - Index: 40 + Item: S_Magician_earring + Rate: 4 + - Index: 41 + Item: S_Magician_Pendant + Rate: 4 + - Index: 42 + Item: S_Wizard_Armor + Rate: 2 + - Index: 43 + Item: S_Wizard_Shoes + Rate: 2 + - Index: 44 + Item: S_Warlock_Shield + Rate: 2 + - Index: 45 + Item: S_Warlock_Weapon + Rate: 2 + - Index: 46 + Item: S_Sage_Armor + Rate: 2 + - Index: 47 + Item: S_Sage_Shoes + Rate: 2 + - Index: 48 + Item: S_Sorcerer_Shield + Rate: 2 + - Index: 49 + Item: S_Sorcerer_Weapon + Rate: 2 + - Index: 50 Item: S_Archer_earring - Rate: 235 + Rate: 4 + - Index: 51 + Item: S_Archer_Pendant + Rate: 4 + - Index: 52 + Item: S_Hunter_Armor + Rate: 2 + - Index: 53 + Item: S_Hunter_Shoes + Rate: 2 + - Index: 54 + Item: S_Ranger_Shield + Rate: 2 + - Index: 55 + Item: S_Ranger_Weapon + Rate: 2 + - Index: 56 + Item: S_Bard_Armor + Rate: 1 + - Index: 57 + Item: S_Bard_Shoes + Rate: 1 + - Index: 58 + Item: S_Minstrel_Shield + Rate: 1 + - Index: 59 + Item: S_Minstrel_Weapon + Rate: 1 + - Index: 60 + Item: S_Dancer_Armor + Rate: 1 + - Index: 61 + Item: S_Dancer_Shoes + Rate: 1 + - Index: 62 + Item: S_Wanderer_Shield + Rate: 1 + - Index: 63 + Item: S_Wanderer_Weapon + Rate: 1 + - Index: 64 + Item: S_SuperNovice_Weapon + Rate: 1 + - Index: 65 + Item: S_Gunslinger_Weapon + Rate: 1 + - Index: 66 + Item: S_Taekwon_Weapon + Rate: 1 + - Index: 67 + Item: S_Ninja_Weapon + Rate: 1 + - Index: 68 + Item: S_DoramMagical_Weapon + Rate: 1 + - Index: 69 + Item: S_DoramPhysical_Weapon + Rate: 1 + - Index: 70 + Item: S_SuperNovice_Shield + Rate: 1 + - Index: 71 + Item: S_Gunslinger_Shield + Rate: 1 + - Index: 72 + Item: S_Taekwon_Shield + Rate: 1 + - Index: 73 + Item: S_Ninja_Shield + Rate: 1 + - Index: 74 + Item: S_DoramMagical_Shield + Rate: 1 + - Index: 75 + Item: S_DoramPhysical_Shield + Rate: 1 + - Index: 76 + Item: S_Rebellion_Armor + Rate: 1 + - Index: 77 + Item: S_Kagerou_Armor + Rate: 1 + - Index: 78 + Item: S_Oboro_Armor + Rate: 1 + - Index: 79 + Item: S_Rebellion_Shoes + Rate: 1 + - Index: 80 + Item: S_Kagerou_Shoes + Rate: 1 + - Index: 81 + Item: S_Oboro_Shoes + Rate: 1 + - Index: 82 + Item: S_DoramPhysical_Armor + Rate: 1 + - Index: 83 + Item: S_DoramPhysical_Shoes + Rate: 1 + - Index: 84 + Item: S_DoramMagical_Armor + Rate: 1 + - Index: 85 + Item: S_DoramMagical_Shoes + Rate: 1 + - Index: 86 + Item: S_Star_Emperor_Armor + Rate: 1 + - Index: 87 + Item: S_Star_Emperor_Shoes + Rate: 1 + - Index: 88 + Item: S_Soul_Reaper_Armor + Rate: 1 + - Index: 89 + Item: S_Soul_Reaper_Shoes + Rate: 1 - Group: SEALED_SCROLL SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Guarantee_Weapon_9Up - Rate: 13 - - Index: 1 - Item: Guarantee_Armor_9Up - Rate: 13 - - Index: 2 Item: Sealed_Card - Rate: 13 + Rate: 10 + Announced: true + - Index: 1 + Item: Guarantee_Weapon_9Up + Rate: 10 + Announced: true + - Index: 2 + Item: Guarantee_Armor_9Up + Rate: 10 + Announced: true - Index: 3 - Item: Gold - Rate: 63 - - Index: 4 Item: Guarantee_Weapon_7Up - Rate: 125 - - Index: 5 + Rate: 100 + Announced: true + - Index: 4 Item: Guarantee_Armor_7Up - Rate: 125 - - Index: 6 - Item: C_Wing_Of_Fly_5Day_Box - Rate: 125 - - Index: 7 + Rate: 100 + Announced: true + - Index: 5 Item: S_Expert_Shoes - Rate: 138 - - Index: 8 + Rate: 110 + Announced: true + - Index: 6 Item: S_Expert_Shield - Rate: 138 - - Index: 9 + Rate: 110 + Announced: true + - Index: 7 Item: S_Beginner_Shoes - Rate: 500 - - Index: 10 + Rate: 400 + - Index: 8 Item: S_Beginner_Shield - Rate: 500 - - Index: 11 + Rate: 400 + - Index: 9 Item: S_Rookie_Shoes - Rate: 500 - - Index: 12 + Rate: 400 + - Index: 10 Item: S_Rookie_Shield - Rate: 500 - - Index: 13 + Rate: 400 + - Index: 11 Item: S_Advanced_Shoes - Rate: 500 - - Index: 14 + Rate: 400 + - Index: 12 Item: S_Advanced_Shield - Rate: 500 - - Index: 15 - Item: Treasure_Box - Rate: 1247 - - Index: 16 - Item: Enchant_Book - Rate: 1250 - - Index: 17 + Rate: 400 + - Index: 13 Item: Costume_Exchange - Rate: 1250 - - Index: 18 + Rate: 1000 + - Index: 14 Item: Poison_Bottle_Box2 - Rate: 1250 - - Index: 19 + Rate: 1000 + - Index: 15 Item: C_Wing_Of_Fly_1Day_Box - Rate: 1250 + Rate: 1000 + - Index: 16 + Item: C_Wing_Of_Fly_5Day_Box + Rate: 100 + - Index: 17 + Item: Enchant_Book + Rate: 1000 + - Index: 18 + Item: Treasure_Box + Rate: 1000 + Amount: 3 + - Index: 19 + Item: Gold + Rate: 50 + Amount: 2 - Group: LI_Nyangvine_Box1_26 SubGroups: - SubGroup: 0 @@ -34111,7 +35534,7 @@ Body: Amount: 200 - Index: 1 Item: Enchant_Stone_Box26 - Amount: 2 + Amount: 5 - Index: 2 Item: Battle_Manual100 Amount: 2 @@ -34124,7 +35547,7 @@ Body: Amount: 400 - Index: 1 Item: Enchant_Stone_Box26 - Amount: 2 + Amount: 10 - Index: 2 Item: Comp_Bubble_Gum Amount: 5 @@ -34137,570 +35560,594 @@ Body: List: - Index: 0 Item: CriticalStone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 1 Item: ConStone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 2 - Item: CastingStone_Robe - Rate: 20 - - Index: 3 Item: Critical_Stone_Robe - Rate: 20 + Rate: 2 + Announced: true + - Index: 3 + Item: CastingStone_Robe + Rate: 2 + Announced: true - Index: 4 Item: SPdrainStone_Robe_D - Rate: 40 + Rate: 4 + Announced: true - Index: 5 Item: SPdrainStone_Top - Rate: 80 + Rate: 8 + Announced: true - Index: 6 Item: CastStone_Robe - Rate: 80 + Rate: 8 + Announced: true - Index: 7 - Item: RangerStone_Robe - Rate: 80 + Item: ASPDStone_Top + Rate: 16 - Index: 8 - Item: ShadowchaserStone_Robe - Rate: 80 + Item: ASPDStone_Robe_D + Rate: 8 + Announced: true - Index: 9 - Item: ArchbishopStone_Robe - Rate: 80 + Item: HPdrainStone_Robe_D + Rate: 8 + Announced: true - Index: 10 - Item: ShadowchaserStone_Robe2 - Rate: 80 + Item: ElectricEffect_Middle + Rate: 16 - Index: 11 - Item: RangerStone_Robe2 - Rate: 80 + Item: ArchbishopStone_Robe + Rate: 8 + Announced: true - Index: 12 Item: ArchbishopStone_Robe2 - Rate: 80 + Rate: 8 + Announced: true - Index: 13 - Item: ASPDStone_Robe_D - Rate: 80 + Item: RangerStone_Robe + Rate: 8 + Announced: true - Index: 14 - Item: HPdrainStone_Robe_D - Rate: 80 + Item: RangerStone_Robe2 + Rate: 8 + Announced: true - Index: 15 - Item: ArchbishopStone_Top3 - Rate: 80 + Item: ShadowchaserStone_Robe + Rate: 8 + Announced: true - Index: 16 - Item: ArchbishopStone_Middle3 - Rate: 80 + Item: ShadowchaserStone_Robe2 + Rate: 8 + Announced: true - Index: 17 - Item: ArchbishopStone_Bottom3 - Rate: 80 + Item: ArchbishopStone_Top3 + Rate: 8 + Announced: true - Index: 18 - Item: RangerStone_Top3 - Rate: 80 + Item: ArchbishopStone_Middle3 + Rate: 8 + Announced: true - Index: 19 - Item: RangerStone_Middle3 - Rate: 80 + Item: ArchbishopStone_Bottom3 + Rate: 8 + Announced: true - Index: 20 - Item: RangerStone_Bottom3 - Rate: 80 + Item: RangerStone_Top3 + Rate: 8 + Announced: true - Index: 21 - Item: ShadowchasStone_Top3 - Rate: 80 + Item: RangerStone_Middle3 + Rate: 8 + Announced: true - Index: 22 - Item: ShadowchasStone_Middle3 - Rate: 80 + Item: RangerStone_Bottom3 + Rate: 8 + Announced: true - Index: 23 - Item: ShadowchasStone_Bottom3 - Rate: 80 + Item: ShadowchasStone_Top3 + Rate: 8 + Announced: true - Index: 24 - Item: RangerStone_Top - Rate: 150 + Item: ShadowchasStone_Middle3 + Rate: 8 + Announced: true - Index: 25 - Item: RangerStone_Middle - Rate: 150 + Item: ShadowchasStone_Bottom3 + Rate: 8 + Announced: true - Index: 26 - Item: RangerStone_Bottom - Rate: 150 - - Index: 27 - Item: ShadowchaserStone_Top - Rate: 150 - - Index: 28 - Item: ShadowchaseStone_Middle - Rate: 150 - - Index: 29 - Item: ShadowchaseStone_Bottom - Rate: 150 - - Index: 30 - Item: HighpriestStone_Top - Rate: 150 - - Index: 31 - Item: HighpriestStone_Middle - Rate: 150 - - Index: 32 - Item: HighpriestStone_Bottom - Rate: 150 - - Index: 33 - Item: ShadowchasStone_Bottom2 - Rate: 150 - - Index: 34 - Item: ShadowchasStone_Middle2 - Rate: 150 - - Index: 35 - Item: ShadowchaserStone_Top2 - Rate: 150 - - Index: 36 - Item: RangerStone_Top2 - Rate: 150 - - Index: 37 - Item: RangerStone_Middle2 - Rate: 150 - - Index: 38 - Item: RangerStone_Bottom2 - Rate: 150 - - Index: 39 - Item: HighpriestStone_Top2 - Rate: 150 - - Index: 40 - Item: HighpriestStone_Middle2 - Rate: 150 - - Index: 41 - Item: HighpriestStone_Bottom2 - Rate: 150 - - Index: 42 - Item: ASPDStone_Top - Rate: 160 - - Index: 43 - Item: ElectricEffect_Middle - Rate: 160 - - Index: 44 Item: Stone_Robe_Box - Rate: 160 - - Index: 45 + Rate: 16 + - Index: 27 Item: Stone_Robe2_Box - Rate: 160 - - Index: 46 + Rate: 16 + - Index: 28 Item: ReloadStone_Top - Rate: 240 - - Index: 47 + Rate: 24 + - Index: 29 Item: ReloadStone_Middle - Rate: 240 - - Index: 48 + Rate: 24 + - Index: 30 Item: ReloadStone_Bottom - Rate: 240 + Rate: 24 + - Index: 31 + Item: HighpriestStone_Top + Rate: 15 + - Index: 32 + Item: HighpriestStone_Middle + Rate: 15 + - Index: 33 + Item: HighpriestStone_Bottom + Rate: 15 + - Index: 34 + Item: HighpriestStone_Top2 + Rate: 15 + - Index: 35 + Item: HighpriestStone_Middle2 + Rate: 15 + - Index: 36 + Item: HighpriestStone_Bottom2 + Rate: 15 + - Index: 37 + Item: RangerStone_Top + Rate: 15 + - Index: 38 + Item: RangerStone_Middle + Rate: 15 + - Index: 39 + Item: RangerStone_Bottom + Rate: 15 + - Index: 40 + Item: RangerStone_Top2 + Rate: 15 + - Index: 41 + Item: RangerStone_Middle2 + Rate: 15 + - Index: 42 + Item: RangerStone_Bottom2 + Rate: 15 + - Index: 43 + Item: ShadowchaserStone_Top + Rate: 15 + - Index: 44 + Item: ShadowchaseStone_Middle + Rate: 15 + - Index: 45 + Item: ShadowchaseStone_Bottom + Rate: 15 + - Index: 46 + Item: ShadowchasStone_Bottom2 + Rate: 15 + - Index: 47 + Item: ShadowchasStone_Middle2 + Rate: 15 + - Index: 48 + Item: ShadowchaserStone_Top2 + Rate: 15 - Index: 49 - Item: Critical_Stone - Rate: 360 - - Index: 50 - Item: CastingStone_Top - Rate: 360 - - Index: 51 - Item: CastingStone_Middle - Rate: 360 - - Index: 52 - Item: CastingStone_Bottom - Rate: 360 - - Index: 53 - Item: Critical_Stone_Top - Rate: 360 - - Index: 54 - Item: Critical_Stone_Bottom - Rate: 360 - - Index: 55 Item: Stone_Top_Box - Rate: 360 - - Index: 56 + Rate: 36 + - Index: 50 Item: Stone_Top2_Box - Rate: 360 - - Index: 57 + Rate: 36 + - Index: 51 Item: Stone_Middle_Box - Rate: 360 - - Index: 58 + Rate: 36 + - Index: 52 Item: Stone_Middle2_Box - Rate: 360 - - Index: 59 + Rate: 36 + - Index: 53 Item: Stone_Bottom_Box - Rate: 360 - - Index: 60 + Rate: 36 + - Index: 54 Item: Stone_Bottom2_Box - Rate: 360 + Rate: 36 + - Index: 55 + Item: CastingStone_Top + Rate: 36 + - Index: 56 + Item: CastingStone_Middle + Rate: 36 + - Index: 57 + Item: CastingStone_Bottom + Rate: 36 + - Index: 58 + Item: Critical_Stone + Rate: 36 + - Index: 59 + Item: Critical_Stone_Top + Rate: 36 + - Index: 60 + Item: Critical_Stone_Bottom + Rate: 36 - Group: THIRD_JOB_STONE_GARMENT_BOX SubGroups: - SubGroup: 1 List: - Index: 0 Item: ArchbishopStone_Robe - Rate: 1 + Rate: 10 - Index: 1 Item: RoyalguardStone_Robe - Rate: 1 + Rate: 10 - Index: 2 Item: GuillcrossStone_Robe - Rate: 1 + Rate: 10 - Index: 3 Item: ShadowchaserStone_Robe - Rate: 1 + Rate: 10 - Index: 4 Item: MechanicStone_Robe - Rate: 1 + Rate: 10 - Index: 5 Item: WanderMinstreStone_Robe - Rate: 1 + Rate: 10 - Index: 6 Item: RuneknightStone_Robe - Rate: 1 + Rate: 10 - Index: 7 Item: GeneticStone_Robe - Rate: 1 + Rate: 10 - Index: 8 Item: WarlockStone_Robe - Rate: 1 + Rate: 10 - Index: 9 Item: SuraStone_Robe - Rate: 1 + Rate: 10 - Index: 10 Item: RangerStone_Robe - Rate: 1 + Rate: 10 - Index: 11 Item: SorcererStone_Robe - Rate: 1 + Rate: 10 - Index: 12 Item: KagerouStone_Robe - Rate: 1 + Rate: 10 - Index: 13 Item: OboroStone_Robe - Rate: 1 + Rate: 10 - Index: 14 Item: RebellionStone_Robe - Rate: 1 + Rate: 10 - Index: 15 Item: DoramStone_Robe - Rate: 1 + Rate: 10 - Group: THIRD_JOB_STONE_GARMENT_BOX2 SubGroups: - SubGroup: 1 List: - Index: 0 Item: SuraStone_Robe2 - Rate: 1 + Rate: 10 - Index: 1 Item: SorcererStone_Robe2 - Rate: 1 + Rate: 10 - Index: 2 Item: ShadowchaserStone_Robe2 - Rate: 1 + Rate: 10 - Index: 3 Item: RuneknightStone_Robe2 - Rate: 1 + Rate: 10 - Index: 4 Item: GeneticStone_Robe2 - Rate: 1 + Rate: 10 - Index: 5 Item: WanderMinsStone_Robe2 - Rate: 1 + Rate: 10 - Index: 6 Item: WarlockStone_Robe2 - Rate: 1 + Rate: 10 - Index: 7 Item: RoyalguardStone_Robe2 - Rate: 1 + Rate: 10 - Index: 8 Item: GuillcrossStone_Robe2 - Rate: 1 + Rate: 10 - Index: 9 Item: RangerStone_Robe2 - Rate: 1 + Rate: 10 - Index: 10 Item: MechanicStone_Robe2 - Rate: 1 + Rate: 10 - Index: 11 Item: ArchbishopStone_Robe2 - Rate: 1 + Rate: 10 - Index: 12 Item: SoulreaperStone_Robe - Rate: 1 + Rate: 10 - Index: 13 Item: StaremperorStone_Robe - Rate: 1 + Rate: 10 - Group: THIRD_JOB_STONE_TOP_BOX SubGroups: - SubGroup: 1 List: - Index: 0 Item: HighpriestStone_Top - Rate: 1 + Rate: 10 - Index: 1 Item: PaladinStone_Top - Rate: 1 + Rate: 10 - Index: 2 Item: AssacrossStone_Top - Rate: 1 + Rate: 10 - Index: 3 Item: ShadowchaserStone_Top - Rate: 1 + Rate: 10 - Index: 4 Item: MechanicStone_Top - Rate: 1 + Rate: 10 - Index: 5 Item: WanderMinstrelStone_Top - Rate: 1 + Rate: 10 - Index: 6 Item: RuneknightStone_Top - Rate: 1 + Rate: 10 - Index: 7 Item: GeneticStone_Top - Rate: 1 + Rate: 10 - Index: 8 Item: WarlockStone_Top - Rate: 1 + Rate: 10 - Index: 9 Item: SuraStone_Top - Rate: 1 + Rate: 10 - Index: 10 Item: RangerStone_Top - Rate: 1 + Rate: 10 - Index: 11 Item: SorcererStone_Top - Rate: 1 + Rate: 10 - Index: 12 Item: NinjaStone_Top - Rate: 1 + Rate: 10 - Index: 13 Item: GunslingerStone_Top - Rate: 1 + Rate: 10 - Index: 14 Item: DoramStone_Top - Rate: 1 + Rate: 10 - Group: THIRD_JOB_STONE_TOP_BOX2 SubGroups: - SubGroup: 1 List: - Index: 0 Item: SuraStone_Top2 - Rate: 1 + Rate: 10 - Index: 1 Item: SorcererStone_Top2 - Rate: 1 + Rate: 10 - Index: 2 Item: ShadowchaserStone_Top2 - Rate: 1 + Rate: 10 - Index: 3 Item: RuneknightStone_Top2 - Rate: 1 + Rate: 10 - Index: 4 Item: GeneticStone_Top2 - Rate: 1 + Rate: 10 - Index: 5 Item: WanderMinsStone_Top2 - Rate: 1 + Rate: 10 - Index: 6 Item: WarlockStone_Top2 - Rate: 1 + Rate: 10 - Index: 7 Item: PaladinStone_Top2 - Rate: 1 + Rate: 10 - Index: 8 Item: AssacrossStone_Top2 - Rate: 1 + Rate: 10 - Index: 9 Item: RangerStone_Top2 - Rate: 1 + Rate: 10 - Index: 10 Item: MechanicStone_Top2 - Rate: 1 + Rate: 10 - Index: 11 Item: HighpriestStone_Top2 - Rate: 1 + Rate: 10 - Index: 12 Item: SoullinkerStone_Top - Rate: 1 + Rate: 10 - Index: 13 Item: GladiatorStone_Top - Rate: 1 + Rate: 10 - Group: THIRD_JOB_STONE_MIDDLE_BOX SubGroups: - SubGroup: 1 List: - Index: 0 Item: HighpriestStone_Middle - Rate: 1 + Rate: 10 - Index: 1 Item: PaladinStone_Middle - Rate: 1 + Rate: 10 - Index: 2 Item: AssacrossStone_Middle - Rate: 1 + Rate: 10 - Index: 3 Item: ShadowchaseStone_Middle - Rate: 1 + Rate: 10 - Index: 4 Item: MechanicStone_Middle - Rate: 1 + Rate: 10 - Index: 5 Item: WanderMinstStone_Middle - Rate: 1 + Rate: 10 - Index: 6 Item: RuneknightStone_Middle - Rate: 1 + Rate: 10 - Index: 7 Item: GeneticStone_Middle - Rate: 1 + Rate: 10 - Index: 8 Item: WarlockStone_Middle - Rate: 1 + Rate: 10 - Index: 9 Item: SuraStone_Middle - Rate: 1 + Rate: 10 - Index: 10 Item: RangerStone_Middle - Rate: 1 + Rate: 10 - Index: 11 Item: SorcererStone_Middle - Rate: 1 + Rate: 10 - Index: 12 Item: NinjaStone_Middle - Rate: 1 + Rate: 10 - Index: 13 Item: GunslingerStone_Middle - Rate: 1 + Rate: 10 - Index: 14 Item: DoramStone_Middle - Rate: 1 + Rate: 10 - Group: THIRD_JOB_STONE_MIDDLE_BOX2 SubGroups: - SubGroup: 1 List: - Index: 0 Item: SuraStone_Middle2 - Rate: 1 + Rate: 10 - Index: 1 Item: SorcererStone_Middle2 - Rate: 1 + Rate: 10 - Index: 2 Item: ShadowchasStone_Middle2 - Rate: 1 + Rate: 10 - Index: 3 Item: RuneknightStone_Middle2 - Rate: 1 + Rate: 10 - Index: 4 Item: GeneticStone_Middle2 - Rate: 1 + Rate: 10 - Index: 5 Item: WanderMinsStone_Middle2 - Rate: 1 + Rate: 10 - Index: 6 Item: WarlockStone_Middle2 - Rate: 1 + Rate: 10 - Index: 7 Item: PaladinStone_Middle2 - Rate: 1 + Rate: 10 - Index: 8 Item: AssacrossStone_Middle2 - Rate: 1 + Rate: 10 - Index: 9 Item: RangerStone_Middle2 - Rate: 1 + Rate: 10 - Index: 10 Item: MechanicStone_Middle2 - Rate: 1 + Rate: 10 - Index: 11 Item: HighpriestStone_Middle2 - Rate: 1 + Rate: 10 - Index: 12 Item: SoullinkerStone_Middle - Rate: 1 + Rate: 10 - Index: 13 Item: GladiatorStone_Middle - Rate: 1 + Rate: 10 - Group: THIRD_JOB_STONE_BOTTOM_BOX SubGroups: - SubGroup: 1 List: - Index: 0 Item: HighpriestStone_Bottom - Rate: 1 + Rate: 10 - Index: 1 Item: PaladinStone_Bottom - Rate: 1 + Rate: 10 - Index: 2 Item: AssacrossStone_Bottom - Rate: 1 + Rate: 10 - Index: 3 Item: ShadowchaseStone_Bottom - Rate: 1 + Rate: 10 - Index: 4 Item: MechanicStone_Bottom - Rate: 1 + Rate: 10 - Index: 5 Item: WanderMinstStone_Bottom - Rate: 1 + Rate: 10 - Index: 6 Item: RuneknightStone_Bottom - Rate: 1 + Rate: 10 - Index: 7 Item: GeneticStone_Bottom - Rate: 1 + Rate: 10 - Index: 8 Item: WarlockStone_Bottom - Rate: 1 + Rate: 10 - Index: 9 Item: SuraStone_Bottom - Rate: 1 + Rate: 10 - Index: 10 Item: RangerStone_Bottom - Rate: 1 + Rate: 10 - Index: 11 Item: SorcererStone_Bottom - Rate: 1 + Rate: 10 - Index: 12 Item: NinjaStone_Bottom - Rate: 1 + Rate: 10 - Index: 13 Item: GunslingerStone_Bottom - Rate: 1 + Rate: 10 - Index: 14 Item: DoramStone_Bottom - Rate: 1 + Rate: 10 - Group: THIRD_JOB_STONE_BOTTOM_BOX2 SubGroups: - SubGroup: 1 List: - Index: 0 Item: SuraStone_Bottom2 - Rate: 1 + Rate: 10 - Index: 1 Item: SorcererStone_Bottom2 - Rate: 1 + Rate: 10 - Index: 2 Item: ShadowchasStone_Bottom2 - Rate: 1 + Rate: 10 - Index: 3 Item: RuneknightStone_Bottom2 - Rate: 1 + Rate: 10 - Index: 4 Item: GeneticStone_Bottom2 - Rate: 1 + Rate: 10 - Index: 5 Item: WanderMinsStone_Bottom2 - Rate: 1 + Rate: 10 - Index: 6 Item: WarlockStone_Bottom2 - Rate: 1 + Rate: 10 - Index: 7 Item: PaladinStone_Bottom2 - Rate: 1 + Rate: 10 - Index: 8 Item: AssacrossStone_Bottom2 - Rate: 1 + Rate: 10 - Index: 9 Item: RangerStone_Bottom2 - Rate: 1 + Rate: 10 - Index: 10 Item: MechanicStone_Bottom2 - Rate: 1 + Rate: 10 - Index: 11 Item: HighpriestStone_Bottom2 - Rate: 1 + Rate: 10 - Index: 12 Item: SoullinkerStone_Bottom - Rate: 1 + Rate: 10 - Index: 13 Item: GladiatorStone_Bottom - Rate: 1 + Rate: 10 - Group: SHADOW_EXCHANGE_BOX SubGroups: - SubGroup: 1 @@ -39243,1547 +40690,797 @@ Body: List: - Index: 0 Item: AngelPoring_Purple - Rate: 1667 + Rate: 1 - Index: 1 Item: AngelPoring_SkyBlue - Rate: 1667 + Rate: 1 - Index: 2 Item: AngelPoring_Green - Rate: 1667 + Rate: 1 - Index: 3 Item: AngelPoring_Pink - Rate: 1667 + Rate: 1 - Index: 4 Item: AngelPoring_DeepRed - Rate: 1667 + Rate: 1 - Index: 5 Item: AngelPoring_Clear - Rate: 1667 + Rate: 1 - Group: SHADOW_CUBE_PENDANT SubGroups: - SubGroup: 1 List: - Index: 0 - Item: S_Physical_Pendant - Rate: 278 - - Index: 1 Item: S_Magical_Pendant - Rate: 278 + Rate: 5 + - Index: 1 + Item: S_Physical_Pendant + Rate: 5 - Index: 2 - Item: S_Int_Pendant - Rate: 278 + Item: S_Caster_Pendant + Rate: 5 - Index: 3 - Item: S_Power_Pendant - Rate: 278 + Item: S_Rapid_Pendant + Rate: 5 - Index: 4 Item: S_Resist_Spell_Pendant - Rate: 278 + Rate: 5 - Index: 5 - Item: S_Rapid_Pendant - Rate: 278 - - Index: 6 - Item: S_Caster_Pendant - Rate: 278 - - Index: 7 - Item: S_Spiritual_Pendent - Rate: 278 - - Index: 8 Item: S_Gemstone_Pendent - Rate: 278 - - Index: 9 - Item: Unfreeze_Pendent_S - Rate: 278 - - Index: 10 + Rate: 5 + - Index: 6 Item: Vitality_Pendant_S - Rate: 278 - - Index: 11 - Item: S_Neutral_Pendent - Rate: 278 - - Index: 12 + Rate: 5 + - Index: 7 + Item: Unfreeze_Pendent_S + Rate: 5 + - Index: 8 Item: S_Curse_Lift_Pendent - Rate: 278 - - Index: 13 + Rate: 5 + - Index: 9 + Item: S_Neutral_Pendent + Rate: 5 + - Index: 10 Item: S_Greed_Pendant - Rate: 278 - - Index: 14 - Item: S_Heal_Pendant - Rate: 278 - - Index: 15 - Item: S_Hiding_Pendant - Rate: 278 - - Index: 16 + Rate: 5 + - Index: 11 Item: S_Cloaking_Pendant - Rate: 278 - - Index: 17 - Item: S_Teleport_Pendant - Rate: 278 - - Index: 18 + Rate: 5 + - Index: 12 + Item: S_Hiding_Pendant + Rate: 5 + - Index: 13 + Item: S_Heal_Pendant + Rate: 5 + - Index: 14 Item: S_Steal_Pendant - Rate: 278 - - Index: 19 - Item: S_Infinity_Pendant - Rate: 278 - - Index: 20 + Rate: 5 + - Index: 15 + Item: S_Teleport_Pendant + Rate: 5 + - Index: 16 Item: S_Immortal_Pendant - Rate: 278 - - Index: 21 + Rate: 5 + - Index: 17 Item: S_Penetration_Pendent - Rate: 278 - - Index: 22 + Rate: 5 + - Index: 18 Item: S_Tempest_Pendent - Rate: 278 - - Index: 23 + Rate: 5 + - Index: 19 Item: S_Bearers_Pendent - Rate: 278 - - Index: 24 + Rate: 5 + - Index: 20 + Item: S_Spiritual_Pendent + Rate: 5 + - Index: 21 Item: S_Blitz_Pendent - Rate: 278 - - Index: 25 - Item: S_Force_Pendant - Rate: 278 - - Index: 26 + Rate: 5 + - Index: 22 Item: S_Spirit_Pendant - Rate: 278 - - Index: 27 + Rate: 5 + - Index: 23 + Item: S_Force_Pendant + Rate: 5 + - Index: 24 Item: S_Titan_Pendant - Rate: 278 - - Index: 28 + Rate: 5 + - Index: 25 Item: S_Boned_Pendant - Rate: 278 - - Index: 29 + Rate: 5 + - Index: 26 Item: S_Gigantic_Pendant - Rate: 278 - - Index: 30 - Item: S_Tension_Pendent - Rate: 278 - - Index: 31 - Item: S_Elegant_Pendent - Rate: 278 - - Index: 32 - Item: S_Restore_Pendent - Rate: 278 - - Index: 33 - Item: S_MortalBlow_Pendent - Rate: 278 - - Index: 34 - Item: Sentimental_Pendant_S - Rate: 278 - - Index: 35 - Item: Enchanting_Pendant_S - Rate: 278 + Rate: 5 + - Index: 27 + Item: S_Infinity_Pendant + Rate: 5 - Group: SHADOW_CUBE_EARING SubGroups: - SubGroup: 1 List: - Index: 0 - Item: S_Physical_Earring - Rate: 270 - - Index: 1 Item: S_Magical_Earring - Rate: 270 + Rate: 5 + - Index: 1 + Item: S_Physical_Earring + Rate: 5 - Index: 2 - Item: S_Power_Earring - Rate: 270 + Item: S_Athena_Earring + Rate: 5 - Index: 3 - Item: S_Int_Earring - Rate: 270 + Item: S_Wise_Earring + Rate: 5 - Index: 4 Item: S_Hard_Earring - Rate: 270 + Rate: 5 - Index: 5 - Item: S_Wise_Earring - Rate: 270 - - Index: 6 - Item: S_Athena_Earring - Rate: 270 - - Index: 7 - Item: S_Spiritual_Earring - Rate: 270 - - Index: 8 Item: S_Gemstone_Earring - Rate: 270 - - Index: 9 - Item: Unfreeze_Earing_S - Rate: 270 - - Index: 10 + Rate: 5 + - Index: 6 Item: Vitality_Earing_S - Rate: 270 - - Index: 11 - Item: S_Neutral_Earring - Rate: 270 - - Index: 12 + Rate: 5 + - Index: 7 + Item: Unfreeze_Earing_S + Rate: 5 + - Index: 8 Item: S_Curse_Lift_Earring - Rate: 270 - - Index: 13 + Rate: 5 + - Index: 9 + Item: S_Neutral_Earring + Rate: 5 + - Index: 10 Item: S_Caster_earring - Rate: 270 - - Index: 14 + Rate: 5 + - Index: 11 Item: S_Greed_Earring - Rate: 270 - - Index: 15 - Item: S_Heal_Earring - Rate: 270 - - Index: 16 - Item: S_Hiding_Earring - Rate: 270 - - Index: 17 + Rate: 5 + - Index: 12 Item: S_Cloaking_Earring - Rate: 270 - - Index: 18 - Item: S_Teleport_Earring - Rate: 270 - - Index: 19 + Rate: 5 + - Index: 13 + Item: S_Hiding_Earring + Rate: 5 + - Index: 14 + Item: S_Heal_Earring + Rate: 5 + - Index: 15 Item: S_Steal_Earring - Rate: 270 - - Index: 20 - Item: S_Infinity_Earring - Rate: 270 - - Index: 21 + Rate: 5 + - Index: 16 + Item: S_Teleport_Earring + Rate: 5 + - Index: 17 Item: S_Solid_Earring - Rate: 270 - - Index: 22 + Rate: 5 + - Index: 18 Item: S_Penetration_Earring - Rate: 270 - - Index: 23 + Rate: 5 + - Index: 19 Item: S_Tempest_Earring - Rate: 270 - - Index: 24 + Rate: 5 + - Index: 20 Item: S_Bearers_Earring - Rate: 270 - - Index: 25 + Rate: 5 + - Index: 21 + Item: S_Spiritual_Earring + Rate: 5 + - Index: 22 Item: S_Blitz_Earring - Rate: 270 - - Index: 26 - Item: S_Force_Earring - Rate: 270 - - Index: 27 + Rate: 5 + - Index: 23 Item: S_Spirit_Earring - Rate: 270 - - Index: 28 + Rate: 5 + - Index: 24 + Item: S_Force_Earring + Rate: 5 + - Index: 25 Item: S_Titan_Earring - Rate: 270 - - Index: 29 + Rate: 5 + - Index: 26 Item: S_Boned_Earring - Rate: 270 - - Index: 30 + Rate: 5 + - Index: 27 Item: S_Gigantic_Earring - Rate: 270 - - Index: 31 - Item: S_Tension_Earring - Rate: 270 - - Index: 32 - Item: S_Elegant_Earring - Rate: 270 - - Index: 33 - Item: S_Restore_Earring - Rate: 270 - - Index: 34 - Item: S_MortalBlow_Earring - Rate: 270 - - Index: 35 - Item: Sentimental_Earring_S - Rate: 270 - - Index: 36 - Item: Enchanting_Earring_S - Rate: 270 + Rate: 5 + - Index: 28 + Item: S_Infinity_Earring + Rate: 5 - Group: SHADOW_CUBE SubGroups: - SubGroup: 1 List: - Index: 0 - Item: S_Runeknight_Weapon - Rate: 4 - - Index: 1 - Item: S_Royalguard_Weapon - Rate: 4 - - Index: 2 - Item: S_Mechanic_weapon - Rate: 4 - - Index: 3 - Item: S_Genetic_Weapon - Rate: 4 - - Index: 4 - Item: S_Archbishop_Weapon - Rate: 4 - - Index: 5 - Item: S_Sura_weapon - Rate: 4 - - Index: 6 - Item: S_Guillotine_Weapon - Rate: 4 - - Index: 7 - Item: S_Shadowchaser_Weapon - Rate: 4 - - Index: 8 - Item: S_Warlock_Weapon - Rate: 4 - - Index: 9 - Item: S_Sorcerer_Weapon - Rate: 4 - - Index: 10 - Item: S_Ranger_Weapon - Rate: 4 - - Index: 11 - Item: S_Minstrel_Weapon - Rate: 4 - - Index: 12 - Item: S_Wanderer_Weapon - Rate: 4 - - Index: 13 - Item: S_Runeknight_Shield - Rate: 4 - - Index: 14 - Item: S_Royalguard_Shield - Rate: 4 - - Index: 15 - Item: S_Mechanic_Shield - Rate: 4 - - Index: 16 - Item: S_Genetic_Shield - Rate: 4 - - Index: 17 - Item: S_Archbishop_Shield - Rate: 4 - - Index: 18 - Item: S_Sura_Shield - Rate: 4 - - Index: 19 - Item: S_Guillotine_Shield - Rate: 4 - - Index: 20 - Item: S_Shadowchaser_Shield - Rate: 4 - - Index: 21 - Item: S_Warlock_Shield - Rate: 4 - - Index: 22 - Item: S_Sorcerer_Shield - Rate: 4 - - Index: 23 - Item: S_Ranger_Shield - Rate: 4 - - Index: 24 - Item: S_Minstrel_Shield - Rate: 4 - - Index: 25 - Item: S_Wanderer_Shield - Rate: 4 - - Index: 26 - Item: S2_Hasty_Shoes - Rate: 4 - - Index: 27 - Item: S2_Bearers_Pendent - Rate: 4 - - Index: 28 - Item: S2_Gemstone_Earring - Rate: 4 - - Index: 29 - Item: S2_Spell_Flow_Shield - Rate: 4 - - Index: 30 - Item: S2_Spiritual_Weapon - Rate: 4 - - Index: 31 - Item: S2_Malicious_Armor - Rate: 4 - - Index: 32 - Item: S_Sigrun_Armor - Rate: 4 - - Index: 33 - Item: S_Sigrun_Shield - Rate: 4 - - Index: 34 - Item: S2_Force_Ex_Weapon - Rate: 4 - - Index: 35 - Item: S2_Spirit_M_E_Weapon - Rate: 4 - - Index: 36 - Item: S2_Caster_Armor - Rate: 4 - - Index: 37 - Item: S2_Reload_Armor - Rate: 4 - - Index: 38 - Item: S_MagicCompose_Armor - Rate: 4 - - Index: 39 - Item: S2_Gemstone_Weapon - Rate: 4 - - Index: 40 - Item: S2_Gemstone_Shield - Rate: 4 - - Index: 41 - Item: S2_Bearers_Armor - Rate: 4 - - Index: 42 - Item: S2_Bearers_Shoes - Rate: 4 - - Index: 43 - Item: S_AllMighty_Earring - Rate: 4 - - Index: 44 - Item: S_AllMighty_Pendant - Rate: 4 - - Index: 45 - Item: S_AllRace_Shoes - Rate: 4 - - Index: 46 - Item: S_AllRace_Shield - Rate: 4 - - Index: 47 - Item: S_Tempest_Shield - Rate: 4 - - Index: 48 - Item: S_Tempest_Shoes - Rate: 4 - - Index: 49 - Item: S_M_ExeHoly_Armor - Rate: 4 - - Index: 50 - Item: S_M_ExoCorrupt_Armor - Rate: 4 - - Index: 51 - Item: S_M_DragonVib_Armor - Rate: 4 - - Index: 52 - Item: S_M_SciHunting_Armor - Rate: 4 - - Index: 53 - Item: S_M_FishInsect_Armor - Rate: 4 - - Index: 54 - Item: S2_Plasterer's_Armor - Rate: 4 - - Index: 55 - Item: S2_Insomniac_Shoes - Rate: 4 - - Index: 56 - Item: S2_Peerless_Armor - Rate: 4 - - Index: 57 - Item: S2_Adurate_Shoes - Rate: 4 - - Index: 58 - Item: Unfreez_Weapon_S2 - Rate: 4 - - Index: 59 - Item: Vitality_Earing_S2 - Rate: 4 - - Index: 60 - Item: S2_Neutral_Weapon - Rate: 4 - - Index: 61 - Item: S2_Curse_Lift_Pendent - Rate: 4 - - Index: 62 - Item: S_Penetration_Shoes - Rate: 4 - - Index: 63 - Item: S_Penetration_Shield - Rate: 4 - - Index: 64 - Item: S_ExeHoly_Armor - Rate: 4 - - Index: 65 - Item: S_ExoCorrupt_Armor - Rate: 4 - - Index: 66 - Item: S_DragonVib_Armor - Rate: 4 - - Index: 67 - Item: S_SciHunting_Armor - Rate: 4 - - Index: 68 - Item: S_FishInsect_Armor - Rate: 4 - - Index: 69 - Item: S_Infinity_Weapon - Rate: 4 - - Index: 70 - Item: S_Physical_Shoes - Rate: 4 - - Index: 71 - Item: S_Physical_Shield - Rate: 4 - - Index: 72 - Item: S_Physical_Armor - Rate: 4 - - Index: 73 - Item: S_Magical_Shoes - Rate: 4 - - Index: 74 - Item: S_Magical_Shield - Rate: 4 - - Index: 75 - Item: S_Magical_Armor - Rate: 4 - - Index: 76 - Item: S_ImmunedAthena_Shield - Rate: 4 - - Index: 77 - Item: S_HardChamption_Shoes - Rate: 4 - - Index: 78 - Item: S_KingbirdAncient_Armor - Rate: 4 - - Index: 79 - Item: S_Rebellion_Armor - Rate: 4 - - Index: 80 - Item: S_Kagerou_Armor - Rate: 4 - - Index: 81 - Item: S_Oboro_Armor - Rate: 4 - - Index: 82 - Item: S_Rebellion_Shoes - Rate: 4 - - Index: 83 - Item: S_Kagerou_Shoes - Rate: 4 - - Index: 84 - Item: S_Oboro_Shoes - Rate: 4 - - Index: 85 - Item: S_DoramPhysical_Armor - Rate: 4 - - Index: 86 - Item: S_DoramPhysical_Shoes - Rate: 4 - - Index: 87 - Item: S_DoramMagical_Armor - Rate: 4 - - Index: 88 - Item: S_DoramMagical_Shoes - Rate: 4 - - Index: 89 - Item: S_Knight_Shoes - Rate: 17 - - Index: 90 - Item: S_Crusader_Shoes - Rate: 17 - - Index: 91 - Item: S_Blacksmith_Shoes - Rate: 17 - - Index: 92 - Item: S_Alchemist_Shoes - Rate: 17 - - Index: 93 - Item: S_Priest_Shoes - Rate: 17 - - Index: 94 - Item: S_Monk_Shoes - Rate: 17 - - Index: 95 - Item: S_Assassin_Shoes - Rate: 17 - - Index: 96 - Item: S_Rogue_Shoes - Rate: 17 - - Index: 97 - Item: S_Wizard_Shoes - Rate: 17 - - Index: 98 - Item: S_Sage_Shoes - Rate: 17 - - Index: 99 - Item: S_Hunter_Shoes - Rate: 17 - - Index: 100 - Item: S_Bard_Shoes - Rate: 17 - - Index: 101 - Item: S_Dancer_Shoes - Rate: 17 - - Index: 102 - Item: S_Knight_Armor - Rate: 17 - - Index: 103 - Item: S_Crusader_Armor - Rate: 17 - - Index: 104 - Item: S_Blacksmith_Armor - Rate: 17 - - Index: 105 - Item: S_Alchemist_Armor - Rate: 17 - - Index: 106 - Item: S_Priest_Armor - Rate: 17 - - Index: 107 - Item: S_Monk_Armor - Rate: 17 - - Index: 108 - Item: S_Assassin_Armor - Rate: 17 - - Index: 109 - Item: S_Rogue_Armor - Rate: 17 - - Index: 110 - Item: S_Wizard_Armor - Rate: 17 - - Index: 111 - Item: S_Sage_Armor - Rate: 17 - - Index: 112 - Item: S_Hunter_Armor - Rate: 17 - - Index: 113 - Item: S_Bard_Armor - Rate: 17 - - Index: 114 - Item: S_Dancer_Armor - Rate: 17 - - Index: 115 - Item: S_SuperNovice_Weapon - Rate: 17 - - Index: 116 - Item: S_Gunslinger_Weapon - Rate: 17 - - Index: 117 - Item: S_Taekwon_Weapon - Rate: 17 - - Index: 118 - Item: S_Ninja_Weapon - Rate: 17 - - Index: 119 - Item: S_DoramMagical_Weapon - Rate: 17 - - Index: 120 - Item: S_DoramPhysical_Weapon - Rate: 17 - - Index: 121 - Item: S_Ninja_Shield - Rate: 17 - - Index: 122 - Item: S_Taekwon_Shield - Rate: 17 - - Index: 123 - Item: S_DoramPhysical_Shield - Rate: 17 - - Index: 124 - Item: S_DoramMagical_Shield - Rate: 17 - - Index: 125 - Item: S_SuperNovice_Shield - Rate: 17 - - Index: 126 - Item: S_Gunslinger_Shield - Rate: 17 - - Index: 127 - Item: S_Promotion_Weapon - Rate: 33 - - Index: 128 - Item: S_Promotion_Armor - Rate: 33 - - Index: 129 - Item: S_Promotion_Shoes - Rate: 33 - - Index: 130 - Item: S_Promotion_Shield - Rate: 33 - - Index: 131 - Item: S_Promotion_Earring - Rate: 33 - - Index: 132 - Item: S_Promotion_Pendant - Rate: 33 - - Index: 133 - Item: S_Physical_Earring - Rate: 33 - - Index: 134 - Item: S_Physical_Weapon - Rate: 33 - - Index: 135 - Item: S_Physical_Pendant - Rate: 33 - - Index: 136 - Item: S_Magical_Earring - Rate: 33 - - Index: 137 - Item: S_Magical_Weapon - Rate: 33 - - Index: 138 - Item: S_Magical_Pendant - Rate: 33 - - Index: 139 - Item: S_Breezy_Armor - Rate: 33 - - Index: 140 - Item: S_Champion_Shoes - Rate: 33 - - Index: 141 - Item: S_Athena_Shield - Rate: 33 - - Index: 142 - Item: S_Immune_Armor - Rate: 33 - - Index: 143 - Item: S_Hard_Armor - Rate: 33 - - Index: 144 - Item: S_Ancient_Armor - Rate: 33 - - Index: 145 - Item: S_Critical_Armor - Rate: 33 - - Index: 146 - Item: S_Kingbird_Weapon - Rate: 33 - - Index: 147 - Item: S_Cri_Hit_Weapon - Rate: 33 - - Index: 148 - Item: S_Healing_Weapon - Rate: 33 - - Index: 149 - Item: S_Lucky_Weapon - Rate: 33 - - Index: 150 - Item: S_Power_Earring - Rate: 33 - - Index: 151 - Item: S_Int_Pendant - Rate: 33 - - Index: 152 - Item: S_Dexterous_Armor - Rate: 33 - - Index: 153 - Item: S_Vital_Shoes - Rate: 33 - - Index: 154 - Item: S_Athletic_Shield - Rate: 33 - - Index: 155 - Item: S_Lucky_Armor - Rate: 33 - - Index: 156 - Item: S_Power_Pendant - Rate: 33 - - Index: 157 - Item: S_Int_Earring - Rate: 33 - - Index: 158 - Item: S_Dexterous_Weapon - Rate: 33 - - Index: 159 - Item: S_Vital_Shield - Rate: 33 - - Index: 160 - Item: S_Athletic_Shoes - Rate: 33 - - Index: 161 - Item: S_Resist_Spell_Pendant - Rate: 33 - - Index: 162 - Item: S_Rapid_Pendant - Rate: 33 - - Index: 163 - Item: S_Caster_Pendant - Rate: 33 - - Index: 164 - Item: S_Hard_Earring - Rate: 33 - - Index: 165 - Item: S_Wise_Earring - Rate: 33 - - Index: 166 - Item: S_Athena_Earring - Rate: 33 - - Index: 167 - Item: S_Cranial_Shield - Rate: 33 - - Index: 168 - Item: S_Safeguard_Shield - Rate: 33 - - Index: 169 - Item: S_Brutal_Shield - Rate: 33 - - Index: 170 - Item: S_Gargantua_Shield - Rate: 33 - - Index: 171 - Item: S_Homers_Shield - Rate: 33 - - Index: 172 - Item: S_Dragoon_Shield - Rate: 33 - - Index: 173 - Item: S_Satanic_Shield - Rate: 33 - - Index: 174 - Item: S_Flameguard_Shield - Rate: 33 - - Index: 175 - Item: S_Requiem_Shield - Rate: 33 - - Index: 176 - Item: S_Cadi_Shield - Rate: 33 - - Index: 177 - Item: S_Bloody_Shoes - Rate: 33 - - Index: 178 - Item: S_Liberation_Shoes - Rate: 33 - - Index: 179 - Item: S_Chemical_Shoes - Rate: 33 - - Index: 180 - Item: S_Clamorous_Shoes - Rate: 33 - - Index: 181 - Item: S_Insecticide_Shoes - Rate: 33 - - Index: 182 - Item: S_Fisher_Shoes - Rate: 33 - - Index: 183 - Item: S_Seraphim_Shoes - Rate: 33 - - Index: 184 - Item: S_Beholder_Shoes - Rate: 33 - - Index: 185 - Item: S_Divine_Shoes - Rate: 33 - - Index: 186 - Item: S_Dragoon_Shoes - Rate: 33 - - Index: 187 - Item: S_Big_Armor - Rate: 33 - - Index: 188 - Item: S_Medium_Armor - Rate: 33 - - Index: 189 - Item: S_Small_Armor - Rate: 33 - - Index: 190 - Item: S_Big_Weapon - Rate: 33 - - Index: 191 - Item: S_Medium_Weapon - Rate: 33 - - Index: 192 - Item: S_Small_Weapon - Rate: 33 - - Index: 193 - Item: S_Spiritual_Weapon - Rate: 33 - - Index: 194 - Item: S_Spiritual_Earring - Rate: 33 - - Index: 195 - Item: S_Spiritual_Pendent - Rate: 33 - - Index: 196 - Item: S_Malicious_Armor - Rate: 33 - - Index: 197 - Item: S_Malicious_Shoes - Rate: 33 - - Index: 198 - Item: S_Malicious_Shield - Rate: 33 - - Index: 199 - Item: S_Gemstone_Armor - Rate: 33 - - Index: 200 - Item: S_Gemstone_Shoes - Rate: 33 - - Index: 201 - Item: S_Gemstone_Shield - Rate: 33 - - Index: 202 Item: S_Gemstone_Weapon - Rate: 33 - - Index: 203 + Rate: 5 + - Index: 1 Item: S_Gemstone_Earring - Rate: 33 - - Index: 204 + Rate: 5 + - Index: 2 Item: S_Gemstone_Pendent - Rate: 33 - - Index: 205 - Item: S_Stability_Shield - Rate: 33 - - Index: 206 - Item: S_Plasterer's_Armor - Rate: 33 - - Index: 207 - Item: S_Plasterer's_Shoes - Rate: 33 - - Index: 208 - Item: S_Insomniac_Armor - Rate: 33 - - Index: 209 - Item: S_Insomniac_Shoes - Rate: 33 - - Index: 210 - Item: S_Peerless_Armor - Rate: 33 - - Index: 211 - Item: S_Peerless_Shoes - Rate: 33 - - Index: 212 - Item: S_Adurate_Armor - Rate: 33 - - Index: 213 - Item: S_Adurate_Shoes - Rate: 33 - - Index: 214 - Item: Unfreez_Weapon_S - Rate: 33 - - Index: 215 - Item: Unfreeze_Earing_S - Rate: 33 - - Index: 216 - Item: Unfreeze_Pendent_S - Rate: 33 - - Index: 217 - Item: Vitality_Earing_S - Rate: 33 - - Index: 218 - Item: Vitality_Pendant_S - Rate: 33 - - Index: 219 - Item: S_Neutral_Weapon - Rate: 33 - - Index: 220 - Item: S_Neutral_Earring - Rate: 33 - - Index: 221 - Item: S_Neutral_Pendent - Rate: 33 - - Index: 222 - Item: S_Curse_Lift_Earring - Rate: 33 - - Index: 223 - Item: S_Curse_Lift_Pendent - Rate: 33 - - Index: 224 - Item: S_Caster_earring - Rate: 33 - - Index: 225 - Item: S_Caster_Weapon - Rate: 33 - - Index: 226 - Item: S_Spell_Flow_Shoes - Rate: 33 - - Index: 227 - Item: S_Spell_Flow_Armor - Rate: 33 - - Index: 228 - Item: S_Spell_Flow_Shield - Rate: 33 - - Index: 229 - Item: S_Greed_Armor - Rate: 33 - - Index: 230 - Item: S_Greed_Shoes - Rate: 33 - - Index: 231 - Item: S_Greed_Shield - Rate: 33 - - Index: 232 - Item: S_Greed_Weapon - Rate: 33 - - Index: 233 - Item: S_Greed_Earring - Rate: 33 - - Index: 234 - Item: S_Greed_Pendant - Rate: 33 - - Index: 235 - Item: S_Heal_Armor - Rate: 33 - - Index: 236 - Item: S_Heal_Shoes - Rate: 33 - - Index: 237 - Item: S_Heal_Shield - Rate: 33 - - Index: 238 - Item: S_Heal_Weapon - Rate: 33 - - Index: 239 - Item: S_Heal_Earring - Rate: 33 - - Index: 240 - Item: S_Heal_Pendant - Rate: 33 - - Index: 241 - Item: S_Hiding_Armor - Rate: 33 - - Index: 242 - Item: S_Hiding_Shoes - Rate: 33 - - Index: 243 - Item: S_Hiding_Shield - Rate: 33 - - Index: 244 - Item: S_Hiding_Weapon - Rate: 33 - - Index: 245 - Item: S_Hiding_Earring - Rate: 33 - - Index: 246 - Item: S_Hiding_Pendant - Rate: 33 - - Index: 247 - Item: S_Cloaking_Armor - Rate: 33 - - Index: 248 - Item: S_Cloaking_Shoes - Rate: 33 - - Index: 249 - Item: S_Cloaking_Shield - Rate: 33 - - Index: 250 - Item: S_Cloaking_Weapon - Rate: 33 - - Index: 251 - Item: S_Cloaking_Earring - Rate: 33 - - Index: 252 - Item: S_Cloaking_Pendant - Rate: 33 - - Index: 253 - Item: S_Teleport_Armor - Rate: 33 - - Index: 254 - Item: S_Teleport_Shoes - Rate: 33 - - Index: 255 - Item: S_Teleport_Shield - Rate: 33 - - Index: 256 - Item: S_Teleport_Weapon - Rate: 33 - - Index: 257 - Item: S_Teleport_Earring - Rate: 33 - - Index: 258 - Item: S_Teleport_Pendant - Rate: 33 - - Index: 259 - Item: S_Steal_Armor - Rate: 33 - - Index: 260 - Item: S_Steal_Shoes - Rate: 33 - - Index: 261 - Item: S_Steal_Shield - Rate: 33 - - Index: 262 - Item: S_Steal_Weapon - Rate: 33 - - Index: 263 - Item: S_Steal_Earring - Rate: 33 - - Index: 264 - Item: S_Steal_Pendant - Rate: 33 - - Index: 265 - Item: S_Infinity_Earring - Rate: 33 - - Index: 266 - Item: S_Infinity_Pendant - Rate: 33 - - Index: 267 - Item: S_Solid_Weapon - Rate: 33 - - Index: 268 - Item: S_Solid_Earring - Rate: 33 - - Index: 269 - Item: S_Immortal_Armor - Rate: 33 - - Index: 270 - Item: S_Immortal_Pendant - Rate: 33 - - Index: 271 - Item: S_Executioner_Weapon - Rate: 33 - - Index: 272 - Item: S_Exorcist_Weapon - Rate: 33 - - Index: 273 - Item: S_Hunting_Weapon - Rate: 33 - - Index: 274 - Item: S_Insect_Net_Weapon - Rate: 33 - - Index: 275 - Item: S_Fishing_Weapon - Rate: 33 - - Index: 276 - Item: S_Dragon_Killer_Weapon - Rate: 33 - - Index: 277 - Item: S_Corrupt_Weapon - Rate: 33 - - Index: 278 - Item: S_Vibration_Weapon - Rate: 33 - - Index: 279 - Item: S_Holy_Water_Weapon - Rate: 33 - - Index: 280 - Item: S_Scissors_Weapon - Rate: 33 - - Index: 281 - Item: S_Penetration_Earring - Rate: 33 - - Index: 282 - Item: S_Penetration_Pendent - Rate: 33 - - Index: 283 - Item: S_Tempest_Earring - Rate: 33 - - Index: 284 - Item: S_Tempest_Pendent - Rate: 33 - - Index: 285 - Item: S_M_Executioner_Weapon - Rate: 33 - - Index: 286 - Item: S_M_Exorcist_Weapon - Rate: 33 - - Index: 287 - Item: S_M_Hunting_Weapon - Rate: 33 - - Index: 288 - Item: S_M_Insect_Net_Weapon - Rate: 33 - - Index: 289 - Item: S_M_Fishing_Weapon - Rate: 33 - - Index: 290 - Item: S_M_Dragon_K_Weapon - Rate: 33 - - Index: 291 - Item: S_M_Corrupt_Weapon - Rate: 33 - - Index: 292 - Item: S_M_Vibration_Weapon - Rate: 33 - - Index: 293 - Item: S_M_Holy_Water_Weapon - Rate: 33 - - Index: 294 - Item: S_M_Scissors_Weapon - Rate: 33 - - Index: 295 - Item: S_Bearers_Armor - Rate: 33 - - Index: 296 - Item: S_Bearers_Shoes - Rate: 33 - - Index: 297 - Item: S_Bearers_Shield - Rate: 33 - - Index: 298 + Rate: 5 + - Index: 3 + Item: S_Gemstone_Armor + Rate: 5 + - Index: 4 + Item: S_Gemstone_Shoes + Rate: 5 + - Index: 5 + Item: S_Gemstone_Shield + Rate: 5 + - Index: 6 Item: S_Bearers_Weapon - Rate: 33 - - Index: 299 + Rate: 5 + - Index: 7 Item: S_Bearers_Earring - Rate: 33 - - Index: 300 + Rate: 5 + - Index: 8 Item: S_Bearers_Pendent - Rate: 33 - - Index: 301 - Item: S_Basis_Armor - Rate: 33 - - Index: 302 - Item: S_Hallowed_Armor - Rate: 33 - - Index: 303 - Item: S_Saharic_Armor - Rate: 33 - - Index: 304 - Item: S_Underneath_Armor - Rate: 33 - - Index: 305 - Item: S_Flam_Armor - Rate: 33 - - Index: 306 - Item: S_Windy_Armor - Rate: 33 - - Index: 307 - Item: S_Envenom_Armor - Rate: 33 - - Index: 308 - Item: S_Damned_Armor - Rate: 33 - - Index: 309 - Item: S_Geist_Armor - Rate: 33 - - Index: 310 - Item: S_Divine_Armor - Rate: 33 - - Index: 311 + Rate: 5 + - Index: 9 + Item: S_Bearers_Armor + Rate: 5 + - Index: 10 + Item: S_Bearers_Shoes + Rate: 5 + - Index: 11 + Item: S_Bearers_Shield + Rate: 5 + - Index: 12 + Item: S_Infinity_Earring + Rate: 5 + - Index: 13 + Item: S_Infinity_Pendant + Rate: 5 + - Index: 14 Item: S_Hasty_Shoes - Rate: 33 - - Index: 312 + Rate: 5 + - Index: 15 Item: S_Hasty_Armor - Rate: 33 - - Index: 313 + Rate: 5 + - Index: 16 + Item: S_Medium_Weapon + Rate: 10 + - Index: 17 + Item: S_Medium_Armor + Rate: 10 + - Index: 18 + Item: S_Rapid_Pendant + Rate: 10 + - Index: 19 + Item: S_Immune_Armor + Rate: 10 + - Index: 20 + Item: S_Bloody_Shoes + Rate: 10 + - Index: 21 + Item: S_Cranial_Shield + Rate: 10 + - Index: 22 + Item: Unfreez_Weapon_S + Rate: 10 + - Index: 23 + Item: S_Caster_Pendant + Rate: 10 + - Index: 24 + Item: S_Spell_Flow_Armor + Rate: 10 + - Index: 25 + Item: S_Liberation_Shoes + Rate: 10 + - Index: 26 + Item: S_Safeguard_Shield + Rate: 10 + - Index: 27 + Item: S_Neutral_Weapon + Rate: 10 + - Index: 28 + Item: S_Greed_Weapon + Rate: 10 + - Index: 29 + Item: S_Greed_Earring + Rate: 10 + - Index: 30 + Item: S_Greed_Pendant + Rate: 10 + - Index: 31 + Item: S_Greed_Armor + Rate: 10 + - Index: 32 + Item: S_Greed_Shoes + Rate: 10 + - Index: 33 + Item: S_Greed_Shield + Rate: 10 + - Index: 34 + Item: S_Executioner_Weapon + Rate: 10 + - Index: 35 + Item: S_Exorcist_Weapon + Rate: 10 + - Index: 36 + Item: S_M_Executioner_Weapon + Rate: 10 + - Index: 37 + Item: S_M_Exorcist_Weapon + Rate: 10 + - Index: 38 + Item: S_Kingbird_Weapon + Rate: 15 + - Index: 39 + Item: S_Cri_Hit_Weapon + Rate: 15 + - Index: 40 + Item: S_Healing_Weapon + Rate: 15 + - Index: 41 + Item: S_Big_Weapon + Rate: 15 + - Index: 42 + Item: S_Small_Weapon + Rate: 15 + - Index: 43 + Item: S_Caster_Weapon + Rate: 15 + - Index: 44 + Item: S_Heal_Weapon + Rate: 15 + - Index: 45 + Item: S_Hiding_Weapon + Rate: 15 + - Index: 46 + Item: S_Cloaking_Weapon + Rate: 15 + - Index: 47 + Item: S_Teleport_Weapon + Rate: 15 + - Index: 48 + Item: S_Steal_Weapon + Rate: 15 + - Index: 49 + Item: S_Solid_Weapon + Rate: 15 + - Index: 50 + Item: S_Hunting_Weapon + Rate: 15 + - Index: 51 + Item: S_Insect_Net_Weapon + Rate: 15 + - Index: 52 + Item: S_Fishing_Weapon + Rate: 15 + - Index: 53 + Item: S_Dragon_Killer_Weapon + Rate: 15 + - Index: 54 + Item: S_Corrupt_Weapon + Rate: 15 + - Index: 55 + Item: S_Vibration_Weapon + Rate: 15 + - Index: 56 + Item: S_Holy_Water_Weapon + Rate: 15 + - Index: 57 + Item: S_Scissors_Weapon + Rate: 15 + - Index: 58 + Item: S_M_Hunting_Weapon + Rate: 15 + - Index: 59 + Item: S_M_Insect_Net_Weapon + Rate: 15 + - Index: 60 + Item: S_M_Fishing_Weapon + Rate: 15 + - Index: 61 + Item: S_M_Dragon_K_Weapon + Rate: 15 + - Index: 62 + Item: S_M_Corrupt_Weapon + Rate: 15 + - Index: 63 + Item: S_M_Vibration_Weapon + Rate: 15 + - Index: 64 + Item: S_M_Holy_Water_Weapon + Rate: 15 + - Index: 65 + Item: S_M_Scissors_Weapon + Rate: 15 + - Index: 66 + Item: S_Hard_Earring + Rate: 15 + - Index: 67 + Item: S_Wise_Earring + Rate: 15 + - Index: 68 + Item: Unfreeze_Earing_S + Rate: 15 + - Index: 69 + Item: Vitality_Earing_S + Rate: 15 + - Index: 70 + Item: S_Neutral_Earring + Rate: 15 + - Index: 71 + Item: S_Curse_Lift_Earring + Rate: 15 + - Index: 72 + Item: S_Caster_earring + Rate: 15 + - Index: 73 + Item: S_Heal_Earring + Rate: 15 + - Index: 74 + Item: S_Hiding_Earring + Rate: 15 + - Index: 75 + Item: S_Cloaking_Earring + Rate: 15 + - Index: 76 + Item: S_Teleport_Earring + Rate: 15 + - Index: 77 + Item: S_Steal_Earring + Rate: 15 + - Index: 78 + Item: S_Solid_Earring + Rate: 15 + - Index: 79 + Item: S_Penetration_Earring + Rate: 15 + - Index: 80 + Item: S_Tempest_Earring + Rate: 15 + - Index: 81 + Item: S_Resist_Spell_Pendant + Rate: 15 + - Index: 82 + Item: Unfreeze_Pendent_S + Rate: 15 + - Index: 83 + Item: Vitality_Pendant_S + Rate: 15 + - Index: 84 + Item: S_Neutral_Pendent + Rate: 15 + - Index: 85 + Item: S_Curse_Lift_Pendent + Rate: 15 + - Index: 86 + Item: S_Heal_Pendant + Rate: 15 + - Index: 87 + Item: S_Hiding_Pendant + Rate: 15 + - Index: 88 + Item: S_Cloaking_Pendant + Rate: 15 + - Index: 89 + Item: S_Teleport_Pendant + Rate: 15 + - Index: 90 + Item: S_Steal_Pendant + Rate: 15 + - Index: 91 + Item: S_Immortal_Pendant + Rate: 15 + - Index: 92 + Item: S_Penetration_Pendent + Rate: 15 + - Index: 93 + Item: S_Tempest_Pendent + Rate: 15 + - Index: 94 + Item: S_Hard_Armor + Rate: 15 + - Index: 95 + Item: S_Ancient_Armor + Rate: 15 + - Index: 96 + Item: S_Critical_Armor + Rate: 15 + - Index: 97 + Item: S_Big_Armor + Rate: 15 + - Index: 98 + Item: S_Small_Armor + Rate: 15 + - Index: 99 + Item: S_Plasterer's_Armor + Rate: 15 + - Index: 100 + Item: S_Insomniac_Armor + Rate: 15 + - Index: 101 + Item: S_Peerless_Armor + Rate: 15 + - Index: 102 + Item: S_Adurate_Armor + Rate: 15 + - Index: 103 + Item: S_Heal_Armor + Rate: 15 + - Index: 104 + Item: S_Hiding_Armor + Rate: 15 + - Index: 105 + Item: S_Cloaking_Armor + Rate: 15 + - Index: 106 + Item: S_Teleport_Armor + Rate: 15 + - Index: 107 + Item: S_Steal_Armor + Rate: 15 + - Index: 108 + Item: S_Immortal_Armor + Rate: 15 + - Index: 109 + Item: S_Basis_Armor + Rate: 15 + - Index: 110 + Item: S_Hallowed_Armor + Rate: 15 + - Index: 111 + Item: S_Saharic_Armor + Rate: 15 + - Index: 112 + Item: S_Underneath_Armor + Rate: 15 + - Index: 113 + Item: S_Flam_Armor + Rate: 15 + - Index: 114 + Item: S_Windy_Armor + Rate: 15 + - Index: 115 + Item: S_Envenom_Armor + Rate: 15 + - Index: 116 + Item: S_Damned_Armor + Rate: 15 + - Index: 117 + Item: S_Geist_Armor + Rate: 15 + - Index: 118 + Item: S_Divine_Armor + Rate: 15 + - Index: 119 + Item: S_Chemical_Shoes + Rate: 15 + - Index: 120 + Item: S_Clamorous_Shoes + Rate: 15 + - Index: 121 + Item: S_Insecticide_Shoes + Rate: 15 + - Index: 122 + Item: S_Fisher_Shoes + Rate: 15 + - Index: 123 + Item: S_Seraphim_Shoes + Rate: 15 + - Index: 124 + Item: S_Beholder_Shoes + Rate: 15 + - Index: 125 + Item: S_Divine_Shoes + Rate: 15 + - Index: 126 + Item: S_Dragoon_Shoes + Rate: 15 + - Index: 127 + Item: S_Plasterer's_Shoes + Rate: 15 + - Index: 128 + Item: S_Insomniac_Shoes + Rate: 15 + - Index: 129 + Item: S_Peerless_Shoes + Rate: 15 + - Index: 130 + Item: S_Adurate_Shoes + Rate: 15 + - Index: 131 + Item: S_Spell_Flow_Shoes + Rate: 15 + - Index: 132 + Item: S_Heal_Shoes + Rate: 15 + - Index: 133 + Item: S_Hiding_Shoes + Rate: 15 + - Index: 134 + Item: S_Cloaking_Shoes + Rate: 15 + - Index: 135 + Item: S_Teleport_Shoes + Rate: 15 + - Index: 136 + Item: S_Steal_Shoes + Rate: 15 + - Index: 137 + Item: S_Brutal_Shield + Rate: 15 + - Index: 138 + Item: S_Gargantua_Shield + Rate: 15 + - Index: 139 + Item: S_Homers_Shield + Rate: 15 + - Index: 140 + Item: S_Dragoon_Shield + Rate: 15 + - Index: 141 + Item: S_Satanic_Shield + Rate: 15 + - Index: 142 + Item: S_Flameguard_Shield + Rate: 15 + - Index: 143 + Item: S_Requiem_Shield + Rate: 15 + - Index: 144 + Item: S_Cadi_Shield + Rate: 15 + - Index: 145 + Item: S_Stability_Shield + Rate: 15 + - Index: 146 + Item: S_Spell_Flow_Shield + Rate: 15 + - Index: 147 + Item: S_Heal_Shield + Rate: 15 + - Index: 148 + Item: S_Hiding_Shield + Rate: 15 + - Index: 149 + Item: S_Cloaking_Shield + Rate: 15 + - Index: 150 + Item: S_Teleport_Shield + Rate: 15 + - Index: 151 + Item: S_Steal_Shield + Rate: 15 + - Index: 152 Item: S_Basis_Shield - Rate: 33 - - Index: 314 + Rate: 15 + - Index: 153 Item: S_Hallowed_Shield - Rate: 33 - - Index: 315 + Rate: 15 + - Index: 154 Item: S_Saharic_Shield - Rate: 33 - - Index: 316 + Rate: 15 + - Index: 155 Item: S_Underneath_Shield - Rate: 33 - - Index: 317 + Rate: 15 + - Index: 156 Item: S_Flam_Shield - Rate: 33 - - Index: 318 + Rate: 15 + - Index: 157 Item: S_Windy_Shield - Rate: 33 - - Index: 319 + Rate: 15 + - Index: 158 Item: S_Envenom_Shield - Rate: 33 - - Index: 320 + Rate: 15 + - Index: 159 Item: S_Damned_Shield - Rate: 33 - - Index: 321 + Rate: 15 + - Index: 160 Item: S_Geist_Shield - Rate: 33 - - Index: 322 + Rate: 15 + - Index: 161 Item: S_Divine_Shield - Rate: 33 - - Index: 323 - Item: S_Expert_Shoes - Rate: 33 - - Index: 324 - Item: S_Expert_Shield - Rate: 33 - - Index: 325 - Item: S_Beginner_Shoes - Rate: 33 - - Index: 326 - Item: S_Beginner_Shield - Rate: 33 - - Index: 327 - Item: S_Rookie_Shoes - Rate: 33 - - Index: 328 - Item: S_Rookie_Shield - Rate: 33 - - Index: 329 - Item: S_Advanced_Shoes - Rate: 33 - - Index: 330 - Item: S_Advanced_Shield - Rate: 33 - - Index: 331 - Item: S_Attack_Armor - Rate: 33 - - Index: 332 - Item: S_Blitz_Earring - Rate: 33 - - Index: 333 - Item: S_Blitz_Pendent - Rate: 33 - - Index: 334 - Item: S_ColdBolt_Armor - Rate: 33 - - Index: 335 - Item: S_FireBolt_Armor - Rate: 33 - - Index: 336 - Item: S_LightingBolt_Armor - Rate: 33 - - Index: 337 - Item: S_EarthSpike_Armor - Rate: 33 - - Index: 338 - Item: S_Enhance_Force_Weapon - Rate: 33 - - Index: 339 - Item: S_Force_Weapon - Rate: 33 - - Index: 340 - Item: S_Force_Earring - Rate: 33 - - Index: 341 - Item: S_Force_Pendant - Rate: 33 - - Index: 342 - Item: S_Enhance_Spirit_Weapon - Rate: 33 - - Index: 343 - Item: S_Spirit_Weapon - Rate: 33 - - Index: 344 - Item: S_Spirit_Earring - Rate: 33 - - Index: 345 - Item: S_Spirit_Pendant - Rate: 33 - - Index: 346 - Item: S_Blitz_Shoes - Rate: 33 - - Index: 347 - Item: S_Blitz_Shield - Rate: 33 - - Index: 348 - Item: S_Exceed_Weapon - Rate: 33 - - Index: 349 - Item: S_Titan_Earring - Rate: 33 - - Index: 350 - Item: S_Titan_Pendant - Rate: 33 - - Index: 351 - Item: S_Boned_Earring - Rate: 33 - - Index: 352 - Item: S_Boned_Pendant - Rate: 33 - - Index: 353 - Item: S_Gigantic_Earring - Rate: 33 - - Index: 354 - Item: S_Gigantic_Pendant - Rate: 33 - - Index: 355 - Item: S_Caster_Shoes - Rate: 33 - - Index: 356 - Item: S_Caster_Shield - Rate: 33 - - Index: 357 - Item: S_Caster_Armor - Rate: 33 - - Index: 358 - Item: S_Reload_Shoes - Rate: 33 - - Index: 359 - Item: S_Reload_Shield - Rate: 33 - - Index: 360 - Item: S_Reload_Armor - Rate: 33 - - Index: 361 - Item: S_Swordman_earring - Rate: 33 - - Index: 362 - Item: S_Merchant_earring - Rate: 33 - - Index: 363 - Item: S_Acolyte_earring - Rate: 33 - - Index: 364 - Item: S_Magician_earring - Rate: 33 - - Index: 365 - Item: S_Swordman_Pendant - Rate: 33 - - Index: 366 - Item: S_Merchant_Pendant - Rate: 33 - - Index: 367 - Item: S_Acolyte_Pendant - Rate: 33 - - Index: 368 - Item: S_Thief_Pendant - Rate: 33 - - Index: 369 - Item: S_Magician_Pendant - Rate: 33 - - Index: 370 - Item: S_Archer_Pendant - Rate: 33 - - Index: 371 - Item: S_Critical_Shield - Rate: 33 - - Index: 372 - Item: S_Critical_Shoes - Rate: 33 - - Index: 373 - Item: S_Blitz_Weapon - Rate: 33 - - Index: 374 - Item: S_Blitz_Armor - Rate: 33 - - Index: 375 - Item: S_Tension_Weapon - Rate: 33 - - Index: 376 - Item: S_Tension_Earring - Rate: 33 - - Index: 377 - Item: S_Tension_Pendent - Rate: 33 - - Index: 378 - Item: S_Elegant_Weapon - Rate: 33 - - Index: 379 - Item: S_Elegant_Earring - Rate: 33 - - Index: 380 - Item: S_Elegant_Pendent - Rate: 33 - - Index: 381 - Item: S_Healing_Shield - Rate: 33 - - Index: 382 - Item: S_Healing_Shoes - Rate: 33 - - Index: 383 - Item: S_Restore_Earring - Rate: 33 - - Index: 384 - Item: S_Restore_Pendent - Rate: 33 - - Index: 385 - Item: S_MortalBlow_Weapon - Rate: 33 - - Index: 386 - Item: S_MortalBlow_Earring - Rate: 33 - - Index: 387 - Item: S_MortalBlow_Pendent - Rate: 33 - - Index: 388 - Item: Sentimental_Weapone_S - Rate: 33 - - Index: 389 - Item: Sentimental_Earring_S - Rate: 33 - - Index: 390 - Item: Sentimental_Pendant_S - Rate: 33 - - Index: 391 - Item: Enchanting_Weapone_S - Rate: 33 - - Index: 392 - Item: Enchanting_Earring_S - Rate: 33 - - Index: 393 - Item: Enchanting_Pendant_S - Rate: 33 - - Index: 394 - Item: S_Thief_earring - Rate: 33 - - Index: 395 - Item: S_Archer_earring - Rate: 33 + Rate: 15 - Group: HELM_OF_FAITH_BOX SubGroups: - SubGroup: 1 List: - Index: 0 Item: Viva_Adul_Hat_WL1 - Rate: 1 + Rate: 10 - Index: 1 Item: Viva_Adul_Hat_WL2 - Rate: 1 + Rate: 10 - Index: 2 Item: Viva_Adul_Hat_SR1 - Rate: 1 + Rate: 10 - Index: 3 Item: Viva_Adul_Hat_SR2 - Rate: 1 + Rate: 10 - Index: 4 Item: Viva_Adul_Hat_AB1 - Rate: 1 + Rate: 10 - Index: 5 Item: Viva_Adul_Hat_AB2 - Rate: 1 + Rate: 10 - Index: 6 Item: Viva_Adul_Hat_SC1 - Rate: 1 + Rate: 10 - Index: 7 Item: Viva_Adul_Hat_SC2 - Rate: 1 + Rate: 10 - Index: 8 Item: Viva_Adul_Hat_RA1 - Rate: 1 + Rate: 10 - Index: 9 Item: Viva_Adul_Hat_RA2 - Rate: 1 + Rate: 10 - Index: 10 Item: Viva_Adul_Hat_LG1 - Rate: 1 + Rate: 10 - Index: 11 Item: Viva_Adul_Hat_LG2 - Rate: 1 + Rate: 10 - Index: 12 Item: Viva_Adul_Hat_GC1 - Rate: 1 + Rate: 10 - Index: 13 Item: Viva_Adul_Hat_GC2 - Rate: 1 + Rate: 10 - Index: 14 Item: Viva_Adul_Hat_SO1 - Rate: 1 + Rate: 10 - Index: 15 Item: Viva_Adul_Hat_SO2 - Rate: 1 + Rate: 10 - Index: 16 Item: Viva_Adul_Hat_RK1 - Rate: 1 + Rate: 10 - Index: 17 Item: Viva_Adul_Hat_RK2 - Rate: 1 + Rate: 10 - Index: 18 Item: Viva_Adul_Hat_WM1 - Rate: 1 + Rate: 10 - Index: 19 Item: Viva_Adul_Hat_WM2 - Rate: 1 + Rate: 10 - Index: 20 Item: Viva_Adul_Hat_NC1 - Rate: 1 + Rate: 10 - Index: 21 Item: Viva_Adul_Hat_NC2 - Rate: 1 + Rate: 10 - Index: 22 Item: Viva_Adul_Hat_GN1 - Rate: 1 + Rate: 10 - Index: 23 Item: Viva_Adul_Hat_GN2 - Rate: 1 + Rate: 10 - Index: 24 Item: Viva_Adul_Hat_KO1 - Rate: 1 + Rate: 10 - Index: 25 Item: Viva_Adul_Hat_KO2 - Rate: 1 + Rate: 10 - Index: 26 Item: Viva_Adul_Hat_RL1 - Rate: 1 + Rate: 10 - Index: 27 Item: Viva_Adul_Hat_RL2 - Rate: 1 + Rate: 10 - Index: 28 Item: Viva_Adul_Hat_SP1 - Rate: 1 + Rate: 10 - Index: 29 Item: Viva_Adul_Hat_SP2 - Rate: 1 + Rate: 10 - Index: 30 Item: Viva_Adul_Hat_SJ1 - Rate: 1 + Rate: 10 - Index: 31 Item: Viva_Adul_Hat_SJ2 - Rate: 1 + Rate: 10 - Index: 32 Item: Viva_Adul_Hat_SU1 - Rate: 1 + Rate: 10 - Index: 33 Item: Viva_Adul_Hat_SU2 - Rate: 1 + Rate: 10 - Group: 2022_LUNARNEWYEARS_BOX SubGroups: - SubGroup: 0 @@ -40868,191 +41565,191 @@ Body: - SubGroup: 1 List: - Index: 0 - Item: Burning_Knuckle_OS - Rate: 625 - - Index: 1 Item: Cannon_Rapier_OS - Rate: 625 - - Index: 2 - Item: Saphir_Hall_OS - Rate: 625 - - Index: 3 - Item: Ultio_Spes_OS - Rate: 625 - - Index: 4 - Item: Virtual_Bow_OS - Rate: 625 - - Index: 5 - Item: MH_P89_OS - Rate: 625 - - Index: 6 - Item: AC_B44_OS - Rate: 625 - - Index: 7 + Rate: 10 + - Index: 1 Item: Beam_Claymore_OS - Rate: 625 - - Index: 8 + Rate: 10 + - Index: 2 Item: Rutilus_Stick_OS - Rate: 625 - - Index: 9 - Item: ElectricFox_OS - Rate: 625 - - Index: 10 - Item: Meuchler_OS - Rate: 625 - - Index: 11 - Item: Blasti_OS - Rate: 625 - - Index: 12 - Item: HR_S55_OS - Rate: 625 - - Index: 13 + Rate: 10 + - Index: 3 Item: Circuit_Board_OS - Rate: 625 - - Index: 14 + Rate: 10 + - Index: 4 + Item: Blasti_OS + Rate: 10 + - Index: 5 + Item: Saphir_Hall_OS + Rate: 10 + - Index: 6 + Item: Virtual_Bow_OS + Rate: 10 + - Index: 7 + Item: MH_P89_OS + Rate: 10 + - Index: 8 + Item: Meuchler_OS + Rate: 10 + - Index: 9 + Item: Burning_Knuckle_OS + Rate: 10 + - Index: 10 + Item: HR_S55_OS + Rate: 10 + - Index: 11 Item: Kuroiro_OS - Rate: 625 - - Index: 15 + Rate: 10 + - Index: 12 + Item: AC_B44_OS + Rate: 10 + - Index: 13 Item: Boost_Lance_OS - Rate: 625 + Rate: 10 + - Index: 14 + Item: Ultio_Spes_OS + Rate: 10 + - Index: 15 + Item: ElectricFox_OS + Rate: 10 - Group: EP17_1_SPC02 SubGroups: - SubGroup: 1 List: - Index: 0 Item: EP17_1_SPC05 - Rate: 7500 + Rate: 750 - Index: 1 Item: EP17_1_SPC06 - Rate: 2000 + Rate: 200 - Index: 2 Item: EP17_1_SPC07 - Rate: 500 + Rate: 50 - Group: EP17_1_SPC03 SubGroups: - SubGroup: 1 List: - Index: 0 Item: EP17_1_SPC08 - Rate: 7500 + Rate: 750 - Index: 1 Item: EP17_1_SPC09 - Rate: 2000 + Rate: 200 - Index: 2 Item: EP17_1_SPC10 - Rate: 500 + Rate: 50 - Group: EP17_1_SPC04 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: EP17_1_EVT03 - Rate: 900 + Item: EP17_1_EVT38 + Rate: 1 - Index: 1 - Item: EP17_1_EVT04 - Rate: 900 + Item: EP17_1_EVT36 + Rate: 1 - Index: 2 - Item: EP17_1_EVT05 - Rate: 904 + Item: EP17_1_EVT37 + Rate: 1 - Index: 3 - Item: EP17_1_EVT06 - Rate: 904 + Item: EP17_1_EVT35 + Rate: 1 - Index: 4 - Item: EP17_1_EVT07 - Rate: 904 + Item: EP17_1_EVT34 + Rate: 1 - Index: 5 - Item: EP17_1_EVT08 - Rate: 904 + Item: EP17_1_EVT33 + Rate: 1 - Index: 6 - Item: EP17_1_EVT09 - Rate: 904 - - Index: 7 - Item: EP17_1_EVT10 - Rate: 904 - - Index: 8 - Item: EP17_1_EVT11 - Rate: 300 - - Index: 9 - Item: EP17_1_EVT12 - Rate: 300 - - Index: 10 - Item: EP17_1_EVT13 - Rate: 300 - - Index: 11 - Item: EP17_1_EVT14 - Rate: 300 - - Index: 12 - Item: EP17_1_EVT15 - Rate: 300 - - Index: 13 - Item: EP17_1_EVT16 - Rate: 300 - - Index: 14 - Item: EP17_1_EVT17 - Rate: 100 - - Index: 15 - Item: EP17_1_EVT18 - Rate: 100 - - Index: 16 Item: EP17_1_EVT19 Rate: 100 + - Index: 7 + Item: EP17_1_EVT32 + Rate: 10 + - Index: 8 + Item: EP17_1_EVT31 + Rate: 10 + - Index: 9 + Item: EP17_1_EVT30 + Rate: 10 + - Index: 10 + Item: EP17_1_EVT29 + Rate: 10 + - Index: 11 + Item: EP17_1_EVT28 + Rate: 10 + - Index: 12 + Item: EP17_1_EVT27 + Rate: 10 + - Index: 13 + Item: EP17_1_EVT26 + Rate: 10 + - Index: 14 + Item: EP17_1_EVT25 + Rate: 100 + - Index: 15 + Item: EP17_1_EVT24 + Rate: 100 + - Index: 16 + Item: EP17_1_EVT23 + Rate: 100 - Index: 17 - Item: EP17_1_EVT20 + Item: EP17_1_EVT22 Rate: 100 - Index: 18 Item: EP17_1_EVT21 Rate: 100 - Index: 19 - Item: EP17_1_EVT22 + Item: EP17_1_EVT20 Rate: 100 - Index: 20 - Item: EP17_1_EVT23 + Item: EP17_1_EVT18 Rate: 100 - Index: 21 - Item: EP17_1_EVT24 + Item: EP17_1_EVT17 Rate: 100 - Index: 22 - Item: EP17_1_EVT25 - Rate: 100 + Item: EP17_1_EVT16 + Rate: 300 - Index: 23 - Item: EP17_1_EVT26 - Rate: 10 + Item: EP17_1_EVT15 + Rate: 300 - Index: 24 - Item: EP17_1_EVT27 - Rate: 10 + Item: EP17_1_EVT14 + Rate: 300 - Index: 25 - Item: EP17_1_EVT28 - Rate: 10 + Item: EP17_1_EVT13 + Rate: 300 - Index: 26 - Item: EP17_1_EVT29 - Rate: 10 + Item: EP17_1_EVT12 + Rate: 300 - Index: 27 - Item: EP17_1_EVT30 - Rate: 10 + Item: EP17_1_EVT11 + Rate: 300 - Index: 28 - Item: EP17_1_EVT31 - Rate: 10 + Item: EP17_1_EVT10 + Rate: 904 - Index: 29 - Item: EP17_1_EVT32 - Rate: 10 + Item: EP17_1_EVT09 + Rate: 904 - Index: 30 - Item: EP17_1_EVT33 - Rate: 1 + Item: EP17_1_EVT08 + Rate: 904 - Index: 31 - Item: EP17_1_EVT34 - Rate: 1 + Item: EP17_1_EVT07 + Rate: 904 - Index: 32 - Item: EP17_1_EVT35 - Rate: 1 + Item: EP17_1_EVT03 + Rate: 900 - Index: 33 - Item: EP17_1_EVT36 - Rate: 1 + Item: EP17_1_EVT04 + Rate: 900 - Index: 34 - Item: EP17_1_EVT37 - Rate: 1 + Item: EP17_1_EVT06 + Rate: 904 - Index: 35 - Item: EP17_1_EVT38 - Rate: 1 + Item: EP17_1_EVT05 + Rate: 904 - Group: STABILITYSHADOW_MIX SubGroups: - SubGroup: 1 @@ -42109,1011 +42806,814 @@ Body: List: - Index: 0 Item: S_Breezy_Armor - Rate: 227 + Rate: 5 - Index: 1 - Item: S_Immune_Armor - Rate: 227 + Item: S_Ancient_Armor + Rate: 5 - Index: 2 Item: S_Hard_Armor - Rate: 227 + Rate: 5 - Index: 3 - Item: S_Ancient_Armor - Rate: 227 + Item: S_Immune_Armor + Rate: 5 - Index: 4 Item: S_Critical_Armor - Rate: 227 + Rate: 5 - Index: 5 - Item: S_Dexterous_Armor - Rate: 227 + Item: S_Small_Armor + Rate: 5 - Index: 6 - Item: S_Lucky_Armor - Rate: 227 + Item: S_Medium_Armor + Rate: 5 - Index: 7 Item: S_Big_Armor - Rate: 227 + Rate: 5 - Index: 8 - Item: S_Medium_Armor - Rate: 227 - - Index: 9 - Item: S_Small_Armor - Rate: 227 - - Index: 10 - Item: S_Malicious_Armor - Rate: 227 - - Index: 11 Item: S_Gemstone_Armor - Rate: 227 + Rate: 5 + - Index: 9 + Item: S_Adurate_Armor + Rate: 5 + - Index: 10 + Item: S_Peerless_Armor + Rate: 5 + - Index: 11 + Item: S_Insomniac_Armor + Rate: 5 - Index: 12 Item: S_Plasterer's_Armor - Rate: 227 + Rate: 5 - Index: 13 - Item: S_Insomniac_Armor - Rate: 227 - - Index: 14 - Item: S_Peerless_Armor - Rate: 227 - - Index: 15 - Item: S_Adurate_Armor - Rate: 227 - - Index: 16 Item: S_Spell_Flow_Armor - Rate: 227 - - Index: 17 - Item: S_Greed_Armor - Rate: 227 - - Index: 18 + Rate: 5 + - Index: 14 Item: S_Heal_Armor - Rate: 227 - - Index: 19 - Item: S_Hiding_Armor - Rate: 227 - - Index: 20 + Rate: 5 + - Index: 15 + Item: S_Greed_Armor + Rate: 5 + - Index: 16 Item: S_Cloaking_Armor - Rate: 227 - - Index: 21 - Item: S_Teleport_Armor - Rate: 227 - - Index: 22 + Rate: 5 + - Index: 17 + Item: S_Hiding_Armor + Rate: 5 + - Index: 18 Item: S_Steal_Armor - Rate: 227 - - Index: 23 + Rate: 5 + - Index: 19 + Item: S_Teleport_Armor + Rate: 5 + - Index: 20 Item: S_Immortal_Armor - Rate: 227 - - Index: 24 + Rate: 5 + - Index: 21 Item: S_Bearers_Armor - Rate: 227 + Rate: 5 + - Index: 22 + Item: S_Divine_Armor + Rate: 5 + - Index: 23 + Item: S_Geist_Armor + Rate: 5 + - Index: 24 + Item: S_Damned_Armor + Rate: 5 - Index: 25 - Item: S_Basis_Armor - Rate: 227 + Item: S_Envenom_Armor + Rate: 5 - Index: 26 - Item: S_Hallowed_Armor - Rate: 227 + Item: S_Windy_Armor + Rate: 5 - Index: 27 - Item: S_Saharic_Armor - Rate: 227 + Item: S_Flam_Armor + Rate: 5 - Index: 28 Item: S_Underneath_Armor - Rate: 227 + Rate: 5 - Index: 29 - Item: S_Flam_Armor - Rate: 227 + Item: S_Saharic_Armor + Rate: 5 - Index: 30 - Item: S_Windy_Armor - Rate: 227 + Item: S_Hallowed_Armor + Rate: 5 - Index: 31 - Item: S_Envenom_Armor - Rate: 227 + Item: S_Basis_Armor + Rate: 5 - Index: 32 - Item: S_Damned_Armor - Rate: 227 - - Index: 33 - Item: S_Geist_Armor - Rate: 227 - - Index: 34 - Item: S_Divine_Armor - Rate: 227 - - Index: 35 Item: S_Hasty_Armor - Rate: 227 - - Index: 36 + Rate: 5 + - Index: 33 + Item: S_Malicious_Armor + Rate: 5 + - Index: 34 Item: S_Attack_Armor - Rate: 227 - - Index: 37 + Rate: 5 + - Index: 35 Item: S_ColdBolt_Armor - Rate: 227 - - Index: 38 + Rate: 5 + - Index: 36 Item: S_FireBolt_Armor - Rate: 227 - - Index: 39 + Rate: 5 + - Index: 37 Item: S_LightingBolt_Armor - Rate: 227 - - Index: 40 + Rate: 5 + - Index: 38 Item: S_EarthSpike_Armor - Rate: 227 - - Index: 41 + Rate: 5 + - Index: 39 Item: S_Caster_Armor - Rate: 227 - - Index: 42 + Rate: 5 + - Index: 40 Item: S_Reload_Armor - Rate: 227 - - Index: 43 - Item: S_Blitz_Armor - Rate: 227 + Rate: 5 - Group: SHADOW_CUBE_SHIELD SubGroups: - SubGroup: 1 List: - Index: 0 Item: S_Athena_Shield - Rate: 233 + Rate: 5 - Index: 1 - Item: S_Athletic_Shield - Rate: 233 - - Index: 2 - Item: S_Vital_Shield - Rate: 233 - - Index: 3 - Item: S_Cranial_Shield - Rate: 233 - - Index: 4 - Item: S_Safeguard_Shield - Rate: 233 - - Index: 5 - Item: S_Brutal_Shield - Rate: 233 - - Index: 6 - Item: S_Gargantua_Shield - Rate: 233 - - Index: 7 - Item: S_Homers_Shield - Rate: 233 - - Index: 8 - Item: S_Dragoon_Shield - Rate: 233 - - Index: 9 - Item: S_Satanic_Shield - Rate: 233 - - Index: 10 - Item: S_Flameguard_Shield - Rate: 233 - - Index: 11 - Item: S_Requiem_Shield - Rate: 233 - - Index: 12 Item: S_Cadi_Shield - Rate: 233 - - Index: 13 - Item: S_Malicious_Shield - Rate: 233 - - Index: 14 - Item: S_Gemstone_Shield - Rate: 233 - - Index: 15 + Rate: 5 + - Index: 2 + Item: S_Requiem_Shield + Rate: 5 + - Index: 3 + Item: S_Flameguard_Shield + Rate: 5 + - Index: 4 + Item: S_Satanic_Shield + Rate: 5 + - Index: 5 + Item: S_Dragoon_Shield + Rate: 5 + - Index: 6 + Item: S_Homers_Shield + Rate: 5 + - Index: 7 + Item: S_Gargantua_Shield + Rate: 5 + - Index: 8 + Item: S_Brutal_Shield + Rate: 5 + - Index: 9 + Item: S_Safeguard_Shield + Rate: 5 + - Index: 10 + Item: S_Cranial_Shield + Rate: 5 + - Index: 11 Item: S_Stability_Shield - Rate: 233 - - Index: 16 + Rate: 5 + - Index: 12 + Item: S_Gemstone_Shield + Rate: 5 + - Index: 13 Item: S_Spell_Flow_Shield - Rate: 233 - - Index: 17 - Item: S_Greed_Shield - Rate: 233 - - Index: 18 + Rate: 5 + - Index: 14 Item: S_Heal_Shield - Rate: 233 - - Index: 19 - Item: S_Hiding_Shield - Rate: 233 - - Index: 20 + Rate: 5 + - Index: 15 + Item: S_Greed_Shield + Rate: 5 + - Index: 16 Item: S_Cloaking_Shield - Rate: 233 - - Index: 21 - Item: S_Teleport_Shield - Rate: 233 - - Index: 22 + Rate: 5 + - Index: 17 + Item: S_Hiding_Shield + Rate: 5 + - Index: 18 Item: S_Steal_Shield - Rate: 233 - - Index: 23 + Rate: 5 + - Index: 19 + Item: S_Teleport_Shield + Rate: 5 + - Index: 20 Item: S_Bearers_Shield - Rate: 233 - - Index: 24 + Rate: 5 + - Index: 21 Item: S_Basis_Shield - Rate: 233 - - Index: 25 - Item: S_Hallowed_Shield - Rate: 233 - - Index: 26 + Rate: 5 + - Index: 22 Item: S_Saharic_Shield - Rate: 233 - - Index: 27 + Rate: 5 + - Index: 23 Item: S_Underneath_Shield - Rate: 233 - - Index: 28 + Rate: 5 + - Index: 24 Item: S_Flam_Shield - Rate: 233 - - Index: 29 + Rate: 5 + - Index: 25 Item: S_Windy_Shield - Rate: 233 - - Index: 30 + Rate: 5 + - Index: 26 Item: S_Envenom_Shield - Rate: 233 - - Index: 31 + Rate: 5 + - Index: 27 Item: S_Damned_Shield - Rate: 233 - - Index: 32 + Rate: 5 + - Index: 28 Item: S_Geist_Shield - Rate: 233 - - Index: 33 + Rate: 5 + - Index: 29 Item: S_Divine_Shield - Rate: 233 - - Index: 34 + Rate: 5 + - Index: 30 + Item: S_Hallowed_Shield + Rate: 5 + - Index: 31 Item: S_Expert_Shield - Rate: 233 - - Index: 35 + Rate: 5 + - Index: 32 Item: S_Beginner_Shield - Rate: 233 - - Index: 36 + Rate: 5 + - Index: 33 Item: S_Rookie_Shield - Rate: 233 - - Index: 37 + Rate: 5 + - Index: 34 Item: S_Advanced_Shield - Rate: 233 - - Index: 38 + Rate: 5 + - Index: 35 + Item: S_Malicious_Shield + Rate: 5 + - Index: 36 Item: S_Blitz_Shield - Rate: 233 - - Index: 39 + Rate: 5 + - Index: 37 Item: S_Caster_Shield - Rate: 233 - - Index: 40 + Rate: 5 + - Index: 38 Item: S_Reload_Shield - Rate: 233 - - Index: 41 - Item: S_Critical_Shield - Rate: 233 - - Index: 42 - Item: S_Healing_Shield - Rate: 233 + Rate: 5 - Group: SHADOW_CUBE_SHOES SubGroups: - SubGroup: 1 List: - Index: 0 Item: S_Champion_Shoes - Rate: 270 + Rate: 5 - Index: 1 - Item: S_Vital_Shoes - Rate: 270 - - Index: 2 - Item: S_Athletic_Shoes - Rate: 270 - - Index: 3 - Item: S_Bloody_Shoes - Rate: 270 - - Index: 4 - Item: S_Liberation_Shoes - Rate: 270 - - Index: 5 - Item: S_Chemical_Shoes - Rate: 270 - - Index: 6 - Item: S_Clamorous_Shoes - Rate: 270 - - Index: 7 - Item: S_Insecticide_Shoes - Rate: 270 - - Index: 8 - Item: S_Fisher_Shoes - Rate: 270 - - Index: 9 - Item: S_Seraphim_Shoes - Rate: 270 - - Index: 10 - Item: S_Beholder_Shoes - Rate: 270 - - Index: 11 - Item: S_Divine_Shoes - Rate: 270 - - Index: 12 Item: S_Dragoon_Shoes - Rate: 270 - - Index: 13 - Item: S_Malicious_Shoes - Rate: 270 - - Index: 14 + Rate: 5 + - Index: 2 + Item: S_Divine_Shoes + Rate: 5 + - Index: 3 + Item: S_Beholder_Shoes + Rate: 5 + - Index: 4 + Item: S_Seraphim_Shoes + Rate: 5 + - Index: 5 + Item: S_Fisher_Shoes + Rate: 5 + - Index: 6 + Item: S_Insecticide_Shoes + Rate: 5 + - Index: 7 + Item: S_Clamorous_Shoes + Rate: 5 + - Index: 8 + Item: S_Chemical_Shoes + Rate: 5 + - Index: 9 + Item: S_Liberation_Shoes + Rate: 5 + - Index: 10 + Item: S_Bloody_Shoes + Rate: 5 + - Index: 11 Item: S_Gemstone_Shoes - Rate: 270 + Rate: 5 + - Index: 12 + Item: S_Adurate_Shoes + Rate: 5 + - Index: 13 + Item: S_Peerless_Shoes + Rate: 5 + - Index: 14 + Item: S_Insomniac_Shoes + Rate: 5 - Index: 15 Item: S_Plasterer's_Shoes - Rate: 270 + Rate: 5 - Index: 16 - Item: S_Insomniac_Shoes - Rate: 270 - - Index: 17 - Item: S_Peerless_Shoes - Rate: 270 - - Index: 18 - Item: S_Adurate_Shoes - Rate: 270 - - Index: 19 Item: S_Spell_Flow_Shoes - Rate: 270 - - Index: 20 - Item: S_Greed_Shoes - Rate: 270 - - Index: 21 + Rate: 5 + - Index: 17 Item: S_Heal_Shoes - Rate: 270 - - Index: 22 - Item: S_Hiding_Shoes - Rate: 270 - - Index: 23 + Rate: 5 + - Index: 18 + Item: S_Greed_Shoes + Rate: 5 + - Index: 19 Item: S_Cloaking_Shoes - Rate: 270 - - Index: 24 - Item: S_Teleport_Shoes - Rate: 270 - - Index: 25 + Rate: 5 + - Index: 20 + Item: S_Hiding_Shoes + Rate: 5 + - Index: 21 Item: S_Steal_Shoes - Rate: 270 - - Index: 26 + Rate: 5 + - Index: 22 + Item: S_Teleport_Shoes + Rate: 5 + - Index: 23 Item: S_Bearers_Shoes - Rate: 270 - - Index: 27 + Rate: 5 + - Index: 24 Item: S_Hasty_Shoes - Rate: 270 - - Index: 28 + Rate: 5 + - Index: 25 Item: S_Expert_Shoes - Rate: 270 - - Index: 29 + Rate: 5 + - Index: 26 Item: S_Beginner_Shoes - Rate: 270 - - Index: 30 + Rate: 5 + - Index: 27 Item: S_Rookie_Shoes - Rate: 270 - - Index: 31 + Rate: 5 + - Index: 28 Item: S_Advanced_Shoes - Rate: 270 - - Index: 32 + Rate: 5 + - Index: 29 + Item: S_Malicious_Shoes + Rate: 5 + - Index: 30 Item: S_Blitz_Shoes - Rate: 270 - - Index: 33 + Rate: 5 + - Index: 31 Item: S_Caster_Shoes - Rate: 270 - - Index: 34 + Rate: 5 + - Index: 32 Item: S_Reload_Shoes - Rate: 270 - - Index: 35 - Item: S_Critical_Shoes - Rate: 270 - - Index: 36 - Item: S_Healing_Shoes - Rate: 270 + Rate: 5 - Group: SHADOW_CUBE_WEAPON SubGroups: - SubGroup: 1 List: - Index: 0 - Item: S_Physical_Weapon - Rate: 185 + Item: S_Healing_Weapon + Rate: 5 - Index: 1 - Item: S_Magical_Weapon - Rate: 185 + Item: S_Cri_Hit_Weapon + Rate: 5 - Index: 2 Item: S_Kingbird_Weapon - Rate: 185 + Rate: 5 - Index: 3 - Item: S_Cri_Hit_Weapon - Rate: 185 - - Index: 4 - Item: S_Healing_Weapon - Rate: 185 - - Index: 5 - Item: S_Lucky_Weapon - Rate: 185 - - Index: 6 - Item: S_Dexterous_Weapon - Rate: 185 - - Index: 7 - Item: S_Big_Weapon - Rate: 185 - - Index: 8 - Item: S_Medium_Weapon - Rate: 185 - - Index: 9 - Item: S_Small_Weapon - Rate: 185 - - Index: 10 - Item: S_Spiritual_Weapon - Rate: 185 - - Index: 11 Item: S_Gemstone_Weapon - Rate: 185 - - Index: 12 + Rate: 5 + - Index: 4 Item: Unfreez_Weapon_S - Rate: 185 - - Index: 13 + Rate: 5 + - Index: 5 Item: S_Neutral_Weapon - Rate: 185 - - Index: 14 + Rate: 5 + - Index: 6 Item: S_Caster_Weapon - Rate: 185 - - Index: 15 - Item: S_Greed_Weapon - Rate: 185 - - Index: 16 + Rate: 5 + - Index: 7 Item: S_Heal_Weapon - Rate: 185 - - Index: 17 - Item: S_Hiding_Weapon - Rate: 185 - - Index: 18 + Rate: 5 + - Index: 8 + Item: S_Greed_Weapon + Rate: 5 + - Index: 9 Item: S_Cloaking_Weapon - Rate: 185 - - Index: 19 - Item: S_Teleport_Weapon - Rate: 185 - - Index: 20 + Rate: 5 + - Index: 10 + Item: S_Hiding_Weapon + Rate: 5 + - Index: 11 Item: S_Steal_Weapon - Rate: 185 - - Index: 21 + Rate: 5 + - Index: 12 + Item: S_Teleport_Weapon + Rate: 5 + - Index: 13 Item: S_Solid_Weapon - Rate: 185 - - Index: 22 - Item: S_Executioner_Weapon - Rate: 185 - - Index: 23 - Item: S_Exorcist_Weapon - Rate: 185 - - Index: 24 - Item: S_Hunting_Weapon - Rate: 185 - - Index: 25 - Item: S_Insect_Net_Weapon - Rate: 185 - - Index: 26 + Rate: 5 + - Index: 14 Item: S_Fishing_Weapon - Rate: 185 - - Index: 27 - Item: S_Dragon_Killer_Weapon - Rate: 185 - - Index: 28 - Item: S_Corrupt_Weapon - Rate: 185 - - Index: 29 - Item: S_Vibration_Weapon - Rate: 185 - - Index: 30 - Item: S_Holy_Water_Weapon - Rate: 185 - - Index: 31 - Item: S_Scissors_Weapon - Rate: 185 - - Index: 32 - Item: S_M_Executioner_Weapon - Rate: 185 - - Index: 33 - Item: S_M_Exorcist_Weapon - Rate: 185 - - Index: 34 - Item: S_M_Hunting_Weapon - Rate: 185 - - Index: 35 - Item: S_M_Insect_Net_Weapon - Rate: 185 - - Index: 36 - Item: S_M_Fishing_Weapon - Rate: 185 - - Index: 37 - Item: S_M_Dragon_K_Weapon - Rate: 185 - - Index: 38 - Item: S_M_Corrupt_Weapon - Rate: 185 - - Index: 39 - Item: S_M_Vibration_Weapon - Rate: 185 - - Index: 40 - Item: S_M_Holy_Water_Weapon - Rate: 185 - - Index: 41 - Item: S_M_Scissors_Weapon - Rate: 185 - - Index: 42 + Rate: 5 + - Index: 15 + Item: S_Insect_Net_Weapon + Rate: 5 + - Index: 16 + Item: S_Hunting_Weapon + Rate: 5 + - Index: 17 + Item: S_Exorcist_Weapon + Rate: 5 + - Index: 18 + Item: S_Executioner_Weapon + Rate: 5 + - Index: 19 Item: S_Bearers_Weapon - Rate: 185 - - Index: 43 + Rate: 5 + - Index: 20 + Item: S_M_Scissors_Weapon + Rate: 5 + - Index: 21 + Item: S_M_Holy_Water_Weapon + Rate: 5 + - Index: 22 + Item: S_M_Vibration_Weapon + Rate: 5 + - Index: 23 + Item: S_M_Corrupt_Weapon + Rate: 5 + - Index: 24 + Item: S_M_Dragon_K_Weapon + Rate: 5 + - Index: 25 + Item: S_M_Fishing_Weapon + Rate: 5 + - Index: 26 + Item: S_M_Insect_Net_Weapon + Rate: 5 + - Index: 27 + Item: S_M_Hunting_Weapon + Rate: 5 + - Index: 28 + Item: S_M_Exorcist_Weapon + Rate: 5 + - Index: 29 + Item: S_M_Executioner_Weapon + Rate: 5 + - Index: 30 + Item: S_Scissors_Weapon + Rate: 5 + - Index: 31 + Item: S_Holy_Water_Weapon + Rate: 5 + - Index: 32 + Item: S_Vibration_Weapon + Rate: 5 + - Index: 33 + Item: S_Corrupt_Weapon + Rate: 5 + - Index: 34 + Item: S_Dragon_Killer_Weapon + Rate: 5 + - Index: 35 + Item: S_Physical_Weapon + Rate: 5 + - Index: 36 + Item: S_Magical_Weapon + Rate: 5 + - Index: 37 + Item: S_Spiritual_Weapon + Rate: 5 + - Index: 38 + Item: S_Big_Weapon + Rate: 5 + - Index: 39 + Item: S_Small_Weapon + Rate: 5 + - Index: 40 + Item: S_Medium_Weapon + Rate: 5 + - Index: 41 Item: S_Enhance_Force_Weapon - Rate: 185 + Rate: 5 + - Index: 42 + Item: S_Enhance_Spirit_Weapon + Rate: 5 + - Index: 43 + Item: S_Spirit_Weapon + Rate: 5 - Index: 44 Item: S_Force_Weapon - Rate: 185 + Rate: 5 - Index: 45 - Item: S_Enhance_Spirit_Weapon - Rate: 185 - - Index: 46 - Item: S_Spirit_Weapon - Rate: 185 - - Index: 47 Item: S_Exceed_Weapon - Rate: 185 - - Index: 48 - Item: S_Blitz_Weapon - Rate: 185 - - Index: 49 - Item: S_Tension_Weapon - Rate: 185 - - Index: 50 - Item: S_Elegant_Weapon - Rate: 185 - - Index: 51 - Item: S_MortalBlow_Weapon - Rate: 185 - - Index: 52 - Item: Sentimental_Weapone_S - Rate: 185 - - Index: 53 - Item: Enchanting_Weapone_S - Rate: 185 + Rate: 5 - Group: EPIC_MODULE_MIX SubGroups: - SubGroup: 1 List: - Index: 0 Item: Magical_Igni_Stone - Rate: 5000 + Rate: 6000 - Index: 1 - Item: EP17_2_EP1 - Rate: 98 + Item: Magical_Igni_Stone + Rate: 2000 + Amount: 2 - Index: 2 - Item: EP17_2_EP2 - Rate: 98 + Item: Magical_Igni_Stone + Rate: 1000 + Amount: 3 - Index: 3 - Item: EP17_2_EP3 - Rate: 98 + Item: Magical_Igni_Stone + Rate: 480 + Amount: 4 - Index: 4 - Item: EP17_2_EP4 - Rate: 98 + Item: Magical_Igni_Stone + Rate: 10 + Amount: 5 - Index: 5 - Item: EP17_2_EP5 - Rate: 98 + Item: EP17_2_EP1 + Rate: 10 - Index: 6 - Item: EP17_2_EP6 - Rate: 98 + Item: EP17_2_EP2 + Rate: 10 - Index: 7 - Item: EP17_2_EP7 - Rate: 98 + Item: EP17_2_EP3 + Rate: 10 - Index: 8 - Item: EP17_2_EP8 - Rate: 98 + Item: EP17_2_EP4 + Rate: 10 - Index: 9 - Item: EP17_2_EP9 - Rate: 98 + Item: EP17_2_EP5 + Rate: 10 - Index: 10 - Item: EP17_2_EP10 - Rate: 98 + Item: EP17_2_EP6 + Rate: 10 - Index: 11 - Item: EP17_2_EP11 - Rate: 98 + Item: EP17_2_EP7 + Rate: 10 - Index: 12 - Item: EP17_2_EP12 - Rate: 98 + Item: EP17_2_EP8 + Rate: 10 - Index: 13 - Item: EP17_2_EP13 - Rate: 98 + Item: EP17_2_EP9 + Rate: 10 - Index: 14 - Item: EP17_2_EP14 - Rate: 98 + Item: EP17_2_EP10 + Rate: 10 - Index: 15 - Item: EP17_2_EP15 - Rate: 98 + Item: EP17_2_EP11 + Rate: 10 - Index: 16 - Item: EP17_2_EP16 - Rate: 98 + Item: EP17_2_EP12 + Rate: 10 - Index: 17 - Item: EP17_2_EP17 - Rate: 98 + Item: EP17_2_EP13 + Rate: 10 - Index: 18 - Item: EP17_2_EP18 - Rate: 98 + Item: EP17_2_EP14 + Rate: 10 - Index: 19 - Item: EP17_2_EP19 - Rate: 98 + Item: EP17_2_EP15 + Rate: 10 - Index: 20 - Item: EP17_2_EP20 - Rate: 98 + Item: EP17_2_EP16 + Rate: 10 - Index: 21 - Item: EP17_2_EP21 - Rate: 98 + Item: EP17_2_EP17 + Rate: 10 - Index: 22 - Item: EP17_2_EP22 - Rate: 98 + Item: EP17_2_EP18 + Rate: 10 - Index: 23 - Item: EP17_2_EP23 - Rate: 98 + Item: EP17_2_EP19 + Rate: 10 - Index: 24 - Item: EP17_2_EP24 - Rate: 98 + Item: EP17_2_EP20 + Rate: 10 - Index: 25 - Item: EP17_2_EP25 - Rate: 98 + Item: EP17_2_EP21 + Rate: 10 - Index: 26 - Item: EP17_2_EP26 - Rate: 98 + Item: EP17_2_EP22 + Rate: 10 - Index: 27 - Item: EP17_2_EP27 - Rate: 98 + Item: EP17_2_EP23 + Rate: 10 - Index: 28 - Item: EP17_2_EP28 - Rate: 98 + Item: EP17_2_EP24 + Rate: 10 - Index: 29 - Item: EP17_2_EP29 - Rate: 98 + Item: EP17_2_EP25 + Rate: 10 - Index: 30 - Item: EP17_2_EP30 - Rate: 98 + Item: EP17_2_EP26 + Rate: 10 - Index: 31 - Item: EP17_2_EP31 - Rate: 98 + Item: EP17_2_EP27 + Rate: 10 - Index: 32 - Item: EP17_2_EP32 - Rate: 98 + Item: EP17_2_EP28 + Rate: 10 - Index: 33 - Item: EP17_2_EP33 - Rate: 98 + Item: EP17_2_EP29 + Rate: 10 - Index: 34 - Item: EP17_2_EP34 - Rate: 98 + Item: EP17_2_EP30 + Rate: 10 - Index: 35 - Item: EP17_2_EP35 - Rate: 98 + Item: EP17_2_EP31 + Rate: 10 - Index: 36 - Item: EP17_2_EP36 - Rate: 98 + Item: EP17_2_EP32 + Rate: 10 - Index: 37 - Item: EP17_2_EP37 - Rate: 98 + Item: EP17_2_EP33 + Rate: 10 - Index: 38 - Item: EP17_2_EP38 - Rate: 98 + Item: EP17_2_EP34 + Rate: 10 - Index: 39 - Item: EP17_2_EP39 - Rate: 98 + Item: EP17_2_EP35 + Rate: 10 - Index: 40 - Item: EP17_2_EP40 - Rate: 98 + Item: EP17_2_EP36 + Rate: 10 - Index: 41 - Item: EP17_2_EP41 - Rate: 98 + Item: EP17_2_EP37 + Rate: 10 - Index: 42 - Item: EP17_2_EP42 - Rate: 98 + Item: EP17_2_EP38 + Rate: 10 - Index: 43 - Item: EP17_2_EP43 - Rate: 98 + Item: EP17_2_EP39 + Rate: 10 - Index: 44 - Item: EP17_2_EP44 - Rate: 98 + Item: EP17_2_EP40 + Rate: 10 - Index: 45 - Item: EP17_2_EP45 - Rate: 98 + Item: EP17_2_EP41 + Rate: 10 - Index: 46 - Item: EP17_2_EP46 - Rate: 98 + Item: EP17_2_EP42 + Rate: 10 - Index: 47 - Item: EP17_2_EP47 - Rate: 98 + Item: EP17_2_EP43 + Rate: 10 - Index: 48 - Item: EP17_2_EP48 - Rate: 98 + Item: EP17_2_EP44 + Rate: 10 - Index: 49 - Item: EP17_2_EP49 - Rate: 98 + Item: EP17_2_EP45 + Rate: 10 - Index: 50 - Item: EP17_2_EP50 - Rate: 98 + Item: EP17_2_EP46 + Rate: 10 - Index: 51 + Item: EP17_2_EP47 + Rate: 10 + - Index: 52 + Item: EP17_2_EP48 + Rate: 10 + - Index: 53 + Item: EP17_2_EP49 + Rate: 10 + - Index: 54 + Item: EP17_2_EP50 + Rate: 10 + - Index: 55 Item: EP17_2_EP51 - Rate: 98 + Rate: 10 - Group: AUTOMATIC_MODULE_MIX SubGroups: - SubGroup: 1 List: - Index: 0 Item: EP17_2_NO1 - Rate: 40 + Rate: 900 - Index: 1 - Item: EP17_2_NO1 - Rate: 39 - - Index: 2 Item: EP17_2_NO2 - Rate: 40 - - Index: 3 + Rate: 900 + - Index: 2 Item: EP17_2_NO3 - Rate: 40 - - Index: 4 + Rate: 900 + - Index: 3 Item: EP17_2_NO4 - Rate: 40 - - Index: 5 + Rate: 900 + - Index: 4 Item: EP17_2_NO5 - Rate: 40 - - Index: 6 + Rate: 900 + - Index: 5 Item: EP17_2_NO6 - Rate: 40 - - Index: 7 + Rate: 900 + - Index: 6 Item: EP17_2_NO7 - Rate: 40 - - Index: 8 + Rate: 900 + - Index: 7 Item: EP17_2_NO8 - Rate: 32 - - Index: 9 + Rate: 900 + - Index: 8 Item: EP17_2_RA1 - Rate: 32 - - Index: 10 + Rate: 175 + - Index: 9 Item: EP17_2_RA2 - Rate: 32 - - Index: 11 + Rate: 175 + - Index: 10 Item: EP17_2_RA3 - Rate: 32 - - Index: 12 + Rate: 175 + - Index: 11 Item: EP17_2_RA4 - Rate: 32 - - Index: 13 + Rate: 175 + - Index: 12 Item: EP17_2_RA5 - Rate: 32 - - Index: 14 + Rate: 175 + - Index: 13 Item: EP17_2_RA6 - Rate: 32 - - Index: 15 + Rate: 175 + - Index: 14 Item: EP17_2_RA7 - Rate: 32 - - Index: 16 + Rate: 175 + - Index: 15 Item: EP17_2_RA8 - Rate: 32 - - Index: 17 + Rate: 175 + - Index: 16 Item: EP17_2_RA9 - Rate: 32 - - Index: 18 + Rate: 175 + - Index: 17 Item: EP17_2_RA10 - Rate: 32 - - Index: 19 + Rate: 175 + - Index: 18 Item: EP17_2_RA11 - Rate: 32 - - Index: 20 + Rate: 175 + - Index: 19 Item: EP17_2_RA12 - Rate: 32 - - Index: 21 + Rate: 175 + - Index: 20 Item: EP17_2_RA13 - Rate: 32 - - Index: 22 + Rate: 175 + - Index: 21 Item: EP17_2_RA14 - Rate: 32 - - Index: 23 + Rate: 175 + - Index: 22 Item: EP17_2_RA15 - Rate: 32 - - Index: 24 + Rate: 175 + - Index: 23 Item: EP17_2_RA16 - Rate: 2 - - Index: 25 + Rate: 10 + - Index: 24 Item: EP17_2_RA17 - Rate: 2 - - Index: 26 + Rate: 10 + - Index: 25 Item: EP17_2_RA18 - Rate: 2 - - Index: 27 + Rate: 10 + - Index: 26 Item: EP17_2_RA19 - Rate: 2 - - Index: 28 + Rate: 10 + - Index: 27 Item: EP17_2_RA20 - Rate: 2 - - Index: 29 + Rate: 10 + - Index: 28 Item: EP17_2_RA21 - Rate: 2 - - Index: 30 + Rate: 10 + - Index: 29 Item: EP17_2_UQ1 - Rate: 2 - - Index: 31 + Rate: 10 + - Index: 30 Item: EP17_2_UQ2 - Rate: 2 - - Index: 32 + Rate: 10 + - Index: 31 Item: EP17_2_UQ3 - Rate: 2 - - Index: 33 + Rate: 10 + - Index: 32 Item: EP17_2_UQ4 - Rate: 2 - - Index: 34 + Rate: 10 + - Index: 33 Item: EP17_2_UQ5 - Rate: 2 - - Index: 35 + Rate: 10 + - Index: 34 Item: EP17_2_UQ6 - Rate: 2 - - Index: 36 + Rate: 10 + - Index: 35 Item: EP17_2_UQ7 - Rate: 2 - - Index: 37 + Rate: 10 + - Index: 36 Item: EP17_2_UQ8 - Rate: 2 - - Index: 38 + Rate: 10 + - Index: 37 Item: EP17_2_UQ9 - Rate: 2 - - Index: 39 + Rate: 10 + - Index: 38 Item: EP17_2_UQ10 - Rate: 2 - - Index: 40 + Rate: 10 + - Index: 39 Item: EP17_2_UQ11 - Rate: 2 - - Index: 41 + Rate: 10 + - Index: 40 Item: EP17_2_UQ12 - Rate: 2 - - Index: 42 + Rate: 9 + - Index: 41 Item: EP17_2_LE1 - Rate: 2 - - Index: 43 + Rate: 1 + - Index: 42 Item: EP17_2_LE2 - Rate: 2 - - Index: 44 + Rate: 1 + - Index: 43 Item: EP17_2_LE3 - Rate: 2 - - Index: 45 + Rate: 1 + - Index: 44 Item: EP17_2_LE4 - Rate: 2 - - Index: 46 + Rate: 1 + - Index: 45 Item: EP17_2_LE5 - Rate: 2 - - Index: 47 + Rate: 1 + - Index: 46 Item: EP17_2_LE6 - Rate: 2 - - Index: 48 - Item: EP17_2_EP1 - Rate: 3 - - Index: 49 - Item: EP17_2_EP2 - Rate: 3 - - Index: 50 - Item: EP17_2_EP3 - Rate: 3 - - Index: 51 - Item: EP17_2_EP4 - Rate: 3 - - Index: 52 - Item: EP17_2_EP5 - Rate: 3 - - Index: 53 - Item: EP17_2_EP6 - Rate: 3 - - Index: 54 - Item: EP17_2_EP7 - Rate: 3 - - Index: 55 - Item: EP17_2_EP8 - Rate: 3 - - Index: 56 - Item: EP17_2_EP9 - Rate: 3 - - Index: 57 - Item: EP17_2_EP10 - Rate: 3 - - Index: 58 - Item: EP17_2_EP11 - Rate: 3 - - Index: 59 - Item: EP17_2_EP12 - Rate: 3 - - Index: 60 - Item: EP17_2_EP13 - Rate: 3 - - Index: 61 - Item: EP17_2_EP14 - Rate: 3 - - Index: 62 - Item: EP17_2_EP15 - Rate: 3 - - Index: 63 - Item: EP17_2_EP16 - Rate: 3 - - Index: 64 - Item: EP17_2_EP17 - Rate: 3 - - Index: 65 - Item: EP17_2_EP18 - Rate: 3 - - Index: 66 - Item: EP17_2_EP19 - Rate: 3 - - Index: 67 - Item: EP17_2_EP20 - Rate: 3 - - Index: 68 - Item: EP17_2_EP21 - Rate: 3 - - Index: 69 - Item: EP17_2_EP22 - Rate: 3 - - Index: 70 - Item: EP17_2_EP23 - Rate: 3 - - Index: 71 - Item: EP17_2_EP24 - Rate: 3 - - Index: 72 - Item: EP17_2_EP25 - Rate: 3 - - Index: 73 - Item: EP17_2_EP26 - Rate: 3 - - Index: 74 - Item: EP17_2_EP27 - Rate: 3 - - Index: 75 - Item: EP17_2_EP28 - Rate: 3 - - Index: 76 - Item: EP17_2_EP29 - Rate: 3 - - Index: 77 - Item: EP17_2_EP30 - Rate: 3 - - Index: 78 - Item: EP17_2_EP31 - Rate: 3 - - Index: 79 - Item: EP17_2_EP32 - Rate: 3 - - Index: 80 - Item: EP17_2_EP33 - Rate: 3 - - Index: 81 - Item: EP17_2_EP34 - Rate: 3 - - Index: 82 - Item: EP17_2_EP35 - Rate: 3 - - Index: 83 - Item: EP17_2_EP36 - Rate: 3 - - Index: 84 - Item: EP17_2_EP37 - Rate: 3 - - Index: 85 - Item: EP17_2_EP38 - Rate: 3 - - Index: 86 - Item: EP17_2_EP39 - Rate: 3 - - Index: 87 - Item: EP17_2_EP40 - Rate: 3 - - Index: 88 - Item: EP17_2_EP41 - Rate: 3 - - Index: 89 - Item: EP17_2_EP42 - Rate: 3 - - Index: 90 - Item: EP17_2_EP43 - Rate: 3 - - Index: 91 - Item: EP17_2_EP44 - Rate: 3 - - Index: 92 - Item: EP17_2_EP45 - Rate: 3 - - Index: 93 - Item: EP17_2_EP46 - Rate: 3 - - Index: 94 - Item: EP17_2_EP47 - Rate: 3 - - Index: 95 - Item: EP17_2_EP48 - Rate: 3 - - Index: 96 - Item: EP17_2_EP49 - Rate: 3 - - Index: 97 - Item: EP17_2_EP50 - Rate: 3 - - Index: 98 - Item: EP17_2_EP51 - Rate: 3 + Rate: 1 - Group: ILLUSION_MODULE_MIX SubGroups: - SubGroup: 1 @@ -43232,862 +43732,950 @@ Body: List: - Index: 0 Item: Auto_Imp_Melee_1 - Rate: 3333 + Rate: 750 - Index: 1 Item: Auto_Imp_Melee_2 - Rate: 3333 + Rate: 200 - Index: 2 Item: Auto_Imp_Melee_3 - Rate: 3333 + Rate: 50 - Group: AUTO_M_I_BOX_B SubGroups: - SubGroup: 1 List: - Index: 0 Item: Auto_Imp_Magic_1 - Rate: 3333 + Rate: 750 - Index: 1 Item: Auto_Imp_Magic_2 - Rate: 3333 + Rate: 200 - Index: 2 Item: Auto_Imp_Magic_3 - Rate: 3333 + Rate: 50 - Group: ENCHANT_STONE_BOX22 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: CastingStone_Robe - Rate: 20 - - Index: 1 Item: DoubleAttack_Stone - Rate: 20 - - Index: 2 + Rate: 2 + Announced: true + - Index: 1 Item: Critical_Stone_Robe - Rate: 20 + Rate: 2 + Announced: true + - Index: 2 + Item: CastingStone_Robe + Rate: 2 + Announced: true - Index: 3 Item: SPdrainStone_Robe - Rate: 80 + Rate: 8 - Index: 4 Item: SPdrainStone_Top - Rate: 80 + Rate: 8 - Index: 5 - Item: Greed_Stone - Rate: 80 - - Index: 6 Item: CastStone_Robe - Rate: 80 + Rate: 8 + - Index: 6 + Item: Greed_Stone + Rate: 8 - Index: 7 - Item: ASPDStone_Robe - Rate: 160 - - Index: 8 - Item: ASPDStone_Top - Rate: 160 - - Index: 9 - Item: WaterFieldEffect_Bottom - Rate: 160 - - Index: 10 - Item: EXPStone_Bottom - Rate: 250 - - Index: 11 - Item: Range_Stone - Rate: 250 - - Index: 12 - Item: EXPStone_Middle - Rate: 250 - - Index: 13 - Item: EXPStone_Top - Rate: 250 - - Index: 14 - Item: CastingStone_Top - Rate: 250 - - Index: 15 - Item: CastingStone_Middle - Rate: 250 - - Index: 16 - Item: CastingStone_Bottom - Rate: 250 - - Index: 17 Item: Stone_Robe_Box - Rate: 250 - - Index: 18 + Rate: 25 + - Index: 8 Item: Stone_Robe2_Box - Rate: 250 - - Index: 19 + Rate: 25 + - Index: 9 + Item: ASPDStone_Top + Rate: 16 + - Index: 10 + Item: ASPDStone_Robe + Rate: 16 + - Index: 11 + Item: WaterFieldEffect_Bottom + Rate: 16 + - Index: 12 Item: Range_Stone_Top - Rate: 250 - - Index: 20 + Rate: 25 + - Index: 13 + Item: Range_Stone + Rate: 25 + - Index: 14 Item: Range_Stone_Bottom - Rate: 250 - - Index: 21 + Rate: 25 + - Index: 15 Item: Melee_Stone_Top - Rate: 250 - - Index: 22 + Rate: 25 + - Index: 16 Item: Melee_Stone_Middle - Rate: 250 - - Index: 23 + Rate: 25 + - Index: 17 Item: Melee_Stone_Bottom - Rate: 250 + Rate: 25 + - Index: 18 + Item: EXPStone_Middle + Rate: 25 + - Index: 19 + Item: EXPStone_Bottom + Rate: 25 + - Index: 20 + Item: EXPStone_Top + Rate: 25 + - Index: 21 + Item: CastingStone_Bottom + Rate: 25 + - Index: 22 + Item: CastingStone_Middle + Rate: 25 + - Index: 23 + Item: CastingStone_Top + Rate: 25 - Index: 24 - Item: MATKStone_Middle - Rate: 380 - - Index: 25 Item: MATKStone_Top - Rate: 380 + Rate: 38 + - Index: 25 + Item: MATKStone_Middle + Rate: 38 - Index: 26 Item: MATKStone_Bottom - Rate: 380 + Rate: 38 - Index: 27 - Item: Critical_Stone - Rate: 380 - - Index: 28 - Item: Critical_Stone_Top - Rate: 380 - - Index: 29 - Item: Critical_Stone_Bottom - Rate: 380 - - Index: 30 Item: Stone_Top_Box - Rate: 560 - - Index: 31 + Rate: 56 + - Index: 28 Item: Stone_Top2_Box - Rate: 560 - - Index: 32 + Rate: 56 + - Index: 29 Item: Stone_Middle_Box - Rate: 560 - - Index: 33 + Rate: 56 + - Index: 30 Item: Stone_Middle2_Box - Rate: 560 - - Index: 34 + Rate: 56 + - Index: 31 Item: Stone_Bottom_Box - Rate: 560 - - Index: 35 + Rate: 56 + - Index: 32 Item: Stone_Bottom2_Box - Rate: 560 + Rate: 56 + - Index: 33 + Item: Critical_Stone + Rate: 38 + - Index: 34 + Item: Critical_Stone_Top + Rate: 38 + - Index: 35 + Item: Critical_Stone_Bottom + Rate: 38 - Group: ENCHANT_STONE_BOX23 SubGroups: - SubGroup: 1 List: - Index: 0 Item: Melee_Stone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 1 Item: Magic_Stone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 2 - Item: CastingStone_Robe - Rate: 20 - - Index: 3 Item: Critical_Stone_Robe - Rate: 20 + Rate: 2 + Announced: true + - Index: 3 + Item: CastingStone_Robe + Rate: 2 + Announced: true - Index: 4 Item: CastStone_Robe_D - Rate: 40 + Rate: 4 + Announced: true - Index: 5 Item: SPdrainStone_Top - Rate: 80 + Rate: 8 + Announced: true - Index: 6 Item: CastStone_Robe - Rate: 80 + Rate: 8 + Announced: true - Index: 7 - Item: WarlockStone_Robe - Rate: 80 - - Index: 8 - Item: GuillcrossStone_Robe - Rate: 80 - - Index: 9 - Item: WarlockStone_Robe2 - Rate: 80 - - Index: 10 - Item: GuillcrossStone_Robe2 - Rate: 80 - - Index: 11 - Item: ASPDStone_Robe_D - Rate: 80 - - Index: 12 - Item: HPdrainStone_Robe_D - Rate: 80 - - Index: 13 - Item: WarlockStone_Top - Rate: 120 - - Index: 14 - Item: WarlockStone_Middle - Rate: 120 - - Index: 15 - Item: WarlockStone_Bottom - Rate: 120 - - Index: 16 - Item: AssacrossStone_Top - Rate: 120 - - Index: 17 - Item: AssacrossStone_Middle - Rate: 120 - - Index: 18 - Item: AssacrossStone_Bottom - Rate: 120 - - Index: 19 - Item: WarlockStone_Top2 - Rate: 120 - - Index: 20 - Item: WarlockStone_Middle2 - Rate: 120 - - Index: 21 - Item: WarlockStone_Bottom2 - Rate: 120 - - Index: 22 - Item: AssacrossStone_Top2 - Rate: 120 - - Index: 23 - Item: AssacrossStone_Middle2 - Rate: 120 - - Index: 24 - Item: AssacrossStone_Bottom2 - Rate: 120 - - Index: 25 - Item: WaterFieldEffect_Bottom - Rate: 140 - - Index: 26 Item: ASPDStone_Top - Rate: 160 - - Index: 27 + Rate: 16 + - Index: 8 + Item: ASPDStone_Robe_D + Rate: 8 + Announced: true + - Index: 9 + Item: HPdrainStone_Robe_D + Rate: 8 + Announced: true + - Index: 10 + Item: WaterFieldEffect_Bottom + Rate: 14 + - Index: 11 + Item: GuillcrossStone_Robe + Rate: 8 + Announced: true + - Index: 12 + Item: GuillcrossStone_Robe2 + Rate: 8 + Announced: true + - Index: 13 + Item: WarlockStone_Robe + Rate: 8 + Announced: true + - Index: 14 + Item: WarlockStone_Robe2 + Rate: 8 + Announced: true + - Index: 15 Item: Stone_Robe_Box - Rate: 160 - - Index: 28 + Rate: 16 + - Index: 16 Item: Stone_Robe2_Box - Rate: 160 - - Index: 29 - Item: Range_Stone - Rate: 240 - - Index: 30 - Item: CastingStone_Top - Rate: 240 - - Index: 31 - Item: CastingStone_Middle - Rate: 240 - - Index: 32 - Item: CastingStone_Bottom - Rate: 240 - - Index: 33 + Rate: 16 + - Index: 17 Item: Range_Stone_Top - Rate: 240 - - Index: 34 + Rate: 24 + - Index: 18 + Item: Range_Stone + Rate: 24 + - Index: 19 Item: Range_Stone_Bottom - Rate: 240 - - Index: 35 + Rate: 24 + - Index: 20 Item: Melee_Stone_Top - Rate: 240 - - Index: 36 + Rate: 24 + - Index: 21 Item: Melee_Stone_Middle - Rate: 240 - - Index: 37 + Rate: 24 + - Index: 22 Item: Melee_Stone_Bottom - Rate: 240 - - Index: 38 + Rate: 24 + - Index: 23 Item: Magic_Stone_Top - Rate: 240 - - Index: 39 + Rate: 24 + - Index: 24 Item: Magic_Stone_Middle - Rate: 240 - - Index: 40 + Rate: 24 + - Index: 25 Item: Magic_Stone_Bottom - Rate: 240 + Rate: 24 + - Index: 26 + Item: CastingStone_Bottom + Rate: 24 + - Index: 27 + Item: CastingStone_Middle + Rate: 24 + - Index: 28 + Item: CastingStone_Top + Rate: 24 + - Index: 29 + Item: AssacrossStone_Top + Rate: 12 + - Index: 30 + Item: AssacrossStone_Middle + Rate: 12 + - Index: 31 + Item: AssacrossStone_Bottom + Rate: 12 + - Index: 32 + Item: AssacrossStone_Top2 + Rate: 12 + - Index: 33 + Item: AssacrossStone_Middle2 + Rate: 12 + - Index: 34 + Item: AssacrossStone_Bottom2 + Rate: 12 + - Index: 35 + Item: WarlockStone_Top + Rate: 12 + - Index: 36 + Item: WarlockStone_Middle + Rate: 12 + - Index: 37 + Item: WarlockStone_Bottom + Rate: 12 + - Index: 38 + Item: WarlockStone_Top2 + Rate: 12 + - Index: 39 + Item: WarlockStone_Middle2 + Rate: 12 + - Index: 40 + Item: WarlockStone_Bottom2 + Rate: 12 - Index: 41 - Item: MATKStone_Middle - Rate: 360 - - Index: 42 - Item: MATKStone_Top - Rate: 360 - - Index: 43 - Item: MATKStone_Bottom - Rate: 360 - - Index: 44 - Item: Critical_Stone - Rate: 360 - - Index: 45 - Item: Critical_Stone_Top - Rate: 360 - - Index: 46 - Item: Critical_Stone_Bottom - Rate: 360 - - Index: 47 Item: Stone_Top_Box - Rate: 360 - - Index: 48 + Rate: 36 + - Index: 42 Item: Stone_Top2_Box - Rate: 360 - - Index: 49 + Rate: 36 + - Index: 43 Item: Stone_Middle_Box - Rate: 360 - - Index: 50 + Rate: 36 + - Index: 44 Item: Stone_Middle2_Box - Rate: 360 - - Index: 51 + Rate: 36 + - Index: 45 Item: Stone_Bottom_Box - Rate: 360 - - Index: 52 + Rate: 36 + - Index: 46 Item: Stone_Bottom2_Box - Rate: 360 + Rate: 36 + - Index: 47 + Item: MATKStone_Top + Rate: 36 + - Index: 48 + Item: MATKStone_Middle + Rate: 36 + - Index: 49 + Item: MATKStone_Bottom + Rate: 36 + - Index: 50 + Item: Critical_Stone + Rate: 36 + - Index: 51 + Item: Critical_Stone_Top + Rate: 36 + - Index: 52 + Item: Critical_Stone_Bottom + Rate: 36 - Group: ENCHANT_STONE_BOX24 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: MinorCastStone_Robe_D - Rate: 10 - - Index: 1 Item: Range_Stone_Robe_D - Rate: 10 + Rate: 1 + Announced: true + - Index: 1 + Item: MinorCastStone_Robe_D + Rate: 1 + Announced: true - Index: 2 - Item: CastingStone_Robe - Rate: 20 - - Index: 3 Item: Critical_Stone_Robe - Rate: 20 + Rate: 2 + Announced: true + - Index: 3 + Item: CastingStone_Robe + Rate: 2 + Announced: true - Index: 4 Item: SPdrainStone_Robe_D - Rate: 40 + Rate: 4 + Announced: true - Index: 5 Item: SPdrainStone_Top - Rate: 80 + Rate: 8 + Announced: true - Index: 6 Item: CastStone_Robe - Rate: 80 + Rate: 8 + Announced: true - Index: 7 - Item: RuneknightStone_Robe - Rate: 80 + Item: ASPDStone_Top + Rate: 16 - Index: 8 - Item: WarlockStone_Robe - Rate: 80 + Item: ASPDStone_Robe_D + Rate: 8 + Announced: true - Index: 9 - Item: RoyalguardStone_Robe - Rate: 80 + Item: HPdrainStone_Robe_D + Rate: 8 + Announced: true - Index: 10 - Item: WarlockStone_Robe2 - Rate: 80 + Item: WaterFieldEffect_Bottom + Rate: 16 - Index: 11 - Item: RoyalguardStone_Robe2 - Rate: 80 + Item: RuneknightStone_Robe + Rate: 8 + Announced: true - Index: 12 Item: RuneknightStone_Robe2 - Rate: 80 + Rate: 8 + Announced: true - Index: 13 - Item: ASPDStone_Robe_D - Rate: 80 + Item: WarlockStone_Robe + Rate: 8 + Announced: true - Index: 14 - Item: HPdrainStone_Robe_D - Rate: 80 + Item: WarlockStone_Robe2 + Rate: 8 + Announced: true - Index: 15 - Item: RuneknightStone_Top3 - Rate: 80 + Item: RoyalguardStone_Robe + Rate: 8 + Announced: true - Index: 16 - Item: RuneknightStone_Middle3 - Rate: 80 + Item: RoyalguardStone_Robe2 + Rate: 8 + Announced: true - Index: 17 - Item: RuneknightStone_Bottom3 - Rate: 80 + Item: RuneknightStone_Top3 + Rate: 8 + Announced: true - Index: 18 - Item: WarlockStone_Top3 - Rate: 80 + Item: RuneknightStone_Middle3 + Rate: 8 + Announced: true - Index: 19 - Item: WarlockStone_Middle3 - Rate: 80 + Item: RuneknightStone_Bottom3 + Rate: 8 + Announced: true - Index: 20 - Item: WarlockStone_Bottom3 - Rate: 80 + Item: WarlockStone_Top3 + Rate: 8 + Announced: true - Index: 21 - Item: RoyalguardStone_Top3 - Rate: 80 + Item: WarlockStone_Middle3 + Rate: 8 + Announced: true - Index: 22 - Item: RoyalguardStone_Middle3 - Rate: 80 + Item: WarlockStone_Bottom3 + Rate: 8 + Announced: true - Index: 23 - Item: RoyalguardStone_Bottom3 - Rate: 80 + Item: RoyalguardStone_Top3 + Rate: 8 + Announced: true - Index: 24 - Item: RuneknightStone_Top - Rate: 150 + Item: RoyalguardStone_Middle3 + Rate: 8 + Announced: true - Index: 25 - Item: RuneknightStone_Middle - Rate: 150 + Item: RoyalguardStone_Bottom3 + Rate: 8 + Announced: true - Index: 26 - Item: RuneknightStone_Bottom - Rate: 150 - - Index: 27 - Item: WarlockStone_Top - Rate: 150 - - Index: 28 - Item: WarlockStone_Middle - Rate: 150 - - Index: 29 - Item: WarlockStone_Bottom - Rate: 150 - - Index: 30 - Item: PaladinStone_Top - Rate: 150 - - Index: 31 - Item: PaladinStone_Middle - Rate: 150 - - Index: 32 - Item: PaladinStone_Bottom - Rate: 150 - - Index: 33 - Item: WarlockStone_Top2 - Rate: 150 - - Index: 34 - Item: WarlockStone_Middle2 - Rate: 150 - - Index: 35 - Item: WarlockStone_Bottom2 - Rate: 150 - - Index: 36 - Item: PaladinStone_Top2 - Rate: 150 - - Index: 37 - Item: PaladinStone_Middle2 - Rate: 150 - - Index: 38 - Item: PaladinStone_Bottom2 - Rate: 150 - - Index: 39 - Item: RuneknightStone_Top2 - Rate: 150 - - Index: 40 - Item: RuneknightStone_Middle2 - Rate: 150 - - Index: 41 - Item: RuneknightStone_Bottom2 - Rate: 150 - - Index: 42 - Item: ASPDStone_Top - Rate: 160 - - Index: 43 - Item: WaterFieldEffect_Bottom - Rate: 160 - - Index: 44 Item: Stone_Robe_Box - Rate: 160 - - Index: 45 + Rate: 16 + - Index: 27 Item: Stone_Robe2_Box - Rate: 160 - - Index: 46 - Item: Range_Stone - Rate: 240 - - Index: 47 + Rate: 16 + - Index: 28 Item: Range_Stone_Top - Rate: 240 - - Index: 48 + Rate: 24 + - Index: 29 + Item: Range_Stone + Rate: 24 + - Index: 30 Item: Range_Stone_Bottom - Rate: 240 + Rate: 24 + - Index: 31 + Item: RuneknightStone_Top + Rate: 15 + - Index: 32 + Item: RuneknightStone_Middle + Rate: 15 + - Index: 33 + Item: RuneknightStone_Bottom + Rate: 15 + - Index: 34 + Item: RuneknightStone_Top2 + Rate: 15 + - Index: 35 + Item: RuneknightStone_Middle2 + Rate: 15 + - Index: 36 + Item: RuneknightStone_Bottom2 + Rate: 15 + - Index: 37 + Item: WarlockStone_Top + Rate: 15 + - Index: 38 + Item: WarlockStone_Middle + Rate: 15 + - Index: 39 + Item: WarlockStone_Bottom + Rate: 15 + - Index: 40 + Item: WarlockStone_Top2 + Rate: 15 + - Index: 41 + Item: WarlockStone_Middle2 + Rate: 15 + - Index: 42 + Item: WarlockStone_Bottom2 + Rate: 15 + - Index: 43 + Item: PaladinStone_Top + Rate: 15 + - Index: 44 + Item: PaladinStone_Middle + Rate: 15 + - Index: 45 + Item: PaladinStone_Bottom + Rate: 15 + - Index: 46 + Item: PaladinStone_Top2 + Rate: 15 + - Index: 47 + Item: PaladinStone_Middle2 + Rate: 15 + - Index: 48 + Item: PaladinStone_Bottom2 + Rate: 15 - Index: 49 - Item: MATKStone_Middle - Rate: 360 - - Index: 50 - Item: MATKStone_Top - Rate: 360 - - Index: 51 - Item: MATKStone_Bottom - Rate: 360 - - Index: 52 - Item: Critical_Stone - Rate: 360 - - Index: 53 - Item: Critical_Stone_Top - Rate: 360 - - Index: 54 - Item: Critical_Stone_Bottom - Rate: 360 - - Index: 55 Item: Stone_Top_Box - Rate: 360 - - Index: 56 + Rate: 36 + - Index: 50 Item: Stone_Top2_Box - Rate: 360 - - Index: 57 + Rate: 36 + - Index: 51 Item: Stone_Middle_Box - Rate: 360 - - Index: 58 + Rate: 36 + - Index: 52 Item: Stone_Middle2_Box - Rate: 360 - - Index: 59 + Rate: 36 + - Index: 53 Item: Stone_Bottom_Box - Rate: 360 - - Index: 60 + Rate: 36 + - Index: 54 Item: Stone_Bottom2_Box - Rate: 360 + Rate: 36 + - Index: 55 + Item: MATKStone_Top + Rate: 36 + - Index: 56 + Item: MATKStone_Middle + Rate: 36 + - Index: 57 + Item: MATKStone_Bottom + Rate: 36 + - Index: 58 + Item: Critical_Stone + Rate: 36 + - Index: 59 + Item: Critical_Stone_Top + Rate: 36 + - Index: 60 + Item: Critical_Stone_Bottom + Rate: 36 - Group: ENCHANT_STONE_BOX25 SubGroups: - SubGroup: 1 List: - Index: 0 Item: ReloadStone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 1 Item: CrtStone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 2 - Item: CastingStone_Robe - Rate: 20 - - Index: 3 Item: Critical_Stone_Robe - Rate: 20 + Rate: 2 + Announced: true + - Index: 3 + Item: CastingStone_Robe + Rate: 2 + Announced: true - Index: 4 Item: SPdrainStone_Robe_D - Rate: 40 + Rate: 4 + Announced: true - Index: 5 Item: SPdrainStone_Top - Rate: 80 + Rate: 8 + Announced: true - Index: 6 Item: CastStone_Robe - Rate: 80 + Rate: 8 + Announced: true - Index: 7 - Item: SorcererStone_Robe - Rate: 80 + Item: ASPDStone_Top + Rate: 16 - Index: 8 - Item: GeneticStone_Robe - Rate: 80 + Item: ASPDStone_Robe_D + Rate: 8 + Announced: true - Index: 9 - Item: WanderMinstreStone_Robe - Rate: 80 + Item: HPdrainStone_Robe_D + Rate: 8 + Announced: true - Index: 10 - Item: SorcererStone_Robe2 - Rate: 80 + Item: WaterFieldEffect_Bottom + Rate: 16 - Index: 11 - Item: GeneticStone_Robe2 - Rate: 80 + Item: WanderMinstreStone_Robe + Rate: 8 + Announced: true - Index: 12 Item: WanderMinsStone_Robe2 - Rate: 80 + Rate: 8 + Announced: true - Index: 13 - Item: ASPDStone_Robe_D - Rate: 80 + Item: GeneticStone_Robe + Rate: 8 + Announced: true - Index: 14 - Item: HPdrainStone_Robe_D - Rate: 80 + Item: GeneticStone_Robe2 + Rate: 8 + Announced: true - Index: 15 - Item: WanderMinsStone_Top3 - Rate: 80 + Item: SorcererStone_Robe + Rate: 8 + Announced: true - Index: 16 - Item: WanderMinsStone_Middle3 - Rate: 80 + Item: SorcererStone_Robe2 + Rate: 8 + Announced: true - Index: 17 - Item: WanderMinsStone_Bottom3 - Rate: 80 + Item: WanderMinsStone_Top3 + Rate: 8 + Announced: true - Index: 18 - Item: GeneticStone_Top3 - Rate: 80 + Item: WanderMinsStone_Middle3 + Rate: 8 + Announced: true - Index: 19 - Item: GeneticStone_Middle3 - Rate: 80 + Item: WanderMinsStone_Bottom3 + Rate: 8 + Announced: true - Index: 20 - Item: GeneticStone_Bottom3 - Rate: 80 + Item: GeneticStone_Top3 + Rate: 8 + Announced: true - Index: 21 - Item: SorcererStone_Top3 - Rate: 80 + Item: GeneticStone_Middle3 + Rate: 8 + Announced: true - Index: 22 - Item: SorcererStone_Middle3 - Rate: 80 + Item: GeneticStone_Bottom3 + Rate: 8 + Announced: true - Index: 23 - Item: SorcererStone_Bottom3 - Rate: 80 + Item: SorcererStone_Top3 + Rate: 8 + Announced: true - Index: 24 - Item: SorcererStone_Top - Rate: 150 + Item: SorcererStone_Middle3 + Rate: 8 + Announced: true - Index: 25 - Item: SorcererStone_Middle - Rate: 150 + Item: SorcererStone_Bottom3 + Rate: 8 + Announced: true - Index: 26 - Item: SorcererStone_Bottom - Rate: 150 - - Index: 27 - Item: GeneticStone_Top - Rate: 150 - - Index: 28 - Item: GeneticStone_Middle - Rate: 150 - - Index: 29 - Item: GeneticStone_Bottom - Rate: 150 - - Index: 30 - Item: WanderMinstrelStone_Top - Rate: 150 - - Index: 31 - Item: WanderMinstStone_Middle - Rate: 150 - - Index: 32 - Item: WanderMinstStone_Bottom - Rate: 150 - - Index: 33 - Item: SorcererStone_Bottom2 - Rate: 150 - - Index: 34 - Item: SorcererStone_Middle2 - Rate: 150 - - Index: 35 - Item: SorcererStone_Top2 - Rate: 150 - - Index: 36 - Item: GeneticStone_Top2 - Rate: 150 - - Index: 37 - Item: GeneticStone_Middle2 - Rate: 150 - - Index: 38 - Item: GeneticStone_Bottom2 - Rate: 150 - - Index: 39 - Item: WanderMinsStone_Top2 - Rate: 150 - - Index: 40 - Item: WanderMinsStone_Middle2 - Rate: 150 - - Index: 41 - Item: WanderMinsStone_Bottom2 - Rate: 150 - - Index: 42 - Item: ASPDStone_Top - Rate: 160 - - Index: 43 - Item: WaterFieldEffect_Bottom - Rate: 160 - - Index: 44 Item: Stone_Robe_Box - Rate: 160 - - Index: 45 + Rate: 16 + - Index: 27 Item: Stone_Robe2_Box - Rate: 160 - - Index: 46 + Rate: 16 + - Index: 28 Item: ReloadStone_Top - Rate: 240 - - Index: 47 + Rate: 24 + - Index: 29 Item: ReloadStone_Middle - Rate: 240 - - Index: 48 + Rate: 24 + - Index: 30 Item: ReloadStone_Bottom - Rate: 240 + Rate: 24 + - Index: 31 + Item: WanderMinstrelStone_Top + Rate: 15 + - Index: 32 + Item: WanderMinstStone_Middle + Rate: 15 + - Index: 33 + Item: WanderMinstStone_Bottom + Rate: 15 + - Index: 34 + Item: WanderMinsStone_Top2 + Rate: 15 + - Index: 35 + Item: WanderMinsStone_Middle2 + Rate: 15 + - Index: 36 + Item: WanderMinsStone_Bottom2 + Rate: 15 + - Index: 37 + Item: GeneticStone_Top + Rate: 15 + - Index: 38 + Item: GeneticStone_Middle + Rate: 15 + - Index: 39 + Item: GeneticStone_Bottom + Rate: 15 + - Index: 40 + Item: GeneticStone_Top2 + Rate: 15 + - Index: 41 + Item: GeneticStone_Middle2 + Rate: 15 + - Index: 42 + Item: GeneticStone_Bottom2 + Rate: 15 + - Index: 43 + Item: SorcererStone_Top + Rate: 15 + - Index: 44 + Item: SorcererStone_Middle + Rate: 15 + - Index: 45 + Item: SorcererStone_Bottom + Rate: 15 + - Index: 46 + Item: SorcererStone_Top2 + Rate: 15 + - Index: 47 + Item: SorcererStone_Middle2 + Rate: 15 + - Index: 48 + Item: SorcererStone_Bottom2 + Rate: 15 - Index: 49 - Item: Critical_Stone - Rate: 360 - - Index: 50 - Item: CastingStone_Top - Rate: 360 - - Index: 51 - Item: CastingStone_Middle - Rate: 360 - - Index: 52 - Item: CastingStone_Bottom - Rate: 360 - - Index: 53 - Item: Critical_Stone_Top - Rate: 360 - - Index: 54 - Item: Critical_Stone_Bottom - Rate: 360 - - Index: 55 Item: Stone_Top_Box - Rate: 360 - - Index: 56 + Rate: 36 + - Index: 50 Item: Stone_Top2_Box - Rate: 360 - - Index: 57 + Rate: 36 + - Index: 51 Item: Stone_Middle_Box - Rate: 360 - - Index: 58 + Rate: 36 + - Index: 52 Item: Stone_Middle2_Box - Rate: 360 - - Index: 59 + Rate: 36 + - Index: 53 Item: Stone_Bottom_Box - Rate: 360 - - Index: 60 + Rate: 36 + - Index: 54 Item: Stone_Bottom2_Box - Rate: 360 + Rate: 36 + - Index: 55 + Item: CastingStone_Top + Rate: 36 + - Index: 56 + Item: CastingStone_Middle + Rate: 36 + - Index: 57 + Item: CastingStone_Bottom + Rate: 36 + - Index: 58 + Item: Critical_Stone + Rate: 36 + - Index: 59 + Item: Critical_Stone_Top + Rate: 36 + - Index: 60 + Item: Critical_Stone_Bottom + Rate: 36 - Group: ENCHANT_STONE_BOX27 SubGroups: - SubGroup: 1 List: - Index: 0 Item: SmatkStone_Robe - Rate: 10 + Rate: 1 + Announced: true - Index: 1 Item: SplStone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 2 Item: Critical_Stone_Robe - Rate: 20 + Rate: 2 + Announced: true - Index: 3 Item: CastingStone_Robe - Rate: 20 + Rate: 2 + Announced: true - Index: 4 Item: SPdrainStone_Robe_D - Rate: 40 + Rate: 4 + Announced: true - Index: 5 Item: SPdrainStone_Top - Rate: 80 + Rate: 8 + Announced: true - Index: 6 Item: CastStone_Robe - Rate: 80 + Rate: 8 + Announced: true - Index: 7 Item: ASPDStone_Top - Rate: 160 + Rate: 16 - Index: 8 Item: ASPDStone_Robe_D - Rate: 80 + Rate: 8 + Announced: true - Index: 9 Item: HPdrainStone_Robe_D - Rate: 80 + Rate: 8 + Announced: true - Index: 10 Item: PinkGlowEffect_Middle - Rate: 160 + Rate: 16 - Index: 11 Item: SuraStone_Robe - Rate: 80 + Rate: 8 + Announced: true - Index: 12 Item: SuraStone_Robe2 - Rate: 80 + Rate: 8 + Announced: true - Index: 13 Item: MechanicStone_Robe - Rate: 80 + Rate: 8 + Announced: true - Index: 14 Item: MechanicStone_Robe2 - Rate: 80 + Rate: 8 + Announced: true - Index: 15 Item: GuillcrossStone_Robe - Rate: 80 + Rate: 8 + Announced: true - Index: 16 Item: GuillcrossStone_Robe2 - Rate: 80 + Rate: 8 + Announced: true - Index: 17 Item: SuraStone_Top3 - Rate: 80 + Rate: 8 + Announced: true - Index: 18 Item: SuraStone_Middle3 - Rate: 80 + Rate: 8 + Announced: true - Index: 19 Item: SuraStone_Bottom3 - Rate: 80 + Rate: 8 + Announced: true - Index: 20 Item: MechanicStone_Top3 - Rate: 80 + Rate: 8 + Announced: true - Index: 21 Item: MechanicStone_Middle3 - Rate: 80 + Rate: 8 + Announced: true - Index: 22 Item: MechanicStone_Bottom3 - Rate: 80 + Rate: 8 + Announced: true - Index: 23 Item: GuillcrossStone_Top3 - Rate: 80 + Rate: 8 + Announced: true - Index: 24 Item: GuillcrossStone_Middle3 - Rate: 80 + Rate: 8 + Announced: true - Index: 25 Item: GuillcrossStone_Bottom3 - Rate: 80 + Rate: 8 + Announced: true - Index: 26 Item: Stone_Robe_Box - Rate: 160 + Rate: 16 - Index: 27 Item: Stone_Robe2_Box - Rate: 160 + Rate: 16 - Index: 28 Item: Magic_Stone_Top - Rate: 240 + Rate: 24 - Index: 29 Item: Magic_Stone_Middle - Rate: 240 + Rate: 24 - Index: 30 Item: Magic_Stone_Bottom - Rate: 240 + Rate: 24 - Index: 31 Item: SuraStone_Top - Rate: 150 + Rate: 15 - Index: 32 Item: SuraStone_Middle - Rate: 150 + Rate: 15 - Index: 33 Item: SuraStone_Bottom - Rate: 150 + Rate: 15 - Index: 34 Item: SuraStone_Top2 - Rate: 150 + Rate: 15 - Index: 35 Item: SuraStone_Middle2 - Rate: 150 + Rate: 15 - Index: 36 Item: SuraStone_Bottom2 - Rate: 150 + Rate: 15 - Index: 37 Item: MechanicStone_Top - Rate: 150 + Rate: 15 - Index: 38 Item: MechanicStone_Middle - Rate: 150 + Rate: 15 - Index: 39 Item: MechanicStone_Bottom - Rate: 150 + Rate: 15 - Index: 40 Item: MechanicStone_Top2 - Rate: 150 + Rate: 15 - Index: 41 Item: MechanicStone_Middle2 - Rate: 150 + Rate: 15 - Index: 42 Item: MechanicStone_Bottom2 - Rate: 150 + Rate: 15 - Index: 43 Item: AssacrossStone_Top - Rate: 150 + Rate: 15 - Index: 44 Item: AssacrossStone_Middle - Rate: 150 + Rate: 15 - Index: 45 Item: AssacrossStone_Bottom - Rate: 150 + Rate: 15 - Index: 46 Item: AssacrossStone_Top2 - Rate: 150 + Rate: 15 - Index: 47 Item: AssacrossStone_Middle2 - Rate: 150 + Rate: 15 - Index: 48 Item: AssacrossStone_Bottom2 - Rate: 150 + Rate: 15 - Index: 49 Item: Stone_Top_Box - Rate: 360 + Rate: 36 - Index: 50 Item: Stone_Top2_Box - Rate: 360 + Rate: 36 - Index: 51 Item: Stone_Middle_Box - Rate: 360 + Rate: 36 - Index: 52 Item: Stone_Middle2_Box - Rate: 360 + Rate: 36 - Index: 53 Item: Stone_Bottom_Box - Rate: 360 + Rate: 36 - Index: 54 Item: Stone_Bottom2_Box - Rate: 360 + Rate: 36 - Index: 55 Item: CastingStone_Top - Rate: 360 + Rate: 36 - Index: 56 Item: CastingStone_Middle - Rate: 360 + Rate: 36 - Index: 57 Item: CastingStone_Bottom - Rate: 360 + Rate: 36 - Index: 58 - Item: Critical_Stone_Top - Rate: 360 - - Index: 59 Item: Critical_Stone - Rate: 360 + Rate: 36 + - Index: 59 + Item: Critical_Stone_Top + Rate: 36 - Index: 60 Item: Critical_Stone_Bottom - Rate: 360 + Rate: 36 - Group: ANCIENT_HERO_BOX_1 SubGroups: - SubGroup: 1 @@ -44209,414 +44797,916 @@ Body: List: - Index: 0 Item: M_PATKStone_Robe - Rate: 10 + Rate: 1 + Announced: true - Index: 1 Item: R_PATKStone_Robe - Rate: 10 + Rate: 1 + Announced: true - Index: 2 Item: POWStone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 3 Item: ConStone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 4 Item: Critical_Stone_Robe - Rate: 20 + Rate: 2 + Announced: true - Index: 5 Item: SPdrainStone_Robe_D - Rate: 40 + Rate: 4 + Announced: true - Index: 6 Item: SPdrainStone_Top - Rate: 80 + Rate: 8 + Announced: true - Index: 7 Item: CastStone_Robe - Rate: 80 + Rate: 8 + Announced: true - Index: 8 Item: ASPDStone_Top - Rate: 150 + Rate: 15 - Index: 9 Item: ASPDStone_Robe_D - Rate: 80 + Rate: 8 + Announced: true - Index: 10 Item: HPdrainStone_Robe_D - Rate: 80 + Rate: 8 + Announced: true - Index: 11 Item: GreenFloor_Bottom - Rate: 160 + Rate: 16 - Index: 12 Item: ExplodingEffect_Middle - Rate: 160 + Rate: 16 - Index: 13 Item: StaremperorStone_Robe - Rate: 80 + Rate: 8 + Announced: true - Index: 14 Item: RebellionStone_Robe - Rate: 80 + Rate: 8 + Announced: true - Index: 15 Item: SoulreaperStone_Robe - Rate: 80 + Rate: 8 + Announced: true - Index: 16 Item: StarStone_Top3 - Rate: 80 + Rate: 8 + Announced: true - Index: 17 Item: StarStone_Middle3 - Rate: 80 + Rate: 8 + Announced: true - Index: 18 Item: StarStone_Bottom3 - Rate: 80 + Rate: 8 + Announced: true - Index: 19 Item: RebelStone_Top3 - Rate: 80 + Rate: 8 + Announced: true - Index: 20 Item: RebelStone_Middle3 - Rate: 80 + Rate: 8 + Announced: true - Index: 21 Item: RebelStone_Bottom3 - Rate: 80 + Rate: 8 + Announced: true - Index: 22 Item: ReaperStone_Top3 - Rate: 80 + Rate: 8 + Announced: true - Index: 23 Item: ReaperStone_Middle3 - Rate: 80 + Rate: 8 + Announced: true - Index: 24 Item: ReaperStone_Bottom3 - Rate: 80 + Rate: 8 + Announced: true - Index: 25 Item: Stone_Robe_Box - Rate: 160 + Rate: 16 - Index: 26 Item: Stone_Robe2_Box - Rate: 160 + Rate: 16 - Index: 27 Item: Magic_Stone_Top - Rate: 240 + Rate: 24 - Index: 28 Item: Magic_Stone_Middle - Rate: 240 + Rate: 24 - Index: 29 Item: Magic_Stone_Bottom - Rate: 240 + Rate: 24 - Index: 30 Item: GladiatorStone_Top - Rate: 150 + Rate: 15 - Index: 31 Item: GladiatorStone_Middle - Rate: 150 + Rate: 15 - Index: 32 Item: GladiatorStone_Bottom - Rate: 150 + Rate: 15 - Index: 33 Item: GunslingerStone_Top - Rate: 150 + Rate: 15 - Index: 34 Item: GunslingerStone_Middle - Rate: 150 + Rate: 15 - Index: 35 Item: GunslingerStone_Bottom - Rate: 150 + Rate: 15 - Index: 36 Item: SoullinkerStone_Top - Rate: 150 + Rate: 15 - Index: 37 Item: SoullinkerStone_Middle - Rate: 150 + Rate: 15 - Index: 38 Item: SoullinkerStone_Bottom - Rate: 150 + Rate: 15 - Index: 39 Item: Melee_Stone_Top - Rate: 240 + Rate: 24 - Index: 40 Item: Melee_Stone_Middle - Rate: 240 + Rate: 24 - Index: 41 Item: Melee_Stone_Bottom - Rate: 240 + Rate: 24 - Index: 42 Item: Range_Stone_Top - Rate: 240 + Rate: 24 - Index: 43 Item: Range_Stone - Rate: 240 + Rate: 24 - Index: 44 Item: Range_Stone_Bottom - Rate: 240 + Rate: 24 - Index: 45 Item: Stone_Top_Box - Rate: 360 + Rate: 36 - Index: 46 Item: Stone_Top2_Box - Rate: 360 + Rate: 36 - Index: 47 Item: Stone_Middle_Box - Rate: 360 + Rate: 36 - Index: 48 Item: Stone_Middle2_Box - Rate: 360 + Rate: 36 - Index: 49 Item: Stone_Bottom_Box - Rate: 360 + Rate: 36 - Index: 50 Item: Stone_Bottom2_Box - Rate: 360 + Rate: 36 - Index: 51 Item: CastingStone_Top - Rate: 360 + Rate: 36 - Index: 52 Item: CastingStone_Middle - Rate: 360 + Rate: 36 - Index: 53 Item: CastingStone_Bottom - Rate: 360 + Rate: 36 - Index: 54 Item: Critical_Stone - Rate: 360 + Rate: 36 - Index: 55 Item: Critical_Stone_Top - Rate: 360 + Rate: 36 - Index: 56 Item: Critical_Stone_Bottom - Rate: 360 + Rate: 36 - Group: S_FULLPENE_EARRING SubGroups: - - SubGroup: 0 + - SubGroup: 1 List: - Index: 0 Item: S_FullPene_Earring + Rate: 40 RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_FullPene_Earring + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_FullPene_Earring + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_FullPene_Earring + Rate: 10 + RefineMinimum: 10 RefineMaximum: 10 - Group: S_FULLPENE_PENDANT SubGroups: - - SubGroup: 0 + - SubGroup: 1 List: - Index: 0 Item: S_FullPene_Pendant + Rate: 40 RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_FullPene_Pendant + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_FullPene_Pendant + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_FullPene_Pendant + Rate: 10 + RefineMinimum: 10 RefineMaximum: 10 - Group: S_FULLPENE_ARMOR SubGroups: - - SubGroup: 0 + - SubGroup: 1 List: - Index: 0 Item: S_FullPene_Armor + Rate: 40 RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_FullPene_Armor + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_FullPene_Armor + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_FullPene_Armor + Rate: 10 + RefineMinimum: 10 RefineMaximum: 10 - Group: S_FULLPENE_SHOES SubGroups: - - SubGroup: 0 + - SubGroup: 1 List: - Index: 0 Item: S_FullPene_Shoes + Rate: 40 RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_FullPene_Shoes + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_FullPene_Shoes + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_FullPene_Shoes + Rate: 10 + RefineMinimum: 10 RefineMaximum: 10 - Group: S_FULLTEMP_EARRING SubGroups: - - SubGroup: 0 + - SubGroup: 1 List: - Index: 0 Item: S_FullTemp_Earring + Rate: 40 RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_FullTemp_Earring + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_FullTemp_Earring + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_FullTemp_Earring + Rate: 10 + RefineMinimum: 10 RefineMaximum: 10 - Group: S_FULLTEMP_PENDANT SubGroups: - - SubGroup: 0 + - SubGroup: 1 List: - Index: 0 Item: S_FullTemp_Pendant + Rate: 40 RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_FullTemp_Pendant + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_FullTemp_Pendant + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_FullTemp_Pendant + Rate: 10 + RefineMinimum: 10 RefineMaximum: 10 - Group: S_FULLTEMP_ARMOR SubGroups: - - SubGroup: 0 + - SubGroup: 1 List: - Index: 0 Item: S_FullTemp_Armor + Rate: 40 RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_FullTemp_Armor + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_FullTemp_Armor + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_FullTemp_Armor + Rate: 10 + RefineMinimum: 10 RefineMaximum: 10 - Group: S_FULLTEMP_SHOES SubGroups: - - SubGroup: 0 + - SubGroup: 1 List: - Index: 0 Item: S_FullTemp_Shoes + Rate: 40 RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_FullTemp_Shoes + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_FullTemp_Shoes + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_FullTemp_Shoes + Rate: 10 + RefineMinimum: 10 RefineMaximum: 10 - Group: S_DURABLE_WEAPON SubGroups: - - SubGroup: 0 + - SubGroup: 1 List: - Index: 0 Item: S_Durable_Weapon + Rate: 40 RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_Durable_Weapon + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_Durable_Weapon + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_Durable_Weapon + Rate: 10 + RefineMinimum: 10 RefineMaximum: 10 - Group: S_DURABLE_SHIELD SubGroups: - - SubGroup: 0 + - SubGroup: 1 List: - Index: 0 Item: S_Durable_Shield + Rate: 40 RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_Durable_Shield + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_Durable_Shield + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_Durable_Shield + Rate: 10 + RefineMinimum: 10 RefineMaximum: 10 - Group: S_CLEVER_WEAPON SubGroups: - - SubGroup: 0 + - SubGroup: 1 List: - Index: 0 Item: S_Clever_Weapon + Rate: 40 RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_Clever_Weapon + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_Clever_Weapon + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_Clever_Weapon + Rate: 10 + RefineMinimum: 10 RefineMaximum: 10 - Group: S_CLEVER_SHIELD SubGroups: - - SubGroup: 0 + - SubGroup: 1 List: - Index: 0 Item: S_Clever_Shield + Rate: 40 RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_Clever_Shield + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_Clever_Shield + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_Clever_Shield + Rate: 10 + RefineMinimum: 10 RefineMaximum: 10 - Group: S_ALLMIGHTY_EARRING SubGroups: - - SubGroup: 0 + - SubGroup: 1 List: - Index: 0 Item: S_AllMighty_Earring + Rate: 40 RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_AllMighty_Earring + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_AllMighty_Earring + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_AllMighty_Earring + Rate: 10 + RefineMinimum: 10 RefineMaximum: 10 - Group: S_ALLMIGHTY_PENDANT SubGroups: - - SubGroup: 0 + - SubGroup: 1 List: - Index: 0 Item: S_AllMighty_Pendant + Rate: 40 RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_AllMighty_Pendant + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_AllMighty_Pendant + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_AllMighty_Pendant + Rate: 10 + RefineMinimum: 10 RefineMaximum: 10 - Group: S_TRUEGEM_EARRING SubGroups: - - SubGroup: 0 + - SubGroup: 1 List: - Index: 0 Item: S_TrueGem_Earring + Rate: 40 RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_TrueGem_Earring + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_TrueGem_Earring + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_TrueGem_Earring + Rate: 10 + RefineMinimum: 10 RefineMaximum: 10 - Group: S_TRUEGEM_PENDANT SubGroups: - - SubGroup: 0 + - SubGroup: 1 List: - Index: 0 Item: S_TrueGem_Pendant + Rate: 40 RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_TrueGem_Pendant + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_TrueGem_Pendant + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_TrueGem_Pendant + Rate: 10 + RefineMinimum: 10 RefineMaximum: 10 - Group: S_TRUEGEM_SHOES SubGroups: - - SubGroup: 0 + - SubGroup: 1 List: - Index: 0 Item: S_TrueGem_Shoes + Rate: 40 RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_TrueGem_Shoes + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_TrueGem_Shoes + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_TrueGem_Shoes + Rate: 10 + RefineMinimum: 10 RefineMaximum: 10 - Group: S_TRUEGEM_ARMOR SubGroups: - - SubGroup: 0 + - SubGroup: 1 List: - Index: 0 Item: S_TrueGem_Armor + Rate: 40 RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_TrueGem_Armor + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_TrueGem_Armor + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_TrueGem_Armor + Rate: 10 + RefineMinimum: 10 RefineMaximum: 10 - Group: S_PERFECTSIZE_WEAPON SubGroups: - - SubGroup: 0 + - SubGroup: 1 List: - Index: 0 Item: S_PerfectSize_Weapon + Rate: 40 RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_PerfectSize_Weapon + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_PerfectSize_Weapon + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_PerfectSize_Weapon + Rate: 10 + RefineMinimum: 10 RefineMaximum: 10 - Group: S_PERFECTSIZE_ARMOR SubGroups: - - SubGroup: 0 + - SubGroup: 1 List: - Index: 0 Item: S_PerfectSize_Armor + Rate: 40 RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_PerfectSize_Armor + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_PerfectSize_Armor + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_PerfectSize_Armor + Rate: 10 + RefineMinimum: 10 RefineMaximum: 10 - Group: S_M_MAMMOTH_EARRING SubGroups: - - SubGroup: 0 + - SubGroup: 1 List: - Index: 0 Item: S_M_Mammoth_Earring + Rate: 40 RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_M_Mammoth_Earring + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_M_Mammoth_Earring + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_M_Mammoth_Earring + Rate: 10 + RefineMinimum: 10 RefineMaximum: 10 - Group: S_M_MAMMOTH_PENDANT SubGroups: - - SubGroup: 0 + - SubGroup: 1 List: - Index: 0 Item: S_M_Mammoth_Pendant + Rate: 40 RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_M_Mammoth_Pendant + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_M_Mammoth_Pendant + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_M_Mammoth_Pendant + Rate: 10 + RefineMinimum: 10 RefineMaximum: 10 - Group: S_M_MAMMOTH_ARMOR SubGroups: - - SubGroup: 0 + - SubGroup: 1 List: - Index: 0 Item: S_M_Mammoth_Armor + Rate: 40 RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_M_Mammoth_Armor + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_M_Mammoth_Armor + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_M_Mammoth_Armor + Rate: 10 + RefineMinimum: 10 RefineMaximum: 10 - Group: S_M_MAMMOTH_SHOES SubGroups: - - SubGroup: 0 + - SubGroup: 1 List: - Index: 0 Item: S_M_Mammoth_Shoes + Rate: 40 RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_M_Mammoth_Shoes + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_M_Mammoth_Shoes + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_M_Mammoth_Shoes + Rate: 10 + RefineMinimum: 10 RefineMaximum: 10 - Group: S_SPELLCASTER_EARRING SubGroups: - - SubGroup: 0 + - SubGroup: 1 List: - Index: 0 Item: S_SpellCaster_Earring + Rate: 40 RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_SpellCaster_Earring + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_SpellCaster_Earring + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_SpellCaster_Earring + Rate: 10 + RefineMinimum: 10 RefineMaximum: 10 - Group: S_SPELLCASTER_PENDANT SubGroups: - - SubGroup: 0 + - SubGroup: 1 List: - Index: 0 Item: S_SpellCaster_Pendant + Rate: 40 RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_SpellCaster_Pendant + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_SpellCaster_Pendant + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_SpellCaster_Pendant + Rate: 10 + RefineMinimum: 10 RefineMaximum: 10 - Group: S_SPELLCASTER_ARMOR SubGroups: - - SubGroup: 0 + - SubGroup: 1 List: - Index: 0 Item: S_SpellCaster_Armor + Rate: 40 RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_SpellCaster_Armor + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_SpellCaster_Armor + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_SpellCaster_Armor + Rate: 10 + RefineMinimum: 10 RefineMaximum: 10 - Group: S_SPELLCASTER_SHOES SubGroups: - - SubGroup: 0 + - SubGroup: 1 List: - Index: 0 Item: S_SpellCaster_Shoes + Rate: 40 RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_SpellCaster_Shoes + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_SpellCaster_Shoes + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_SpellCaster_Shoes + Rate: 10 + RefineMinimum: 10 RefineMaximum: 10 - Group: S_ABSORB_WEAPON SubGroups: - - SubGroup: 0 + - SubGroup: 1 List: - Index: 0 Item: S_Absorb_Weapon + Rate: 40 RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_Absorb_Weapon + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_Absorb_Weapon + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_Absorb_Weapon + Rate: 10 + RefineMinimum: 10 RefineMaximum: 10 - Group: S_ABSORB_SHIELD SubGroups: - - SubGroup: 0 + - SubGroup: 1 List: - Index: 0 Item: S_Absorb_Shield + Rate: 40 RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_Absorb_Shield + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_Absorb_Shield + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_Absorb_Shield + Rate: 10 + RefineMinimum: 10 RefineMaximum: 10 - Group: PORINGSPRECIOUSBOX SubGroups: @@ -44640,233 +45730,255 @@ Body: List: - Index: 0 Item: SmatkStone_Robe - Rate: 10 + Rate: 1 + Announced: true - Index: 1 Item: SplStone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 2 Item: ResistDefStone_Robe - Rate: 10 + Rate: 1 + Announced: true - Index: 3 Item: StaminaWISStone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 4 Item: MinorCastStone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 5 Item: CastStone_Robe_D - Rate: 40 + Rate: 4 + Announced: true - Index: 6 Item: SPdrainStone_Top - Rate: 80 + Rate: 8 + Announced: true - Index: 7 Item: CastStone_Robe - Rate: 80 + Rate: 8 + Announced: true - Index: 8 Item: ASPDStone_Top - Rate: 160 + Rate: 16 - Index: 9 Item: ASPDStone_Robe_D - Rate: 80 + Rate: 8 + Announced: true - Index: 10 Item: HPdrainStone_Robe_D - Rate: 80 + Rate: 8 + Announced: true - Index: 11 Item: MinorCastingStone_Robe - Rate: 160 + Rate: 16 - Index: 12 Item: BlueAuraEffect_Middle - Rate: 160 + Rate: 16 - Index: 13 Item: KagerouStone_Robe - Rate: 80 + Rate: 8 + Announced: true - Index: 14 Item: OboroStone_Robe - Rate: 80 + Rate: 8 + Announced: true - Index: 15 Item: DoramStone_Robe - Rate: 80 + Rate: 8 + Announced: true - Index: 16 Item: KagerouStone_Top3 - Rate: 80 + Rate: 8 + Announced: true - Index: 17 Item: KagerouStone_Middle3 - Rate: 80 + Rate: 8 + Announced: true - Index: 18 Item: KagerouStone_Bottom3 - Rate: 80 + Rate: 8 + Announced: true - Index: 19 Item: OboroStone_Top3 - Rate: 80 + Rate: 8 + Announced: true - Index: 20 Item: OboroStone_Middle3 - Rate: 80 + Rate: 8 + Announced: true - Index: 21 Item: OboroStone_Bottom3 - Rate: 80 + Rate: 8 + Announced: true - Index: 22 Item: DoramStone_Top3 - Rate: 80 + Rate: 8 + Announced: true - Index: 23 Item: DoramStone_Middle3 - Rate: 80 + Rate: 8 + Announced: true - Index: 24 Item: DoramStone_Bottom3 - Rate: 80 + Rate: 8 + Announced: true - Index: 25 Item: Stone_Robe_Box - Rate: 160 + Rate: 16 - Index: 26 Item: Stone_Robe2_Box - Rate: 160 + Rate: 16 - Index: 27 Item: Magic_Stone_Top - Rate: 240 + Rate: 24 - Index: 28 Item: Magic_Stone_Middle - Rate: 240 + Rate: 24 - Index: 29 Item: Magic_Stone_Bottom - Rate: 240 + Rate: 24 - Index: 30 Item: DefenseStone_Top - Rate: 150 + Rate: 15 - Index: 31 Item: DefenseStone_Middle - Rate: 150 + Rate: 15 - Index: 32 Item: DefenseStone_Bottom - Rate: 150 + Rate: 15 - Index: 33 Item: NinjaStone_Top - Rate: 150 + Rate: 15 - Index: 34 Item: NinjaStone_Middle - Rate: 150 + Rate: 15 - Index: 35 Item: NinjaStone_Bottom - Rate: 150 + Rate: 15 - Index: 36 Item: DoramStone_Top - Rate: 150 + Rate: 15 - Index: 37 Item: DoramStone_Middle - Rate: 150 + Rate: 15 - Index: 38 Item: DoramStone_Bottom - Rate: 150 + Rate: 15 - Index: 39 Item: ReloadStone_Top - Rate: 240 + Rate: 24 - Index: 40 Item: ReloadStone_Middle - Rate: 240 + Rate: 24 - Index: 41 Item: ReloadStone_Bottom - Rate: 240 + Rate: 24 - Index: 42 Item: EXPStone_Middle - Rate: 240 + Rate: 24 - Index: 43 Item: EXPStone_Bottom - Rate: 240 + Rate: 24 - Index: 44 Item: EXPStone_Top - Rate: 240 + Rate: 24 - Index: 45 Item: Stone_Top_Box - Rate: 360 + Rate: 36 - Index: 46 Item: Stone_Top2_Box - Rate: 360 + Rate: 36 - Index: 47 Item: Stone_Middle_Box - Rate: 360 + Rate: 36 - Index: 48 Item: Stone_Middle2_Box - Rate: 360 + Rate: 36 - Index: 49 Item: Stone_Bottom_Box - Rate: 360 + Rate: 36 - Index: 50 Item: Stone_Bottom2_Box - Rate: 360 + Rate: 36 - Index: 51 Item: CastingStone_Top - Rate: 360 + Rate: 36 - Index: 52 Item: CastingStone_Middle - Rate: 360 + Rate: 36 - Index: 53 Item: CastingStone_Bottom - Rate: 360 + Rate: 36 - Index: 54 Item: Critical_Stone - Rate: 360 + Rate: 36 - Index: 55 Item: Critical_Stone_Top - Rate: 360 + Rate: 36 - Index: 56 Item: Critical_Stone_Bottom - Rate: 360 + Rate: 36 - Group: EIN_1HITEMBOX SubGroups: - SubGroup: 1 List: - Index: 0 Item: Ein_1HKNUCK - Rate: 556 + Rate: 555 - Index: 1 - Item: Ein_BHSTAFF - Rate: 556 - - Index: 2 - Item: Ein_BHHuuma - Rate: 556 - - Index: 3 Item: Ein_1HHAMMER - Rate: 556 - - Index: 4 - Item: Ein_BHBOW - Rate: 556 - - Index: 5 - Item: Ein_BHSWORD - Rate: 556 - - Index: 6 + Rate: 555 + - Index: 2 Item: Ein_1HWAND - Rate: 556 - - Index: 7 + Rate: 555 + - Index: 3 Item: Ein_1HWHIP - Rate: 556 - - Index: 8 - Item: Ein_BHKATAR - Rate: 556 - - Index: 9 - Item: Ein_BHAXE - Rate: 556 - - Index: 10 + Rate: 555 + - Index: 4 Item: Ein_1HBOOK - Rate: 556 - - Index: 11 + Rate: 555 + - Index: 5 Item: Ein_1HDAGGER - Rate: 556 - - Index: 12 + Rate: 555 + - Index: 6 Item: Ein_1HMAGGER - Rate: 556 - - Index: 13 + Rate: 555 + - Index: 7 Item: Ein_1HSPEAR - Rate: 556 - - Index: 14 + Rate: 555 + - Index: 8 Item: Ein_1HLUTE - Rate: 556 - - Index: 15 - Item: Ein_1HGUN - Rate: 556 - - Index: 16 + Rate: 555 + - Index: 9 Item: Ein_1HSWORD - Rate: 556 - - Index: 17 + Rate: 555 + - Index: 10 + Item: Ein_BHSTAFF + Rate: 555 + - Index: 11 + Item: Ein_BHHuuma + Rate: 555 + - Index: 12 + Item: Ein_BHKATAR + Rate: 555 + - Index: 13 + Item: Ein_BHAXE + Rate: 555 + - Index: 14 + Item: Ein_BHBOW + Rate: 555 + - Index: 15 Item: Ein_1H_Foxtail - Rate: 556 + Rate: 555 + - Index: 16 + Item: Ein_1HGUN + Rate: 555 + - Index: 17 + Item: Ein_BHSWORD + Rate: 555 - Group: EIN_UNDIUM SubGroups: - SubGroup: 1 @@ -44904,7 +46016,7 @@ Body: Item: Sealed_Card Rate: 7000 - Index: 1 - Item: Wet_Sealed_Card + Item: Sealed_Card2 Rate: 3000 - Group: 2019_SSTARR_TBOX SubGroups: @@ -44912,7 +46024,43 @@ Body: List: - Index: 0 Item: 2019_SStarR_Ticket - Rate: 10000 + Rate: 900 + - Index: 1 + Item: 2019_SStarR_Ticket + Rate: 1100 + Amount: 2 + - Index: 2 + Item: 2019_SStarR_Ticket + Rate: 1700 + Amount: 3 + - Index: 3 + Item: 2019_SStarR_Ticket + Rate: 1500 + Amount: 4 + - Index: 4 + Item: 2019_SStarR_Ticket + Rate: 1300 + Amount: 5 + - Index: 5 + Item: 2019_SStarR_Ticket + Rate: 1100 + Amount: 6 + - Index: 6 + Item: 2019_SStarR_Ticket + Rate: 900 + Amount: 7 + - Index: 7 + Item: 2019_SStarR_Ticket + Rate: 700 + Amount: 8 + - Index: 8 + Item: 2019_SStarR_Ticket + Rate: 500 + Amount: 9 + - Index: 9 + Item: 2019_SStarR_Ticket + Rate: 300 + Amount: 10 - Group: E_LIFE_POTION_PACK SubGroups: - SubGroup: 0 @@ -44921,10 +46069,10 @@ Body: Item: E_Mysterious_Water Amount: 20 - Index: 1 - Item: E_Med_Life_Potion + Item: E_Small_Life_Potion Amount: 20 - Index: 2 - Item: E_Small_Life_Potion + Item: E_Med_Life_Potion Amount: 20 - Group: E_DEF_SCROLL_BOX SubGroups: @@ -44952,254 +46100,337 @@ Body: - SubGroup: 1 List: - Index: 0 - Item: Ramor_Shield_Undead - Rate: 136 - - Index: 1 - Item: Sharel_Shield - Rate: 136 - - Index: 2 - Item: Flow_Shield - Rate: 136 - - Index: 3 - Item: Sombre_Shield - Rate: 136 - - Index: 4 - Item: Sol_Shield - Rate: 136 - - Index: 5 - Item: Poison_Shield - Rate: 136 - - Index: 6 - Item: Lumiere_Shield - Rate: 136 - - Index: 7 - Item: Rouban_Shield - Rate: 136 - - Index: 8 - Item: Lian_Shield - Rate: 136 - - Index: 9 - Item: Flow_Manteau - Rate: 136 - - Index: 10 - Item: Sombre_Manteau - Rate: 136 - - Index: 11 - Item: Sharel_Manteau - Rate: 136 - - Index: 12 - Item: Ramor_Manteau - Rate: 136 - - Index: 13 - Item: Orleans_Necklace - Rate: 45 - - Index: 14 - Item: Sprint_Glove - Rate: 45 - - Index: 15 - Item: Brooch_Greed - Rate: 45 - - Index: 16 - Item: Limnil_Glove - Rate: 45 - - Index: 17 - Item: M_Dimension_Essence - Rate: 5 - - Index: 18 - Item: Blue_Herb_Box2 - Rate: 45 - - Index: 19 - Item: Dead_Tree_Branch_Box1 - Rate: 45 - - Index: 20 - Item: C_Wing_Of_Fly_3Day_Box - Rate: 45 - - Index: 21 - Item: C_Valkyrie_Feather_Band - Rate: 36 - - Index: 22 - Item: Sol_Manteau - Rate: 136 - - Index: 23 - Item: Lumiere_Manteau - Rate: 136 - - Index: 24 - Item: Poison_Manteau - Rate: 136 - - Index: 25 - Item: Rouban_Manteau - Rate: 136 - - Index: 26 - Item: Lian_Robe - Rate: 136 - - Index: 27 - Item: Sombre_Shoes - Rate: 136 - - Index: 28 - Item: Sol_Shoes - Rate: 136 - - Index: 29 - Item: Ramor_Shoes - Rate: 136 - - Index: 30 - Item: Sharel_Shoes - Rate: 136 - - Index: 31 - Item: Flow_Shoes - Rate: 136 - - Index: 32 - Item: Lumiere_Shoes - Rate: 136 - - Index: 33 - Item: Rouban_Shoes - Rate: 136 - - Index: 34 - Item: Poison_Shoes - Rate: 136 - - Index: 35 - Item: Lian_Shoes - Rate: 136 - - Index: 36 - Item: Shadow_Random_Mix - Rate: 90 - - Index: 37 Item: Mightysoul_Essence Rate: 5 + Amount: 3 + Announced: true + - Index: 1 + Item: M_Dimension_Essence + Rate: 5 + Amount: 3 + Announced: true + - Index: 2 + Item: Blacksmith_Blessing + Rate: 5 + Amount: 2 + Announced: true + - Index: 3 + Item: C_Valkyrie_Feather_Band + Rate: 40 + Announced: true + - Index: 4 + Item: Limnil_Glove + Rate: 40 + Announced: true + - Index: 5 + Item: Orleans_Necklace + Rate: 40 + Announced: true + - Index: 6 + Item: Sprint_Glove + Rate: 40 + Announced: true + - Index: 7 + Item: Brooch_Greed + Rate: 40 + Announced: true + - Index: 8 + Item: Shadow_Random_Mix + Rate: 50 + - Index: 9 + Item: Ramor_Shield_Undead + Rate: 100 + - Index: 10 + Item: Sharel_Shield + Rate: 100 + - Index: 11 + Item: Flow_Shield + Rate: 100 + - Index: 12 + Item: Sombre_Shield + Rate: 100 + - Index: 13 + Item: Sol_Shield + Rate: 100 + - Index: 14 + Item: Poison_Shield + Rate: 100 + - Index: 15 + Item: Lumiere_Shield + Rate: 100 + - Index: 16 + Item: Rouban_Shield + Rate: 100 + - Index: 17 + Item: Lian_Shield + Rate: 100 + - Index: 18 + Item: Flow_Manteau + Rate: 100 + - Index: 19 + Item: Sombre_Manteau + Rate: 100 + - Index: 20 + Item: Sharel_Manteau + Rate: 100 + - Index: 21 + Item: Ramor_Manteau + Rate: 100 + - Index: 22 + Item: Sol_Manteau + Rate: 100 + - Index: 23 + Item: Lumiere_Manteau + Rate: 100 + - Index: 24 + Item: Poison_Manteau + Rate: 100 + - Index: 25 + Item: Rouban_Manteau + Rate: 100 + - Index: 26 + Item: Lian_Robe + Rate: 100 + - Index: 27 + Item: Sombre_Shoes + Rate: 100 + - Index: 28 + Item: Sol_Shoes + Rate: 100 + - Index: 29 + Item: Ramor_Shoes + Rate: 100 + - Index: 30 + Item: Sharel_Shoes + Rate: 100 + - Index: 31 + Item: Flow_Shoes + Rate: 100 + - Index: 32 + Item: Lumiere_Shoes + Rate: 100 + - Index: 33 + Item: Rouban_Shoes + Rate: 100 + - Index: 34 + Item: Poison_Shoes + Rate: 100 + - Index: 35 + Item: Lian_Shoes + Rate: 100 + - Index: 36 + Item: aegis_300487 + Rate: 85 + - Index: 37 + Item: aegis_300489 + Rate: 85 - Index: 38 - Item: Inventory_Ex_Evt - Rate: 45 + Item: aegis_300491 + Rate: 85 - Index: 39 - Item: S_Nihil_Card - Rate: 136 + Item: aegis_300493 + Rate: 85 - Index: 40 - Item: S_Agnes_Card - Rate: 136 + Item: aegis_300495 + Rate: 85 - Index: 41 - Item: S_Jurgen_Card - Rate: 136 + Item: aegis_300497 + Rate: 85 - Index: 42 - Item: S_Spica_Card - Rate: 136 + Item: S_Nihil_Card + Rate: 85 - Index: 43 - Item: Nihil_Card - Rate: 371 - Amount: 3 + Item: S_Spica_Card + Rate: 85 - Index: 44 - Item: Agnes_Card - Rate: 371 - Amount: 3 - - Index: 45 - Item: Jurgen_Card - Rate: 371 - Amount: 3 - - Index: 46 - Item: Spica_Card - Rate: 371 - Amount: 3 - - Index: 47 - Item: Kronecker_Card - Rate: 371 - Amount: 3 - - Index: 48 - Item: S_Kronecker_Card - Rate: 136 - - Index: 49 - Item: Skia_Card - Rate: 371 - Amount: 3 - - Index: 50 Item: S_Skia_Card - Rate: 136 - - Index: 51 - Item: Kathryn_Card - Rate: 371 - Amount: 3 - - Index: 52 - Item: S_Kathryn_Card - Rate: 136 - - Index: 53 - Item: Isaac_Card - Rate: 371 - Amount: 3 - - Index: 54 - Item: S_Issac_Card - Rate: 136 - - Index: 55 - Item: Wolf_Card_E - Rate: 371 - Amount: 3 - - Index: 56 + Rate: 85 + - Index: 45 + Item: S_Kronecker_Card + Rate: 85 + - Index: 46 + Item: S_Agnes_Card + Rate: 85 + - Index: 47 + Item: S_Jurgen_Card + Rate: 85 + - Index: 48 + Item: S_Poe_Card + Rate: 85 + - Index: 49 Item: S_Wolf_Card - Rate: 136 + Rate: 85 + - Index: 50 + Item: S_Kathryn_Card + Rate: 85 + - Index: 51 + Item: S_Issac_Card + Rate: 85 + - Index: 52 + Item: S_Meyer_Card + Rate: 85 + - Index: 53 + Item: S_Helmut_Card + Rate: 85 + - Index: 54 + Item: aegis_300422 + Rate: 85 + - Index: 55 + Item: aegis_300424 + Rate: 85 + - Index: 56 + Item: aegis_300426 + Rate: 85 - Index: 57 - Item: Poe_Card - Rate: 371 + Item: aegis_300486 + Rate: 250 Amount: 3 - Index: 58 - Item: S_Poe_Card - Rate: 136 + Item: aegis_300488 + Rate: 250 + Amount: 3 + - Index: 59 + Item: aegis_300490 + Rate: 250 + Amount: 3 + - Index: 60 + Item: aegis_300492 + Rate: 250 + Amount: 3 + - Index: 61 + Item: aegis_300494 + Rate: 250 + Amount: 3 + - Index: 62 + Item: aegis_300496 + Rate: 250 + Amount: 3 + - Index: 63 + Item: aegis_300421 + Rate: 250 + Amount: 3 + - Index: 64 + Item: aegis_300423 + Rate: 250 + Amount: 3 + - Index: 65 + Item: aegis_300425 + Rate: 250 + Amount: 3 + - Index: 66 + Item: Meyer_Card + Rate: 250 + Amount: 3 + - Index: 67 + Item: Helmut_Card + Rate: 250 + Amount: 3 + - Index: 68 + Item: Kathryn_Card + Rate: 250 + Amount: 3 + - Index: 69 + Item: Isaac_Card + Rate: 250 + Amount: 3 + - Index: 70 + Item: Poe_Card + Rate: 250 + Amount: 3 + - Index: 71 + Item: Wolf_Card_E + Rate: 250 + Amount: 3 + - Index: 72 + Item: Nihil_Card + Rate: 250 + Amount: 3 + - Index: 73 + Item: Agnes_Card + Rate: 250 + Amount: 3 + - Index: 74 + Item: Jurgen_Card + Rate: 250 + Amount: 3 + - Index: 75 + Item: Spica_Card + Rate: 250 + Amount: 3 + - Index: 76 + Item: Kronecker_Card + Rate: 250 + Amount: 3 + - Index: 77 + Item: Skia_Card + Rate: 250 + Amount: 3 - Group: SEASON_EVT_REWARD_2 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: White_Chocolate_B - Rate: 2182 - - Index: 1 Item: Crepe - Rate: 1105 + Rate: 1125 + - Index: 1 + Item: C_Choco_Banana + Rate: 100 - Index: 2 - Item: C_Sweet_Candy - Rate: 20 + Item: Luxurious_Blue_Box + Rate: 5 - Index: 3 - Item: C_SweetChocolate_Hat - Rate: 20 + Item: C_Choco_Mint_Bonnet + Rate: 100 - Index: 4 - Item: Soccer_Cake - Rate: 1105 - - Index: 5 Item: Mont_Blanc_Cake - Rate: 1105 + Rate: 1125 + - Index: 5 + Item: Soccer_Cake + Rate: 1125 - Index: 6 Item: Strawberry_CreamCake - Rate: 1105 + Rate: 1600 - Index: 7 - Item: St_Cupcake - Rate: 1105 + Item: White_Chocolate_B + Rate: 1200 - Index: 8 - Item: Parfait - Rate: 1105 + Item: Bloody_Dead_Branch + Rate: 5 - Index: 9 - Item: Macaron - Rate: 1105 + Item: C_Sweets_Bonbon + Rate: 60 - Index: 10 - Item: K_Secret_Key - Rate: 3 + Item: C_SweetChocolate_Hat + Rate: 60 - Index: 11 Item: C_Choco_Minihat - Rate: 20 + Rate: 60 - Index: 12 - Item: C_Sweets_Bonbon - Rate: 20 + Item: C_Sweet_Candy + Rate: 60 + - SubGroup: 0 + List: + - Index: 0 + Item: Sweets_Coin - Group: HERO_HAMMER_PACKAGE_5 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Mysterious_Water - Amount: 200 - - Index: 1 - Item: Small_Life_Potion - Amount: 200 - - Index: 2 - Item: Med_Life_Potion - Amount: 200 - - Index: 3 Item: Small_Mana_Potion Amount: 50 - - Index: 4 + - Index: 1 Item: M_DEFScroll Amount: 300 + - Index: 2 + Item: Mysterious_Water + Amount: 200 + - Index: 3 + Item: Small_Life_Potion + Amount: 200 + - Index: 4 + Item: Med_Life_Potion + Amount: 200 - Index: 5 Item: Hero_Weapon_Hammer_5 - Group: FLIPPACKAGE @@ -45207,191 +46438,287 @@ Body: - SubGroup: 1 List: - Index: 0 - Item: Branch_Of_Dead_Tree - Rate: 600 - Amount: 3 + Item: FlipHat + Rate: 500 + Announced: true - Index: 1 - Item: Old_Card_Album - Rate: 200 - - Index: 2 - Item: Old_Violet_Box - Rate: 1000 - Amount: 2 - - Index: 3 - Item: Guarantee_Weapon_5Up - Rate: 300 - - Index: 4 - Item: Guarantee_Armor_5Up - Rate: 300 - - Index: 5 - Item: Treasure_Box - Rate: 1850 - - Index: 6 - Item: Bloody_Dead_Branch - Rate: 40 - - Index: 7 - Item: Accessory_Box - Rate: 100 - - Index: 8 - Item: Wrapped_Mask - Rate: 600 - - Index: 9 - Item: Poring_Box - Rate: 400 - Amount: 3 - - Index: 10 Item: Magic_Card_Album Rate: 10 - - Index: 11 + Announced: true + - Index: 2 Item: Comp_Battle_Manual Rate: 500 Amount: 2 - - Index: 12 + - Index: 3 Item: Comp_Bubble_Gum Rate: 500 Amount: 2 - - Index: 13 + - Index: 4 Item: Comp_Insurance Rate: 500 Amount: 2 - - Index: 14 - Item: White_Slim_Pot_Box2 - Rate: 1500 - - Index: 15 + - Index: 5 + Item: Accessory_Box + Rate: 100 + Announced: true + - Index: 6 + Item: Bloody_Dead_Branch + Rate: 40 + Announced: true + - Index: 7 + Item: Guarantee_Weapon_5Up + Rate: 300 + - Index: 8 + Item: Guarantee_Armor_5Up + Rate: 300 + - Index: 9 + Item: Branch_Of_Dead_Tree + Rate: 600 + Amount: 3 + - Index: 10 + Item: Wrapped_Mask + Rate: 600 + - Index: 11 Item: Old_Ore_Box Rate: 1100 + - Index: 12 + Item: Poring_Box + Rate: 400 + Amount: 3 + - Index: 13 + Item: Old_Violet_Box + Rate: 1000 + Amount: 2 + - Index: 14 + Item: Treasure_Box + Rate: 1850 + - Index: 15 + Item: White_Slim_Pot_Box2 + Rate: 1500 - Index: 16 - Item: FlipHat - Rate: 500 + Item: Old_Card_Album + Rate: 200 - Group: POPE_SCROLL SubGroups: - SubGroup: 1 List: - Index: 0 - Item: White_Slim_Potion_Box - Rate: 10000 - - SubGroup: 2 - List: - - Index: 0 - Item: Branch_Of_Dead_Tree - Rate: 1000 + Item: Enchant_Book + Rate: 200 - Index: 1 - Item: Kuirpenring - Rate: 60 - - Index: 2 - Item: Guarantee_Weapon_9Up - Rate: 10 - - Index: 3 Item: Guarantee_Weapon_7Up Rate: 90 + Announced: true + - Index: 2 + Item: Guarantee_Armor_7Up + Rate: 90 + Announced: true + - Index: 3 + Item: Guarantee_Weapon_9Up + Rate: 10 + Announced: true - Index: 4 Item: Guarantee_Armor_9Up Rate: 10 + Announced: true - Index: 5 - Item: Guarantee_Armor_7Up - Rate: 90 - - Index: 6 Item: Guarantee_Weapon_11Up Rate: 1 - - Index: 7 + Announced: true + - Index: 6 Item: Guarantee_Armor_11Up Rate: 1 + Announced: true + - Index: 7 + Item: White_Slim_Pot_Box2 + Rate: 1800 - Index: 8 - Item: Auger_Of_Spirit - Rate: 100 + Item: Poison_Bottle_Box2 + Rate: 1000 - Index: 9 - Item: Enchant_Book - Rate: 200 + Item: Comp_Bubble_Gum + Rate: 1500 - Index: 10 Item: Treasure_Box Rate: 1000 - Index: 11 - Item: Magic_Card_Album - Rate: 100 - - Index: 12 Item: Comp_Battle_Manual Rate: 1500 - - Index: 13 - Item: Comp_Bubble_Gum - Rate: 1500 - - Index: 14 - Item: White_Slim_Pot_Box2 - Rate: 1800 - - Index: 15 - Item: Poison_Bottle_Box2 - Rate: 1000 - - Index: 16 + - Index: 12 Item: Old_C_Album_Garment Rate: 500 - - Index: 17 + - Index: 13 Item: Old_C_Album_Acc Rate: 500 + - Index: 14 + Item: Magic_Card_Album + Rate: 100 + Announced: true + - Index: 15 + Item: Auger_Of_Spirit + Rate: 100 + - Index: 16 + Item: Branch_Of_Dead_Tree + Rate: 1000 + Amount: 3 + - Index: 17 + Item: Kuirpenring + Rate: 60 + Announced: true - Index: 18 Item: Tare_Pope_ Rate: 338 + Announced: true - Index: 19 Item: C_Tare_Pope Rate: 200 + Announced: true - Group: MYSTERIOUS_EGG2 SubGroups: - SubGroup: 1 List: - Index: 0 + Item: Lucky_Egg_C + Rate: 1 + UniqueId: true + - Index: 1 + Item: Lucky_Egg_C2 + Rate: 1 + UniqueId: true + - Index: 2 + Item: Lucky_Egg_C3 + Rate: 1 + UniqueId: true + - Index: 3 + Item: Lucky_Egg_C4 + Rate: 1 + UniqueId: true + - Index: 4 + Item: Lucky_Egg_C5 + Rate: 1 + UniqueId: true + - Index: 5 + Item: Lucky_Egg_C6 + Rate: 1 + UniqueId: true + - Index: 6 + Item: Lucky_Egg_C7 + Rate: 1 + UniqueId: true + - Index: 7 + Item: Lucky_Egg_C8 + Rate: 1 + UniqueId: true + - Index: 8 + Item: Lucky_Egg_C9 + Rate: 1 + UniqueId: true + - Index: 9 + Item: Lucky_Egg_C10 + Rate: 1 + UniqueId: true + - Index: 10 + Item: Gryphon_Egg_Scroll + Rate: 1 + UniqueId: true + - Index: 11 + Item: Dragon_Egg_Scroll + Rate: 1 + UniqueId: true + - Index: 12 + Item: 2011_RWC_Scroll_Kr + Rate: 1 + UniqueId: true + - Index: 13 + Item: Cru_Scroll + Rate: 1 + UniqueId: true + - Index: 14 + Item: Undead_Egg + Rate: 1 + UniqueId: true + - Index: 15 + Item: Girls_Heart + Rate: 1 + UniqueId: true + - Index: 16 + Item: Pope_Scroll + Rate: 1 + UniqueId: true + - Index: 17 Item: Apple - Rate: 10000 + Rate: 17 + UniqueId: true - SubGroup: 2 List: - Index: 0 Item: Lucky_Egg_C - Rate: 588 + Rate: 2 + UniqueId: true - Index: 1 Item: Lucky_Egg_C2 - Rate: 588 + Rate: 2 + UniqueId: true - Index: 2 Item: Lucky_Egg_C3 - Rate: 588 + Rate: 2 + UniqueId: true - Index: 3 Item: Lucky_Egg_C4 - Rate: 588 + Rate: 2 + UniqueId: true - Index: 4 Item: Lucky_Egg_C5 - Rate: 588 + Rate: 2 + UniqueId: true - Index: 5 Item: Lucky_Egg_C6 - Rate: 588 + Rate: 2 + UniqueId: true - Index: 6 Item: Lucky_Egg_C7 - Rate: 588 + Rate: 2 + UniqueId: true - Index: 7 Item: Lucky_Egg_C8 - Rate: 588 + Rate: 2 + UniqueId: true - Index: 8 Item: Lucky_Egg_C9 - Rate: 588 + Rate: 2 + UniqueId: true - Index: 9 Item: Lucky_Egg_C10 - Rate: 588 + Rate: 2 + UniqueId: true - Index: 10 Item: Gryphon_Egg_Scroll - Rate: 588 + Rate: 2 + UniqueId: true - Index: 11 Item: Dragon_Egg_Scroll - Rate: 588 + Rate: 2 + UniqueId: true - Index: 12 Item: 2011_RWC_Scroll_Kr - Rate: 588 + Rate: 2 + UniqueId: true - Index: 13 Item: Cru_Scroll - Rate: 588 + Rate: 2 + UniqueId: true - Index: 14 Item: Undead_Egg - Rate: 588 + Rate: 2 + UniqueId: true - Index: 15 Item: Girls_Heart - Rate: 588 + Rate: 2 + UniqueId: true - Index: 16 - Item: Mysterious_Egg2 - Rate: 588 + Item: Pope_Scroll + Rate: 2 + UniqueId: true - Group: GUILDSMAN_RECRUITER_BOX SubGroups: - SubGroup: 0 @@ -45399,6 +46726,7 @@ Body: - Index: 0 Item: Guildsman_Recruiter Duration: 10080 + UniqueId: true - Group: PARTY_RECRUITER_HAT_BOX SubGroups: - SubGroup: 0 @@ -45406,6 +46734,7 @@ Body: - Index: 0 Item: Party_Recruiter_Hat Duration: 10080 + UniqueId: true - Group: BF_RECRUITER_HAT_BOX SubGroups: - SubGroup: 0 @@ -45413,6 +46742,7 @@ Body: - Index: 0 Item: Bf_Recruiter_Hat Duration: 10080 + UniqueId: true - Group: FRIEND_RECR_HAT_BOX SubGroups: - SubGroup: 0 @@ -45420,6 +46750,7 @@ Body: - Index: 0 Item: Friend_Recruiter_Hat Duration: 10080 + UniqueId: true - Group: GF_RECRUITER_HAT_BOX SubGroups: - SubGroup: 0 @@ -45427,6 +46758,7 @@ Body: - Index: 0 Item: Gf_Recruiter_Hat Duration: 10080 + UniqueId: true - Group: MARCHER_HAT_BOX SubGroups: - SubGroup: 1 @@ -45447,6 +46779,7 @@ Body: - Index: 0 Item: Guildsman_Recruiter Duration: 10080 + UniqueId: true - Group: F_PARTY_RECR_HAT_BOX SubGroups: - SubGroup: 0 @@ -45454,6 +46787,7 @@ Body: - Index: 0 Item: Party_Recruiter_Hat Duration: 10080 + UniqueId: true - Group: FBF_RECRUITER_HAT_BOX SubGroups: - SubGroup: 0 @@ -45461,6 +46795,7 @@ Body: - Index: 0 Item: Bf_Recruiter_Hat Duration: 10080 + UniqueId: true - Group: F_FRIEND_RECR_HAT_BOX SubGroups: - SubGroup: 0 @@ -45468,6 +46803,7 @@ Body: - Index: 0 Item: Friend_Recruiter_Hat Duration: 10080 + UniqueId: true - Group: FGF_RECRUITER_HAT_BOX SubGroups: - SubGroup: 0 @@ -45475,6 +46811,7 @@ Body: - Index: 0 Item: Gf_Recruiter_Hat Duration: 10080 + UniqueId: true - Group: BONUS_BOX01 SubGroups: - SubGroup: 0 @@ -45482,9 +46819,11 @@ Body: - Index: 0 Item: Battle_Manual Amount: 5 + UniqueId: true - Index: 1 Item: Bubble_Gum Amount: 5 + UniqueId: true - Group: BONUS_BOX02 SubGroups: - SubGroup: 0 @@ -45492,9 +46831,11 @@ Body: - Index: 0 Item: Battle_Manual Amount: 5 + UniqueId: true - Index: 1 Item: S_Mdef_Potion Amount: 5 + UniqueId: true - Group: BONUS_BOX03 SubGroups: - SubGroup: 0 @@ -45502,9 +46843,11 @@ Body: - Index: 0 Item: Battle_Manual Amount: 5 + UniqueId: true - Index: 1 Item: S_Def_Potion Amount: 5 + UniqueId: true - Group: BONUS_BOX04 SubGroups: - SubGroup: 0 @@ -45512,9 +46855,11 @@ Body: - Index: 0 Item: Battle_Manual Amount: 5 + UniqueId: true - Index: 1 Item: Tyr's_Blessing Amount: 5 + UniqueId: true - Group: BONUS_BOX05 SubGroups: - SubGroup: 0 @@ -45522,9 +46867,11 @@ Body: - Index: 0 Item: Battle_Manual Amount: 5 + UniqueId: true - Index: 1 Item: Mental_Potion Amount: 5 + UniqueId: true - Group: BONUS_BOX06 SubGroups: - SubGroup: 0 @@ -45532,9 +46879,11 @@ Body: - Index: 0 Item: Battle_Manual Amount: 5 + UniqueId: true - Index: 1 Item: Holy_Armor_S Amount: 5 + UniqueId: true - Group: BONUS_BOX07 SubGroups: - SubGroup: 0 @@ -45542,9 +46891,11 @@ Body: - Index: 0 Item: Battle_Manual Amount: 5 + UniqueId: true - Index: 1 Item: Shadow_Armor_S Amount: 5 + UniqueId: true - Group: BONUS_BOX08 SubGroups: - SubGroup: 0 @@ -45552,9 +46903,11 @@ Body: - Index: 0 Item: Battle_Manual Amount: 5 + UniqueId: true - Index: 1 Item: Job_Manual25 Amount: 2 + UniqueId: true - Group: BONUS_BOX09 SubGroups: - SubGroup: 0 @@ -45562,9 +46915,11 @@ Body: - Index: 0 Item: Max_Weight_Up_Scroll Amount: 5 + UniqueId: true - Index: 1 Item: Regeneration_Potion Amount: 5 + UniqueId: true - Group: BONUS_BOX10 SubGroups: - SubGroup: 0 @@ -45572,9 +46927,11 @@ Body: - Index: 0 Item: Max_Weight_Up_Scroll Amount: 5 + UniqueId: true - Index: 1 Item: Greed_Scroll_C Amount: 20 + UniqueId: true - Group: F_BONUS_BOX01 SubGroups: - SubGroup: 0 @@ -45582,9 +46939,11 @@ Body: - Index: 0 Item: Battle_Manual Amount: 5 + UniqueId: true - Index: 1 Item: Bubble_Gum Amount: 5 + UniqueId: true - Group: F_BONUS_BOX02 SubGroups: - SubGroup: 0 @@ -45592,9 +46951,11 @@ Body: - Index: 0 Item: Battle_Manual Amount: 5 + UniqueId: true - Index: 1 Item: S_Mdef_Potion Amount: 5 + UniqueId: true - Group: F_BONUS_BOX03 SubGroups: - SubGroup: 0 @@ -45602,9 +46963,11 @@ Body: - Index: 0 Item: Battle_Manual Amount: 5 + UniqueId: true - Index: 1 Item: S_Def_Potion Amount: 5 + UniqueId: true - Group: F_BONUS_BOX04 SubGroups: - SubGroup: 0 @@ -45612,9 +46975,11 @@ Body: - Index: 0 Item: Battle_Manual Amount: 5 + UniqueId: true - Index: 1 Item: Tyr's_Blessing Amount: 5 + UniqueId: true - Group: F_BONUS_BOX05 SubGroups: - SubGroup: 0 @@ -45622,9 +46987,11 @@ Body: - Index: 0 Item: Battle_Manual Amount: 5 + UniqueId: true - Index: 1 Item: Mental_Potion Amount: 5 + UniqueId: true - Group: F_BONUS_BOX06 SubGroups: - SubGroup: 0 @@ -45632,9 +46999,11 @@ Body: - Index: 0 Item: Battle_Manual Amount: 5 + UniqueId: true - Index: 1 Item: Holy_Armor_S Amount: 5 + UniqueId: true - Group: F_BONUS_BOX07 SubGroups: - SubGroup: 0 @@ -45642,9 +47011,11 @@ Body: - Index: 0 Item: Battle_Manual Amount: 5 + UniqueId: true - Index: 1 Item: Shadow_Armor_S Amount: 5 + UniqueId: true - Group: F_BONUS_BOX08 SubGroups: - SubGroup: 0 @@ -45652,9 +47023,11 @@ Body: - Index: 0 Item: Battle_Manual Amount: 5 + UniqueId: true - Index: 1 Item: Job_Manual25 Amount: 2 + UniqueId: true - Group: F_BONUS_BOX09 SubGroups: - SubGroup: 0 @@ -45662,9 +47035,11 @@ Body: - Index: 0 Item: Max_Weight_Up_Scroll Amount: 5 + UniqueId: true - Index: 1 Item: Regeneration_Potion Amount: 5 + UniqueId: true - Group: F_BONUS_BOX10 SubGroups: - SubGroup: 0 @@ -45672,216 +47047,240 @@ Body: - Index: 0 Item: Max_Weight_Up_Scroll Amount: 5 + UniqueId: true - Index: 1 Item: Greed_Scroll_C Amount: 20 + UniqueId: true - Group: FUGIN_EGG01 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Old_Card_Album - Rate: 30 - Amount: 3 - - Index: 1 - Item: Comp_Battle_Manual - Rate: 50 - - Index: 2 Item: White_Slim_Potion_Box - Rate: 3006 - - Index: 3 + Rate: 300 + - Index: 1 Item: Mastela_Fruit_Box - Rate: 2004 - - Index: 4 + Rate: 200 + - Index: 2 Item: White_Potion_Box - Rate: 1503 - - Index: 5 + Rate: 150 + - Index: 3 Item: Royal_Jelly_Box2 - Rate: 1503 - - Index: 6 + Rate: 150 + - Index: 4 Item: Blue_Herb_Box2 - Rate: 1002 - - Index: 7 + Rate: 100 + - Index: 5 Item: Yggdrasil_Seed_Box - Rate: 651 - - Index: 8 + Rate: 65 + - Index: 6 Item: Iggdrasilberry_Box - Rate: 251 + Rate: 25 + - Index: 7 + Item: Comp_Battle_Manual + Rate: 5 + - Index: 8 + Item: Old_Card_Album + Rate: 3 + Amount: 3 - Group: FUGIN_EGG02 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Old_Card_Album - Rate: 30 - Amount: 3 - - Index: 1 - Item: Magestic_Goat_ - Rate: 30 - - Index: 2 - Item: Guarantee_Weapon_7Up - Rate: 10 - - Index: 3 - Item: Guarantee_Armor_7Up - Rate: 10 - - Index: 4 - Item: Comp_Battle_Manual - Rate: 50 - - Index: 5 Item: White_Slim_Potion_Box - Rate: 3000 - - Index: 6 + Rate: 300 + - Index: 1 Item: Mastela_Fruit_Box - Rate: 2000 - - Index: 7 + Rate: 200 + - Index: 2 Item: White_Potion_Box - Rate: 1500 - - Index: 8 + Rate: 150 + - Index: 3 Item: Royal_Jelly_Box2 - Rate: 1500 - - Index: 9 + Rate: 150 + - Index: 4 Item: Blue_Herb_Box2 - Rate: 1000 - - Index: 10 + Rate: 100 + - Index: 5 Item: Yggdrasil_Seed_Box - Rate: 650 - - Index: 11 + Rate: 65 + - Index: 6 Item: Iggdrasilberry_Box - Rate: 220 + Rate: 22 + Announced: true + - Index: 7 + Item: Comp_Battle_Manual + Rate: 5 + Announced: true + - Index: 8 + Item: Old_Card_Album + Rate: 3 + Amount: 3 + - Index: 9 + Item: Magestic_Goat_ + Rate: 3 + Announced: true + - Index: 10 + Item: Guarantee_Armor_7Up + Rate: 1 + Announced: true + - Index: 11 + Item: Guarantee_Weapon_7Up + Rate: 1 + Announced: true - Group: PUMP_OF_SPIRIT_SCROLL SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Guarantee_Weapon_9Up - Rate: 9 + Item: Guarantee_Armor_11Up + Rate: 1 + Announced: true - Index: 1 - Item: Guarantee_Weapon_7Up - Rate: 15 + Item: Guarantee_Weapon_11Up + Rate: 1 + Announced: true - Index: 2 Item: Guarantee_Armor_9Up Rate: 9 + Announced: true - Index: 3 + Item: Guarantee_Weapon_9Up + Rate: 9 + Announced: true + - Index: 4 Item: Guarantee_Armor_7Up Rate: 15 - - Index: 4 - Item: Guarantee_Weapon_11Up - Rate: 1 + Announced: true - Index: 5 - Item: Guarantee_Armor_11Up - Rate: 1 + Item: Guarantee_Weapon_7Up + Rate: 15 + Announced: true - Index: 6 - Item: Blacksmith_Blessing - Rate: 1000 + Item: Sealed_Hat_Box2 + Rate: 70 + Announced: true - Index: 7 - Item: Treasure_Box - Rate: 1500 - - Index: 8 - Item: Comp_Battle_Manual - Rate: 1000 - - Index: 9 - Item: Comp_Bubble_Gum - Rate: 1600 - - Index: 10 - Item: Poison_Bottle_Box2 - Rate: 1000 - - Index: 11 - Item: Potion_Box - Rate: 1280 - - Index: 12 - Item: C_Wing_Of_Fly_3Day_Box + Item: Pump_Of_Spirit Rate: 500 + Announced: true + - Index: 8 + Item: Shadow_Cube_Pendant + Rate: 195 + - Index: 9 + Item: Shadow_Cube_Earing + Rate: 201 + - Index: 10 + Item: Shadow_Cube_Armor + Rate: 285 + - Index: 11 + Item: Shadow_Cube_Shield + Rate: 271 + - Index: 12 + Item: Shadow_Cube_Shoes + Rate: 229 - Index: 13 Item: Shadow_Cube_Weapon Rate: 319 - Index: 14 - Item: Shadow_Cube_Armor - Rate: 285 + Item: Blacksmith_Blessing + Rate: 1000 - Index: 15 - Item: Shadow_Cube_Shield - Rate: 271 - - Index: 16 - Item: Shadow_Cube_Shoes - Rate: 229 - - Index: 17 - Item: Shadow_Cube_Pendant - Rate: 195 - - Index: 18 - Item: Shadow_Cube_Earing - Rate: 201 - - Index: 19 - Item: Pump_Of_Spirit_Scroll - Rate: 70 - - Index: 20 - Item: Pump_Of_Spirit + Item: C_Wing_Of_Fly_3Day_Box Rate: 500 + - Index: 16 + Item: Poison_Bottle_Box2 + Rate: 1000 + - Index: 17 + Item: Comp_Bubble_Gum + Rate: 1600 + - Index: 18 + Item: Comp_Battle_Manual + Rate: 1000 + - Index: 19 + Item: Treasure_Box + Rate: 1500 + - Index: 20 + Item: Potion_Box + Rate: 1280 - Group: HAPPY_BALLOON_SCROLL SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Guarantee_Weapon_9Up - Rate: 9 + Item: Guarantee_Armor_11Up + Rate: 1 + Announced: true - Index: 1 - Item: Guarantee_Weapon_7Up - Rate: 15 + Item: Guarantee_Weapon_11Up + Rate: 1 + Announced: true - Index: 2 Item: Guarantee_Armor_9Up Rate: 9 + Announced: true - Index: 3 + Item: Guarantee_Weapon_9Up + Rate: 9 + Announced: true + - Index: 4 Item: Guarantee_Armor_7Up Rate: 15 - - Index: 4 - Item: Guarantee_Weapon_11Up - Rate: 1 + Announced: true - Index: 5 - Item: Guarantee_Armor_11Up - Rate: 1 + Item: Guarantee_Weapon_7Up + Rate: 15 + Announced: true - Index: 6 - Item: J_Shop_Coupon - Rate: 800 - - Index: 7 - Item: Comp_Bubble_Gum - Rate: 1500 - - Index: 8 - Item: C_Wing_Of_Fly_1Day_Box - Rate: 1500 - - Index: 9 - Item: Happy_Balloon_Scroll - Rate: 1500 - - Index: 10 - Item: Happy_Balloon_Scroll - Rate: 500 - - Index: 11 - Item: Happy_Balloon_K - Rate: 500 - - Index: 12 - Item: Shadow_Cube - Rate: 940 - - Index: 13 - Item: Minus_Str_Box - Rate: 200 - - Index: 14 - Item: Minus_Agi_Box - Rate: 200 - - Index: 15 - Item: Minus_Vit_Box - Rate: 200 - - Index: 16 - Item: Minus_Int_Box - Rate: 200 - - Index: 17 - Item: Minus_Dex_Box - Rate: 200 - - Index: 18 - Item: Minus_Luk_Box - Rate: 200 - - Index: 19 Item: Comp_Neuralizer Rate: 10 - - Index: 20 + Announced: true + - Index: 7 + Item: Happy_Balloon_K + Rate: 500 + Announced: true + - Index: 8 + Item: Minus_Str_Box + Rate: 200 + - Index: 9 + Item: Minus_Agi_Box + Rate: 200 + - Index: 10 + Item: Minus_Vit_Box + Rate: 200 + - Index: 11 + Item: Minus_Int_Box + Rate: 200 + - Index: 12 + Item: Minus_Dex_Box + Rate: 200 + - Index: 13 + Item: Minus_Luk_Box + Rate: 200 + - Index: 14 + Item: C_CatPaw_1Day_Box + Rate: 500 + - Index: 15 + Item: C_Greed_1Hour_Box + Rate: 1500 + - Index: 16 + Item: C_Wing_Of_Fly_1Day_Box + Rate: 1500 + - Index: 17 + Item: J_Shop_Coupon + Rate: 800 + - Index: 18 Item: Comp_Trans_Scroll Rate: 1500 + - Index: 19 + Item: Comp_Bubble_Gum + Rate: 1500 + Amount: 2 + - Index: 20 + Item: Shadow_Cube + Rate: 940 - Group: ANGRY_MOUTH_C_BOX SubGroups: - SubGroup: 0 @@ -45889,16 +47288,18 @@ Body: - Index: 0 Item: Angry_Mouth_C Duration: 10080 + UniqueId: true - Group: KRO_LUCKY_BOX SubGroups: - SubGroup: 0 List: - Index: 0 + Item: Lucky_Egg_C + UniqueId: true + - Index: 1 Item: Angry_Mouth_C Duration: 10080 - - Index: 1 - Item: Lucky_Egg_C - Duration: 10080 + UniqueId: true - Group: CLAYMORE_C_BOX SubGroups: - SubGroup: 0 @@ -45906,6 +47307,7 @@ Body: - Index: 0 Item: Claymore_C Duration: 10080 + UniqueId: true - Group: JAMADHAR_C_BOX SubGroups: - SubGroup: 0 @@ -45913,6 +47315,7 @@ Body: - Index: 0 Item: Jamadhar_C Duration: 10080 + UniqueId: true - Group: TWO_HANDED_AXE_C_BOX SubGroups: - SubGroup: 0 @@ -45920,6 +47323,7 @@ Body: - Index: 0 Item: Two_Handed_Axe_C Duration: 10080 + UniqueId: true - Group: LANCE_C_BOX SubGroups: - SubGroup: 0 @@ -45927,6 +47331,7 @@ Body: - Index: 0 Item: Lance_C Duration: 10080 + UniqueId: true - Group: HUUMA_GIANT_WHEEL_C_BOX SubGroups: - SubGroup: 0 @@ -45934,6 +47339,7 @@ Body: - Index: 0 Item: Huuma_Giant_Wheel_C Duration: 10080 + UniqueId: true - Group: ORCISH_AXE_C_BOX SubGroups: - SubGroup: 0 @@ -45941,6 +47347,7 @@ Body: - Index: 0 Item: Orcish_Axe_C Duration: 10080 + UniqueId: true - Group: PIKE_C_BOX SubGroups: - SubGroup: 0 @@ -45948,6 +47355,7 @@ Body: - Index: 0 Item: Pike_C Duration: 10080 + UniqueId: true - Group: ENCYCLOPEDIA_C_BOX SubGroups: - SubGroup: 0 @@ -45955,6 +47363,7 @@ Body: - Index: 0 Item: Encyclopedia_C Duration: 10080 + UniqueId: true - Group: FIST_C_BOX SubGroups: - SubGroup: 0 @@ -45962,6 +47371,7 @@ Body: - Index: 0 Item: Fist_C Duration: 10080 + UniqueId: true - Group: GUITAR_C_BOX SubGroups: - SubGroup: 0 @@ -45969,6 +47379,7 @@ Body: - Index: 0 Item: Guitar_C Duration: 10080 + UniqueId: true - Group: RANTE_C_BOX SubGroups: - SubGroup: 0 @@ -45976,6 +47387,7 @@ Body: - Index: 0 Item: Rante_C Duration: 10080 + UniqueId: true - Group: DAMASCUS_C_BOX SubGroups: - SubGroup: 0 @@ -45983,6 +47395,7 @@ Body: - Index: 0 Item: Damascus_C Duration: 10080 + UniqueId: true - Group: FLAMBERGE_C_BOX SubGroups: - SubGroup: 0 @@ -45990,6 +47403,7 @@ Body: - Index: 0 Item: Flamberge_C Duration: 10080 + UniqueId: true - Group: STUNNER_C_BOX SubGroups: - SubGroup: 0 @@ -45997,16 +47411,18 @@ Body: - Index: 0 Item: Stunner_C Duration: 10080 + UniqueId: true - Group: F_KRO_LUCKY_BOX SubGroups: - SubGroup: 0 List: - Index: 0 + Item: Lucky_Egg_C + UniqueId: true + - Index: 1 Item: Angry_Mouth_C Duration: 10080 - - Index: 1 - Item: Lucky_Egg_C - Duration: 10080 + UniqueId: true - Group: F_CLAYMORE_C_BOX SubGroups: - SubGroup: 0 @@ -46014,6 +47430,7 @@ Body: - Index: 0 Item: Claymore_C Duration: 10080 + UniqueId: true - Group: F_JAMADHAR_C_BOX SubGroups: - SubGroup: 0 @@ -46021,6 +47438,7 @@ Body: - Index: 0 Item: Jamadhar_C Duration: 10080 + UniqueId: true - Group: F_TWO_HANDED_AXE_C_BOX SubGroups: - SubGroup: 0 @@ -46028,6 +47446,7 @@ Body: - Index: 0 Item: Two_Handed_Axe_C Duration: 10080 + UniqueId: true - Group: F_LANCE_C_BOX SubGroups: - SubGroup: 0 @@ -46035,6 +47454,7 @@ Body: - Index: 0 Item: Lance_C Duration: 10080 + UniqueId: true - Group: F_HUUMA_GIANT_C_BOX SubGroups: - SubGroup: 0 @@ -46042,6 +47462,7 @@ Body: - Index: 0 Item: Huuma_Giant_Wheel_C Duration: 10080 + UniqueId: true - Group: F_ORCISH_AXE_C_BOX SubGroups: - SubGroup: 0 @@ -46049,6 +47470,7 @@ Body: - Index: 0 Item: Orcish_Axe_C Duration: 10080 + UniqueId: true - Group: F_PIKE_C_BOX SubGroups: - SubGroup: 0 @@ -46056,6 +47478,7 @@ Body: - Index: 0 Item: Pike_C Duration: 10080 + UniqueId: true - Group: F_ENCYCLOPEDIA_C_BOX SubGroups: - SubGroup: 0 @@ -46063,6 +47486,7 @@ Body: - Index: 0 Item: Encyclopedia_C Duration: 10080 + UniqueId: true - Group: F_FIST_C_BOX SubGroups: - SubGroup: 0 @@ -46070,6 +47494,7 @@ Body: - Index: 0 Item: Fist_C Duration: 10080 + UniqueId: true - Group: F_GUITAR_C_BOX SubGroups: - SubGroup: 0 @@ -46077,6 +47502,7 @@ Body: - Index: 0 Item: Guitar_C Duration: 10080 + UniqueId: true - Group: F_RANTE_C_BOX SubGroups: - SubGroup: 0 @@ -46084,6 +47510,7 @@ Body: - Index: 0 Item: Rante_C Duration: 10080 + UniqueId: true - Group: F_DAMASCUS_C_BOX SubGroups: - SubGroup: 0 @@ -46091,6 +47518,7 @@ Body: - Index: 0 Item: Damascus_C Duration: 10080 + UniqueId: true - Group: F_FLAMBERGE_C_BOX SubGroups: - SubGroup: 0 @@ -46098,6 +47526,7 @@ Body: - Index: 0 Item: Flamberge_C Duration: 10080 + UniqueId: true - Group: F_STUNNER_C_BOX SubGroups: - SubGroup: 0 @@ -46105,6 +47534,7 @@ Body: - Index: 0 Item: Stunner_C Duration: 10080 + UniqueId: true - Group: F_ANGRY_MOUTH_C_BOX SubGroups: - SubGroup: 0 @@ -46112,60 +47542,73 @@ Body: - Index: 0 Item: Angry_Mouth_C Duration: 10080 + UniqueId: true - Group: MARIONETTE_C_BOX SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Star_Hairband - - Index: 1 Item: Delicious_Shaved_Ice Amount: 5 + UniqueId: true + - Index: 1 + Item: Star_Hairband + UniqueId: true - Group: WHISPER_C_BOX SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Spirit_Chain_ - - Index: 1 Item: Fit_Pipe Amount: 5 + UniqueId: true + - Index: 1 + Item: Spirit_Chain_ + UniqueId: true - Group: INCUBUS_C_BOX SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Ball_Mask - - Index: 1 Item: Gril's_Naivety Amount: 5 + UniqueId: true + - Index: 1 + Item: Ball_Mask + UniqueId: true - Group: F_MARIONETTE_C_BOX SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Star_Hairband - - Index: 1 Item: Delicious_Shaved_Ice Amount: 5 + UniqueId: true + - Index: 1 + Item: Star_Hairband + UniqueId: true - Group: F_WHISPER_C_BOX SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Spirit_Chain_ - - Index: 1 Item: Fit_Pipe Amount: 5 + UniqueId: true + - Index: 1 + Item: Spirit_Chain_ + UniqueId: true - Group: F_INCUBUS_C_BOX SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Ball_Mask - - Index: 1 Item: Gril's_Naivety Amount: 5 + UniqueId: true + - Index: 1 + Item: Ball_Mask + UniqueId: true - Group: F_ACTI_POTION_BOX SubGroups: - SubGroup: 0 @@ -46173,14 +47616,15 @@ Body: - Index: 0 Item: Acti_Potion Amount: 5 + UniqueId: true - Group: RO_DS_HEADGEAR_BOX SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Aumdura's_Grace - - Index: 1 Item: Hermose_Cap + - Index: 1 + Item: Aumdura's_Grace - Index: 2 Item: Odin_Mask - Group: HOCKEY_MASK_BOX1 @@ -46190,6 +47634,7 @@ Body: - Index: 0 Item: Hockey_Mask Duration: 1440 + UniqueId: true - Group: OBSERVER_BOX1 SubGroups: - SubGroup: 0 @@ -46197,6 +47642,7 @@ Body: - Index: 0 Item: Observer Duration: 1440 + UniqueId: true - Group: ALL_IN_ONE_RING_BOX1 SubGroups: - SubGroup: 0 @@ -46204,6 +47650,7 @@ Body: - Index: 0 Item: All_In_One_Ring Duration: 1440 + UniqueId: true - Group: SPRITUAL_TUNIC_BOX1 SubGroups: - SubGroup: 0 @@ -46211,6 +47658,7 @@ Body: - Index: 0 Item: Spritual_Tunic Duration: 1440 + UniqueId: true - Group: RECUPERATIVE_ARMOR_BOX1 SubGroups: - SubGroup: 0 @@ -46218,6 +47666,7 @@ Body: - Index: 0 Item: Recuperative_Armor Duration: 1440 + UniqueId: true - Group: SHELTER_RESIST_BOX1 SubGroups: - SubGroup: 0 @@ -46225,6 +47674,7 @@ Body: - Index: 0 Item: Shelter_Resistance Duration: 1440 + UniqueId: true - Group: SYLPHID_MANTEAU_BOX1 SubGroups: - SubGroup: 0 @@ -46232,6 +47682,7 @@ Body: - Index: 0 Item: Sylphid_Manteau Duration: 1440 + UniqueId: true - Group: REFRESH_SHOES_BOX1 SubGroups: - SubGroup: 0 @@ -46239,6 +47690,7 @@ Body: - Index: 0 Item: Refresh_Shoes Duration: 1440 + UniqueId: true - Group: WELL_BAKED_TOAST_BOX1 SubGroups: - SubGroup: 0 @@ -46246,6 +47698,7 @@ Body: - Index: 0 Item: Toast_C Duration: 1440 + UniqueId: true - Group: WASTELAND_OUTLAW_BOX1 SubGroups: - SubGroup: 0 @@ -46253,6 +47706,7 @@ Body: - Index: 0 Item: Wasteland_Outlaw_C Duration: 1440 + UniqueId: true - Group: LEVER_ACT_RIFLE_BOX1 SubGroups: - SubGroup: 0 @@ -46260,6 +47714,7 @@ Body: - Index: 0 Item: Lever_Action_Rifle_C Duration: 1440 + UniqueId: true - Group: HEALING_STAFF_BOX1 SubGroups: - SubGroup: 0 @@ -46267,6 +47722,7 @@ Body: - Index: 0 Item: Healing_Staff_C Duration: 1440 + UniqueId: true - Group: PRAXINUS_BOX1 SubGroups: - SubGroup: 0 @@ -46274,6 +47730,7 @@ Body: - Index: 0 Item: Praxinus_C Duration: 1440 + UniqueId: true - Group: GUILD_RECRUIT_BOX1 SubGroups: - SubGroup: 0 @@ -46281,6 +47738,7 @@ Body: - Index: 0 Item: Guildsman_Recruiter Duration: 1440 + UniqueId: true - Group: PARTY_RECRUIT_HAT_BOX1 SubGroups: - SubGroup: 0 @@ -46288,6 +47746,7 @@ Body: - Index: 0 Item: Party_Recruiter_Hat Duration: 1440 + UniqueId: true - Group: BF_RECRUIT_HAT_BOX1 SubGroups: - SubGroup: 0 @@ -46295,6 +47754,7 @@ Body: - Index: 0 Item: Bf_Recruiter_Hat Duration: 1440 + UniqueId: true - Group: GF_RECRUIT_HAT_BOX1 SubGroups: - SubGroup: 0 @@ -46302,6 +47762,7 @@ Body: - Index: 0 Item: Gf_Recruiter_Hat Duration: 1440 + UniqueId: true - Group: FRIEND_RECRUIT_HAT_BOX1 SubGroups: - SubGroup: 0 @@ -46309,6 +47770,7 @@ Body: - Index: 0 Item: Friend_Recruiter_Hat Duration: 1440 + UniqueId: true - Group: CLAYMORE_C_BOX1 SubGroups: - SubGroup: 0 @@ -46316,6 +47778,7 @@ Body: - Index: 0 Item: Claymore_C Duration: 1440 + UniqueId: true - Group: TWO_HANDED_AXE_C_BOX1 SubGroups: - SubGroup: 0 @@ -46323,6 +47786,7 @@ Body: - Index: 0 Item: Two_Handed_Axe_C Duration: 1440 + UniqueId: true - Group: LANCE_C_BOX1 SubGroups: - SubGroup: 0 @@ -46330,6 +47794,7 @@ Body: - Index: 0 Item: Lance_C Duration: 1440 + UniqueId: true - Group: JAMADHAR_C_BOX1 SubGroups: - SubGroup: 0 @@ -46337,6 +47802,7 @@ Body: - Index: 0 Item: Jamadhar_C Duration: 1440 + UniqueId: true - Group: HUUMA_GIANT_C_BOX1 SubGroups: - SubGroup: 0 @@ -46344,6 +47810,7 @@ Body: - Index: 0 Item: Huuma_Giant_Wheel_C Duration: 1440 + UniqueId: true - Group: ORCISH_AXE_C_BOX1 SubGroups: - SubGroup: 0 @@ -46351,6 +47818,7 @@ Body: - Index: 0 Item: Orcish_Axe_C Duration: 1440 + UniqueId: true - Group: PIKE_C_BOX1 SubGroups: - SubGroup: 0 @@ -46358,6 +47826,7 @@ Body: - Index: 0 Item: Pike_C Duration: 1440 + UniqueId: true - Group: ENCYCLOPEDIA_C_BOX1 SubGroups: - SubGroup: 0 @@ -46365,13 +47834,15 @@ Body: - Index: 0 Item: Encyclopedia_C Duration: 1440 + UniqueId: true - Group: FIST_C_BOX1 SubGroups: - SubGroup: 0 List: - Index: 0 Item: Fist_C - Duration: 10080 + Duration: 1440 + UniqueId: true - Group: GUITAR_C_BOX1 SubGroups: - SubGroup: 0 @@ -46379,6 +47850,7 @@ Body: - Index: 0 Item: Guitar_C Duration: 1440 + UniqueId: true - Group: RANTE_C_BOX1 SubGroups: - SubGroup: 0 @@ -46386,6 +47858,7 @@ Body: - Index: 0 Item: Rante_C Duration: 1440 + UniqueId: true - Group: DAMASCUS_C_BOX1 SubGroups: - SubGroup: 0 @@ -46393,6 +47866,7 @@ Body: - Index: 0 Item: Damascus_C Duration: 1440 + UniqueId: true - Group: FLAMBERGE_C_BOX1 SubGroups: - SubGroup: 0 @@ -46400,6 +47874,7 @@ Body: - Index: 0 Item: Flamberge_C Duration: 1440 + UniqueId: true - Group: STUNNER_C_BOX1 SubGroups: - SubGroup: 0 @@ -46407,6 +47882,7 @@ Body: - Index: 0 Item: Stunner_C Duration: 1440 + UniqueId: true - Group: ANGRY_MOUTH_C_BOX1 SubGroups: - SubGroup: 0 @@ -46414,6 +47890,7 @@ Body: - Index: 0 Item: Angry_Mouth_C Duration: 1440 + UniqueId: true - Group: SHOOTING_STAR_C_BOX SubGroups: - SubGroup: 0 @@ -46421,6 +47898,7 @@ Body: - Index: 0 Item: Shooting_Star_C Duration: 10080 + UniqueId: true - Group: BLOODY_FEAR_C_BOX SubGroups: - SubGroup: 0 @@ -46428,6 +47906,7 @@ Body: - Index: 0 Item: Bloody_Fear_C Duration: 10080 + UniqueId: true - Group: AHLSPIESS_C_BOX SubGroups: - SubGroup: 0 @@ -46435,6 +47914,7 @@ Body: - Index: 0 Item: Ahlspiess_C Duration: 10080 + UniqueId: true - Group: STAFF_OF_HEALING_C_BOX SubGroups: - SubGroup: 0 @@ -46442,6 +47922,7 @@ Body: - Index: 0 Item: Staff_Of_Healing_C Duration: 10080 + UniqueId: true - Group: ANTI_DEMON_SHIELD_C_BOX SubGroups: - SubGroup: 0 @@ -46449,6 +47930,7 @@ Body: - Index: 0 Item: Anti_Demon_Shield_C Duration: 10080 + UniqueId: true - Group: F_SHOOTING_STAR_C_BOX SubGroups: - SubGroup: 0 @@ -46456,6 +47938,7 @@ Body: - Index: 0 Item: Shooting_Star_C Duration: 10080 + UniqueId: true - Group: F_BLOODY_FEAR_C_BOX SubGroups: - SubGroup: 0 @@ -46463,6 +47946,7 @@ Body: - Index: 0 Item: Bloody_Fear_C Duration: 10080 + UniqueId: true - Group: F_AHLSPIESS_C_BOX SubGroups: - SubGroup: 0 @@ -46470,6 +47954,7 @@ Body: - Index: 0 Item: Ahlspiess_C Duration: 10080 + UniqueId: true - Group: F_S_HEALING_C_BOX SubGroups: - SubGroup: 0 @@ -46477,6 +47962,7 @@ Body: - Index: 0 Item: Staff_Of_Healing_C Duration: 10080 + UniqueId: true - Group: F_A_DEMON_SHIELD_C_BOX SubGroups: - SubGroup: 0 @@ -46484,82 +47970,90 @@ Body: - Index: 0 Item: Anti_Demon_Shield_C Duration: 10080 + UniqueId: true - Group: MBL_PET_RANDOM_BOX SubGroups: - SubGroup: 1 List: - Index: 0 Item: Ticket_Nightmare - Rate: 10 + Rate: 1 + UniqueId: true - Index: 1 Item: Ticket_Goblin_Leader - Rate: 40 + Rate: 4 + UniqueId: true - Index: 2 Item: Ticket_Medusa - Rate: 950 + Rate: 95 + UniqueId: true - Index: 3 Item: Ticket_Golem - Rate: 4500 + Rate: 450 + UniqueId: true - Index: 4 Item: Ticket_Civil_Servant - Rate: 4500 + Rate: 450 + UniqueId: true - Group: 7TH_ANNI_RANDOM_BOX SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Poring_Party_Hat - Rate: 500 + Item: Ginseng + Rate: 150 + Amount: 3 - Index: 1 - Item: K_Poring_Cake_Cap - Rate: 1000 + Item: Fruit_Juice + Rate: 150 + Amount: 3 - Index: 2 - Item: Enriched_Slim_Pot - Rate: 1200 - Amount: 20 - - Index: 3 Item: Cool_Summer_Outfit - Rate: 1500 + Rate: 150 + Amount: 3 + - Index: 3 + Item: Recall_MaleGM + Rate: 80 Amount: 3 - Index: 4 - Item: Recall_MaleGM - Rate: 800 + Item: Recall_FemaleGM + Rate: 80 Amount: 3 - Index: 5 - Item: Recall_FemaleGM - Rate: 800 - Amount: 3 - - Index: 6 - Item: Ginseng - Rate: 1500 - Amount: 3 - - Index: 7 - Item: Fruit_Juice - Rate: 1500 - Amount: 3 - - Index: 8 Item: 5_Anniversary_Coin_Box - Rate: 1200 + Rate: 120 + - Index: 6 + Item: Poring_Party_Hat + Rate: 50 + - Index: 7 + Item: K_Poring_Cake_Cap + Rate: 100 + - Index: 8 + Item: Enriched_Slim_Pot + Rate: 120 + Amount: 20 - Group: FREYJA_RING_BOX SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Freyja_Ring - Duration: 1440 - - Index: 1 Item: Lucky_Egg_C3 - Duration: 1440 + UniqueId: true + - Index: 1 + Item: Freyja_Ring + Duration: 10080 + UniqueId: true - Group: F_FREYJA_RING_BOX SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Freyja_Ring - Duration: 1440 - - Index: 1 Item: Lucky_Egg_C3 - Duration: 1440 + UniqueId: true + - Index: 1 + Item: Freyja_Ring + Duration: 10080 + UniqueId: true - Group: F_CLOVER_BOX_MOUTH SubGroups: - SubGroup: 0 @@ -46567,6 +48061,7 @@ Body: - Index: 0 Item: 4Leaf_Clover_In_Mouth Duration: 60 + UniqueId: true - Group: F_BGUM_BOX_IN_MOUTH SubGroups: - SubGroup: 0 @@ -46574,6 +48069,7 @@ Body: - Index: 0 Item: Bubble_Gum_In_Mouth Duration: 60 + UniqueId: true - Group: F_CLOVER_BOX_MOUTH2 SubGroups: - SubGroup: 0 @@ -46581,37 +48077,15 @@ Body: - Index: 0 Item: 4Leaf_Clover_In_Mouth Duration: 120 - - SubGroup: 1 - List: - - Index: 0 - Item: Beer_Cap - Rate: 2000 - Duration: 120 - - Index: 1 - Item: Hairband_Of_Grandpeco - Rate: 2000 - Duration: 120 - - Index: 2 - Item: Battle_Manual_X3 - Rate: 2667 - Amount: 2 - Duration: 120 - - Index: 3 - Item: Umbala_Spirit - Rate: 1333 - Duration: 120 - - Index: 4 - Item: Garuda_Hat - Rate: 2000 - Duration: 120 + UniqueId: true - Group: F_CLOVER_BOX_MOUTH4 SubGroups: - SubGroup: 0 List: - Index: 0 Item: 4Leaf_Clover_In_Mouth - Amount: 4 Duration: 240 + UniqueId: true - Group: F_BGUM_BOX_IN_MOUTH2 SubGroups: - SubGroup: 0 @@ -46619,6 +48093,7 @@ Body: - Index: 0 Item: Bubble_Gum_In_Mouth Duration: 120 + UniqueId: true - Group: F_BGUM_BOX_IN_MOUTH4 SubGroups: - SubGroup: 0 @@ -46626,94 +48101,113 @@ Body: - Index: 0 Item: Bubble_Gum_In_Mouth Duration: 240 + UniqueId: true - Group: FREYJA_RING_BOX2 SubGroups: - SubGroup: 0 List: - Index: 0 Item: Freyja_Ring - Duration: 1440 + Duration: 10080 + UniqueId: true - Group: F_FREYJA_RING_BOX2 SubGroups: - SubGroup: 0 List: - Index: 0 Item: Freyja_Ring - Duration: 1440 + Duration: 10080 + UniqueId: true - Group: BM_PACK_BOX_A SubGroups: - SubGroup: 0 List: - Index: 0 Item: Battle_Manual_Box + UniqueId: true - Index: 1 Item: Adrenaline10_Box30 + UniqueId: true - Index: 2 Item: Spark_Candy_Box5 + UniqueId: true - Group: F_BM_PACK_BOX_A SubGroups: - SubGroup: 0 List: - Index: 0 - Item: F_Spark_Candy_Box5 - - Index: 1 Item: F_Battle_Manual_Box - - Index: 2 + UniqueId: true + - Index: 1 Item: F_Adrenaline10_Box30 + UniqueId: true + - Index: 2 + Item: F_Spark_Candy_Box5 + UniqueId: true - Group: BM_PACK_BOX_B SubGroups: - SubGroup: 0 List: - Index: 0 Item: Battle_Manual_Box + UniqueId: true - Index: 1 - Item: Spark_Candy_Box5 - - Index: 2 Item: Mimic_Scroll_Box10 + UniqueId: true + - Index: 2 + Item: Spark_Candy_Box5 + UniqueId: true - Group: F_BM_PACK_BOX_B SubGroups: - SubGroup: 0 List: - Index: 0 - Item: F_Mimic_Scroll_Box10 - - Index: 1 - Item: F_Spark_Candy_Box5 - - Index: 2 Item: F_Battle_Manual_Box + UniqueId: true + - Index: 1 + Item: F_Mimic_Scroll_Box10 + UniqueId: true + - Index: 2 + Item: F_Spark_Candy_Box5 + UniqueId: true - Group: XMAS_CARD_BOX SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Spare_Card - Duration: 1440 - - Index: 1 Item: Lucky_Egg_C4 - Duration: 1440 + UniqueId: true + - Index: 1 + Item: Spare_Card + Duration: 10080 + UniqueId: true - Group: F_XMAS_CARD_BOX SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Spare_Card - Duration: 1440 - - Index: 1 Item: Lucky_Egg_C4 - Duration: 1440 + UniqueId: true + - Index: 1 + Item: Spare_Card + Duration: 10080 + UniqueId: true - Group: XMAS_CARD_BOX2 SubGroups: - SubGroup: 0 List: - Index: 0 Item: Spare_Card - Duration: 1440 + Duration: 10080 + UniqueId: true - Group: F_XMAS_CARD_BOX2 SubGroups: - SubGroup: 0 List: - Index: 0 Item: Spare_Card - Duration: 1440 + Duration: 10080 + UniqueId: true - Group: E_BUNNY_BAND_BOX SubGroups: - SubGroup: 0 @@ -46721,6 +48215,7 @@ Body: - Index: 0 Item: TimeExtensionArmor Duration: 10080 + UniqueId: true - Group: SUMMER_SCROLL2 SubGroups: - SubGroup: 0 @@ -46766,8 +48261,10 @@ Body: - Index: 0 Item: Acti_Potion Amount: 5 + UniqueId: true - Index: 1 Item: Lucky_Egg_C5 + UniqueId: true - Group: HALF_MEGIN_BOX SubGroups: - SubGroup: 0 @@ -46775,6 +48272,7 @@ Body: - Index: 0 Item: Half_Megin Duration: 10080 + UniqueId: true - Group: HALF_BRYSING_BOX SubGroups: - SubGroup: 0 @@ -46782,6 +48280,7 @@ Body: - Index: 0 Item: Half_Brysing Duration: 10080 + UniqueId: true - Group: SPIKED_SCARF_BOX2 SubGroups: - SubGroup: 0 @@ -46789,6 +48288,7 @@ Body: - Index: 0 Item: Spiked_Scarf Duration: 120 + UniqueId: true - Group: RAINBOW_SCARF_BOX2 SubGroups: - SubGroup: 0 @@ -46796,6 +48296,7 @@ Body: - Index: 0 Item: Rainbow_Scarf Duration: 120 + UniqueId: true - Group: SPIKED_SCARF_BOX3 SubGroups: - SubGroup: 0 @@ -46803,6 +48304,7 @@ Body: - Index: 0 Item: Spiked_Scarf Duration: 240 + UniqueId: true - Group: RAINBOW_SCARF_BOX3 SubGroups: - SubGroup: 0 @@ -46810,6 +48312,7 @@ Body: - Index: 0 Item: Rainbow_Scarf Duration: 240 + UniqueId: true - Group: F_SPIKED_SCARF_BOX SubGroups: - SubGroup: 0 @@ -46817,6 +48320,7 @@ Body: - Index: 0 Item: Spiked_Scarf Duration: 60 + UniqueId: true - Group: F_RAINBOW_SCARF_BOX SubGroups: - SubGroup: 0 @@ -46824,6 +48328,7 @@ Body: - Index: 0 Item: Rainbow_Scarf Duration: 60 + UniqueId: true - Group: F_SPIKED_SCARF_BOX2 SubGroups: - SubGroup: 0 @@ -46831,6 +48336,7 @@ Body: - Index: 0 Item: Spiked_Scarf Duration: 120 + UniqueId: true - Group: F_RAINBOW_SCARF_BOX2 SubGroups: - SubGroup: 0 @@ -46838,6 +48344,7 @@ Body: - Index: 0 Item: Rainbow_Scarf Duration: 120 + UniqueId: true - Group: F_SPIKED_SCARF_BOX3 SubGroups: - SubGroup: 0 @@ -46845,6 +48352,7 @@ Body: - Index: 0 Item: Spiked_Scarf Duration: 240 + UniqueId: true - Group: F_RAINBOW_SCARF_BOX3 SubGroups: - SubGroup: 0 @@ -46852,6 +48360,7 @@ Body: - Index: 0 Item: Rainbow_Scarf Duration: 240 + UniqueId: true - Group: F_RIBBON_OF_LIFE_BOX SubGroups: - SubGroup: 0 @@ -46859,6 +48368,7 @@ Body: - Index: 0 Item: Ribbon_Of_Life Duration: 60 + UniqueId: true - Group: F_RIBBON_OF_LIFE_BOX2 SubGroups: - SubGroup: 0 @@ -46866,6 +48376,7 @@ Body: - Index: 0 Item: Ribbon_Of_Life Duration: 120 + UniqueId: true - Group: F_RIBBON_OF_LIFE_BOX3 SubGroups: - SubGroup: 0 @@ -46873,40 +48384,49 @@ Body: - Index: 0 Item: Ribbon_Of_Life Duration: 240 + UniqueId: true - Group: F_RAPID_LIFE_WATER_BOX SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Lucky_Egg_C6 - - Index: 1 Item: Rapid_Life_Water Amount: 10 + UniqueId: true + - Index: 1 + Item: Lucky_Egg_C6 + UniqueId: true - Group: F_MAGIC_CANDY_BOX10 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Lucky_Egg_C7 - - Index: 1 Item: Magic_Candy Amount: 10 + UniqueId: true + - Index: 1 + Item: Lucky_Egg_C7 + UniqueId: true - Group: UMBALA_SPIRIT_BOX SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Lucky_Egg_C8 - - Index: 1 Item: Umbala_Spirit_Box_7day + UniqueId: true + - Index: 1 + Item: Lucky_Egg_C8 + UniqueId: true - Group: F_UMBALA_SPIRIT_BOX SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Lucky_Egg_C8 - - Index: 1 Item: Umbala_Spirit_Box_7day + UniqueId: true + - Index: 1 + Item: Lucky_Egg_C8 + UniqueId: true - Group: UMBALA_SPIRIT_BOX_7DAY SubGroups: - SubGroup: 0 @@ -46914,50 +48434,63 @@ Body: - Index: 0 Item: Umbala_Spirit Duration: 10080 + UniqueId: true - Group: C_REPAIR_SCROLL_BOX SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Oridecon_Stone - Amount: 5 - - Index: 1 - Item: Iron - Amount: 5 - - Index: 2 - Item: Steel - Amount: 5 - - Index: 3 - Item: Iron_Ore - Amount: 5 - - Index: 4 Item: Repair_Scroll_ Amount: 5 + UniqueId: true + - Index: 1 + Item: Iron_Ore + Amount: 5 + UniqueId: true + - Index: 2 + Item: Iron + Amount: 5 + UniqueId: true + - Index: 3 + Item: Oridecon_Stone + Amount: 5 + UniqueId: true + - Index: 4 + Item: Steel + Amount: 5 + UniqueId: true - Group: C_REPAIR_SCROLL_BOX10 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Oridecon_Stone - Amount: 10 - - Index: 1 - Item: Iron - Amount: 10 - - Index: 2 - Item: Steel - Amount: 10 - - Index: 3 - Item: Iron_Ore - Amount: 10 - - Index: 4 Item: Repair_Scroll_ Amount: 10 + UniqueId: true + - Index: 1 + Item: Iron_Ore + Amount: 10 + UniqueId: true + - Index: 2 + Item: Iron + Amount: 10 + UniqueId: true + - Index: 3 + Item: Oridecon_Stone + Amount: 10 + UniqueId: true + - Index: 4 + Item: Steel + Amount: 10 + UniqueId: true - Group: C_UMBALA_SPIRIT_BOX2 SubGroups: - SubGroup: 0 List: - Index: 0 Item: Umbala_Spirit + Duration: 10080 + UniqueId: true - Group: C_MURAMASA_BOX SubGroups: - SubGroup: 0 @@ -46965,6 +48498,7 @@ Body: - Index: 0 Item: Muramasa_C Duration: 10080 + UniqueId: true - Group: C_EXCALIBUR_BOX SubGroups: - SubGroup: 0 @@ -46972,6 +48506,7 @@ Body: - Index: 0 Item: Excalibur_C Duration: 10080 + UniqueId: true - Group: C_COMBAT_KNIFE_BOX SubGroups: - SubGroup: 0 @@ -46979,6 +48514,7 @@ Body: - Index: 0 Item: Combat_Knife_C Duration: 10080 + UniqueId: true - Group: C_COUNTER_DAGGER_BOX SubGroups: - SubGroup: 0 @@ -46986,6 +48522,7 @@ Body: - Index: 0 Item: Counter_Dagger_C Duration: 10080 + UniqueId: true - Group: C_MIGHTY_STAFF_BOX SubGroups: - SubGroup: 0 @@ -46993,6 +48530,7 @@ Body: - Index: 0 Item: Mighty_Staff_C Duration: 10080 + UniqueId: true - Group: C_RIGHT_EPSILON_BOX SubGroups: - SubGroup: 0 @@ -47000,6 +48538,7 @@ Body: - Index: 0 Item: Right_Epsilon_C Duration: 10080 + UniqueId: true - Group: C_BALISTAR_BOX SubGroups: - SubGroup: 0 @@ -47007,6 +48546,7 @@ Body: - Index: 0 Item: Balistar_C Duration: 10080 + UniqueId: true - Group: C_D_GREAT_SAGE_BOX SubGroups: - SubGroup: 0 @@ -47014,6 +48554,7 @@ Body: - Index: 0 Item: Diary_Of_Great_Sage_C Duration: 10080 + UniqueId: true - Group: C_ASURA_BOX SubGroups: - SubGroup: 0 @@ -47021,6 +48562,7 @@ Body: - Index: 0 Item: Asura_C Duration: 10080 + UniqueId: true - Group: C_BROOCH_BOX SubGroups: - SubGroup: 0 @@ -47028,6 +48570,7 @@ Body: - Index: 0 Item: Brooch_C Duration: 10080 + UniqueId: true - Group: C_SAFETY_RING_BOX SubGroups: - SubGroup: 0 @@ -47035,12 +48578,15 @@ Body: - Index: 0 Item: Safety_Ring_C Duration: 10080 + UniqueId: true - Group: C_PECOPECO_HAIRBAND_BOX SubGroups: - SubGroup: 0 List: - Index: 0 Item: Pecopeco_Hairband + Duration: 20160 + UniqueId: true - Group: C_NAGAN_BOX SubGroups: - SubGroup: 0 @@ -47048,6 +48594,7 @@ Body: - Index: 0 Item: Nagan_C Duration: 10080 + UniqueId: true - Group: C_SKEWER_BOX SubGroups: - SubGroup: 0 @@ -47055,6 +48602,7 @@ Body: - Index: 0 Item: Skewer_C Duration: 10080 + UniqueId: true - Group: C_QUADRILLE_BOX SubGroups: - SubGroup: 0 @@ -47062,30 +48610,39 @@ Body: - Index: 0 Item: Quadrille_C Duration: 10080 + UniqueId: true - Group: C_FIRE_BRAND_BOX SubGroups: - SubGroup: 0 List: - Index: 0 Item: Fire_Brand_C + Duration: 10080 + UniqueId: true - Group: C_MASQUERADE_BOX SubGroups: - SubGroup: 0 List: - Index: 0 Item: Masquerade_C + Duration: 20160 + UniqueId: true - Group: C_ORC_HERO_HELM_BOX SubGroups: - SubGroup: 0 List: - Index: 0 Item: Orc_Hero_Helm_C + Duration: 20160 + UniqueId: true - Group: C_KRO_D_KITTY_BOX SubGroups: - SubGroup: 0 List: - Index: 0 Item: kRO_Drooping_Kitty_C + Duration: 20160 + UniqueId: true - Group: C_BLOODY_IRON_BALL_BOX SubGroups: - SubGroup: 0 @@ -47093,6 +48650,7 @@ Body: - Index: 0 Item: Bloody_Iron_Ball_C Duration: 10080 + UniqueId: true - Group: C_HOCKEY_MASK_BOX SubGroups: - SubGroup: 0 @@ -47100,6 +48658,7 @@ Body: - Index: 0 Item: Hockey_Mask Duration: 10080 + UniqueId: true - Group: C_OBSERVER_BOX SubGroups: - SubGroup: 0 @@ -47107,6 +48666,7 @@ Body: - Index: 0 Item: Observer Duration: 10080 + UniqueId: true - Group: C_ALL_IN_ONE_RING_BOX SubGroups: - SubGroup: 0 @@ -47114,6 +48674,7 @@ Body: - Index: 0 Item: All_In_One_Ring Duration: 10080 + UniqueId: true - Group: C_SPIRITUAL_TUNIC_BOX SubGroups: - SubGroup: 0 @@ -47121,6 +48682,7 @@ Body: - Index: 0 Item: Spritual_Tunic Duration: 10080 + UniqueId: true - Group: C_RECUP_ARMOR_BOX SubGroups: - SubGroup: 0 @@ -47128,6 +48690,7 @@ Body: - Index: 0 Item: Recuperative_Armor Duration: 10080 + UniqueId: true - Group: C_SHELTER_RESIST_BOX SubGroups: - SubGroup: 0 @@ -47135,6 +48698,7 @@ Body: - Index: 0 Item: Shelter_Resistance Duration: 10080 + UniqueId: true - Group: C_SYLPHID_MANTEAU_BOX SubGroups: - SubGroup: 0 @@ -47142,6 +48706,7 @@ Body: - Index: 0 Item: Sylphid_Manteau Duration: 10080 + UniqueId: true - Group: C_REFRESH_SHOES_BOX SubGroups: - SubGroup: 0 @@ -47149,6 +48714,7 @@ Body: - Index: 0 Item: Refresh_Shoes Duration: 10080 + UniqueId: true - Group: C_WASTELAND_OUTLAW_BOX SubGroups: - SubGroup: 0 @@ -47156,6 +48722,7 @@ Body: - Index: 0 Item: Wasteland_Outlaw_C Duration: 10080 + UniqueId: true - Group: C_LEVER_ACT_RIFLE_BOX SubGroups: - SubGroup: 0 @@ -47163,6 +48730,7 @@ Body: - Index: 0 Item: Lever_Action_Rifle_C Duration: 10080 + UniqueId: true - Group: C_CLAYMORE_C_BOX SubGroups: - SubGroup: 0 @@ -47170,6 +48738,7 @@ Body: - Index: 0 Item: Claymore_C Duration: 10080 + UniqueId: true - Group: C_JAMADHAR_C_BOX SubGroups: - SubGroup: 0 @@ -47177,6 +48746,7 @@ Body: - Index: 0 Item: Jamadhar_C Duration: 10080 + UniqueId: true - Group: C_TWO_HANDED_AXE_C_BOX SubGroups: - SubGroup: 0 @@ -47184,6 +48754,7 @@ Body: - Index: 0 Item: Two_Handed_Axe_C Duration: 10080 + UniqueId: true - Group: C_LANCE_C_BOX SubGroups: - SubGroup: 0 @@ -47191,6 +48762,7 @@ Body: - Index: 0 Item: Lance_C Duration: 10080 + UniqueId: true - Group: C_ORCISH_AXE_C_BOX SubGroups: - SubGroup: 0 @@ -47198,6 +48770,7 @@ Body: - Index: 0 Item: Orcish_Axe_C Duration: 10080 + UniqueId: true - Group: C_ENCYCLOPEDIA_C_BOX SubGroups: - SubGroup: 0 @@ -47205,6 +48778,7 @@ Body: - Index: 0 Item: Encyclopedia_C Duration: 10080 + UniqueId: true - Group: C_PIKE_C_BOX SubGroups: - SubGroup: 0 @@ -47212,6 +48786,7 @@ Body: - Index: 0 Item: Fist_C Duration: 10080 + UniqueId: true - Group: C_FIST_C_BOX SubGroups: - SubGroup: 0 @@ -47219,6 +48794,7 @@ Body: - Index: 0 Item: Guitar_C Duration: 10080 + UniqueId: true - Group: C_DAMASCUS_C_BOX SubGroups: - SubGroup: 0 @@ -47226,6 +48802,7 @@ Body: - Index: 0 Item: Damascus_C Duration: 10080 + UniqueId: true - Group: C_FLAMBERGE_C_BOX SubGroups: - SubGroup: 0 @@ -47233,6 +48810,7 @@ Body: - Index: 0 Item: Flamberge_C Duration: 10080 + UniqueId: true - Group: C_STUNNER_C_BOX SubGroups: - SubGroup: 0 @@ -47240,6 +48818,7 @@ Body: - Index: 0 Item: Stunner_C Duration: 10080 + UniqueId: true - Group: C_SHOOTING_STAR_C_BOX SubGroups: - SubGroup: 0 @@ -47247,6 +48826,7 @@ Body: - Index: 0 Item: Shooting_Star_C Duration: 10080 + UniqueId: true - Group: C_BLOODY_FEAR_C_BOX SubGroups: - SubGroup: 0 @@ -47254,6 +48834,7 @@ Body: - Index: 0 Item: Bloody_Fear_C Duration: 10080 + UniqueId: true - Group: C_STAFF_HEALING_C_BOX SubGroups: - SubGroup: 0 @@ -47261,6 +48842,7 @@ Body: - Index: 0 Item: Staff_Of_Healing_C Duration: 10080 + UniqueId: true - Group: C_CLOVER_BOX_MOUTH SubGroups: - SubGroup: 0 @@ -47268,6 +48850,7 @@ Body: - Index: 0 Item: 4Leaf_Clover_In_Mouth Duration: 60 + UniqueId: true - Group: C_CLOVER_BOX_MOUTH2 SubGroups: - SubGroup: 0 @@ -47275,6 +48858,7 @@ Body: - Index: 0 Item: 4Leaf_Clover_In_Mouth Duration: 120 + UniqueId: true - Group: C_CLOVER_BOX_MOUTH4 SubGroups: - SubGroup: 0 @@ -47282,6 +48866,7 @@ Body: - Index: 0 Item: 4Leaf_Clover_In_Mouth Duration: 240 + UniqueId: true - Group: C_BGUM_BOX_IN_MOUTH SubGroups: - SubGroup: 0 @@ -47289,6 +48874,7 @@ Body: - Index: 0 Item: Bubble_Gum_In_Mouth Duration: 60 + UniqueId: true - Group: C_BGUM_BOX_IN_MOUTH2 SubGroups: - SubGroup: 0 @@ -47296,6 +48882,7 @@ Body: - Index: 0 Item: Bubble_Gum_In_Mouth Duration: 120 + UniqueId: true - Group: C_BGUM_BOX_IN_MOUTH4 SubGroups: - SubGroup: 0 @@ -47303,6 +48890,7 @@ Body: - Index: 0 Item: Bubble_Gum_In_Mouth Duration: 240 + UniqueId: true - Group: C_SPIKED_SCARF_BOX SubGroups: - SubGroup: 0 @@ -47310,6 +48898,7 @@ Body: - Index: 0 Item: Spiked_Scarf Duration: 60 + UniqueId: true - Group: C_SPIKED_SCARF_BOX2 SubGroups: - SubGroup: 0 @@ -47317,6 +48906,7 @@ Body: - Index: 0 Item: Spiked_Scarf Duration: 120 + UniqueId: true - Group: C_SPIKED_SCARF_BOX3 SubGroups: - SubGroup: 0 @@ -47324,6 +48914,7 @@ Body: - Index: 0 Item: Spiked_Scarf Duration: 240 + UniqueId: true - Group: C_RAINBOW_SCARF_BOX SubGroups: - SubGroup: 0 @@ -47331,6 +48922,7 @@ Body: - Index: 0 Item: Rainbow_Scarf Duration: 60 + UniqueId: true - Group: C_RAINBOW_SCARF_BOX2 SubGroups: - SubGroup: 0 @@ -47338,6 +48930,7 @@ Body: - Index: 0 Item: Rainbow_Scarf Duration: 120 + UniqueId: true - Group: C_RAINBOW_SCARF_BOX3 SubGroups: - SubGroup: 0 @@ -47345,6 +48938,7 @@ Body: - Index: 0 Item: Rainbow_Scarf Duration: 240 + UniqueId: true - Group: C_RIBBON_OF_LIFE_BOX SubGroups: - SubGroup: 0 @@ -47352,6 +48946,7 @@ Body: - Index: 0 Item: Ribbon_Of_Life Duration: 60 + UniqueId: true - Group: C_RIBBON_OF_LIFE_BOX2 SubGroups: - SubGroup: 0 @@ -47359,6 +48954,7 @@ Body: - Index: 0 Item: Ribbon_Of_Life Duration: 120 + UniqueId: true - Group: C_RIBBON_OF_LIFE_BOX3 SubGroups: - SubGroup: 0 @@ -47366,6 +48962,7 @@ Body: - Index: 0 Item: Ribbon_Of_Life Duration: 240 + UniqueId: true - Group: C_LOVE_ANGEL_BOX SubGroups: - SubGroup: 0 @@ -47373,6 +48970,7 @@ Body: - Index: 0 Item: Love_Angel Duration: 10080 + UniqueId: true - Group: C_LOVE_ANGEL_BOX_1M SubGroups: - SubGroup: 0 @@ -47380,6 +48978,7 @@ Body: - Index: 0 Item: Love_Angel Duration: 43200 + UniqueId: true - Group: C_SQUIRREL_BOX SubGroups: - SubGroup: 0 @@ -47387,6 +48986,7 @@ Body: - Index: 0 Item: Squirrel Duration: 10080 + UniqueId: true - Group: C_SQUIRREL_BOX_1M SubGroups: - SubGroup: 0 @@ -47394,6 +48994,7 @@ Body: - Index: 0 Item: Squirrel Duration: 43200 + UniqueId: true - Group: C_PICTURE_DIARY_BOX SubGroups: - SubGroup: 0 @@ -47401,6 +49002,7 @@ Body: - Index: 0 Item: Picture_Diary Duration: 10080 + UniqueId: true - Group: C_PICTURE_DIARY_BOX_1M SubGroups: - SubGroup: 0 @@ -47408,6 +49010,7 @@ Body: - Index: 0 Item: Picture_Diary Duration: 43200 + UniqueId: true - Group: C_MINI_HEART_BOX SubGroups: - SubGroup: 0 @@ -47415,6 +49018,7 @@ Body: - Index: 0 Item: Mini_Heart Duration: 10080 + UniqueId: true - Group: C_MINI_HEART_BOX_1M SubGroups: - SubGroup: 0 @@ -47422,6 +49026,7 @@ Body: - Index: 0 Item: Mini_Heart Duration: 43200 + UniqueId: true - Group: C_NEWCOMER_BOX SubGroups: - SubGroup: 0 @@ -47429,6 +49034,7 @@ Body: - Index: 0 Item: Newcomer Duration: 10080 + UniqueId: true - Group: C_NEWCOMER_BOX_1M SubGroups: - SubGroup: 0 @@ -47436,6 +49042,7 @@ Body: - Index: 0 Item: Newcomer Duration: 43200 + UniqueId: true - Group: C_KID_BOX SubGroups: - SubGroup: 0 @@ -47443,6 +49050,7 @@ Body: - Index: 0 Item: Kid Duration: 10080 + UniqueId: true - Group: C_KID_BOX_1M SubGroups: - SubGroup: 0 @@ -47450,6 +49058,7 @@ Body: - Index: 0 Item: Kid Duration: 43200 + UniqueId: true - Group: C_MAGIC_CASTLE_BOX SubGroups: - SubGroup: 0 @@ -47457,6 +49066,7 @@ Body: - Index: 0 Item: Magic_Castle Duration: 10080 + UniqueId: true - Group: C_MAGIC_CASTLE_BOX_1M SubGroups: - SubGroup: 0 @@ -47464,6 +49074,7 @@ Body: - Index: 0 Item: Magic_Castle Duration: 43200 + UniqueId: true - Group: C_BULGING_HEAD_BOX SubGroups: - SubGroup: 0 @@ -47471,6 +49082,7 @@ Body: - Index: 0 Item: Bulging_Head Duration: 10080 + UniqueId: true - Group: C_BULGING_HEAD_BOX_1M SubGroups: - SubGroup: 0 @@ -47478,37 +49090,41 @@ Body: - Index: 0 Item: Bulging_Head Duration: 43200 + UniqueId: true - Group: REFINE_ORE_BOX SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Enriched_Elunium - Amount: 5 - - Index: 1 Item: Enriched_Oridecon Amount: 5 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 5 + UniqueId: true - Index: 2 Item: Lucky_Egg_C9 + UniqueId: true - Group: ATTEND_C_BOX SubGroups: - SubGroup: 1 List: - Index: 0 Item: C_Green_Feeler - Rate: 4000 + Rate: 400 - Index: 1 Item: C_Jack_A_Dandy - Rate: 2000 + Rate: 200 - Index: 2 Item: C_Helm - Rate: 1500 + Rate: 150 - Index: 3 Item: C_Sharp_Gear - Rate: 1000 + Rate: 100 - Index: 4 Item: C_Iron_Cane - Rate: 1500 + Rate: 150 - Group: TRANS_A_SET SubGroups: - SubGroup: 0 @@ -47516,12 +49132,15 @@ Body: - Index: 0 Item: Trans_Scroll_Devi Amount: 30 + UniqueId: true - Index: 1 - Item: Trans_Scroll_Poring - Amount: 6 - - Index: 2 Item: Trans_Scroll_Golem Amount: 30 + UniqueId: true + - Index: 2 + Item: Trans_Scroll_Poring + Amount: 6 + UniqueId: true - Index: 3 Item: Cloth_Dye_Coupon_Box - Group: TRANS_B_SET @@ -47529,14 +49148,17 @@ Body: - SubGroup: 0 List: - Index: 0 - Item: Trans_Scroll_Marduk - Amount: 30 - - Index: 1 Item: Trans_Scroll_Banshee Amount: 30 + UniqueId: true + - Index: 1 + Item: Trans_Scroll_Marduk + Amount: 30 + UniqueId: true - Index: 2 Item: Trans_Scroll_Poring Amount: 6 + UniqueId: true - Index: 3 Item: Cloth_Dye_Coupon_Box - Group: TRANS_C_SET @@ -47544,14 +49166,17 @@ Body: - SubGroup: 0 List: - Index: 0 - Item: Trans_Scroll_Ray_Arch - Amount: 30 - - Index: 1 Item: Trans_Scroll_Mavka Amount: 30 + UniqueId: true + - Index: 1 + Item: Trans_Scroll_Ray_Arch + Amount: 30 + UniqueId: true - Index: 2 Item: Trans_Scroll_Poring Amount: 6 + UniqueId: true - Index: 3 Item: Cloth_Dye_Coupon_Box - Group: MADE_DISH_SET @@ -47559,9 +49184,11 @@ Body: - SubGroup: 0 List: - Index: 0 - Item: Dragon_Egg_Scroll - - Index: 1 Item: Made_Dish_Box + UniqueId: true + - Index: 1 + Item: Dragon_Egg_Scroll + UniqueId: true - Group: MADE_DISH_BOX SubGroups: - SubGroup: 0 @@ -47569,42 +49196,53 @@ Body: - Index: 0 Item: Str_Dish10_ Amount: 5 + UniqueId: true - Index: 1 Item: Agi_Dish10_ Amount: 5 + UniqueId: true - Index: 2 - Item: Int_Dish10_ - Amount: 5 - - Index: 3 - Item: Dex_Dish10_ - Amount: 5 - - Index: 4 - Item: Luk_Dish10_ - Amount: 5 - - Index: 5 Item: Vit_Dish10_ Amount: 5 + UniqueId: true + - Index: 3 + Item: Int_Dish10_ + Amount: 5 + UniqueId: true + - Index: 4 + Item: Dex_Dish10_ + Amount: 5 + UniqueId: true + - Index: 5 + Item: Luk_Dish10_ + Amount: 5 + UniqueId: true - Index: 6 Item: Spark_Candy Amount: 3 + UniqueId: true - Group: RED_BOOSTER_BOX20_2 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: 2011_RWC_Scroll_Kr - - Index: 1 Item: Red_Booster Amount: 20 + UniqueId: true + - Index: 1 + Item: 2011_RWC_Scroll_Kr + UniqueId: true - Group: MYSTIC_POWDER_BOX30_2 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Cru_Scroll - - Index: 1 Item: Mystic_Powder Amount: 30 + UniqueId: true + - Index: 1 + Item: Cru_Scroll + UniqueId: true - Group: EC_BATTLE_MANUAL_BOX SubGroups: - SubGroup: 0 @@ -47612,6 +49250,7 @@ Body: - Index: 0 Item: Battle_Manual Amount: 10 + UniqueId: true - Index: 1 Item: Comp_Battle_Manual Amount: 3 @@ -47620,149 +49259,173 @@ Body: - SubGroup: 0 List: - Index: 0 - Item: Reward_Job_BM25 - Amount: 3 - - Index: 1 Item: Job_Manual25 Amount: 10 + UniqueId: true + - Index: 1 + Item: Reward_Job_BM25 + Amount: 3 - Group: GLOBAL_HAT_FES_BOX SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Crescent_Helm - Rate: 784 - - Index: 1 - Item: Kabuki_Mask - Rate: 784 - - Index: 2 Item: Ayothaya_Hat - Rate: 245 - - Index: 3 + Rate: 250 + - Index: 1 Item: Raven_Cap - Rate: 588 - - Index: 4 + Rate: 600 + - Index: 2 Item: B_Dragon_Hat Rate: 1 - - Index: 5 + Announced: true + - Index: 3 Item: Quati_Hat - Rate: 588 - - Index: 6 - Item: Tucan_Hat - Rate: 784 - - Index: 7 - Item: Jaguar_Hat - Rate: 784 - - Index: 8 - Item: Dragon_Arhat_Mask - Rate: 245 - - Index: 9 - Item: Tiger_Arhat_Mask - Rate: 245 - - Index: 10 + Rate: 600 + - Index: 4 Item: Chung_Hairband - Rate: 588 - - Index: 11 + Rate: 600 + - Index: 5 Item: Samurai_Mask - Rate: 244 - - Index: 12 - Item: Hattah_Black - Rate: 588 - - Index: 13 + Rate: 249 + Announced: true + - Index: 6 Item: Horn_Of_Ancient - Rate: 588 - - Index: 14 + Rate: 600 + - Index: 7 Item: Sprout_Hat - Rate: 784 - - Index: 15 + Rate: 800 + - Index: 8 Item: Mercury_Helm - Rate: 588 - - Index: 16 + Rate: 600 + - Index: 9 Item: White_Musang_Hat - Rate: 784 - - Index: 17 + Rate: 800 + - Index: 10 Item: Black_Musang_Hat - Rate: 784 + Rate: 800 + - Index: 11 + Item: Dragon_Arhat_Mask + Rate: 250 + - Index: 12 + Item: Tiger_Arhat_Mask + Rate: 250 + - Index: 13 + Item: Crescent_Helm + Rate: 800 + - Index: 14 + Item: Tucan_Hat + Rate: 800 + - Index: 15 + Item: Kabuki_Mask + Rate: 800 + - Index: 16 + Item: Jaguar_Hat + Rate: 800 + - Index: 17 + Item: Hattah_Black + Rate: 600 - Group: GLOBAL_HAT_FES_5_BOX SubGroups: - SubGroup: 0 List: - Index: 0 Item: Global_Hat_Fes_Box2 + UniqueId: true + - Index: 1 + Item: Global_Hat_Fes_Box2 + UniqueId: true + - Index: 2 + Item: Global_Hat_Fes_Box2 + UniqueId: true + - Index: 3 + Item: Global_Hat_Fes_Box2 + UniqueId: true + - Index: 4 + Item: Global_Hat_Fes_Box2 + UniqueId: true - Group: GLOBAL_HAT_FES_BOX2 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Crescent_Helm - Rate: 784 - - Index: 1 - Item: Kabuki_Mask - Rate: 784 - - Index: 2 Item: Ayothaya_Hat - Rate: 245 - - Index: 3 + Rate: 250 + - Index: 1 Item: Raven_Cap - Rate: 588 - - Index: 4 + Rate: 600 + - Index: 2 Item: B_Dragon_Hat Rate: 1 - - Index: 5 + Announced: true + - Index: 3 Item: Quati_Hat - Rate: 588 - - Index: 6 - Item: Tucan_Hat - Rate: 784 - - Index: 7 - Item: Jaguar_Hat - Rate: 784 - - Index: 8 - Item: Dragon_Arhat_Mask - Rate: 245 - - Index: 9 - Item: Tiger_Arhat_Mask - Rate: 245 - - Index: 10 + Rate: 600 + - Index: 4 Item: Chung_Hairband - Rate: 588 - - Index: 11 + Rate: 600 + - Index: 5 Item: Samurai_Mask - Rate: 244 - - Index: 12 - Item: Hattah_Black - Rate: 588 - - Index: 13 + Rate: 249 + Announced: true + - Index: 6 Item: Horn_Of_Ancient - Rate: 588 - - Index: 14 + Rate: 600 + - Index: 7 Item: Sprout_Hat - Rate: 784 - - Index: 15 + Rate: 800 + - Index: 8 Item: Mercury_Helm - Rate: 588 - - Index: 16 + Rate: 600 + - Index: 9 Item: White_Musang_Hat - Rate: 784 - - Index: 17 + Rate: 800 + - Index: 10 Item: Black_Musang_Hat - Rate: 784 + Rate: 800 + - Index: 11 + Item: Dragon_Arhat_Mask + Rate: 250 + - Index: 12 + Item: Tiger_Arhat_Mask + Rate: 250 + - Index: 13 + Item: Crescent_Helm + Rate: 800 + - Index: 14 + Item: Tucan_Hat + Rate: 800 + - Index: 15 + Item: Kabuki_Mask + Rate: 800 + - Index: 16 + Item: Jaguar_Hat + Rate: 800 + - Index: 17 + Item: Hattah_Black + Rate: 600 - Group: MADE_DISH_BOX1 SubGroups: - SubGroup: 0 List: - Index: 0 Item: Str_Dish10_ + UniqueId: true - Index: 1 Item: Agi_Dish10_ + UniqueId: true - Index: 2 - Item: Int_Dish10_ - - Index: 3 - Item: Dex_Dish10_ - - Index: 4 - Item: Luk_Dish10_ - - Index: 5 Item: Vit_Dish10_ + UniqueId: true + - Index: 3 + Item: Int_Dish10_ + UniqueId: true + - Index: 4 + Item: Dex_Dish10_ + UniqueId: true + - Index: 5 + Item: Luk_Dish10_ + UniqueId: true - Group: MYSTERIOUS_WATER_BOX50 SubGroups: - SubGroup: 0 @@ -47770,8 +49433,10 @@ Body: - Index: 0 Item: Mysterious_Water Amount: 50 + UniqueId: true - Index: 1 Item: Undead_Egg + UniqueId: true - Group: MYSTERIOUS_WATER_BOX50_ SubGroups: - SubGroup: 0 @@ -47779,20 +49444,25 @@ Body: - Index: 0 Item: Mysterious_Water Amount: 50 + UniqueId: true - Index: 1 Item: Girls_Heart + UniqueId: true - Group: REFINE_ORE_BOX2 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Enriched_Elunium - Amount: 5 - - Index: 1 Item: Enriched_Oridecon Amount: 5 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 5 + UniqueId: true - Index: 2 Item: Pope_Scroll + UniqueId: true - Group: RED_POTION_RG_BOX SubGroups: - SubGroup: 0 @@ -47800,6 +49470,7 @@ Body: - Index: 0 Item: Red_Potion_RG Amount: 10 + UniqueId: true - Group: BLUE_POTION_RG_BOX SubGroups: - SubGroup: 0 @@ -47807,6 +49478,7 @@ Body: - Index: 0 Item: Blue_Potion_RG Amount: 10 + UniqueId: true - Group: GOLDENAPPLE_P_RG_BOX SubGroups: - SubGroup: 0 @@ -47814,6 +49486,7 @@ Body: - Index: 0 Item: GoldenApple_P_RG Amount: 20 + UniqueId: true - Group: GOLDENAPPLE_RG_BOX SubGroups: - SubGroup: 0 @@ -47821,6 +49494,7 @@ Body: - Index: 0 Item: GoldenApple_RG Amount: 25 + UniqueId: true - Group: GOLDEN_POTION_RG_BOX SubGroups: - SubGroup: 0 @@ -47828,76 +49502,82 @@ Body: - Index: 0 Item: Golden_Potion_RG Amount: 50 + UniqueId: true - Group: SPECIAL_PO_BOX SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Old_Card_Album - Rate: 341 + Item: Royal_Certificate + Rate: 1300 + Amount: 3 - Index: 1 - Item: Orleans_Glove - Rate: 23 - - Index: 2 - Item: Diabolus_Ring - Rate: 23 - - Index: 3 - Item: Ghostring_Card - Rate: 23 - - Index: 4 - Item: Deviling_Card - Rate: 23 - - Index: 5 - Item: Archangeling_Card - Rate: 23 - - Index: 6 Item: Card_Coin - Rate: 1477 + Rate: 1300 + Amount: 3 + - Index: 2 + Item: Mora_Coin + Rate: 1300 + Amount: 3 + - Index: 3 + Item: Poring_Box + Rate: 1300 + - Index: 4 + Item: High_Purity_Energy_Xtal + Rate: 600 + Amount: 3 + - Index: 5 + Item: BF_Badge1 + Rate: 600 + Amount: 3 + - Index: 6 + Item: BF_Badge2 + Rate: 600 Amount: 3 - Index: 7 - Item: Mora_Coin - Rate: 1477 - Amount: 3 - - Index: 8 - Item: Royal_Certificate - Rate: 1477 - Amount: 3 - - Index: 9 - Item: High_Purity_Energy_Xtal - Rate: 682 - Amount: 3 - - Index: 10 - Item: BF_Badge1 - Rate: 682 - Amount: 3 - - Index: 11 - Item: BF_Badge2 - Rate: 682 - Amount: 3 - - Index: 12 - Item: Bloody_Dead_Branch - Rate: 114 - - Index: 13 - Item: Poring_Box - Rate: 1477 - - Index: 14 - Item: Magic_Card_Album - Rate: 114 - - Index: 15 Item: Mid_Coin_Pocket - Rate: 682 - - Index: 16 + Rate: 600 + - Index: 8 Item: Sg_Violet_Potion_Box - Rate: 682 + Rate: 600 + - Index: 9 + Item: Old_Card_Album + Rate: 300 + - Index: 10 + Item: Magic_Card_Album + Rate: 100 + - Index: 11 + Item: Bloody_Dead_Branch + Rate: 100 + - Index: 12 + Item: Orleans_Glove + Rate: 20 + - Index: 13 + Item: Diabolus_Ring + Rate: 20 + - Index: 14 + Item: Deviling_Card + Rate: 20 + Announced: true + - Index: 15 + Item: Ghostring_Card + Rate: 20 + Announced: true + - Index: 16 + Item: Archangeling_Card + Rate: 20 + Announced: true - Group: BATTLE_MANUAL_LIMIT_BOX SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Mysterious_Egg2 - - Index: 1 Item: Battle_Manual_Limit Amount: 3 + UniqueId: true + - Index: 1 + Item: Mysterious_Egg2 + UniqueId: true - Group: UNLIMITED_20_BOX SubGroups: - SubGroup: 0 @@ -47905,22 +49585,25 @@ Body: - Index: 0 Item: ASPD_Potion Amount: 100 + UniqueId: true - Index: 1 Item: Red_Booster Amount: 200 + UniqueId: true - Index: 2 Item: GoldenTreasureBox Amount: 23 + UniqueId: true - Group: CUSTOMIZING_BOX SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Clothing_Dye_Coupon + Item: Change_Name_Card - Index: 1 Item: New_Style_Coupon - Index: 2 - Item: Change_Name_Card + Item: Clothing_Dye_Coupon - Group: NYANGVINE_BOX10_ SubGroups: - SubGroup: 0 @@ -47933,6 +49616,7 @@ Body: Amount: 30 - Index: 2 Item: Sealed_Scroll3 + UniqueId: true - Group: NYANGVINE_BOX100 SubGroups: - SubGroup: 0 @@ -47946,6 +49630,7 @@ Body: - Index: 2 Item: Sealed_Scroll3 Amount: 11 + UniqueId: true - Group: SERVICE30_M_01_BOX SubGroups: - SubGroup: 0 @@ -47965,57 +49650,71 @@ Body: - SubGroup: 0 List: - Index: 0 - Item: Mysterious_Water - Amount: 20 - - Index: 1 Item: Small_Life_Potion Amount: 20 - - Index: 2 + UniqueId: true + - Index: 1 Item: Med_Life_Potion Amount: 20 + UniqueId: true + - Index: 2 + Item: Mysterious_Water + Amount: 20 + UniqueId: true - Index: 3 Item: Status_Decrease_Scroll + UniqueId: true - Group: 3_LIFE_POTION_10PACK6 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Mysterious_Water - Amount: 200 - - Index: 1 Item: Small_Life_Potion Amount: 200 - - Index: 2 + UniqueId: true + - Index: 1 Item: Med_Life_Potion Amount: 200 + UniqueId: true + - Index: 2 + Item: Mysterious_Water + Amount: 200 + UniqueId: true - Index: 3 Item: Status_Decrease_Scroll Amount: 11 + UniqueId: true - Group: REFINE_ORE_BOX10 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Enriched_Elunium - Amount: 5 - - Index: 1 Item: Enriched_Oridecon Amount: 5 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 5 + UniqueId: true - Index: 2 Item: Mad_Bunny_Scroll + UniqueId: true - Group: REFINE_ORE_BOX10_SET10 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Enriched_Elunium - Amount: 50 - - Index: 1 Item: Enriched_Oridecon Amount: 50 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 50 + UniqueId: true - Index: 2 Item: Mad_Bunny_Scroll Amount: 11 + UniqueId: true - Group: SERVICE30P_M_01_BOX SubGroups: - SubGroup: 0 @@ -48037,20 +49736,26 @@ Body: - Index: 0 Item: Battle_Manual Amount: 2 + UniqueId: true - Index: 1 Item: Bubble_Gum Amount: 2 + UniqueId: true - Index: 2 - Item: Mysterious_Water - Amount: 6 - - Index: 3 Item: Almighty Amount: 2 - - Index: 4 + UniqueId: true + - Index: 3 Item: Mental_Potion Amount: 2 + UniqueId: true + - Index: 4 + Item: Mysterious_Water + Amount: 6 + UniqueId: true - Index: 5 Item: Pump_Of_Spirit_Scroll + UniqueId: true - Group: VIGORGRA_PACKAGE_SET_V5 SubGroups: - SubGroup: 0 @@ -48058,21 +49763,27 @@ Body: - Index: 0 Item: Battle_Manual Amount: 20 + UniqueId: true - Index: 1 Item: Bubble_Gum Amount: 20 + UniqueId: true - Index: 2 - Item: Mysterious_Water - Amount: 60 - - Index: 3 Item: Almighty Amount: 20 - - Index: 4 + UniqueId: true + - Index: 3 Item: Mental_Potion Amount: 20 + UniqueId: true + - Index: 4 + Item: Mysterious_Water + Amount: 60 + UniqueId: true - Index: 5 Item: Pump_Of_Spirit_Scroll Amount: 11 + UniqueId: true - Group: C_GREED_1HOUR_BOX SubGroups: - SubGroup: 0 @@ -48080,6 +49791,7 @@ Body: - Index: 0 Item: C_Greed_Scroll Duration: 60 + UniqueId: true - Group: C_CATPAW_1DAY_BOX SubGroups: - SubGroup: 0 @@ -48087,6 +49799,7 @@ Body: - Index: 0 Item: C_CatPaw_Ticket Duration: 1440 + UniqueId: true - Group: UNLIMITED_BOX4 SubGroups: - SubGroup: 0 @@ -48094,11 +49807,14 @@ Body: - Index: 0 Item: ASPD_Potion Amount: 5 + UniqueId: true - Index: 1 Item: Red_Booster Amount: 10 + UniqueId: true - Index: 2 Item: Happy_Balloon_Scroll + UniqueId: true - Group: UNLIMITED_10_BOX4 SubGroups: - SubGroup: 0 @@ -48106,12 +49822,15 @@ Body: - Index: 0 Item: ASPD_Potion Amount: 50 + UniqueId: true - Index: 1 Item: Red_Booster Amount: 100 + UniqueId: true - Index: 2 Item: Happy_Balloon_Scroll Amount: 11 + UniqueId: true - Group: C_GIANT_FLY_1DAY_BOX SubGroups: - SubGroup: 0 @@ -48119,62 +49838,77 @@ Body: - Index: 0 Item: C_Giant_Fly_Wing Duration: 1440 + UniqueId: true - Group: REFINE_ORE_BOX11 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Enriched_Elunium - Amount: 5 - - Index: 1 Item: Enriched_Oridecon Amount: 5 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 5 + UniqueId: true - Index: 2 Item: Piamette_Scroll + UniqueId: true - Group: REFINE_ORE_BOX11_SET10 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Enriched_Elunium - Amount: 50 - - Index: 1 Item: Enriched_Oridecon Amount: 50 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 50 + UniqueId: true - Index: 2 Item: Piamette_Scroll Amount: 11 + UniqueId: true - Group: 3_LIFE_POTION_PACK7 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Mysterious_Water - Amount: 20 - - Index: 1 Item: Small_Life_Potion Amount: 20 - - Index: 2 + UniqueId: true + - Index: 1 Item: Med_Life_Potion Amount: 20 + UniqueId: true + - Index: 2 + Item: Mysterious_Water + Amount: 20 + UniqueId: true - Index: 3 Item: Invisible_Scroll + UniqueId: true - Group: 3_LIFE_POTION_10PACK7 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Mysterious_Water - Amount: 200 - - Index: 1 Item: Small_Life_Potion Amount: 200 - - Index: 2 + UniqueId: true + - Index: 1 Item: Med_Life_Potion Amount: 200 + UniqueId: true + - Index: 2 + Item: Mysterious_Water + Amount: 200 + UniqueId: true - Index: 3 Item: Invisible_Scroll Amount: 11 + UniqueId: true - Group: ALMIGHTY_PLUS_BOX SubGroups: - SubGroup: 0 @@ -48182,14 +49916,16 @@ Body: - Index: 0 Item: Almighty Amount: 10 + UniqueId: true - Index: 1 - Item: Comp_Mystic_Powder - - Index: 2 - Item: Comp_Tyr's_Blessing - - Index: 3 - Item: Comp_Regenerate_Potion - - Index: 4 Item: New_Hat_Scroll + UniqueId: true + - Index: 2 + Item: Comp_Mystic_Powder + - Index: 3 + Item: Comp_Tyr's_Blessing + - Index: 4 + Item: Comp_Regenerate_Potion - Group: ALMIGHTY100_PLUSBOX SubGroups: - SubGroup: 0 @@ -48197,22 +49933,24 @@ Body: - Index: 0 Item: Almighty Amount: 100 + UniqueId: true - Index: 1 - Item: Comp_Mystic_Powder - Amount: 10 - - Index: 2 - Item: Comp_Tyr's_Blessing - Amount: 10 - - Index: 3 - Item: Comp_Regenerate_Potion - Amount: 10 - - Index: 4 - Item: Comp_Spark_Candy - - Index: 5 - Item: Comp_Magic_Candy - - Index: 6 Item: New_Hat_Scroll Amount: 11 + UniqueId: true + - Index: 2 + Item: Comp_Mystic_Powder + Amount: 10 + - Index: 3 + Item: Comp_Tyr's_Blessing + Amount: 10 + - Index: 4 + Item: Comp_Regenerate_Potion + Amount: 10 + - Index: 5 + Item: Comp_Spark_Candy + - Index: 6 + Item: Comp_Magic_Candy - Group: LIMIT_POWER_BOOSTER2 SubGroups: - SubGroup: 0 @@ -48220,8 +49958,10 @@ Body: - Index: 0 Item: Limit_Power_Booster Amount: 10 + UniqueId: true - Index: 1 Item: 2015_Special_Scroll + UniqueId: true - Group: LIMITPOWERBOOSTER2_100 SubGroups: - SubGroup: 0 @@ -48229,40 +49969,49 @@ Body: - Index: 0 Item: Limit_Power_Booster Amount: 100 + UniqueId: true - Index: 1 Item: 2015_Special_Scroll Amount: 11 + UniqueId: true - Group: LC_BOARDING_HALTER_BOX SubGroups: - SubGroup: 0 List: - Index: 0 Item: Boarding_Halter + UniqueId: true - Group: REFINE_ORE_BOX12 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Enriched_Elunium - Amount: 5 - - Index: 1 Item: Enriched_Oridecon Amount: 5 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 5 + UniqueId: true - Index: 2 Item: 2015_Angel_Scroll + UniqueId: true - Group: REFINE_ORE_BOX12_SET10 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Enriched_Elunium - Amount: 50 - - Index: 1 Item: Enriched_Oridecon Amount: 50 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 50 + UniqueId: true - Index: 2 Item: 2015_Angel_Scroll Amount: 11 + UniqueId: true - Group: VIGORGRA_PLUS_PACKAGE SubGroups: - SubGroup: 0 @@ -48270,22 +50019,28 @@ Body: - Index: 0 Item: Battle_Manual Amount: 2 + UniqueId: true - Index: 1 Item: Bubble_Gum Amount: 2 + UniqueId: true - Index: 2 - Item: Mysterious_Water - Amount: 6 - - Index: 3 Item: Almighty Amount: 2 - - Index: 4 + UniqueId: true + - Index: 3 Item: Mental_Potion Amount: 2 + UniqueId: true + - Index: 4 + Item: Mysterious_Water + Amount: 6 + UniqueId: true - Index: 5 - Item: Comp_Glass_Of_Illusion - - Index: 6 Item: Poring_Scroll + UniqueId: true + - Index: 6 + Item: Comp_Glass_Of_Illusion - Group: VIGORGRA_PLUS_SET SubGroups: - SubGroup: 0 @@ -48293,59 +50048,73 @@ Body: - Index: 0 Item: Battle_Manual Amount: 20 + UniqueId: true - Index: 1 Item: Bubble_Gum Amount: 20 + UniqueId: true - Index: 2 - Item: Mysterious_Water - Amount: 60 - - Index: 3 Item: Almighty Amount: 20 - - Index: 4 + UniqueId: true + - Index: 3 Item: Mental_Potion Amount: 20 + UniqueId: true + - Index: 4 + Item: Mysterious_Water + Amount: 60 + UniqueId: true - Index: 5 - Item: Comp_Spark_Candy - - Index: 6 - Item: Comp_Magic_Candy - - Index: 7 - Item: Comp_Glass_Of_Illusion - Amount: 10 - - Index: 8 Item: Poring_Scroll Amount: 11 + UniqueId: true + - Index: 6 + Item: Comp_Glass_Of_Illusion + Amount: 10 + - Index: 7 + Item: Comp_Spark_Candy + - Index: 8 + Item: Comp_Magic_Candy - Group: 3_LIFE_POTION_PACK8 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Mysterious_Water - Amount: 20 - - Index: 1 Item: Small_Life_Potion Amount: 20 - - Index: 2 + UniqueId: true + - Index: 1 Item: Med_Life_Potion Amount: 20 + UniqueId: true + - Index: 2 + Item: Mysterious_Water + Amount: 20 + UniqueId: true - Index: 3 Item: Amistr_Scroll + UniqueId: true - Group: 3_LIFE_POTION_10PACK8 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Mysterious_Water - Amount: 200 - - Index: 1 Item: Small_Life_Potion Amount: 200 - - Index: 2 + UniqueId: true + - Index: 1 Item: Med_Life_Potion Amount: 200 + UniqueId: true + - Index: 2 + Item: Mysterious_Water + Amount: 200 + UniqueId: true - Index: 3 Item: Amistr_Scroll Amount: 11 + UniqueId: true - Group: UNLIMITED_BOX5 SubGroups: - SubGroup: 0 @@ -48353,18 +50122,14 @@ Body: - Index: 0 Item: ASPD_Potion Amount: 5 + UniqueId: true - Index: 1 Item: Red_Booster Amount: 10 + UniqueId: true - Index: 2 - Item: G_ASPD_Potion - Amount: 50 - - Index: 3 - Item: G_Red_Booster - Amount: 100 - - Index: 4 Item: Shadow_Scroll - Amount: 11 + UniqueId: true - Group: UNLIMITED_10_BOX5 SubGroups: - SubGroup: 0 @@ -48372,37 +50137,46 @@ Body: - Index: 0 Item: ASPD_Potion Amount: 50 + UniqueId: true - Index: 1 Item: Red_Booster Amount: 100 + UniqueId: true - Index: 2 Item: Shadow_Scroll Amount: 11 + UniqueId: true - Group: REFINE_ORE_BOX13 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Enriched_Elunium - Amount: 5 - - Index: 1 Item: Enriched_Oridecon Amount: 5 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 5 + UniqueId: true - Index: 2 Item: Spirit_Scroll + UniqueId: true - Group: REFINE_ORE_BOX13_SET10 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Enriched_Elunium - Amount: 50 - - Index: 1 Item: Enriched_Oridecon Amount: 50 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 50 + UniqueId: true - Index: 2 Item: Spirit_Scroll Amount: 11 + UniqueId: true - Group: HD_REFINE_ORE_BOX SubGroups: - SubGroup: 0 @@ -48410,15 +50184,19 @@ Body: - Index: 0 Item: HD_Oridecon Amount: 13 + UniqueId: true - Index: 1 Item: HD_Elunium Amount: 13 + UniqueId: true - Index: 2 Item: Mental_Potion Amount: 6 + UniqueId: true - Index: 3 Item: Spirit_Scroll Amount: 11 + UniqueId: true - Group: NYANGVINE_BOX10_2 SubGroups: - SubGroup: 0 @@ -48431,6 +50209,7 @@ Body: Amount: 30 - Index: 2 Item: Balloon_Scroll + UniqueId: true - Group: NYANGVINE_BOX100_2 SubGroups: - SubGroup: 0 @@ -48444,6 +50223,7 @@ Body: - Index: 2 Item: Balloon_Scroll Amount: 11 + UniqueId: true - Group: VIGORGRA_PLUS_PACKAGE2 SubGroups: - SubGroup: 0 @@ -48451,22 +50231,28 @@ Body: - Index: 0 Item: Battle_Manual Amount: 2 + UniqueId: true - Index: 1 Item: Bubble_Gum Amount: 2 + UniqueId: true - Index: 2 - Item: Mysterious_Water - Amount: 6 - - Index: 3 Item: Almighty Amount: 2 - - Index: 4 + UniqueId: true + - Index: 3 Item: Mental_Potion Amount: 2 + UniqueId: true + - Index: 4 + Item: Mysterious_Water + Amount: 6 + UniqueId: true - Index: 5 - Item: Comp_Glass_Of_Illusion - - Index: 6 Item: Gunslinger_Scroll + UniqueId: true + - Index: 6 + Item: Comp_Glass_Of_Illusion - Group: VIGORGRA_PLUS_SET2 SubGroups: - SubGroup: 0 @@ -48474,84 +50260,104 @@ Body: - Index: 0 Item: Battle_Manual Amount: 20 + UniqueId: true - Index: 1 Item: Bubble_Gum Amount: 20 + UniqueId: true - Index: 2 - Item: Mysterious_Water - Amount: 60 - - Index: 3 Item: Almighty Amount: 20 - - Index: 4 + UniqueId: true + - Index: 3 Item: Mental_Potion Amount: 20 + UniqueId: true + - Index: 4 + Item: Mysterious_Water + Amount: 60 + UniqueId: true - Index: 5 - Item: Comp_Spark_Candy - - Index: 6 - Item: Comp_Magic_Candy - - Index: 7 - Item: Comp_Glass_Of_Illusion - Amount: 10 - - Index: 8 Item: Gunslinger_Scroll Amount: 11 + UniqueId: true + - Index: 6 + Item: Comp_Glass_Of_Illusion + Amount: 10 + - Index: 7 + Item: Comp_Spark_Candy + - Index: 8 + Item: Comp_Magic_Candy - Group: 3_LIFE_POTION_PACK9 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Mysterious_Water - Amount: 20 - - Index: 1 Item: Small_Life_Potion Amount: 20 - - Index: 2 + UniqueId: true + - Index: 1 Item: Med_Life_Potion Amount: 20 + UniqueId: true + - Index: 2 + Item: Mysterious_Water + Amount: 20 + UniqueId: true - Index: 3 Item: Green_Scroll_K + UniqueId: true - Group: 3_LIFE_POTION_10PACK9 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Mysterious_Water - Amount: 200 - - Index: 1 Item: Small_Life_Potion Amount: 200 - - Index: 2 + UniqueId: true + - Index: 1 Item: Med_Life_Potion Amount: 200 + UniqueId: true + - Index: 2 + Item: Mysterious_Water + Amount: 200 + UniqueId: true - Index: 3 Item: Green_Scroll_K Amount: 11 + UniqueId: true - Group: REFINE_ORE_BOX14 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Enriched_Elunium - Amount: 5 - - Index: 1 Item: Enriched_Oridecon Amount: 5 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 5 + UniqueId: true - Index: 2 Item: Kafra_Scroll + UniqueId: true - Group: REFINE_ORE_BOX14_SET10 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Enriched_Elunium - Amount: 50 - - Index: 1 Item: Enriched_Oridecon Amount: 50 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 50 + UniqueId: true - Index: 2 Item: Kafra_Scroll Amount: 11 + UniqueId: true - Group: HD_REFINE_ORE_BOX2 SubGroups: - SubGroup: 0 @@ -48559,15 +50365,19 @@ Body: - Index: 0 Item: HD_Oridecon Amount: 13 + UniqueId: true - Index: 1 Item: HD_Elunium Amount: 13 + UniqueId: true - Index: 2 Item: Mental_Potion Amount: 6 + UniqueId: true - Index: 3 Item: Kafra_Scroll Amount: 11 + UniqueId: true - Group: ALMIGHTY_PLUS_BOX2 SubGroups: - SubGroup: 0 @@ -48575,14 +50385,16 @@ Body: - Index: 0 Item: Almighty Amount: 10 + UniqueId: true - Index: 1 - Item: Comp_Mystic_Powder - - Index: 2 - Item: Comp_Tyr's_Blessing - - Index: 3 - Item: Comp_Regenerate_Potion - - Index: 4 Item: Sigrun_Scroll + UniqueId: true + - Index: 2 + Item: Comp_Mystic_Powder + - Index: 3 + Item: Comp_Tyr's_Blessing + - Index: 4 + Item: Comp_Regenerate_Potion - Group: ALMIGHTY100_PLUSBOX2 SubGroups: - SubGroup: 0 @@ -48590,22 +50402,24 @@ Body: - Index: 0 Item: Almighty Amount: 100 + UniqueId: true - Index: 1 - Item: Comp_Mystic_Powder - Amount: 10 - - Index: 2 - Item: Comp_Tyr's_Blessing - Amount: 10 - - Index: 3 - Item: Comp_Regenerate_Potion - Amount: 10 - - Index: 4 - Item: Comp_Spark_Candy - - Index: 5 - Item: Comp_Magic_Candy - - Index: 6 Item: Sigrun_Scroll Amount: 11 + UniqueId: true + - Index: 2 + Item: Comp_Mystic_Powder + Amount: 10 + - Index: 3 + Item: Comp_Tyr's_Blessing + Amount: 10 + - Index: 4 + Item: Comp_Regenerate_Potion + Amount: 10 + - Index: 5 + Item: Comp_Spark_Candy + - Index: 6 + Item: Comp_Magic_Candy - Group: DEF_SCROLL_BOX SubGroups: - SubGroup: 0 @@ -48613,11 +50427,14 @@ Body: - Index: 0 Item: Small_Mana_Potion Amount: 5 + UniqueId: true - Index: 1 Item: M_DEFScroll Amount: 30 + UniqueId: true - Index: 2 Item: New_Hat_Scroll2 + UniqueId: true - Group: DEF_SCROLL_BOX_SET SubGroups: - SubGroup: 0 @@ -48625,12 +50442,15 @@ Body: - Index: 0 Item: Small_Mana_Potion Amount: 50 + UniqueId: true - Index: 1 Item: M_DEFScroll Amount: 300 + UniqueId: true - Index: 2 Item: New_Hat_Scroll2 Amount: 11 + UniqueId: true - Group: LIMIT_POWER_BOOSTER3 SubGroups: - SubGroup: 0 @@ -48638,8 +50458,10 @@ Body: - Index: 0 Item: Limit_Power_Booster Amount: 10 + UniqueId: true - Index: 1 Item: 2016_Special_Scroll + UniqueId: true - Group: LIMITPOWERBOOSTER3_100 SubGroups: - SubGroup: 0 @@ -48647,50 +50469,62 @@ Body: - Index: 0 Item: Limit_Power_Booster Amount: 100 + UniqueId: true - Index: 1 Item: 2016_Special_Scroll Amount: 11 + UniqueId: true - Group: HD_HIGH_REFINE_BOX SubGroups: - SubGroup: 0 List: - Index: 0 - Item: HD_Carnium - Amount: 13 - - Index: 1 Item: HD_Bradium Amount: 13 + UniqueId: true + - Index: 1 + Item: HD_Carnium + Amount: 13 + UniqueId: true - Index: 2 Item: Mental_Potion Amount: 6 + UniqueId: true - Index: 3 Item: Candlelight_Scroll Amount: 11 + UniqueId: true - Group: REFINE_ORE_BOX15_SET10 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Enriched_Elunium - Amount: 50 - - Index: 1 Item: Enriched_Oridecon Amount: 50 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 50 + UniqueId: true - Index: 2 Item: Candlelight_Scroll Amount: 11 + UniqueId: true - Group: REFINE_ORE_BOX15 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Enriched_Elunium - Amount: 5 - - Index: 1 Item: Enriched_Oridecon Amount: 5 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 5 + UniqueId: true - Index: 2 Item: Candlelight_Scroll + UniqueId: true - Group: HD_REFINE_ORE_BOX3 SubGroups: - SubGroup: 0 @@ -48698,15 +50532,19 @@ Body: - Index: 0 Item: HD_Oridecon Amount: 13 + UniqueId: true - Index: 1 Item: HD_Elunium Amount: 13 + UniqueId: true - Index: 2 Item: Mental_Potion Amount: 6 + UniqueId: true - Index: 3 Item: Candlelight_Scroll Amount: 11 + UniqueId: true - Group: VIGORGRA_PLUS_PACKAGE3 SubGroups: - SubGroup: 0 @@ -48714,22 +50552,28 @@ Body: - Index: 0 Item: Battle_Manual Amount: 2 + UniqueId: true - Index: 1 Item: Bubble_Gum Amount: 2 + UniqueId: true - Index: 2 - Item: Mysterious_Water - Amount: 6 - - Index: 3 Item: Almighty Amount: 2 - - Index: 4 + UniqueId: true + - Index: 3 Item: Mental_Potion Amount: 2 + UniqueId: true + - Index: 4 + Item: Mysterious_Water + Amount: 6 + UniqueId: true - Index: 5 - Item: Comp_Glass_Of_Illusion - - Index: 6 Item: Lapine_Scroll + UniqueId: true + - Index: 6 + Item: Comp_Glass_Of_Illusion - Group: VIGORGRA_PLUS_SET3 SubGroups: - SubGroup: 0 @@ -48737,28 +50581,34 @@ Body: - Index: 0 Item: Battle_Manual Amount: 20 + UniqueId: true - Index: 1 Item: Bubble_Gum Amount: 20 + UniqueId: true - Index: 2 - Item: Mysterious_Water - Amount: 60 - - Index: 3 Item: Almighty Amount: 20 - - Index: 4 + UniqueId: true + - Index: 3 Item: Mental_Potion Amount: 20 + UniqueId: true + - Index: 4 + Item: Mysterious_Water + Amount: 60 + UniqueId: true - Index: 5 - Item: Comp_Spark_Candy - - Index: 6 - Item: Comp_Magic_Candy - - Index: 7 - Item: Comp_Glass_Of_Illusion - Amount: 10 - - Index: 8 Item: Lapine_Scroll Amount: 11 + UniqueId: true + - Index: 6 + Item: Comp_Glass_Of_Illusion + Amount: 10 + - Index: 7 + Item: Comp_Spark_Candy + - Index: 8 + Item: Comp_Magic_Candy - Group: C_CATPAW_7DAY_BOX SubGroups: - SubGroup: 0 @@ -48766,6 +50616,7 @@ Body: - Index: 0 Item: C_CatPaw_Ticket Duration: 10080 + UniqueId: true - Group: ALMIGHTY_PLUS_BOX3 SubGroups: - SubGroup: 0 @@ -48773,14 +50624,16 @@ Body: - Index: 0 Item: Almighty Amount: 10 + UniqueId: true - Index: 1 - Item: Comp_Mystic_Powder - - Index: 2 - Item: Comp_Tyr's_Blessing - - Index: 3 - Item: Comp_Regenerate_Potion - - Index: 4 Item: Green_Scroll_K2 + UniqueId: true + - Index: 2 + Item: Comp_Mystic_Powder + - Index: 3 + Item: Comp_Tyr's_Blessing + - Index: 4 + Item: Comp_Regenerate_Potion - Group: ALMIGHTY100_PLUSBOX3 SubGroups: - SubGroup: 0 @@ -48788,53 +50641,63 @@ Body: - Index: 0 Item: Almighty Amount: 100 + UniqueId: true - Index: 1 - Item: Comp_Mystic_Powder - Amount: 10 - - Index: 2 - Item: Comp_Tyr's_Blessing - Amount: 10 - - Index: 3 - Item: Comp_Regenerate_Potion - Amount: 10 - - Index: 4 - Item: Comp_Spark_Candy - - Index: 5 - Item: Comp_Magic_Candy - - Index: 6 Item: Green_Scroll_K2 Amount: 11 + UniqueId: true + - Index: 2 + Item: Comp_Mystic_Powder + Amount: 10 + - Index: 3 + Item: Comp_Tyr's_Blessing + Amount: 10 + - Index: 4 + Item: Comp_Regenerate_Potion + Amount: 10 + - Index: 5 + Item: Comp_Spark_Candy + - Index: 6 + Item: Comp_Magic_Candy - Group: 3_LIFE_POTION_PACK10 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Mysterious_Water - Amount: 20 - - Index: 1 Item: Small_Life_Potion Amount: 20 - - Index: 2 + UniqueId: true + - Index: 1 Item: Med_Life_Potion Amount: 20 + UniqueId: true + - Index: 2 + Item: Mysterious_Water + Amount: 20 + UniqueId: true - Index: 3 Item: Love_Scroll + UniqueId: true - Group: 3_LIFE_POTION_10PACK10 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Mysterious_Water - Amount: 200 - - Index: 1 Item: Small_Life_Potion Amount: 200 - - Index: 2 + UniqueId: true + - Index: 1 Item: Med_Life_Potion Amount: 200 + UniqueId: true + - Index: 2 + Item: Mysterious_Water + Amount: 200 + UniqueId: true - Index: 3 Item: Love_Scroll Amount: 11 + UniqueId: true - Group: UNLIMITED_10_BOX6 SubGroups: - SubGroup: 0 @@ -48842,15 +50705,19 @@ Body: - Index: 0 Item: ASPD_Potion Amount: 50 + UniqueId: true - Index: 1 Item: Red_Booster Amount: 100 + UniqueId: true - Index: 2 Item: Cat_Scroll Amount: 11 + UniqueId: true - Index: 3 Item: Comp_M_DEFScroll Amount: 11 + UniqueId: true - Group: UNLIMITED_BOX6 SubGroups: - SubGroup: 0 @@ -48858,38 +50725,48 @@ Body: - Index: 0 Item: ASPD_Potion Amount: 5 + UniqueId: true - Index: 1 Item: Red_Booster Amount: 10 + UniqueId: true - Index: 2 Item: Cat_Scroll + UniqueId: true - Index: 3 Item: Comp_M_DEFScroll + UniqueId: true - Group: REFINE_ORE_BOX16 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Enriched_Elunium - Amount: 5 - - Index: 1 Item: Enriched_Oridecon Amount: 5 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 5 + UniqueId: true - Index: 2 Item: Shadow_Scroll2 + UniqueId: true - Group: REFINE_ORE_BOX16_SET10 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Enriched_Elunium - Amount: 50 - - Index: 1 Item: Enriched_Oridecon Amount: 50 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 50 + UniqueId: true - Index: 2 Item: Shadow_Scroll2 Amount: 11 + UniqueId: true - Group: HD_REFINE_ORE_BOX4 SubGroups: - SubGroup: 0 @@ -48897,31 +50774,39 @@ Body: - Index: 0 Item: HD_Oridecon Amount: 13 + UniqueId: true - Index: 1 Item: HD_Elunium Amount: 13 + UniqueId: true - Index: 2 Item: Mental_Potion Amount: 6 + UniqueId: true - Index: 3 Item: Shadow_Scroll2 Amount: 11 + UniqueId: true - Group: HD_HIGH_REFINE_BOX2 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: HD_Carnium - Amount: 13 - - Index: 1 Item: HD_Bradium Amount: 13 + UniqueId: true + - Index: 1 + Item: HD_Carnium + Amount: 13 + UniqueId: true - Index: 2 Item: Mental_Potion Amount: 6 + UniqueId: true - Index: 3 Item: Shadow_Scroll2 Amount: 11 + UniqueId: true - Group: DEF_SCROLL_BOX2 SubGroups: - SubGroup: 0 @@ -48929,11 +50814,14 @@ Body: - Index: 0 Item: Small_Mana_Potion Amount: 5 + UniqueId: true - Index: 1 Item: M_DEFScroll Amount: 30 + UniqueId: true - Index: 2 Item: May_Gold_Scroll + UniqueId: true - Group: DEF_SCROLL_BOX_SET2 SubGroups: - SubGroup: 0 @@ -48941,78 +50829,99 @@ Body: - Index: 0 Item: Small_Mana_Potion Amount: 50 + UniqueId: true - Index: 1 Item: M_DEFScroll Amount: 300 + UniqueId: true - Index: 2 Item: May_Gold_Scroll Amount: 11 + UniqueId: true - Group: 3_LIFE_POTION_PACK11 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Mysterious_Water - Amount: 20 - - Index: 1 Item: Small_Life_Potion Amount: 20 - - Index: 2 + UniqueId: true + - Index: 1 Item: Med_Life_Potion Amount: 20 + UniqueId: true + - Index: 2 + Item: Mysterious_Water + Amount: 20 + UniqueId: true - Index: 3 Item: General_Scroll + UniqueId: true - Group: 3_LIFE_POTION_10PACK11 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Mysterious_Water - Amount: 200 - - Index: 1 Item: Small_Life_Potion Amount: 200 - - Index: 2 + UniqueId: true + - Index: 1 Item: Med_Life_Potion Amount: 200 + UniqueId: true + - Index: 2 + Item: Mysterious_Water + Amount: 200 + UniqueId: true - Index: 3 Item: General_Scroll Amount: 11 + UniqueId: true - Group: RTC_ANNIV_BOX SubGroups: - SubGroup: 1 List: - Index: 0 Item: Guarantee_Weapon_13Up - Rate: 5000 + Rate: 1 + Duration: 43200 + UniqueId: true - Index: 1 Item: Guarantee_Armor_13Up - Rate: 5000 + Rate: 1 + Duration: 43200 + UniqueId: true - Group: REFINE_ORE_BOX17_SET10 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Enriched_Elunium - Amount: 50 - - Index: 1 Item: Enriched_Oridecon Amount: 50 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 50 + UniqueId: true - Index: 2 Item: Sentimental_Scroll Amount: 11 + UniqueId: true - Group: REFINE_ORE_BOX17 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Enriched_Elunium - Amount: 5 - - Index: 1 Item: Enriched_Oridecon Amount: 5 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 5 + UniqueId: true - Index: 2 Item: Sentimental_Scroll + UniqueId: true - Group: HD_REFINE_ORE_BOX5 SubGroups: - SubGroup: 0 @@ -49020,50 +50929,62 @@ Body: - Index: 0 Item: HD_Oridecon Amount: 13 + UniqueId: true - Index: 1 Item: HD_Elunium Amount: 13 + UniqueId: true - Index: 2 Item: Mental_Potion Amount: 6 + UniqueId: true - Index: 3 Item: Sentimental_Scroll Amount: 11 + UniqueId: true - Group: HD_HIGH_REFINE_BOX3 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: HD_Carnium - Amount: 13 - - Index: 1 Item: HD_Bradium Amount: 13 + UniqueId: true + - Index: 1 + Item: HD_Carnium + Amount: 13 + UniqueId: true - Index: 2 Item: Mental_Potion Amount: 6 + UniqueId: true - Index: 3 Item: Sentimental_Scroll Amount: 11 + UniqueId: true - Group: INFINITY_BOX SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Infinity_Scroll - - Index: 1 Item: Infinity_Drink Amount: 10 + UniqueId: true + - Index: 1 + Item: Infinity_Scroll + UniqueId: true - Group: INFINITY_10_BOX SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Infinity_Scroll - Amount: 11 - - Index: 1 Item: Infinity_Drink Amount: 100 + UniqueId: true + - Index: 1 + Item: Infinity_Scroll + Amount: 11 + UniqueId: true - Group: NEW_VIGORGRA_PACKAGE SubGroups: - SubGroup: 0 @@ -49071,19 +50992,24 @@ Body: - Index: 0 Item: Battle_Manual Amount: 2 + UniqueId: true - Index: 1 - Item: Mysterious_Water - Amount: 6 - - Index: 2 - Item: Tyr's_Blessing - Amount: 2 - - Index: 3 - Item: Small_Mana_Potion - - Index: 4 Item: M_DEFScroll Amount: 6 - - Index: 5 + UniqueId: true + - Index: 2 + Item: Mysterious_Water + Amount: 6 + UniqueId: true + - Index: 3 Item: Bloody_Scroll + UniqueId: true + - Index: 4 + Item: Small_Mana_Potion + UniqueId: true + - Index: 5 + Item: Tyr's_Blessing + Amount: 2 - Group: NEW_VIGORGRA_SET SubGroups: - SubGroup: 0 @@ -49091,21 +51017,26 @@ Body: - Index: 0 Item: Battle_Manual Amount: 20 + UniqueId: true - Index: 1 - Item: Mysterious_Water - Amount: 60 - - Index: 2 - Item: Tyr's_Blessing - Amount: 20 - - Index: 3 - Item: Small_Mana_Potion - Amount: 10 - - Index: 4 Item: M_DEFScroll Amount: 60 - - Index: 5 + UniqueId: true + - Index: 2 + Item: Mysterious_Water + Amount: 60 + UniqueId: true + - Index: 3 Item: Bloody_Scroll Amount: 11 + UniqueId: true + - Index: 4 + Item: Small_Mana_Potion + Amount: 10 + UniqueId: true + - Index: 5 + Item: Tyr's_Blessing + Amount: 20 - Group: LIMITPOWERBOOSTER4_100 SubGroups: - SubGroup: 0 @@ -49113,9 +51044,11 @@ Body: - Index: 0 Item: Limit_Power_Booster Amount: 100 + UniqueId: true - Index: 1 Item: 2017_Special_Scroll Amount: 11 + UniqueId: true - Group: LIMIT_POWER_BOOSTER4 SubGroups: - SubGroup: 0 @@ -49123,78 +51056,80 @@ Body: - Index: 0 Item: Limit_Power_Booster Amount: 10 + UniqueId: true - Index: 1 Item: 2017_Special_Scroll + UniqueId: true - Group: 2017_GSTAR_COSTUMEBOX SubGroups: - SubGroup: 1 List: - Index: 0 - Item: C_Scratching_Cat - Rate: 380 - - Index: 1 - Item: C_Steampunk_Hat - Rate: 380 - - Index: 2 - Item: C_White_Black_Temp - Rate: 380 - - Index: 3 - Item: C_Pope_Ribbon - Rate: 380 - - Index: 4 - Item: C_Wings_of_Michael - Rate: 380 - - Index: 5 - Item: C_Tare_Pope_Casual - Rate: 380 - - Index: 6 - Item: C_BelieversCap - Rate: 380 - - Index: 7 - Item: C_Poring_Soap_Pipe - Rate: 380 - - Index: 8 Item: C_Vampire_Familiar - Rate: 380 - - Index: 9 + Rate: 38 + - Index: 1 Item: C_Ghostring_Tall_Hat - Rate: 380 - - Index: 10 - Item: C_Chatty_Parrot - Rate: 380 - - Index: 11 - Item: C_Clock_Casket - Rate: 380 - - Index: 12 + Rate: 38 + - Index: 2 + Item: C_Steampunk_Hat + Rate: 38 + - Index: 3 + Item: C_Poring_Soap_Pipe + Rate: 38 + - Index: 4 + Item: C_Piggyback + Rate: 38 + - Index: 5 Item: C_Rune_Helm - Rate: 380 - - Index: 13 + Rate: 38 + - Index: 6 Item: C_Shaving_Foam - Rate: 380 + Rate: 38 + - Index: 7 + Item: C_White_Black_Temp + Rate: 38 + - Index: 8 + Item: C_Scratching_Cat + Rate: 38 + - Index: 9 + Item: C_Warm_Cat_Muffler + Rate: 38 + - Index: 10 + Item: C_Clock_Casket + Rate: 38 + - Index: 11 + Item: C_Chatty_Parrot + Rate: 38 + - Index: 12 + Item: C_Teddy_Bear_Hood + Rate: 38 + - Index: 13 + Item: C_Mouton_Life_BL + Rate: 38 - Index: 14 Item: C_Brown_Stall - Rate: 380 + Rate: 38 - Index: 15 - Item: C_Piggyback - Rate: 380 + Item: C_Pope_Ribbon + Rate: 38 - Index: 16 - Item: C_Teddy_Bear_Hood - Rate: 380 + Item: C_BelieversCap + Rate: 38 - Index: 17 - Item: C_Mouton_Life_BL - Rate: 380 + Item: C_Tare_Pope_Casual + Rate: 38 - Index: 18 - Item: C_Warm_Cat_Muffler - Rate: 380 - - Index: 19 - Item: C_Alice_Wig - Rate: 380 - - Index: 20 Item: C_Khalitzburg_Helm_BL - Rate: 1200 - - Index: 21 + Rate: 120 + - Index: 19 Item: C_Wanderer_Sakkat - Rate: 1200 + Rate: 120 + - Index: 20 + Item: C_Alice_Wig + Rate: 38 + - Index: 21 + Item: C_Wings_of_Michael + Rate: 38 - Group: ZERO_MERCHANT_BELL_BOX SubGroups: - SubGroup: 0 @@ -49214,26 +51149,32 @@ Body: - SubGroup: 0 List: - Index: 0 - Item: Enriched_Elunium - Amount: 5 - - Index: 1 Item: Enriched_Oridecon Amount: 5 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 5 + UniqueId: true - Index: 2 Item: Ice_Scroll + UniqueId: true - Group: REFINE_ORE_BOX18_SET10 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Enriched_Elunium - Amount: 50 - - Index: 1 Item: Enriched_Oridecon Amount: 50 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 50 + UniqueId: true - Index: 2 Item: Ice_Scroll Amount: 11 + UniqueId: true - Group: HD_REFINE_ORE_BOX6 SubGroups: - SubGroup: 0 @@ -49241,31 +51182,39 @@ Body: - Index: 0 Item: HD_Oridecon Amount: 13 + UniqueId: true - Index: 1 Item: HD_Elunium Amount: 13 + UniqueId: true - Index: 2 Item: Mental_Potion Amount: 6 + UniqueId: true - Index: 3 Item: Ice_Scroll Amount: 11 + UniqueId: true - Group: HD_HIGH_REFINE_BOX4 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: HD_Carnium - Amount: 13 - - Index: 1 Item: HD_Bradium Amount: 13 + UniqueId: true + - Index: 1 + Item: HD_Carnium + Amount: 13 + UniqueId: true - Index: 2 Item: Mental_Potion Amount: 6 + UniqueId: true - Index: 3 Item: Ice_Scroll Amount: 11 + UniqueId: true - Group: NEW_3_POTION_PACK SubGroups: - SubGroup: 0 @@ -49273,14 +51222,18 @@ Body: - Index: 0 Item: Small_Life_Potion Amount: 15 + UniqueId: true - Index: 1 Item: Med_Life_Potion Amount: 15 + UniqueId: true - Index: 2 Item: Small_Mana_Potion Amount: 5 + UniqueId: true - Index: 3 Item: 2018_New_Year_Scroll + UniqueId: true - Group: NEW_3_POTION_10PACK SubGroups: - SubGroup: 0 @@ -49288,15 +51241,19 @@ Body: - Index: 0 Item: Small_Life_Potion Amount: 150 + UniqueId: true - Index: 1 Item: Med_Life_Potion Amount: 150 + UniqueId: true - Index: 2 Item: Small_Mana_Potion Amount: 50 + UniqueId: true - Index: 3 Item: 2018_New_Year_Scroll Amount: 11 + UniqueId: true - Group: NYANGVINE_BOX10_3 SubGroups: - SubGroup: 0 @@ -49309,6 +51266,7 @@ Body: Amount: 30 - Index: 2 Item: Lunar_New_Year_Scroll + UniqueId: true - Group: NYANGVINE_BOX100_3 SubGroups: - SubGroup: 0 @@ -49322,6 +51280,7 @@ Body: - Index: 2 Item: Lunar_New_Year_Scroll Amount: 11 + UniqueId: true - Group: ALMIGHTY_PLUS_BOX4 SubGroups: - SubGroup: 0 @@ -49329,14 +51288,16 @@ Body: - Index: 0 Item: Almighty Amount: 10 + UniqueId: true - Index: 1 - Item: Comp_Mystic_Powder - - Index: 2 - Item: Comp_Tyr's_Blessing - - Index: 3 - Item: Comp_Regenerate_Potion - - Index: 4 Item: 2018_Spring_Scroll + UniqueId: true + - Index: 2 + Item: Comp_Mystic_Powder + - Index: 3 + Item: Comp_Tyr's_Blessing + - Index: 4 + Item: Comp_Regenerate_Potion - Group: ALMIGHTY100_PLUSBOX4 SubGroups: - SubGroup: 0 @@ -49344,47 +51305,55 @@ Body: - Index: 0 Item: Almighty Amount: 100 + UniqueId: true - Index: 1 - Item: Comp_Mystic_Powder - Amount: 10 - - Index: 2 - Item: Comp_Tyr's_Blessing - Amount: 10 - - Index: 3 - Item: Comp_Regenerate_Potion - Amount: 10 - - Index: 4 - Item: Comp_Spark_Candy - - Index: 5 - Item: Comp_Magic_Candy - - Index: 6 Item: 2018_Spring_Scroll Amount: 11 + UniqueId: true + - Index: 2 + Item: Comp_Mystic_Powder + Amount: 10 + - Index: 3 + Item: Comp_Tyr's_Blessing + Amount: 10 + - Index: 4 + Item: Comp_Regenerate_Potion + Amount: 10 + - Index: 5 + Item: Comp_Spark_Candy + - Index: 6 + Item: Comp_Magic_Candy - Group: REFINE_ORE_BOX19_SET10 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Enriched_Elunium - Amount: 50 - - Index: 1 Item: Enriched_Oridecon Amount: 50 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 50 + UniqueId: true - Index: 2 Item: 2018_Sakura_Scroll Amount: 11 + UniqueId: true - Group: REFINE_ORE_BOX19 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Enriched_Elunium - Amount: 5 - - Index: 1 Item: Enriched_Oridecon Amount: 5 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 5 + UniqueId: true - Index: 2 Item: 2018_Sakura_Scroll + UniqueId: true - Group: HD_REFINE_ORE_BOX7 SubGroups: - SubGroup: 0 @@ -49392,31 +51361,39 @@ Body: - Index: 0 Item: HD_Oridecon Amount: 13 + UniqueId: true - Index: 1 Item: HD_Elunium Amount: 13 + UniqueId: true - Index: 2 Item: Mental_Potion Amount: 6 + UniqueId: true - Index: 3 Item: 2018_Sakura_Scroll Amount: 11 + UniqueId: true - Group: HD_HIGH_REFINE_BOX5 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: HD_Carnium - Amount: 13 - - Index: 1 Item: HD_Bradium Amount: 13 + UniqueId: true + - Index: 1 + Item: HD_Carnium + Amount: 13 + UniqueId: true - Index: 2 Item: Mental_Potion Amount: 6 + UniqueId: true - Index: 3 Item: 2018_Sakura_Scroll Amount: 11 + UniqueId: true - Group: DEF_SCROLL_BOX3 SubGroups: - SubGroup: 0 @@ -49424,11 +51401,14 @@ Body: - Index: 0 Item: Small_Mana_Potion Amount: 5 + UniqueId: true - Index: 1 Item: M_DEFScroll Amount: 30 + UniqueId: true - Index: 2 Item: May_Rainbow_Scroll + UniqueId: true - Group: DEF_SCROLL_BOX_SET3 SubGroups: - SubGroup: 0 @@ -49436,43 +51416,54 @@ Body: - Index: 0 Item: Small_Mana_Potion Amount: 50 + UniqueId: true - Index: 1 Item: M_DEFScroll Amount: 300 + UniqueId: true - Index: 2 Item: May_Rainbow_Scroll Amount: 11 + UniqueId: true - Group: 3_LIFE_POTION_PACK12 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Mysterious_Water - Amount: 20 - - Index: 1 Item: Small_Life_Potion Amount: 20 - - Index: 2 + UniqueId: true + - Index: 1 Item: Med_Life_Potion Amount: 20 + UniqueId: true + - Index: 2 + Item: Mysterious_Water + Amount: 20 + UniqueId: true - Index: 3 Item: Pump_Of_Spirit_Scroll2 + UniqueId: true - Group: 3_LIFE_POTION_10PACK12 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Mysterious_Water - Amount: 200 - - Index: 1 Item: Small_Life_Potion Amount: 200 - - Index: 2 + UniqueId: true + - Index: 1 Item: Med_Life_Potion Amount: 200 + UniqueId: true + - Index: 2 + Item: Mysterious_Water + Amount: 200 + UniqueId: true - Index: 3 Item: Pump_Of_Spirit_Scroll2 Amount: 11 + UniqueId: true - Group: INFINITY_BOX2 SubGroups: - SubGroup: 0 @@ -49480,8 +51471,10 @@ Body: - Index: 0 Item: Infinity_Drink Amount: 10 + UniqueId: true - Index: 1 Item: StarSoul_Scroll + UniqueId: true - Group: INFINITY_10_BOX2 SubGroups: - SubGroup: 0 @@ -49489,9 +51482,11 @@ Body: - Index: 0 Item: Infinity_Drink Amount: 100 + UniqueId: true - Index: 1 Item: StarSoul_Scroll Amount: 11 + UniqueId: true - Group: A_VIGORGRA_SET SubGroups: - SubGroup: 0 @@ -49499,21 +51494,25 @@ Body: - Index: 0 Item: Battle_Manual Amount: 20 + UniqueId: true - Index: 1 - Item: Mysterious_Water - Amount: 60 - - Index: 2 - Item: Tyr's_Blessing - Amount: 20 - - Index: 3 - Item: Small_Mana_Potion - Amount: 10 - - Index: 4 Item: M_DEFScroll Amount: 60 - - Index: 5 + UniqueId: true + - Index: 2 + Item: Mysterious_Water + Amount: 60 + UniqueId: true + - Index: 3 Item: K_Secret_Key Amount: 11 + - Index: 4 + Item: Small_Mana_Potion + Amount: 10 + UniqueId: true + - Index: 5 + Item: Tyr's_Blessing + Amount: 20 - Group: A_VIGORGRA_PACKAGE SubGroups: - SubGroup: 0 @@ -49521,19 +51520,23 @@ Body: - Index: 0 Item: Battle_Manual Amount: 2 + UniqueId: true - Index: 1 - Item: Mysterious_Water - Amount: 6 - - Index: 2 - Item: Tyr's_Blessing - Amount: 2 - - Index: 3 - Item: Small_Mana_Potion - - Index: 4 Item: M_DEFScroll Amount: 6 - - Index: 5 + UniqueId: true + - Index: 2 + Item: Mysterious_Water + Amount: 6 + UniqueId: true + - Index: 3 Item: K_Secret_Key + - Index: 4 + Item: Small_Mana_Potion + UniqueId: true + - Index: 5 + Item: Tyr's_Blessing + Amount: 2 - Group: A_ALMIGHTY100_BOX SubGroups: - SubGroup: 0 @@ -49541,22 +51544,23 @@ Body: - Index: 0 Item: Almighty Amount: 100 + UniqueId: true - Index: 1 - Item: Comp_Mystic_Powder - Amount: 10 - - Index: 2 - Item: Comp_Tyr's_Blessing - Amount: 10 - - Index: 3 - Item: Comp_Regenerate_Potion - Amount: 10 - - Index: 4 - Item: Comp_Spark_Candy - - Index: 5 - Item: Comp_Magic_Candy - - Index: 6 Item: K_Secret_Key Amount: 11 + - Index: 2 + Item: Comp_Mystic_Powder + Amount: 10 + - Index: 3 + Item: Comp_Tyr's_Blessing + Amount: 10 + - Index: 4 + Item: Comp_Regenerate_Potion + Amount: 10 + - Index: 5 + Item: Comp_Spark_Candy + - Index: 6 + Item: Comp_Magic_Candy - Group: A_ALMIGHTY_BOX SubGroups: - SubGroup: 0 @@ -49564,24 +51568,27 @@ Body: - Index: 0 Item: Almighty Amount: 10 + UniqueId: true - Index: 1 - Item: Comp_Mystic_Powder - - Index: 2 - Item: Comp_Tyr's_Blessing - - Index: 3 - Item: Comp_Regenerate_Potion - - Index: 4 Item: K_Secret_Key + - Index: 2 + Item: Comp_Mystic_Powder + - Index: 3 + Item: Comp_Tyr's_Blessing + - Index: 4 + Item: Comp_Regenerate_Potion - Group: A_REFINE_ORE_BOX_SET SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Enriched_Elunium - Amount: 50 - - Index: 1 Item: Enriched_Oridecon Amount: 50 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 50 + UniqueId: true - Index: 2 Item: K_Secret_Key Amount: 11 @@ -49590,11 +51597,13 @@ Body: - SubGroup: 0 List: - Index: 0 - Item: Enriched_Elunium - Amount: 5 - - Index: 1 Item: Enriched_Oridecon Amount: 5 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 5 + UniqueId: true - Index: 2 Item: K_Secret_Key - Group: A_HD_REFINE_ORE_BOX @@ -49604,12 +51613,15 @@ Body: - Index: 0 Item: HD_Oridecon Amount: 13 + UniqueId: true - Index: 1 Item: HD_Elunium Amount: 13 + UniqueId: true - Index: 2 Item: Mental_Potion Amount: 6 + UniqueId: true - Index: 3 Item: K_Secret_Key Amount: 11 @@ -49618,14 +51630,17 @@ Body: - SubGroup: 0 List: - Index: 0 - Item: HD_Carnium - Amount: 13 - - Index: 1 Item: HD_Bradium Amount: 13 + UniqueId: true + - Index: 1 + Item: HD_Carnium + Amount: 13 + UniqueId: true - Index: 2 Item: Mental_Potion Amount: 6 + UniqueId: true - Index: 3 Item: K_Secret_Key Amount: 11 @@ -49636,6 +51651,7 @@ Body: - Index: 0 Item: Limit_Power_Booster Amount: 100 + UniqueId: true - Index: 1 Item: K_Secret_Key Amount: 11 @@ -49646,6 +51662,7 @@ Body: - Index: 0 Item: Limit_Power_Booster Amount: 10 + UniqueId: true - Index: 1 Item: K_Secret_Key - Group: A_DEF_SCROLL_BOX_SET @@ -49655,9 +51672,11 @@ Body: - Index: 0 Item: Small_Mana_Potion Amount: 50 + UniqueId: true - Index: 1 Item: M_DEFScroll Amount: 300 + UniqueId: true - Index: 2 Item: K_Secret_Key Amount: 11 @@ -49668,9 +51687,11 @@ Body: - Index: 0 Item: Small_Mana_Potion Amount: 5 + UniqueId: true - Index: 1 Item: M_DEFScroll Amount: 30 + UniqueId: true - Index: 2 Item: K_Secret_Key - Group: A_UNLIMITED_10_BOX @@ -49680,9 +51701,11 @@ Body: - Index: 0 Item: ASPD_Potion Amount: 50 + UniqueId: true - Index: 1 Item: Red_Booster Amount: 100 + UniqueId: true - Index: 2 Item: Comp_M_DEFScroll Amount: 11 @@ -49696,9 +51719,11 @@ Body: - Index: 0 Item: ASPD_Potion Amount: 5 + UniqueId: true - Index: 1 Item: Red_Booster Amount: 10 + UniqueId: true - Index: 2 Item: Comp_M_DEFScroll - Index: 3 @@ -49709,16 +51734,22 @@ Body: List: - Index: 0 Item: Savage_BBQ + UniqueId: true - Index: 1 Item: Wug_Blood_Cocktail + UniqueId: true - Index: 2 Item: Minor_Brisket + UniqueId: true - Index: 3 Item: Siroma_Icetea + UniqueId: true - Index: 4 Item: Drocera_Herb_Stew + UniqueId: true - Index: 5 Item: Petti_Tail_Noodle + UniqueId: true - Group: COSTUME_SET1_KR SubGroups: - SubGroup: 0 @@ -49728,444 +51759,470 @@ Body: - SubGroup: 1 List: - Index: 0 - Item: C_Boitata_Hat_J - Rate: 500 + Item: C_Blink_Eyes_Frozen + Rate: 50 - Index: 1 - Item: C_Brabery_Hat - Rate: 500 + Item: C_Charm_Of_Mistic_Froze + Rate: 50 - Index: 2 - Item: C_Black_Glasses - Rate: 500 + Item: aegis_19868 + Rate: 50 - Index: 3 - Item: C_Sakura_Coronet - Rate: 500 + Item: aegis_410245 + Rate: 50 - Index: 4 - Item: C_Full_Bloom_Hairpin - Rate: 500 + Item: C_Foxtail + Rate: 50 - Index: 5 - Item: C_Blue_Pajamas_Hat - Rate: 500 + Item: aegis_400496 + Rate: 50 - Index: 6 - Item: C_Pink_Fur_Hat - Rate: 500 + Item: aegis_420242 + Rate: 50 - Index: 7 - Item: C_Flower_Summer_Hat - Rate: 500 + Item: C_Cat_Mouth + Rate: 50 - Index: 8 - Item: C_Black_Shiba_Inu_Hat - Rate: 500 + Item: C_Whikebain_Ears_TW + Rate: 50 - Index: 9 - Item: C_Love_Daddy - Rate: 500 + Item: C_Neev_Barrette + Rate: 50 - Index: 10 - Item: C_Sting_Silk_Ribbon - Rate: 500 + Item: C_FluffyWing_TW + Rate: 50 - Index: 11 - Item: C_Fairy_Feathers - Rate: 500 + Item: C_Blue_Ribbon_V + Rate: 50 - Index: 12 - Item: C_Jioia_TW - Rate: 500 + Item: C_Stall_Of_Angel + Rate: 50 - Index: 13 - Item: C_Lady_Tanee_TW - Rate: 500 + Item: C_Sorc_Night_Cap + Rate: 50 - Index: 14 - Item: C_Whale_Cap - Rate: 500 + Item: C_Helmet_Of_Siegfried_J + Rate: 50 - Index: 15 - Item: C_Carefree_Face - Rate: 500 + Item: aegis_420181 + Rate: 50 - Index: 16 - Item: C_Cherry_Ribbon - Rate: 500 + Item: C_Little_Abyss_Dragon + Rate: 50 - Index: 17 - Item: C_Imperial_Glory - Rate: 500 + Item: C_Blue_Rose_Ornament + Rate: 50 - Index: 18 - Item: C_Sailor_Collar_WH - Rate: 500 + Item: C_Blue_Rose_Eyepatch + Rate: 50 - Index: 19 - Item: C_Feather_Stola - Rate: 500 + Item: C_L_Ribbon_M_BU + Rate: 50 - Group: SEALED_SCROLL3 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: White_Slim_Potion_Box - Rate: 10000 - - SubGroup: 2 - List: - - Index: 0 + Item: Sealed_Card + Rate: 10 + Announced: true + - Index: 1 Item: Guarantee_Weapon_9Up Rate: 1 - - Index: 1 - Item: Guarantee_Weapon_7Up - Rate: 59 + Announced: true - Index: 2 Item: Guarantee_Armor_9Up Rate: 1 + Announced: true - Index: 3 + Item: Guarantee_Weapon_7Up + Rate: 59 + Announced: true + - Index: 4 Item: Guarantee_Armor_7Up Rate: 59 - - Index: 4 - Item: Treasure_Box - Rate: 1000 + Announced: true - Index: 5 - Item: E_WOB_Rune - Rate: 500 - - Index: 6 - Item: E_WOB_Schwaltz - Rate: 500 - - Index: 7 - Item: E_WOB_Rachel - Rate: 500 - - Index: 8 - Item: E_WOB_Local - Rate: 500 - - Index: 9 - Item: White_Slim_Pot_Box2 - Rate: 1000 - - Index: 10 - Item: Poison_Bottle_Box2 - Rate: 1000 - - Index: 11 - Item: Potion_Box - Rate: 1000 - - Index: 12 - Item: C_Wing_Of_Fly_1Day_Box - Rate: 1000 - - Index: 13 - Item: C_Wing_Of_Fly_5Day_Box - Rate: 245 - - Index: 14 - Item: Shadow_Cube - Rate: 2500 - - Index: 15 - Item: Sealed_Card - Rate: 10 - - Index: 16 Item: New_Year_Shadow_Cube Rate: 125 + Announced: true + - Index: 6 + Item: Shadow_Cube + Rate: 2500 + - Index: 7 + Item: C_Wing_Of_Fly_5Day_Box + Rate: 245 + - Index: 8 + Item: E_WOB_Rune + Rate: 500 + Amount: 5 + - Index: 9 + Item: E_WOB_Schwaltz + Rate: 500 + Amount: 5 + - Index: 10 + Item: E_WOB_Rachel + Rate: 500 + Amount: 5 + - Index: 11 + Item: E_WOB_Local + Rate: 500 + Amount: 5 + - Index: 12 + Item: Poison_Bottle_Box2 + Rate: 1000 + - Index: 13 + Item: C_Wing_Of_Fly_1Day_Box + Rate: 1000 + - Index: 14 + Item: Potion_Box + Rate: 1000 + - Index: 15 + Item: White_Slim_Pot_Box2 + Rate: 1000 + - Index: 16 + Item: Treasure_Box + Rate: 1000 + Amount: 3 - Group: STATUS_DECREASE_SCROLL SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Guarantee_Weapon_9Up - Rate: 9 - - Index: 1 - Item: Guarantee_Armor_9Up - Rate: 9 - - Index: 2 Item: Guarantee_Weapon_11Up Rate: 1 - - Index: 3 + Announced: true + - Index: 1 Item: Guarantee_Armor_11Up Rate: 1 + Announced: true + - Index: 2 + Item: Guarantee_Weapon_9Up + Rate: 9 + Announced: true + - Index: 3 + Item: Guarantee_Armor_9Up + Rate: 9 + Announced: true - Index: 4 - Item: Costume_Exchange - Rate: 1000 - - Index: 5 - Item: Treasure_Box - Rate: 900 - - Index: 6 - Item: Comp_Battle_Manual - Rate: 1000 - - Index: 7 - Item: Delicious_Shaved_Ice - Rate: 300 - - Index: 8 - Item: Fit_Pipe - Rate: 300 - - Index: 9 - Item: Gril's_Naivety - Rate: 200 - - Index: 10 - Item: Old_Ore_Box - Rate: 1000 - - Index: 11 - Item: Potion_Box - Rate: 800 - - Index: 12 - Item: C_Wing_Of_Fly_1Day_Box - Rate: 1000 - - Index: 13 - Item: Minus_Str - Rate: 500 - - Index: 14 - Item: Minus_Agi - Rate: 500 - - Index: 15 - Item: Minus_Vit - Rate: 500 - - Index: 16 - Item: Minus_Int - Rate: 500 - - Index: 17 - Item: Minus_Dex - Rate: 500 - - Index: 18 - Item: Minus_Luk - Rate: 500 - - Index: 19 Item: Minus_Str_Box Rate: 80 - - Index: 20 + Announced: true + - Index: 5 Item: Minus_Agi_Box Rate: 80 - - Index: 21 + Announced: true + - Index: 6 Item: Minus_Vit_Box Rate: 80 - - Index: 22 + Announced: true + - Index: 7 Item: Minus_Int_Box Rate: 80 - - Index: 23 + Announced: true + - Index: 8 Item: Minus_Dex_Box Rate: 80 - - Index: 24 + Announced: true + - Index: 9 Item: Minus_Luk_Box Rate: 80 + Announced: true + - Index: 10 + Item: Minus_Str + Rate: 500 + - Index: 11 + Item: Minus_Agi + Rate: 500 + - Index: 12 + Item: Minus_Vit + Rate: 500 + - Index: 13 + Item: Minus_Int + Rate: 500 + - Index: 14 + Item: Minus_Dex + Rate: 500 + - Index: 15 + Item: Minus_Luk + Rate: 500 + - Index: 16 + Item: Fit_Pipe + Rate: 300 + Amount: 3 + - Index: 17 + Item: Delicious_Shaved_Ice + Rate: 300 + Amount: 3 + - Index: 18 + Item: Gril's_Naivety + Rate: 200 + Amount: 3 + - Index: 19 + Item: Potion_Box + Rate: 800 + - Index: 20 + Item: Costume_Exchange + Rate: 1000 + - Index: 21 + Item: Treasure_Box + Rate: 900 + Amount: 3 + - Index: 22 + Item: Old_Ore_Box + Rate: 1000 + - Index: 23 + Item: Comp_Battle_Manual + Rate: 1000 + - Index: 24 + Item: C_Wing_Of_Fly_1Day_Box + Rate: 1000 - Group: MAD_BUNNY_SCROLL SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Mad_Bunny - Rate: 2212 - - Index: 1 - Item: White_Slim_Potion_Box - Rate: 7788 - - SubGroup: 2 - List: - - Index: 0 - Item: Guarantee_Weapon_9Up - Rate: 9 - - Index: 1 - Item: Guarantee_Weapon_7Up - Rate: 15 - - Index: 2 - Item: Guarantee_Armor_9Up - Rate: 9 - - Index: 3 - Item: Guarantee_Armor_7Up - Rate: 15 - - Index: 4 Item: Guarantee_Weapon_11Up Rate: 1 - - Index: 5 + Announced: true + - Index: 1 Item: Guarantee_Armor_11Up Rate: 1 + Announced: true + - Index: 2 + Item: Guarantee_Weapon_9Up + Rate: 9 + Announced: true + - Index: 3 + Item: Guarantee_Armor_9Up + Rate: 9 + Announced: true + - Index: 4 + Item: Guarantee_Weapon_7Up + Rate: 15 + Announced: true + - Index: 5 + Item: Guarantee_Armor_7Up + Rate: 15 + Announced: true - Index: 6 - Item: Blacksmith_Blessing - Rate: 500 - - Index: 7 - Item: J_Shop_Coupon - Rate: 500 - - Index: 8 - Item: Comp_Battle_Manual - Rate: 1000 - - Index: 9 - Item: Comp_Bubble_Gum - Rate: 1500 - - Index: 10 - Item: White_Slim_Pot_Box2 - Rate: 880 - - Index: 11 - Item: Poison_Bottle_Box2 - Rate: 1000 - - Index: 12 - Item: Old_Ore_Box - Rate: 1000 - - Index: 13 - Item: Minus_Str - Rate: 250 - - Index: 14 - Item: Minus_Agi - Rate: 250 - - Index: 15 - Item: Minus_Vit - Rate: 250 - - Index: 16 - Item: Minus_Int - Rate: 250 - - Index: 17 - Item: Minus_Dex - Rate: 250 - - Index: 18 - Item: Minus_Luk - Rate: 250 - - Index: 19 - Item: Mad_Bunny_Scroll + Item: Sealed_Hat_Box Rate: 70 - - Index: 20 - Item: Shadow_Cube_Weapon - Rate: 319 - - Index: 21 - Item: Shadow_Cube_Armor - Rate: 285 - - Index: 22 - Item: Shadow_Cube_Shield - Rate: 271 - - Index: 23 - Item: Shadow_Cube_Shoes - Rate: 229 - - Index: 24 - Item: Shadow_Cube_Pendant - Rate: 195 - - Index: 25 - Item: Shadow_Cube_Earing - Rate: 201 - - Index: 26 + Announced: true + - Index: 7 Item: Mad_Bunny_K Rate: 250 - - Index: 27 + Announced: true + - Index: 8 Item: Mad_Bunny_K_ Rate: 250 + Announced: true + - Index: 9 + Item: Shadow_Cube_Pendant + Rate: 195 + - Index: 10 + Item: Shadow_Cube_Earing + Rate: 201 + - Index: 11 + Item: Shadow_Cube_Armor + Rate: 285 + - Index: 12 + Item: Shadow_Cube_Shield + Rate: 271 + - Index: 13 + Item: Shadow_Cube_Shoes + Rate: 229 + - Index: 14 + Item: Shadow_Cube_Weapon + Rate: 319 + - Index: 15 + Item: Minus_Str + Rate: 250 + - Index: 16 + Item: Minus_Agi + Rate: 250 + - Index: 17 + Item: Minus_Vit + Rate: 250 + - Index: 18 + Item: Minus_Int + Rate: 250 + - Index: 19 + Item: Minus_Dex + Rate: 250 + - Index: 20 + Item: Minus_Luk + Rate: 250 + - Index: 21 + Item: White_Slim_Pot_Box2 + Rate: 880 + - Index: 22 + Item: Poison_Bottle_Box2 + Rate: 1000 + - Index: 23 + Item: Comp_Bubble_Gum + Rate: 1500 + Amount: 2 + - Index: 24 + Item: J_Shop_Coupon + Rate: 500 + - Index: 25 + Item: Old_Ore_Box + Rate: 1000 + - Index: 26 + Item: Comp_Battle_Manual + Rate: 1000 + Amount: 2 + - Index: 27 + Item: Blacksmith_Blessing + Rate: 500 - Group: SEALED_HAT_BOX SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Wondering_Wolf_Helm - Rate: 2000 - - Index: 1 - Item: Holy_Marching_Hat_J - Rate: 2000 - - Index: 2 - Item: Imp_Hat - Rate: 2000 - - Index: 3 Item: Evil_Marcher_Hat - Rate: 2000 - - Index: 4 + Rate: 1 + - Index: 1 + Item: Wondering_Wolf_Helm + Rate: 1 + - Index: 2 Item: Tare_Neko_Cru - Rate: 2000 + Rate: 1 + - Index: 3 + Item: Imp_Hat + Rate: 1 + - Index: 4 + Item: Holy_Marching_Hat_J + Rate: 1 - Group: SEALED_HAT_BOX2 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Mask_Of_Ifrit - Rate: 2000 + Item: Heart_Wing_Hairband + Rate: 1 - Index: 1 - Item: Drooping_Morocc_Minion - Rate: 2000 + Item: Tare_Neko_Cru + Rate: 1 - Index: 2 Item: Glory_FB_Hat - Rate: 2000 + Rate: 1 - Index: 3 - Item: Tare_Neko_Cru - Rate: 2000 + Item: Drooping_Morocc_Minion + Rate: 1 - Index: 4 - Item: Heart_Wing_Hairband - Rate: 2000 + Item: Mask_Of_Ifrit + Rate: 1 - Group: IMPROVED_NOMALBOX SubGroups: - SubGroup: 0 List: - Index: 0 + Item: White_Slim_Potion_B + Amount: 50 + - Index: 1 Item: First_Aid_Kit_B - SubGroup: 1 List: - Index: 0 - Item: Old_Blue_Box - Rate: 150 - - Index: 1 - Item: Branch_Of_Dead_Tree - Rate: 20 - - Index: 2 - Item: Old_Card_Album - Rate: 10 - - Index: 3 - Item: Old_Violet_Box - Rate: 150 - - Index: 4 - Item: Inspector_Certificate - Rate: 150 - - Index: 5 - Item: Poison_Bottle - Rate: 60 - - Index: 6 - Item: Oridecon - Rate: 150 - - Index: 7 - Item: Elunium - Rate: 150 - - Index: 8 - Item: White_Potion_B - Rate: 600 - Amount: 2 - - Index: 9 - Item: Yellow_Potion_B - Rate: 600 - Amount: 4 - - Index: 10 - Item: Red_Slim_Potion_B - Rate: 1000 - Amount: 6 - - Index: 11 - Item: Orange_Potion_B - Rate: 600 - Amount: 6 - - Index: 12 - Item: Red_Potion_B - Rate: 600 - Amount: 8 - - Index: 13 - Item: Green_Potion_B - Rate: 600 - Amount: 5 - - Index: 14 - Item: Blue_Potion_B - Rate: 600 - - Index: 15 Item: White_Slim_Potion_B - Rate: 1000 - Amount: 50 - - Index: 16 + Rate: 100 + Amount: 2 + - Index: 1 Item: Yellow_Slim_Potion_B - Rate: 1000 + Rate: 100 Amount: 4 + - Index: 2 + Item: Red_Slim_Potion_B + Rate: 100 + Amount: 6 + - Index: 3 + Item: White_Potion_B + Rate: 60 + Amount: 2 + - Index: 4 + Item: Yellow_Potion_B + Rate: 60 + Amount: 4 + - Index: 5 + Item: Orange_Potion_B + Rate: 60 + Amount: 6 + - Index: 6 + Item: Red_Potion_B + Rate: 60 + Amount: 8 + - Index: 7 + Item: Green_Potion_B + Rate: 60 + Amount: 5 + - Index: 8 + Item: Blue_Potion_B + Rate: 60 + - Index: 9 + Item: Awakening_Potion_B + Rate: 50 + - Index: 10 + Item: Berserk_Potion_B + Rate: 50 + - Index: 11 + Item: Old_Violet_Box + Rate: 15 + - Index: 12 + Item: Old_Blue_Box + Rate: 15 + - Index: 13 + Item: Inspector_Certificate + Rate: 15 + - Index: 14 + Item: Oridecon + Rate: 15 + - Index: 15 + Item: Elunium + Rate: 15 + - Index: 16 + Item: Speed_Up_Potion_B + Rate: 15 - Index: 17 - Item: Bloody_Dead_Branch + Item: Water_Of_Darkness_B Rate: 10 - Index: 18 - Item: Comp_Battle_Manual - Rate: 20 + Item: Poison_Bottle + Rate: 6 - Index: 19 - Item: Comp_Bubble_Gum - Rate: 20 - - Index: 20 - Item: Comp_Insurance - Rate: 20 - - Index: 21 - Item: Berserk_Potion_B - Rate: 500 - - Index: 22 - Item: Awakening_Potion_B - Rate: 500 - - Index: 23 - Item: Speed_Up_Potion_B - Rate: 150 - - Index: 24 - Item: Water_Of_Darkness_B - Rate: 100 - - Index: 25 Item: Cookie_Bag_B - Rate: 60 - - Index: 26 + Rate: 6 + - Index: 20 Item: Sesame_Pastry_B - Rate: 60 - - Index: 27 + Rate: 6 + - Index: 21 Item: Honey_Pastry_B - Rate: 60 - - Index: 28 + Rate: 6 + - Index: 22 Item: Rainbow_Cake_B - Rate: 60 + Rate: 6 + - Index: 23 + Item: Comp_Insurance + Rate: 2 + - Index: 24 + Item: Comp_Battle_Manual + Rate: 2 + - Index: 25 + Item: Comp_Bubble_Gum + Rate: 2 + - Index: 26 + Item: Branch_Of_Dead_Tree + Rate: 2 + - Index: 27 + Item: Bloody_Dead_Branch + Rate: 1 + - Index: 28 + Item: Old_Card_Album + Rate: 1 - Index: 29 - Item: Improved_NomalBox - Rate: 1000 + Item: Improved_WoodenBox + Rate: 100 - Group: IMPROVED_WOODENBOX SubGroups: - SubGroup: 0 @@ -50180,305 +52237,309 @@ Body: - SubGroup: 1 List: - Index: 0 - Item: Branch_Of_Dead_Tree - Rate: 80 - - Index: 1 - Item: Old_Card_Album - Rate: 80 - - Index: 2 - Item: Old_Violet_Box - Rate: 350 - - Index: 3 - Item: Inspector_Certificate - Rate: 350 - - Index: 4 - Item: Poison_Bottle - Rate: 307 - - Index: 5 - Item: Oridecon - Rate: 310 - - Index: 6 - Item: Elunium - Rate: 310 - - Index: 7 - Item: Guarantee_Weapon_7Up - Rate: 1 - - Index: 8 - Item: Guarantee_Armor_7Up - Rate: 1 - - Index: 9 - Item: Red_Slim_Potion_B - Rate: 1000 - Amount: 30 - - Index: 10 - Item: Green_Potion_B - Rate: 550 - Amount: 30 - - Index: 11 - Item: Blue_Potion_B - Rate: 550 - Amount: 5 - - Index: 12 Item: White_Slim_Potion_B Rate: 1000 Amount: 10 - - Index: 13 + - Index: 1 Item: Yellow_Slim_Potion_B Rate: 1000 Amount: 20 - - Index: 14 - Item: Bloody_Dead_Branch - Rate: 80 - - Index: 15 - Item: Comp_Battle_Manual - Rate: 80 - - Index: 16 - Item: Comp_Bubble_Gum - Rate: 80 - - Index: 17 - Item: Comp_Insurance - Rate: 80 - - Index: 18 - Item: E_WOB_Rune - Rate: 80 - - Index: 19 - Item: E_WOB_Schwaltz - Rate: 80 - - Index: 20 - Item: E_WOB_Rachel - Rate: 80 - - Index: 21 - Item: E_WOB_Local - Rate: 80 - - Index: 22 - Item: Old_Bleu_Box - Rate: 350 - - Index: 23 - Item: Berserk_Potion_B + - Index: 2 + Item: Red_Slim_Potion_B + Rate: 1000 + Amount: 30 + - Index: 3 + Item: Blue_Potion_B Rate: 550 - Amount: 10 - - Index: 24 + Amount: 5 + - Index: 4 + Item: Green_Potion_B + Rate: 550 + Amount: 30 + - Index: 5 Item: Awakening_Potion_B Rate: 550 Amount: 10 - - Index: 25 + - Index: 6 + Item: Berserk_Potion_B + Rate: 550 + Amount: 10 + - Index: 7 + Item: Old_Violet_Box + Rate: 350 + - Index: 8 + Item: Old_Bleu_Box + Rate: 350 + - Index: 9 + Item: Inspector_Certificate + Rate: 350 + - Index: 10 + Item: Oridecon + Rate: 310 + - Index: 11 + Item: Elunium + Rate: 310 + - Index: 12 Item: Speed_Up_Potion_B Rate: 310 - - Index: 26 + - Index: 13 Item: Water_Of_Darkness_B Rate: 310 - - Index: 27 + - Index: 14 + Item: Poison_Bottle + Rate: 307 + - Index: 15 Item: Sesame_Pastry_B Rate: 300 - - Index: 28 + - Index: 16 Item: Honey_Pastry_B Rate: 300 - - Index: 29 + - Index: 17 Item: Rainbow_Cake_B Rate: 300 + - Index: 18 + Item: Comp_Insurance + Rate: 80 + - Index: 19 + Item: Comp_Battle_Manual + Rate: 80 + - Index: 20 + Item: Comp_Bubble_Gum + Rate: 80 + - Index: 21 + Item: Branch_Of_Dead_Tree + Rate: 80 + - Index: 22 + Item: Bloody_Dead_Branch + Rate: 80 + - Index: 23 + Item: Old_Card_Album + Rate: 80 + - Index: 24 + Item: E_WOB_Rune + Rate: 80 + - Index: 25 + Item: E_WOB_Schwaltz + Rate: 80 + - Index: 26 + Item: E_WOB_Rachel + Rate: 80 + - Index: 27 + Item: E_WOB_Local + Rate: 80 + - Index: 28 + Item: Guarantee_Weapon_7Up + Rate: 1 + - Index: 29 + Item: Guarantee_Armor_7Up + Rate: 1 - Index: 30 - Item: Improved_WoodenBox + Item: Sealed_Hat_Box Rate: 1 - Index: 31 - Item: Improved_WoodenBox + Item: Improved_GoldenBox Rate: 500 - Group: IMPROVED_GOLDENBOX SubGroups: - SubGroup: 0 List: - Index: 0 + Item: White_Slim_Pot_Box2 + - Index: 1 Item: Poison_Bottle Amount: 10 - - Index: 1 - Item: White_Slim_Pot_Box2 - Index: 2 - Item: E_Blessing_10_Scr_Box - - Index: 3 - Item: E_Inc_Agi_10_Scr_Box - - Index: 4 Item: Speed_Up_Potion_B Amount: 10 + - Index: 3 + Item: E_Blessing_10_Scr_Box + - Index: 4 + Item: E_Inc_Agi_10_Scr_Box - Index: 5 Item: Improved_NomalBox Amount: 5 - SubGroup: 1 List: - Index: 0 - Item: Branch_Of_Dead_Tree - Rate: 200 - Amount: 3 - - Index: 1 - Item: Old_Card_Album - Rate: 200 - - Index: 2 - Item: Old_Violet_Box - Rate: 300 - Amount: 3 - - Index: 3 - Item: Inspector_Certificate - Rate: 300 - Amount: 12 - - Index: 4 - Item: Oridecon - Rate: 200 - Amount: 12 - - Index: 5 - Item: Elunium - Rate: 200 - Amount: 12 - - Index: 6 - Item: Guarantee_Weapon_7Up - Rate: 1 - - Index: 7 - Item: Guarantee_Armor_7Up - Rate: 1 - - Index: 8 - Item: Blue_Potion_B - Rate: 1000 - Amount: 12 - - Index: 9 Item: White_Slim_Potion_B Rate: 1000 Amount: 40 + - Index: 1 + Item: Blue_Potion_B + Rate: 1000 + Amount: 12 + - Index: 2 + Item: Awakening_Potion_B + Rate: 1000 + Amount: 12 + - Index: 3 + Item: Berserk_Potion_B + Rate: 1000 + Amount: 12 + - Index: 4 + Item: Old_Violet_Box + Rate: 300 + Amount: 3 + - Index: 5 + Item: Old_Bleu_Box + Rate: 300 + Amount: 3 + - Index: 6 + Item: Inspector_Certificate + Rate: 300 + Amount: 12 + - Index: 7 + Item: Oridecon + Rate: 200 + Amount: 12 + - Index: 8 + Item: Elunium + Rate: 200 + Amount: 12 + - Index: 9 + Item: Water_Of_Darkness_B + Rate: 200 + Amount: 12 - Index: 10 - Item: Bloody_Dead_Branch + Item: Sesame_Pastry_B Rate: 200 + Amount: 12 - Index: 11 - Item: Magic_Card_Album - Rate: 185 + Item: Honey_Pastry_B + Rate: 200 + Amount: 12 - Index: 12 - Item: Comp_Battle_Manual + Item: Rainbow_Cake_B Rate: 200 + Amount: 12 - Index: 13 - Item: Comp_Bubble_Gum + Item: Reward_Job_BM25 Rate: 200 + Amount: 2 - Index: 14 Item: Comp_Insurance Rate: 200 - Index: 15 + Item: Comp_Battle_Manual + Rate: 200 + - Index: 16 + Item: Comp_Bubble_Gum + Rate: 200 + - Index: 17 + Item: Branch_Of_Dead_Tree + Rate: 200 + Amount: 3 + - Index: 18 + Item: Bloody_Dead_Branch + Rate: 200 + - Index: 19 + Item: Old_Card_Album + Rate: 200 + - Index: 20 + Item: Magic_Card_Album + Rate: 185 + - Index: 21 Item: E_WOB_Rune Rate: 160 Amount: 3 - - Index: 16 + - Index: 22 Item: E_WOB_Schwaltz Rate: 160 Amount: 3 - - Index: 17 + - Index: 23 Item: E_WOB_Rachel Rate: 160 Amount: 3 - - Index: 18 + - Index: 24 Item: E_WOB_Local Rate: 160 Amount: 3 - - Index: 19 - Item: Old_Bleu_Box - Rate: 300 - Amount: 3 - - Index: 20 - Item: Reward_Job_BM25 - Rate: 200 - Amount: 2 - - Index: 21 - Item: Berserk_Potion_B - Rate: 1000 - Amount: 12 - - Index: 22 - Item: Awakening_Potion_B - Rate: 1000 - Amount: 12 - - Index: 23 - Item: Water_Of_Darkness_B - Rate: 200 - Amount: 12 - - Index: 24 - Item: Sesame_Pastry_B - Rate: 200 - Amount: 12 - Index: 25 - Item: Honey_Pastry_B - Rate: 200 - Amount: 12 + Item: Guarantee_Weapon_7Up + Rate: 1 - Index: 26 - Item: Rainbow_Cake_B - Rate: 200 - Amount: 12 + Item: Guarantee_Armor_7Up + Rate: 1 - Index: 27 - Item: Improved_GoldenBox + Item: Sealed_Hat_Box2 Rate: 3 - Index: 28 - Item: Improved_GoldenBox + Item: Sealed_Hat_Box Rate: 3 - Index: 29 - Item: Improved_GoldenBox + Item: Improved_PlatinumBox Rate: 1667 - Group: IMPROVED_PLATINUMBOX SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Poison_Bottle_Box2 - - Index: 1 Item: Potion_Box - - Index: 2 - Item: E_S_Life_Potion_Box - - Index: 3 - Item: E_Abrasive_Box10 - - Index: 4 - Item: E_Blessing_10_Scr_Box - - Index: 5 - Item: E_Inc_Agi_10_Scr_Box - - Index: 6 + - Index: 1 Item: Speed_Up_Potion_B Amount: 30 + - Index: 2 + Item: Poison_Bottle_Box2 + - Index: 3 + Item: E_S_Life_Potion_Box + - Index: 4 + Item: E_Abrasive_Box10 + - Index: 5 + Item: E_Blessing_10_Scr_Box + - Index: 6 + Item: E_Inc_Agi_10_Scr_Box - Index: 7 Item: Improved_NomalBox Amount: 30 - SubGroup: 1 List: - Index: 0 + Item: White_Slim_Pot_Box2 + Rate: 1000 + - Index: 1 + Item: Oridecon_Box + Rate: 1000 + Amount: 10 + - Index: 2 + Item: Elunium_Box + Rate: 1000 + Amount: 10 + - Index: 3 Item: Branch_Of_Dead_Tree Rate: 1000 Amount: 10 - - Index: 1 - Item: Old_Card_Album - Rate: 300 - Amount: 10 - - Index: 2 - Item: Sigrun's_Wing - Rate: 1 - - Index: 3 - Item: Guarantee_Weapon_9Up - Rate: 1 - Index: 4 - Item: Guarantee_Weapon_7Up - Rate: 3 - - Index: 5 - Item: Guarantee_Armor_9Up - Rate: 1 - - Index: 6 - Item: Guarantee_Armor_7Up - Rate: 3 - - Index: 7 - Item: Bloody_Dead_Branch - Rate: 300 - Amount: 3 - - Index: 8 Item: First_Aid_Kit Rate: 1000 Amount: 10 - - Index: 9 - Item: Magic_Card_Album - Rate: 300 - Amount: 3 - - Index: 10 - Item: Comp_Bubble_Gum - Rate: 300 + - Index: 5 + Item: Anodyne_B + Rate: 1000 Amount: 10 - - Index: 11 + - Index: 6 Item: Comp_Insurance Rate: 300 Amount: 10 + - Index: 7 + Item: Battle_Manual100 + Rate: 300 + Amount: 3 + - Index: 8 + Item: Comp_Bubble_Gum + Rate: 300 + Amount: 10 + - Index: 9 + Item: Bloody_Dead_Branch + Rate: 300 + Amount: 3 + - Index: 10 + Item: Old_Card_Album + Rate: 300 + Amount: 10 + - Index: 11 + Item: Magic_Card_Album + Rate: 300 + Amount: 3 - Index: 12 Item: E_WOB_Rune Rate: 300 @@ -50496,114 +52557,119 @@ Body: Rate: 300 Amount: 10 - Index: 16 - Item: White_Slim_Pot_Box2 - Rate: 1000 - - Index: 17 Item: Reward_Job_BM25 Rate: 300 Amount: 10 - - Index: 18 - Item: Elunium_Box - Rate: 1000 - Amount: 10 - - Index: 19 - Item: Oridecon_Box - Rate: 1000 - Amount: 10 - - Index: 20 - Item: Battle_Manual100 - Rate: 300 - Amount: 3 - - Index: 21 + - Index: 17 Item: E_Str_Dish_Box Rate: 100 - - Index: 22 + - Index: 18 Item: E_Agi_Dish_Box Rate: 100 - - Index: 23 + - Index: 19 Item: E_Int_Dish_Box Rate: 100 - - Index: 24 + - Index: 20 Item: E_Dex_Dish_Box Rate: 100 - - Index: 25 + - Index: 21 Item: E_Luk_Dish_Box Rate: 100 - - Index: 26 + - Index: 22 Item: E_Vit_Dish_Box Rate: 100 - - Index: 27 - Item: Anodyne_B - Rate: 1000 - Amount: 10 - - Index: 28 - Item: Improved_PlatinumBox - Rate: 9 - - Index: 29 - Item: Improved_PlatinumBox - Rate: 9 - - Index: 30 + - Index: 23 Item: Comp_Trans_Scroll Rate: 73 + - Index: 24 + Item: Guarantee_Weapon_7Up + Rate: 3 + - Index: 25 + Item: Guarantee_Armor_7Up + Rate: 3 + - Index: 26 + Item: Guarantee_Weapon_9Up + Rate: 1 + - Index: 27 + Item: Guarantee_Armor_9Up + Rate: 1 + - Index: 28 + Item: Sealed_Hat_Box2 + Rate: 9 + - Index: 29 + Item: Sealed_Hat_Box + Rate: 9 + - Index: 30 + Item: Sigrun's_Wing + Rate: 1 - Group: 13THCELEBRATEBOX SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Old_Card_Album - Rate: 100 + Item: Golden_Card + Rate: 1 + Announced: true - Index: 1 - Item: Guarantee_Weapon_9Up - Rate: 9 + Item: Sealed_Card + Rate: 1 + Announced: true - Index: 2 - Item: Guarantee_Weapon_7Up - Rate: 15 + Item: Assorted_ShdowBox + Rate: 100 + Announced: true - Index: 3 - Item: Guarantee_Armor_9Up - Rate: 9 + Item: Mysterious_Egg2 + Rate: 100 + Announced: true - Index: 4 - Item: Guarantee_Armor_7Up - Rate: 15 - - Index: 5 - Item: Card_Coin - Rate: 700 - Amount: 4 - - Index: 6 Item: Comp_Battle_Manual Rate: 600 - - Index: 7 + - Index: 5 + Item: G_Almighty + Rate: 600 + Amount: 3 + - Index: 6 Item: Comp_Bubble_Gum Rate: 600 + - Index: 7 + Item: Guarantee_Weapon_9Up + Rate: 9 + Announced: true - Index: 8 + Item: Guarantee_Armor_9Up + Rate: 9 + Announced: true + - Index: 9 + Item: Guarantee_Weapon_7Up + Rate: 15 + Announced: true + - Index: 10 + Item: Guarantee_Armor_7Up + Rate: 15 + Announced: true + - Index: 11 + Item: Comp_Trans_Scroll + Rate: 700 + Amount: 2 + - Index: 12 Item: White_Slim_Pot_Box2 Rate: 750 Amount: 3 - - Index: 9 - Item: Poison_Bottle_Box2 - Rate: 700 - - Index: 10 - Item: 13thCelebrateBox - Rate: 100 - - Index: 11 - Item: Yggdrasilberry_Box - Rate: 550 - - Index: 12 - Item: Golden_Card - Rate: 1 - Index: 13 - Item: G_Mysterious_Water - Rate: 600 - Amount: 3 + Item: Comp_Small_Mana_Potion + Rate: 500 + Amount: 5 - Index: 14 Item: G_Small_Life_Potion Rate: 600 Amount: 3 - Index: 15 - Item: G_Med_Life_Potion + Item: G_Mysterious_Water Rate: 600 Amount: 3 - Index: 16 - Item: G_Almighty + Item: G_Med_Life_Potion Rate: 600 Amount: 3 - Index: 17 @@ -50611,25 +52677,24 @@ Body: Rate: 600 Amount: 3 - Index: 18 - Item: Sealed_Card - Rate: 1 - - Index: 19 Item: Comp_Battle_Bubble Rate: 700 - - Index: 20 - Item: Comp_Trans_Scroll + - Index: 19 + Item: Card_Coin Rate: 700 - Amount: 2 - - Index: 21 - Item: Comp_Small_Mana_Potion - Rate: 500 - Amount: 5 - - Index: 22 - Item: 13thCelebrateBox + Amount: 4 + - Index: 20 + Item: Old_Card_Album Rate: 100 - - Index: 23 + - Index: 21 Item: Class_Shadow_Cube Rate: 50 + - Index: 22 + Item: Poison_Bottle_Box2 + Rate: 700 + - Index: 23 + Item: Yggdrasilberry_Box + Rate: 550 - Index: 24 Item: Racing_Thx_Ticket Rate: 800 @@ -50639,19 +52704,19 @@ Body: - SubGroup: 0 List: - Index: 0 - Item: E_Med_Life_Potion - Amount: 20 + Item: Comp_Almighty + Amount: 10 - Index: 1 Item: E_Small_Life_Potion Amount: 20 - Index: 2 - Item: Comp_Small_Mana_Potion - Amount: 10 + Item: E_Med_Life_Potion + Amount: 20 - Index: 3 Item: Comp_Power_Booster Amount: 10 - Index: 4 - Item: Comp_Almighty + Item: Comp_Small_Mana_Potion Amount: 10 - Index: 5 Item: World_Tour_Ticket @@ -50661,688 +52726,55 @@ Body: - SubGroup: 1 List: - Index: 0 - Item: Guarantee_Weapon_9Up - Rate: 8 - - Index: 1 - Item: Guarantee_Weapon_7Up - Rate: 14 - - Index: 2 - Item: Guarantee_Armor_9Up - Rate: 8 - - Index: 3 - Item: Guarantee_Armor_7Up - Rate: 14 - - Index: 4 - Item: Guarantee_Weapon_11Up - Rate: 1 - - Index: 5 Item: Guarantee_Armor_11Up Rate: 1 + Announced: true + - Index: 1 + Item: Guarantee_Weapon_11Up + Rate: 1 + Announced: true + - Index: 2 + Item: Guarantee_Armor_9Up + Rate: 9 + Announced: true + - Index: 3 + Item: Guarantee_Weapon_9Up + Rate: 9 + Announced: true + - Index: 4 + Item: Guarantee_Armor_7Up + Rate: 15 + Announced: true + - Index: 5 + Item: Guarantee_Weapon_7Up + Rate: 15 + Announced: true - Index: 6 - Item: Insurance - Rate: 909 - Amount: 3 - - Index: 7 - Item: Comp_Insurance - Rate: 909 - Amount: 3 - - Index: 8 - Item: Old_Ore_Box - Rate: 1264 - - Index: 9 - Item: C_Wing_Of_Fly_3Day_Box - Rate: 500 - - Index: 10 - Item: Piamette_Scroll - Rate: 1364 - - Index: 11 - Item: Piamette_Scroll - Rate: 500 - - Index: 12 - Item: Ribbon_Piamat_K - Rate: 91 - - Index: 13 - Item: Piamette_Hood - Rate: 273 - - Index: 14 - Item: Shadow_Cube_Weapon - Rate: 290 - - Index: 15 - Item: Shadow_Cube_Armor - Rate: 259 - - Index: 16 - Item: Shadow_Cube_Shield - Rate: 246 - - Index: 17 - Item: Shadow_Cube_Shoes - Rate: 208 - - Index: 18 - Item: Shadow_Cube_Pendant - Rate: 177 - - Index: 19 - Item: Shadow_Cube_Earing - Rate: 183 - - Index: 20 - Item: Comp_Battle_Bubble - Rate: 1364 - Amount: 2 - - Index: 21 Item: Comp_Neuralizer - Rate: 9 - - Index: 22 - Item: Comp_Trans_Scroll - Rate: 1364 - - Index: 23 - Item: Mad_Bunny_K - Rate: 23 - - Index: 24 + Rate: 10 + Announced: true + - Index: 7 Item: Mad_Bunny_K_ - Rate: 23 - - Group: COWLICK_BOX - SubGroups: - - SubGroup: 1 - List: - - Index: 0 - Item: C_Cowlick_BL - Rate: 1250 - - Index: 1 - Item: C_Cowlick_YL - Rate: 1250 - - Index: 2 - Item: C_Cowlick_GN - Rate: 1250 - - Index: 3 - Item: C_Cowlick_PP - Rate: 1250 - - Index: 4 - Item: C_Cowlick_RD - Rate: 1250 - - Index: 5 - Item: C_Cowlick_OM - Rate: 1250 - - Index: 6 - Item: C_Cowlick_BU - Rate: 1250 - - Index: 7 - Item: C_Cowlick_WH - Rate: 1250 - - Group: STRAIGHT_PONY_BOX - SubGroups: - - SubGroup: 1 - List: - - Index: 0 - Item: C_Straight_Pony_BL - Rate: 1250 - - Index: 1 - Item: C_Straight_Pony_YL - Rate: 1250 - - Index: 2 - Item: C_Straight_Pony_GN - Rate: 1250 - - Index: 3 - Item: C_Straight_Pony_PP - Rate: 1250 - - Index: 4 - Item: C_Straight_Pony_RD - Rate: 1250 - - Index: 5 - Item: C_Straight_Pony_OM - Rate: 1250 - - Index: 6 - Item: C_Straight_Pony_BU - Rate: 1250 - - Index: 7 - Item: C_Straight_Pony_WH - Rate: 1250 - - Group: LOOSE_WAVE_TWIN_BOX - SubGroups: - - SubGroup: 1 - List: - - Index: 0 - Item: C_Loose_Wave_Twin_BL - Rate: 1250 - - Index: 1 - Item: C_Loose_Wave_Twin_YL - Rate: 1250 - - Index: 2 - Item: C_Loose_Wave_Twin_GN - Rate: 1250 - - Index: 3 - Item: C_Loose_Wave_Twin_PP - Rate: 1250 - - Index: 4 - Item: C_Loose_Wave_Twin_RD - Rate: 1250 - - Index: 5 - Item: C_Loose_Wave_Twin_OM - Rate: 1250 - - Index: 6 - Item: C_Loose_Wave_Twin_BU - Rate: 1250 - - Index: 7 - Item: C_Loose_Wave_Twin_WH - Rate: 1250 - - Group: INVISIBLE_SCROLL - SubGroups: - - SubGroup: 1 - List: - - Index: 0 - Item: Guarantee_Weapon_9Up - Rate: 9 - - Index: 1 - Item: Guarantee_Weapon_7Up - Rate: 15 - - Index: 2 - Item: Guarantee_Armor_9Up - Rate: 9 - - Index: 3 - Item: Guarantee_Armor_7Up - Rate: 15 - - Index: 4 - Item: Guarantee_Weapon_11Up - Rate: 1 - - Index: 5 - Item: Guarantee_Armor_11Up - Rate: 1 - - Index: 6 - Item: Blacksmith_Blessing - Rate: 1000 - - Index: 7 - Item: Treasure_Box - Rate: 1500 + Rate: 25 + Announced: true - Index: 8 - Item: Poison_Bottle_Box2 - Rate: 1000 + Item: Mad_Bunny_K + Rate: 25 + Announced: true - Index: 9 - Item: Potion_Box - Rate: 1000 - - Index: 10 - Item: Invisible_Scroll - Rate: 1400 - - Index: 11 - Item: Sealed_Card - Rate: 10 - - Index: 12 - Item: Comp_Battle_Bubble - Rate: 1040 - - Index: 13 - Item: Minus_Status_Box - Rate: 700 - - Index: 14 - Item: Invisible_Box - Rate: 500 - - Index: 15 - Item: S_Swordman_earring - Rate: 150 - - Index: 16 - Item: S_Merchant_earring - Rate: 150 - - Index: 17 - Item: S_Acolyte_earring - Rate: 150 - - Index: 18 - Item: S_Magician_earring - Rate: 150 - - Index: 19 - Item: S_Swordman_Pendant - Rate: 150 - - Index: 20 - Item: S_Merchant_Pendant - Rate: 150 - - Index: 21 - Item: S_Acolyte_Pendant - Rate: 150 - - Index: 22 - Item: S_Thief_Pendant - Rate: 150 - - Index: 23 - Item: S_Magician_Pendant - Rate: 150 - - Index: 24 - Item: S_Archer_Pendant - Rate: 150 - - Index: 25 - Item: S_Thief_earring - Rate: 150 - - Index: 26 - Item: S_Archer_earring - Rate: 150 - - Group: NEW_HAT_SCROLL - SubGroups: - - SubGroup: 1 - List: - - Index: 0 - Item: Guarantee_Weapon_9Up - Rate: 9 - - Index: 1 - Item: Guarantee_Weapon_7Up - Rate: 15 - - Index: 2 - Item: Guarantee_Armor_9Up - Rate: 9 - - Index: 3 - Item: Guarantee_Armor_7Up - Rate: 15 - - Index: 4 - Item: Guarantee_Weapon_11Up - Rate: 1 - - Index: 5 - Item: Guarantee_Armor_11Up - Rate: 1 - - Index: 6 - Item: Blacksmith_Blessing - Rate: 1000 - - Index: 7 - Item: Treasure_Box - Rate: 1350 - - Index: 8 - Item: Yggdrasil_Seed_Box - Rate: 800 - - Index: 9 - Item: Poison_Bottle_Box2 - Rate: 1000 - - Index: 10 - Item: New_Hat_Scroll - Rate: 1200 - - Index: 11 - Item: New_Hat_Scroll - Rate: 1000 - - Index: 12 - Item: New_Hat_Scroll - Rate: 10 - - Index: 13 - Item: New_Hat_Scroll - Rate: 10 - - Index: 14 - Item: Comp_Trans_Scroll - Rate: 1200 - - Index: 15 - Item: New_Hat_Scroll - Rate: 70 - - Index: 16 - Item: S_Knight_Shoes - Rate: 150 - - Index: 17 - Item: S_Crusader_Shoes - Rate: 150 - - Index: 18 - Item: S_Blacksmith_Shoes - Rate: 150 - - Index: 19 - Item: S_Alchemist_Shoes - Rate: 150 - - Index: 20 - Item: S_Priest_Shoes - Rate: 150 - - Index: 21 - Item: S_Monk_Shoes - Rate: 150 - - Index: 22 - Item: S_Assassin_Shoes - Rate: 150 - - Index: 23 - Item: S_Rogue_Shoes - Rate: 150 - - Index: 24 - Item: S_Wizard_Shoes - Rate: 150 - - Index: 25 - Item: S_Sage_Shoes - Rate: 150 - - Index: 26 - Item: S_Hunter_Shoes - Rate: 150 - - Index: 27 - Item: S_Bard_Shoes - Rate: 150 - - Index: 28 - Item: S_Dancer_Shoes - Rate: 150 - - Index: 29 - Item: Comp_Auger_Of_Spirit - Rate: 360 - - Group: NEW_HAT_BOX - SubGroups: - - SubGroup: 1 - List: - - Index: 0 - Item: 8_Type_PurgatorialWing - Rate: 2000 - - Index: 1 - Item: Thief_Hood - Rate: 2000 - - Index: 2 - Item: Noble_Mask - Rate: 2000 - - Index: 3 - Item: New_Wave_Sunglasses - Rate: 2000 - - Index: 4 - Item: Palace_Guard_Cap - Rate: 2000 - - Group: COKINGOPENBOX - SubGroups: - - SubGroup: 1 - List: - - Index: 0 - Item: Guarantee_Weapon_7Up - Rate: 1 - - Index: 1 - Item: Guarantee_Armor_7Up - Rate: 1 - - Index: 2 - Item: White_Slim_Potion_B - Rate: 9697 - Amount: 100 - - Index: 3 - Item: E_Str_Dish10_ - Rate: 50 - Amount: 20 - - Index: 4 - Item: E_Agi_Dish10_ - Rate: 50 - Amount: 20 - - Index: 5 - Item: E_Int_Dish10_ - Rate: 50 - Amount: 20 - - Index: 6 - Item: E_Dex_Dish10_ - Rate: 50 - Amount: 20 - - Index: 7 - Item: E_Luk_Dish10_ - Rate: 50 - Amount: 20 - - Index: 8 - Item: E_Vit_Dish10_ - Rate: 50 - Amount: 20 - - Index: 9 - Item: Golden_Card - Rate: 1 - - Group: 2015_SPECIAL_SCROLL - SubGroups: - - SubGroup: 1 - List: - - Index: 0 - Item: Treasure_Box - Rate: 1500 - Amount: 3 - - Index: 1 - Item: Poison_Bottle_Box2 - Rate: 1150 - - Index: 2 - Item: Potion_Box - Rate: 1500 - - Index: 3 - Item: Pr_Reset_Stone_Box - Rate: 10 - - Index: 4 - Item: C_Wing_Of_Fly_5Day_Box - Rate: 500 - - Index: 5 - Item: 2015_Special_Scroll - Rate: 1000 - - Index: 6 - Item: Weapon_7Up_Box - Rate: 15 - - Index: 7 - Item: Weapon_9Up_Box - Rate: 9 - - Index: 8 - Item: Weapon_11Up_Box - Rate: 1 - - Index: 9 - Item: Armor_7Up_Box - Rate: 15 - - Index: 10 - Item: Armor_9Up_Box - Rate: 9 - - Index: 11 - Item: Armor_11Up_Box - Rate: 1 - - Index: 12 - Item: Comp_Battle_Bubble - Rate: 1000 - Amount: 2 - - Index: 13 - Item: Minus_Status_Box - Rate: 900 - - Index: 14 - Item: 2015_Special_Scroll - Rate: 440 - - Index: 15 - Item: S_Knight_Armor - Rate: 150 - - Index: 16 - Item: S_Crusader_Armor - Rate: 150 - - Index: 17 - Item: S_Blacksmith_Armor - Rate: 150 - - Index: 18 - Item: S_Alchemist_Armor - Rate: 150 - - Index: 19 - Item: S_Priest_Armor - Rate: 150 - - Index: 20 - Item: S_Monk_Armor - Rate: 150 - - Index: 21 - Item: S_Assassin_Armor - Rate: 150 - - Index: 22 - Item: S_Rogue_Armor - Rate: 150 - - Index: 23 - Item: S_Wizard_Armor - Rate: 150 - - Index: 24 - Item: S_Sage_Armor - Rate: 150 - - Index: 25 - Item: S_Hunter_Armor - Rate: 150 - - Index: 26 - Item: S_Bard_Armor - Rate: 150 - - Index: 27 - Item: S_Dancer_Armor - Rate: 150 - - Group: 2015_SPECIAL_BOX - SubGroups: - - SubGroup: 1 - List: - - Index: 0 - Item: Treasure_Box - Rate: 1500 - - Index: 1 - Item: Poison_Bottle_Box2 - Rate: 1150 - - Index: 2 - Item: Potion_Box - Rate: 1500 - - Index: 3 - Item: Pr_Reset_Stone_Box - Rate: 10 - - Index: 4 - Item: C_Wing_Of_Fly_5Day_Box - Rate: 500 - - Index: 5 - Item: 2015_Special_Box - Rate: 1000 - - Index: 6 - Item: Weapon_7Up_Box - Rate: 15 - - Index: 7 - Item: Weapon_9Up_Box - Rate: 9 - - Index: 8 - Item: Weapon_11Up_Box - Rate: 1 - - Index: 9 - Item: Armor_7Up_Box - Rate: 15 - - Index: 10 - Item: Armor_9Up_Box - Rate: 9 - - Index: 11 - Item: Armor_11Up_Box - Rate: 1 - - Index: 12 - Item: Comp_Battle_Bubble - Rate: 1000 - - Index: 13 - Item: Minus_Status_Box - Rate: 900 - - Index: 14 - Item: 2015_Special_Box - Rate: 440 - - Index: 15 - Item: S_Knight_Armor - Rate: 150 - - Index: 16 - Item: S_Crusader_Armor - Rate: 150 - - Index: 17 - Item: S_Blacksmith_Armor - Rate: 150 - - Index: 18 - Item: S_Alchemist_Armor - Rate: 150 - - Index: 19 - Item: S_Priest_Armor - Rate: 150 - - Index: 20 - Item: S_Monk_Armor - Rate: 150 - - Index: 21 - Item: S_Assassin_Armor - Rate: 150 - - Index: 22 - Item: S_Rogue_Armor - Rate: 150 - - Index: 23 - Item: S_Wizard_Armor - Rate: 150 - - Index: 24 - Item: S_Sage_Armor - Rate: 150 - - Index: 25 - Item: S_Hunter_Armor - Rate: 150 - - Index: 26 - Item: S_Bard_Armor - Rate: 150 - - Index: 27 - Item: S_Dancer_Armor - Rate: 150 - - Index: 28 - Item: 2015_Special_Box - Rate: 440 - - SubGroup: 2 - List: - - Index: 0 - Item: Happy_Balloon_K - Rate: 588 - - Index: 1 Item: Ribbon_Piamat_K - Rate: 588 - - Index: 2 + Rate: 100 + Announced: true + - Index: 10 Item: Piamette_Hood - Rate: 588 - - Index: 3 - Item: New_Year_Shadow_Cube - Rate: 588 - - Index: 4 - Item: 2015_Special_Box - Rate: 588 - - Index: 5 - Item: 2015_Special_Box - Rate: 588 - - Index: 6 - Item: Invisible_Box - Rate: 588 - - Index: 7 - Item: 2015_Special_Box - Rate: 588 - - Index: 8 - Item: S_Caster_Shoes - Rate: 588 - - Index: 9 - Item: S_Caster_Shield - Rate: 588 - - Index: 10 - Item: S_Caster_Armor - Rate: 588 + Rate: 300 + Announced: true - Index: 11 - Item: S_Reload_Shoes - Rate: 588 + Item: Shadow_Cube_Pendant + Rate: 195 - Index: 12 - Item: S_Reload_Shield - Rate: 588 - - Index: 13 - Item: S_Reload_Armor - Rate: 588 - - Index: 14 - Item: Pump_Of_Spirit - Rate: 588 - - Index: 15 - Item: Mad_Bunny_K - Rate: 588 - - Index: 16 - Item: Mad_Bunny_K_ - Rate: 588 - - Group: 2015_ANGEL_SCROLL - SubGroups: - - SubGroup: 1 - List: - - Index: 0 - Item: Shadow_Cube_Sak - Rate: 10000 - - SubGroup: 2 - List: - - Index: 0 - Item: Blacksmith_Blessing - Rate: 1000 - - Index: 1 - Item: Treasure_Box - Rate: 1500 - - Index: 2 - Item: Old_Ore_Box - Rate: 1500 - - Index: 3 - Item: Potion_Box - Rate: 1140 - - Index: 4 - Item: 2015_Angel_Scroll - Rate: 900 - - Index: 5 - Item: Sealed_Card - Rate: 10 - - Index: 6 - Item: Weapon_7Up_Box - Rate: 15 - - Index: 7 - Item: Weapon_9Up_Box - Rate: 9 - - Index: 8 - Item: Weapon_11Up_Box - Rate: 1 - - Index: 9 - Item: Armor_7Up_Box - Rate: 15 - - Index: 10 - Item: Armor_9Up_Box - Rate: 9 - - Index: 11 - Item: Armor_11Up_Box - Rate: 1 - - Index: 12 - Item: Shadow_Cube_Weapon - Rate: 319 + Item: Shadow_Cube_Earing + Rate: 201 - Index: 13 Item: Shadow_Cube_Armor Rate: 285 @@ -51353,35 +52785,622 @@ Body: Item: Shadow_Cube_Shoes Rate: 229 - Index: 16 - Item: Shadow_Cube_Pendant - Rate: 195 + Item: Shadow_Cube_Weapon + Rate: 319 - Index: 17 - Item: Shadow_Cube_Earing - Rate: 201 + Item: C_Giant_Fly_1Day_Box + Rate: 550 - Index: 18 - Item: Comp_Battle_Bubble - Rate: 1000 + Item: C_Wing_Of_Fly_3Day_Box + Rate: 550 - Index: 19 - Item: AngelPoring_Box - Rate: 500 + Item: C_CatPaw_1Day_Box + Rate: 1500 - Index: 20 - Item: S_SuperNovice_Weapon + Item: Old_Ore_Box + Rate: 1390 + Amount: 2 + - Index: 21 + Item: Comp_Trans_Scroll + Rate: 1500 + - Index: 22 + Item: Comp_Battle_Bubble + Rate: 1500 + Amount: 2 + - Index: 23 + Item: Comp_Insurance + Rate: 1000 + Amount: 3 + - Group: COWLICK_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: C_Cowlick_GN + Rate: 1 + - Index: 1 + Item: C_Cowlick_PP + Rate: 1 + - Index: 2 + Item: C_Cowlick_RD + Rate: 1 + - Index: 3 + Item: C_Cowlick_OM + Rate: 1 + - Index: 4 + Item: C_Cowlick_BU + Rate: 1 + - Index: 5 + Item: C_Cowlick_WH + Rate: 1 + - Index: 6 + Item: C_Cowlick_YL + Rate: 1 + - Index: 7 + Item: C_Cowlick_BL + Rate: 1 + - Group: STRAIGHT_PONY_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: C_Straight_Pony_GN + Rate: 1 + - Index: 1 + Item: C_Straight_Pony_PP + Rate: 1 + - Index: 2 + Item: C_Straight_Pony_RD + Rate: 1 + - Index: 3 + Item: C_Straight_Pony_OM + Rate: 1 + - Index: 4 + Item: C_Straight_Pony_BU + Rate: 1 + - Index: 5 + Item: C_Straight_Pony_WH + Rate: 1 + - Index: 6 + Item: C_Straight_Pony_YL + Rate: 1 + - Index: 7 + Item: C_Straight_Pony_BL + Rate: 1 + - Group: LOOSE_WAVE_TWIN_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: C_Loose_Wave_Twin_GN + Rate: 1 + - Index: 1 + Item: C_Loose_Wave_Twin_PP + Rate: 1 + - Index: 2 + Item: C_Loose_Wave_Twin_RD + Rate: 1 + - Index: 3 + Item: C_Loose_Wave_Twin_OM + Rate: 1 + - Index: 4 + Item: C_Loose_Wave_Twin_BU + Rate: 1 + - Index: 5 + Item: C_Loose_Wave_Twin_WH + Rate: 1 + - Index: 6 + Item: C_Loose_Wave_Twin_YL + Rate: 1 + - Index: 7 + Item: C_Loose_Wave_Twin_BL + Rate: 1 + - Group: INVISIBLE_SCROLL + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Guarantee_Armor_11Up + Rate: 1 + Announced: true + - Index: 1 + Item: Guarantee_Weapon_11Up + Rate: 1 + Announced: true + - Index: 2 + Item: Guarantee_Armor_9Up + Rate: 9 + Announced: true + - Index: 3 + Item: Guarantee_Weapon_9Up + Rate: 9 + Announced: true + - Index: 4 + Item: Sealed_Card + Rate: 10 + Announced: true + - Index: 5 + Item: Guarantee_Armor_7Up + Rate: 15 + Announced: true + - Index: 6 + Item: Guarantee_Weapon_7Up + Rate: 15 + Announced: true + - Index: 7 + Item: Invisible_Box + Rate: 500 + Announced: true + - Index: 8 + Item: S_Swordman_earring + Rate: 150 + - Index: 9 + Item: S_Merchant_earring + Rate: 150 + - Index: 10 + Item: S_Acolyte_earring + Rate: 150 + - Index: 11 + Item: S_Thief_earring + Rate: 150 + - Index: 12 + Item: S_Magician_earring + Rate: 150 + - Index: 13 + Item: S_Archer_earring + Rate: 150 + - Index: 14 + Item: S_Swordman_Pendant + Rate: 150 + - Index: 15 + Item: S_Merchant_Pendant + Rate: 150 + - Index: 16 + Item: S_Acolyte_Pendant + Rate: 150 + - Index: 17 + Item: S_Thief_Pendant + Rate: 150 + - Index: 18 + Item: S_Magician_Pendant + Rate: 150 + - Index: 19 + Item: S_Archer_Pendant + Rate: 150 + - Index: 20 + Item: Minus_Status_Box + Rate: 700 + - Index: 21 + Item: C_Giant_Fly_1Day_Box + Rate: 1400 + - Index: 22 + Item: Blacksmith_Blessing + Rate: 1000 + - Index: 23 + Item: Poison_Bottle_Box2 + Rate: 1000 + - Index: 24 + Item: Treasure_Box + Rate: 1500 + Amount: 3 + - Index: 25 + Item: Potion_Box + Rate: 1000 + - Index: 26 + Item: Comp_Battle_Bubble + Rate: 1040 + Amount: 2 + - Group: NEW_HAT_SCROLL + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Guarantee_Weapon_11Up + Rate: 1 + Announced: true + - Index: 1 + Item: Guarantee_Armor_11Up + Rate: 1 + Announced: true + - Index: 2 + Item: Guarantee_Weapon_9Up + Rate: 9 + Announced: true + - Index: 3 + Item: Guarantee_Armor_9Up + Rate: 9 + Announced: true + - Index: 4 + Item: Guarantee_Weapon_7Up + Rate: 15 + Announced: true + - Index: 5 + Item: Guarantee_Armor_7Up + Rate: 15 + Announced: true + - Index: 6 + Item: Sealed_Hat_Box + Rate: 10 + Announced: true + - Index: 7 + Item: Sealed_Hat_Box2 + Rate: 10 + Announced: true + - Index: 8 + Item: New_Hat_Box + Rate: 70 + Announced: true + - Index: 9 + Item: Comp_Auger_Of_Spirit + Rate: 360 + Announced: true + - Index: 10 + Item: S_Knight_Shoes + Rate: 150 + - Index: 11 + Item: S_Crusader_Shoes + Rate: 150 + - Index: 12 + Item: S_Blacksmith_Shoes + Rate: 150 + - Index: 13 + Item: S_Alchemist_Shoes + Rate: 150 + - Index: 14 + Item: S_Priest_Shoes + Rate: 150 + - Index: 15 + Item: S_Monk_Shoes + Rate: 150 + - Index: 16 + Item: S_Assassin_Shoes + Rate: 150 + - Index: 17 + Item: S_Rogue_Shoes + Rate: 150 + - Index: 18 + Item: S_Wizard_Shoes + Rate: 150 + - Index: 19 + Item: S_Sage_Shoes + Rate: 150 + - Index: 20 + Item: S_Hunter_Shoes Rate: 150 - Index: 21 - Item: S_Gunslinger_Weapon + Item: S_Bard_Shoes Rate: 150 - Index: 22 - Item: S_Taekwon_Weapon + Item: S_Dancer_Shoes Rate: 150 - Index: 23 + Item: Yggdrasil_Seed_Box + Rate: 800 + - Index: 24 + Item: C_Giant_Fly_1Day_Box + Rate: 1000 + - Index: 25 + Item: Blacksmith_Blessing + Rate: 1000 + - Index: 26 + Item: Poison_Bottle_Box2 + Rate: 1000 + - Index: 27 + Item: C_CatPaw_1Day_Box + Rate: 1200 + - Index: 28 + Item: Comp_Trans_Scroll + Rate: 1200 + - Index: 29 + Item: Treasure_Box + Rate: 1350 + Amount: 3 + - Group: NEW_HAT_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: New_Wave_Sunglasses + Rate: 1 + - Index: 1 + Item: 8_Type_PurgatorialWing + Rate: 1 + - Index: 2 + Item: Noble_Mask + Rate: 1 + - Index: 3 + Item: Palace_Guard_Cap + Rate: 1 + - Index: 4 + Item: Thief_Hood + Rate: 1 + - Group: COKINGOPENBOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: White_Slim_Potion_B + Rate: 9697 + Amount: 100 + - Index: 1 + Item: E_Str_Dish10_ + Rate: 50 + Amount: 20 + - Index: 2 + Item: E_Agi_Dish10_ + Rate: 50 + Amount: 20 + - Index: 3 + Item: E_Int_Dish10_ + Rate: 50 + Amount: 20 + - Index: 4 + Item: E_Dex_Dish10_ + Rate: 50 + Amount: 20 + - Index: 5 + Item: E_Luk_Dish10_ + Rate: 50 + Amount: 20 + - Index: 6 + Item: E_Vit_Dish10_ + Rate: 50 + Amount: 20 + - Index: 7 + Item: Guarantee_Weapon_7Up + Rate: 1 + - Index: 8 + Item: Guarantee_Armor_7Up + Rate: 1 + - Index: 9 + Item: Golden_Card + Rate: 1 + - Group: 2015_SPECIAL_SCROLL + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Weapon_11Up_Box + Rate: 1 + Announced: true + - Index: 1 + Item: Armor_11Up_Box + Rate: 1 + Announced: true + - Index: 2 + Item: Weapon_9Up_Box + Rate: 9 + Announced: true + - Index: 3 + Item: Armor_9Up_Box + Rate: 9 + Announced: true + - Index: 4 + Item: Weapon_7Up_Box + Rate: 15 + Announced: true + - Index: 5 + Item: Armor_7Up_Box + Rate: 15 + Announced: true + - Index: 6 + Item: Pr_Reset_Stone_Box + Rate: 10 + Announced: true + - Index: 7 + Item: 2015_Special_Box + Rate: 440 + Announced: true + - Index: 8 + Item: S_Knight_Armor + Rate: 150 + - Index: 9 + Item: S_Crusader_Armor + Rate: 150 + - Index: 10 + Item: S_Blacksmith_Armor + Rate: 150 + - Index: 11 + Item: S_Alchemist_Armor + Rate: 150 + - Index: 12 + Item: S_Priest_Armor + Rate: 150 + - Index: 13 + Item: S_Monk_Armor + Rate: 150 + - Index: 14 + Item: S_Assassin_Armor + Rate: 150 + - Index: 15 + Item: S_Rogue_Armor + Rate: 150 + - Index: 16 + Item: S_Wizard_Armor + Rate: 150 + - Index: 17 + Item: S_Sage_Armor + Rate: 150 + - Index: 18 + Item: S_Hunter_Armor + Rate: 150 + - Index: 19 + Item: S_Bard_Armor + Rate: 150 + - Index: 20 + Item: S_Dancer_Armor + Rate: 150 + - Index: 21 + Item: C_Wing_Of_Fly_5Day_Box + Rate: 500 + - Index: 22 + Item: Minus_Status_Box + Rate: 900 + - Index: 23 + Item: C_Giant_Fly_1Day_Box + Rate: 1000 + - Index: 24 + Item: Comp_Battle_Bubble + Rate: 1000 + Amount: 2 + - Index: 25 + Item: Potion_Box + Rate: 1500 + - Index: 26 + Item: Poison_Bottle_Box2 + Rate: 1150 + - Index: 27 + Item: Treasure_Box + Rate: 1500 + Amount: 3 + - Group: 2015_SPECIAL_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: S_Caster_Shoes + Rate: 1 + - Index: 1 + Item: S_Caster_Shield + Rate: 1 + - Index: 2 + Item: S_Caster_Armor + Rate: 1 + - Index: 3 + Item: S_Reload_Shoes + Rate: 1 + - Index: 4 + Item: S_Reload_Shield + Rate: 1 + - Index: 5 + Item: S_Reload_Armor + Rate: 1 + - Index: 6 + Item: New_Year_Shadow_Cube + Rate: 1 + - Index: 7 + Item: Mad_Bunny_K + Rate: 1 + - Index: 8 + Item: Mad_Bunny_K_ + Rate: 1 + - Index: 9 + Item: Sealed_Hat_Box + Rate: 1 + - Index: 10 + Item: Sealed_Hat_Box2 + Rate: 1 + - Index: 11 + Item: Pump_Of_Spirit + Rate: 1 + - Index: 12 + Item: Happy_Balloon_K + Rate: 1 + - Index: 13 + Item: Ribbon_Piamat_K + Rate: 1 + - Index: 14 + Item: Piamette_Hood + Rate: 1 + - Index: 15 + Item: Invisible_Box + Rate: 1 + - Index: 16 + Item: New_Hat_Box + Rate: 1 + - Group: 2015_ANGEL_SCROLL + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Weapon_11Up_Box + Rate: 1 + Announced: true + - Index: 1 + Item: Armor_11Up_Box + Rate: 1 + Announced: true + - Index: 2 + Item: Weapon_9Up_Box + Rate: 9 + Announced: true + - Index: 3 + Item: Armor_9Up_Box + Rate: 9 + Announced: true + - Index: 4 + Item: Weapon_7Up_Box + Rate: 15 + Announced: true + - Index: 5 + Item: Armor_7Up_Box + Rate: 15 + Announced: true + - Index: 6 + Item: Sealed_Card + Rate: 10 + Announced: true + - Index: 7 + Item: AngelPoring_Box + Rate: 500 + Announced: true + - Index: 8 + Item: S_SuperNovice_Weapon + Rate: 150 + - Index: 9 + Item: S_Gunslinger_Weapon + Rate: 150 + - Index: 10 + Item: S_Taekwon_Weapon + Rate: 150 + - Index: 11 Item: S_Ninja_Weapon Rate: 150 - - Index: 24 + - Index: 12 Item: S_DoramMagical_Weapon Rate: 150 - - Index: 25 + - Index: 13 Item: S_DoramPhysical_Weapon Rate: 150 + - Index: 14 + Item: Shadow_Cube_Pendant + Rate: 195 + - Index: 15 + Item: Shadow_Cube_Earing + Rate: 201 + - Index: 16 + Item: Shadow_Cube_Armor + Rate: 285 + - Index: 17 + Item: Shadow_Cube_Shield + Rate: 271 + - Index: 18 + Item: Shadow_Cube_Shoes + Rate: 229 + - Index: 19 + Item: Shadow_Cube_Weapon + Rate: 319 + - Index: 20 + Item: Blacksmith_Blessing + Rate: 1000 + - Index: 21 + Item: C_Giant_Fly_1Day_Box + Rate: 900 + - Index: 22 + Item: Comp_Battle_Bubble + Rate: 1000 + Amount: 2 + - Index: 23 + Item: Old_Ore_Box + Rate: 1500 + Amount: 2 + - Index: 24 + Item: Potion_Box + Rate: 1140 + - Index: 25 + Item: Treasure_Box + Rate: 1500 + Amount: 3 - Group: DECEMBERGIFTBOX_2016 SubGroups: - SubGroup: 0 @@ -51389,1536 +53408,2987 @@ Body: - Index: 0 Item: Mysterious_Egg Amount: 2 + UniqueId: true - Group: NOVEMBERGIFTBOX_2016 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Half_Asprika - - Index: 1 Item: Half_Megin - - Index: 2 + Duration: 20160 + UniqueId: true + - Index: 1 Item: Half_Brysing + Duration: 20160 + UniqueId: true + - Index: 2 + Item: Half_Asprika + Duration: 20160 + UniqueId: true - Index: 3 Item: Half_Brynhild + Duration: 20160 + UniqueId: true - Group: PORING_SCROLL SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Poring_Sunglasses - Rate: 10000 - - SubGroup: 2 - List: - - Index: 0 - Item: Blacksmith_Blessing - Rate: 900 - - Index: 1 - Item: Treasure_Box - Rate: 1500 - - Index: 2 - Item: Old_C_Album_Helm - Rate: 200 - - Index: 3 - Item: Old_C_Album_Armor - Rate: 200 - - Index: 4 - Item: Old_C_Album_Shield - Rate: 200 - - Index: 5 - Item: Old_C_Album_Garment - Rate: 200 - - Index: 6 - Item: Old_C_Album_Shoes - Rate: 200 - - Index: 7 - Item: Old_C_Album_Acc - Rate: 200 - - Index: 8 - Item: Old_C_Album_Weapon - Rate: 200 - - Index: 9 - Item: Potion_Box - Rate: 1140 - - Index: 10 - Item: Poring_Scroll - Rate: 1000 - - Index: 11 - Item: Poring_Sunglasses_K - Rate: 385 - - Index: 12 - Item: Poring_Sunglasses_K_ - Rate: 15 - - Index: 13 - Item: Wet_CardAlbum - Rate: 50 - - Index: 14 - Item: Sealed_Card - Rate: 10 - - Index: 15 - Item: Weapon_7Up_Box - Rate: 15 - - Index: 16 - Item: Weapon_9Up_Box - Rate: 9 - - Index: 17 Item: Weapon_11Up_Box Rate: 1 - - Index: 18 - Item: Armor_7Up_Box - Rate: 15 - - Index: 19 - Item: Armor_9Up_Box - Rate: 9 - - Index: 20 + Announced: true + - Index: 1 Item: Armor_11Up_Box Rate: 1 - - Index: 21 - Item: Minus_Str_Box - Rate: 400 - - Index: 22 - Item: Minus_Agi_Box - Rate: 400 - - Index: 23 - Item: Minus_Vit_Box - Rate: 400 - - Index: 24 - Item: Minus_Int_Box - Rate: 400 - - Index: 25 - Item: Minus_Dex_Box - Rate: 400 - - Index: 26 - Item: Minus_Luk_Box - Rate: 400 - - Index: 27 - Item: Comp_Battle_Bubble - Rate: 1100 - - Index: 28 + Announced: true + - Index: 2 + Item: Weapon_9Up_Box + Rate: 9 + Announced: true + - Index: 3 + Item: Armor_9Up_Box + Rate: 9 + Announced: true + - Index: 4 + Item: Weapon_7Up_Box + Rate: 15 + Announced: true + - Index: 5 + Item: Armor_7Up_Box + Rate: 15 + Announced: true + - Index: 6 + Item: Sealed_Card + Rate: 10 + Announced: true + - Index: 7 + Item: Poring_Sunglasses_K_ + Rate: 15 + Announced: true + - Index: 8 + Item: Poring_Sunglasses_K + Rate: 385 + Announced: true + - Index: 9 Item: AngelPoring_Box Rate: 50 + Announced: true + - Index: 10 + Item: Wet_CardAlbum + Rate: 50 + Announced: true + - Index: 11 + Item: Minus_Str_Box + Rate: 400 + - Index: 12 + Item: Minus_Agi_Box + Rate: 400 + - Index: 13 + Item: Minus_Vit_Box + Rate: 400 + - Index: 14 + Item: Minus_Int_Box + Rate: 400 + - Index: 15 + Item: Minus_Dex_Box + Rate: 400 + - Index: 16 + Item: Minus_Luk_Box + Rate: 400 + - Index: 17 + Item: Blacksmith_Blessing + Rate: 900 + - Index: 18 + Item: C_Giant_Fly_1Day_Box + Rate: 1000 + - Index: 19 + Item: Comp_Battle_Bubble + Rate: 1100 + Amount: 2 + - Index: 20 + Item: Old_C_Album_Armor + Rate: 200 + - Index: 21 + Item: Old_C_Album_Helm + Rate: 200 + - Index: 22 + Item: Old_C_Album_Acc + Rate: 200 + - Index: 23 + Item: Old_C_Album_Shoes + Rate: 200 + - Index: 24 + Item: Old_C_Album_Shield + Rate: 200 + - Index: 25 + Item: Old_C_Album_Garment + Rate: 200 + - Index: 26 + Item: Old_C_Album_Weapon + Rate: 200 + - Index: 27 + Item: Potion_Box + Rate: 1140 + - Index: 28 + Item: Treasure_Box + Rate: 1500 + Amount: 3 - Group: MOBI_SUPPORT_BOX SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Guarantee_Weapon_9Up - Rate: 1 - - Index: 1 - Item: Guarantee_Weapon_7Up - Rate: 1 - - Index: 2 - Item: Guarantee_Armor_9Up - Rate: 1 - - Index: 3 - Item: Guarantee_Armor_7Up - Rate: 1 - - Index: 4 Item: White_Slim_Potion_B Rate: 9396 Amount: 100 - - Index: 5 + - Index: 1 Item: E_Str_Dish10_ Rate: 100 Amount: 10 - - Index: 6 + - Index: 2 Item: E_Agi_Dish10_ Rate: 100 Amount: 10 - - Index: 7 + - Index: 3 Item: E_Int_Dish10_ Rate: 100 Amount: 10 - - Index: 8 + - Index: 4 Item: E_Dex_Dish10_ Rate: 100 Amount: 10 - - Index: 9 + - Index: 5 Item: E_Luk_Dish10_ Rate: 100 Amount: 10 - - Index: 10 + - Index: 6 Item: E_Vit_Dish10_ Rate: 100 Amount: 10 + - Index: 7 + Item: Guarantee_Weapon_7Up + Rate: 1 + - Index: 8 + Item: Guarantee_Armor_7Up + Rate: 1 + - Index: 9 + Item: Guarantee_Weapon_9Up + Rate: 1 + - Index: 10 + Item: Guarantee_Armor_9Up + Rate: 1 - Group: TIME_GUARDIAN_BOX2 SubGroups: - SubGroup: 0 List: - Index: 0 + Item: Boarding_Halter_Box7 + - Index: 1 + Item: Toughen_Time_Keepr_Shd + - Index: 2 + Item: Toughen_Time_Keepr_Bts + - Index: 3 + Item: Toughen_Time_Keepr_MT + - Index: 4 + Item: Toughen_Time_Keeper_Hat + - Index: 5 + Item: Toughen_Time_Keepr_Robe + - Index: 6 Item: Comp_Battle_Manual Amount: 5 - - Index: 1 + - Index: 7 Item: Comp_Bubble_Gum Amount: 5 - - Index: 2 + - Index: 8 Item: Comp_Insurance Amount: 5 - - Index: 3 - Item: Toughen_Time_Keepr_Robe - - Index: 4 - Item: Boarding_Halter_Box7 - - Index: 5 - Item: Toughen_Time_Keeper_Hat - - Index: 6 - Item: Toughen_Time_Keepr_MT - - Index: 7 - Item: Toughen_Time_Keepr_Bts - - Index: 8 - Item: Toughen_Time_Keepr_Shd - Group: ASSORTED_SHDOWBOX SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Shadow_Cube_Weapon + Item: Shadow_Cube_Earing - Index: 1 - Item: Shadow_Cube_Armor + Item: Shadow_Cube_Pendant - Index: 2 - Item: Shadow_Cube_Shield + Item: Shadow_Cube_Armor - Index: 3 Item: Shadow_Cube_Shoes - Index: 4 - Item: Shadow_Cube_Pendant + Item: Shadow_Cube_Shield - Index: 5 - Item: Shadow_Cube_Earing + Item: Shadow_Cube_Weapon - Group: AMISTR_SCROLL SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Advanced_Taiming_Item - Rate: 10000 - - SubGroup: 2 - List: - - Index: 0 - Item: Blacksmith_Blessing - Rate: 900 - - Index: 1 - Item: Treasure_Box - Rate: 1490 - - Index: 2 - Item: Poison_Bottle_Box2 - Rate: 1000 - - Index: 3 - Item: Potion_Box - Rate: 1100 - - Index: 4 - Item: C_Wing_Of_Fly_3Day_Box - Rate: 1000 - - Index: 5 - Item: Amistr_Scroll - Rate: 1000 - - Index: 6 - Item: Sealed_Card - Rate: 10 - - Index: 7 - Item: New_Year_Shadow_Cube - Rate: 100 - - Index: 8 - Item: Weapon_7Up_Box - Rate: 15 - - Index: 9 - Item: Weapon_9Up_Box - Rate: 9 - - Index: 10 Item: Weapon_11Up_Box Rate: 1 - - Index: 11 - Item: Armor_7Up_Box - Rate: 15 - - Index: 12 - Item: Armor_9Up_Box - Rate: 9 - - Index: 13 + Announced: true + - Index: 1 Item: Armor_11Up_Box Rate: 1 - - Index: 14 - Item: Comp_Battle_Bubble - Rate: 1000 - - Index: 15 - Item: Amistr_Scroll + Announced: true + - Index: 2 + Item: Weapon_9Up_Box + Rate: 9 + Announced: true + - Index: 3 + Item: Armor_9Up_Box + Rate: 9 + Announced: true + - Index: 4 + Item: Weapon_7Up_Box + Rate: 15 + Announced: true + - Index: 5 + Item: Armor_7Up_Box + Rate: 15 + Announced: true + - Index: 6 + Item: New_Year_Shadow_Cube + Rate: 100 + Announced: true + - Index: 7 + Item: Sealed_Card + Rate: 10 + Announced: true + - Index: 8 + Item: Amistr_Box Rate: 400 - - Index: 16 + Announced: true + - Index: 9 Item: S_Runeknight_Weapon Rate: 150 - - Index: 17 + - Index: 10 Item: S_Royalguard_Weapon Rate: 150 - - Index: 18 + - Index: 11 Item: S_Mechanic_weapon Rate: 150 - - Index: 19 + - Index: 12 Item: S_Genetic_Weapon Rate: 150 - - Index: 20 + - Index: 13 Item: S_Archbishop_Weapon Rate: 150 - - Index: 21 + - Index: 14 Item: S_Sura_weapon Rate: 150 - - Index: 22 + - Index: 15 Item: S_Guillotine_Weapon Rate: 150 - - Index: 23 + - Index: 16 Item: S_Shadowchaser_Weapon Rate: 150 - - Index: 24 + - Index: 17 Item: S_Warlock_Weapon Rate: 150 - - Index: 25 + - Index: 18 Item: S_Sorcerer_Weapon Rate: 150 - - Index: 26 + - Index: 19 Item: S_Ranger_Weapon Rate: 150 - - Index: 27 + - Index: 20 Item: S_Minstrel_Weapon Rate: 150 - - Index: 28 + - Index: 21 Item: S_Wanderer_Weapon Rate: 150 + - Index: 22 + Item: Blacksmith_Blessing + Rate: 900 + - Index: 23 + Item: C_CatPaw_1Day_Box + Rate: 1000 + - Index: 24 + Item: C_Wing_Of_Fly_3Day_Box + Rate: 1000 + - Index: 25 + Item: Comp_Battle_Bubble + Rate: 1000 + Amount: 2 + - Index: 26 + Item: Potion_Box + Rate: 1100 + - Index: 27 + Item: Poison_Bottle_Box2 + Rate: 1000 + - Index: 28 + Item: Treasure_Box + Rate: 1490 + Amount: 3 - Group: AMISTR_BOX SubGroups: - SubGroup: 1 List: - Index: 0 Item: AmistrBag_Teleport - Rate: 1111 + Rate: 1 - Index: 1 Item: AmistrBag_Heal - Rate: 1111 + Rate: 1 - Index: 2 Item: AmistrBag_Greed - Rate: 1111 + Rate: 1 - Index: 3 Item: AmistrBag_Incagi - Rate: 1111 + Rate: 1 - Index: 4 Item: AmistrBag_Magnum - Rate: 1111 + Rate: 1 - Index: 5 Item: AmistrBag_Endure - Rate: 1111 + Rate: 1 - Index: 6 Item: AmistrBag_Sight - Rate: 1111 + Rate: 1 - Index: 7 Item: AmistrBag_Concentrate - Rate: 1111 + Rate: 1 - Index: 8 Item: AmistrBag_Hiding - Rate: 1111 + Rate: 1 - Group: SHADOW_SCROLL SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Treasure_Box - Rate: 1480 - - Index: 1 - Item: Poison_Bottle_Box2 - Rate: 1000 - - Index: 2 - Item: Potion_Box - Rate: 1000 - - Index: 3 - Item: Shadow_Scroll - Rate: 1000 - - Index: 4 - Item: PetTradeTicket_Box - Rate: 100 - - Index: 5 - Item: Sealed_Card - Rate: 10 - - Index: 6 - Item: Weapon_7Up_Box - Rate: 15 - - Index: 7 - Item: Weapon_9Up_Box - Rate: 9 - - Index: 8 Item: Weapon_11Up_Box Rate: 1 - - Index: 9 - Item: Armor_7Up_Box - Rate: 15 - - Index: 10 - Item: Armor_9Up_Box - Rate: 9 - - Index: 11 + Announced: true + - Index: 1 Item: Armor_11Up_Box Rate: 1 - - Index: 12 - Item: Shadow_Scroll + Announced: true + - Index: 2 + Item: Weapon_9Up_Box + Rate: 9 + Announced: true + - Index: 3 + Item: Armor_9Up_Box + Rate: 9 + Announced: true + - Index: 4 + Item: Weapon_7Up_Box + Rate: 15 + Announced: true + - Index: 5 + Item: Armor_7Up_Box + Rate: 15 + Announced: true + - Index: 6 + Item: PetTradeTicket_Box + Rate: 100 + Announced: true + - Index: 7 + Item: Sealed_Card + Rate: 10 + Announced: true + - Index: 8 + Item: Sealed_Hat_Box Rate: 80 - - Index: 13 - Item: Comp_Battle_Bubble - Rate: 1000 - - Index: 14 - Item: Shadow_Scroll + Announced: true + - Index: 9 + Item: Sealed_Hat_Box2 Rate: 50 - - Index: 15 - Item: Minus_Status_Box - Rate: 500 - - Index: 16 - Item: Shadow_Scroll + Announced: true + - Index: 10 + Item: New_Hat_Box Rate: 20 - - Index: 17 - Item: Class_Shadow_Cube - Rate: 1500 - - Index: 18 + Announced: true + - Index: 11 Item: S_Runeknight_Shield Rate: 170 - - Index: 19 + - Index: 12 Item: S_Royalguard_Shield Rate: 170 - - Index: 20 + - Index: 13 Item: S_Mechanic_Shield Rate: 170 - - Index: 21 + - Index: 14 Item: S_Genetic_Shield Rate: 170 - - Index: 22 + - Index: 15 Item: S_Archbishop_Shield Rate: 170 - - Index: 23 + - Index: 16 Item: S_Sura_Shield Rate: 170 - - Index: 24 + - Index: 17 Item: S_Guillotine_Shield Rate: 170 - - Index: 25 + - Index: 18 Item: S_Shadowchaser_Shield Rate: 170 - - Index: 26 + - Index: 19 Item: S_Warlock_Shield Rate: 170 - - Index: 27 + - Index: 20 Item: S_Sorcerer_Shield Rate: 170 - - Index: 28 + - Index: 21 Item: S_Ranger_Shield Rate: 170 - - Index: 29 + - Index: 22 Item: S_Minstrel_Shield Rate: 170 - - Index: 30 + - Index: 23 Item: S_Wanderer_Shield Rate: 170 + - Index: 24 + Item: Minus_Status_Box + Rate: 500 + - Index: 25 + Item: C_Giant_Fly_1Day_Box + Rate: 1000 + - Index: 26 + Item: Class_Shadow_Cube + Rate: 1500 + - Index: 27 + Item: Comp_Battle_Bubble + Rate: 1000 + Amount: 2 + - Index: 28 + Item: Potion_Box + Rate: 1000 + - Index: 29 + Item: Poison_Bottle_Box2 + Rate: 1000 + - Index: 30 + Item: Treasure_Box + Rate: 1480 + Amount: 3 - Group: SPIRIT_SCROLL SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Blacksmith_Blessing - Rate: 900 - - Index: 1 - Item: Treasure_Box - Rate: 1400 - - Index: 2 - Item: Poison_Bottle_Box2 - Rate: 1000 - - Index: 3 - Item: Potion_Box - Rate: 1000 - - Index: 4 - Item: Spirit_Scroll - Rate: 1000 - - Index: 5 - Item: Spirit_Of_Chung_E - Rate: 200 - - Index: 6 - Item: Weapon_7Up_Box - Rate: 15 - - Index: 7 - Item: Weapon_9Up_Box - Rate: 9 - - Index: 8 Item: Weapon_11Up_Box Rate: 1 - - Index: 9 - Item: Armor_7Up_Box - Rate: 15 - - Index: 10 - Item: Armor_9Up_Box - Rate: 9 - - Index: 11 + Announced: true + - Index: 1 Item: Armor_11Up_Box Rate: 1 - - Index: 12 - Item: Shadow_Cube_Weapon - Rate: 300 - - Index: 13 - Item: Shadow_Cube_Armor - Rate: 300 - - Index: 14 - Item: Shadow_Cube_Shield - Rate: 300 - - Index: 15 - Item: Shadow_Cube_Shoes - Rate: 300 - - Index: 16 - Item: Shadow_Cube_Pendant - Rate: 300 - - Index: 17 - Item: Shadow_Cube_Earing - Rate: 300 - - Index: 18 - Item: Comp_Battle_Bubble - Rate: 1350 - - Index: 19 - Item: Class_Shadow_Cube - Rate: 1000 - - Index: 20 - Item: Spirit_Scroll + Announced: true + - Index: 2 + Item: Weapon_9Up_Box + Rate: 9 + Announced: true + - Index: 3 + Item: Armor_9Up_Box + Rate: 9 + Announced: true + - Index: 4 + Item: Weapon_7Up_Box + Rate: 15 + Announced: true + - Index: 5 + Item: Armor_7Up_Box + Rate: 15 + Announced: true + - Index: 6 + Item: Sealed_Hat_Box3 Rate: 100 - - Index: 21 + Announced: true + - Index: 7 Item: Pump_Of_Spirit Rate: 200 + Announced: true + - Index: 8 + Item: Spirit_Of_Chung_E + Rate: 200 + Announced: true + - Index: 9 + Item: Shadow_Cube_Weapon + Rate: 300 + - Index: 10 + Item: Shadow_Cube_Armor + Rate: 300 + - Index: 11 + Item: Shadow_Cube_Shoes + Rate: 300 + - Index: 12 + Item: Shadow_Cube_Shield + Rate: 300 + - Index: 13 + Item: Shadow_Cube_Pendant + Rate: 300 + - Index: 14 + Item: Shadow_Cube_Earing + Rate: 300 + - Index: 15 + Item: Blacksmith_Blessing + Rate: 900 + - Index: 16 + Item: C_Giant_Fly_1Day_Box + Rate: 1000 + - Index: 17 + Item: Comp_Battle_Bubble + Rate: 1350 + Amount: 2 + - Index: 18 + Item: Potion_Box + Rate: 1000 + - Index: 19 + Item: Poison_Bottle_Box2 + Rate: 1000 + - Index: 20 + Item: Class_Shadow_Cube + Rate: 1000 + - Index: 21 + Item: Treasure_Box + Rate: 1400 + Amount: 3 - Group: SEALED_HAT_BOX3 SubGroups: - SubGroup: 1 List: - Index: 0 Item: Ifrit's_Ear - Rate: 2000 + Rate: 1 - Index: 1 Item: Samambaia - Rate: 2000 + Rate: 1 - Index: 2 - Item: K_Rabbit_Bonnet - Rate: 2000 - - Index: 3 Item: Gryphon_Hat - Rate: 2000 + Rate: 1 + - Index: 3 + Item: K_Rabbit_Bonnet + Rate: 1 - Index: 4 Item: Rainbow_Feather_Deco - Rate: 2000 + Rate: 1 - Group: CACHUA_WEAPON SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Sword - Rate: 300 + Item: God_Material_Box + Rate: 10 + Announced: true - Index: 1 - Item: Blade_ - Rate: 300 + Item: Sillit_Pong_Bottle + Rate: 10 + Announced: true - Index: 2 - Item: Katana - Rate: 300 + Item: C_L_Magestic_Goat + Rate: 10 + Announced: true - Index: 3 - Item: Saber_ - Rate: 30 + Item: C_Vicious_Stop_Bandage + Rate: 10 + Announced: true - Index: 4 - Item: Ice_Falchon - Rate: 25 + Item: Drooping_Aliot + Rate: 10 + Announced: true - Index: 5 - Item: Fire_Brand - Rate: 25 + Item: Drooping_Kiehl + Rate: 10 + Announced: true - Index: 6 - Item: Town_Sword_ - Rate: 30 + Item: C_Invisible_Cap + Rate: 10 + Announced: true - Index: 7 - Item: Bastard_Sword_ - Rate: 30 + Item: C_Invisible_Sunglasses + Rate: 10 + Announced: true - Index: 8 - Item: Zweihander - Rate: 25 + Item: C_Invisible_Mask + Rate: 10 + Announced: true - Index: 9 - Item: Zweihander_ - Rate: 1 + Item: C_Eleanor_Wig_YL + Rate: 10 + Announced: true - Index: 10 - Item: Alca_Bringer - Rate: 25 + Item: C_Seraph_Wing_Helm + Rate: 10 + Announced: true - Index: 11 - Item: Chrome_Twohand_Sword - Rate: 25 + Item: C_FallenAngelWingEar + Rate: 10 + Announced: true - Index: 12 - Item: Knife - Rate: 300 + Item: C_Rabbit_Two_Side_Up + Rate: 10 + Announced: true - Index: 13 - Item: Main_Gauche_ - Rate: 300 + Item: C_Volume_Low_Twin_CB + Rate: 10 + Announced: true - Index: 14 - Item: Gladius_ - Rate: 30 + Item: C_Soulless_Wing + Rate: 10 + Announced: true - Index: 15 - Item: Damascus - Rate: 30 + Item: C_Piamette_Roll_HairK + Rate: 10 + Announced: true - Index: 16 - Item: Bazerald - Rate: 1 + Item: Brilliant_Golden_Wings + Rate: 10 + Announced: true - Index: 17 - Item: Cinquedea_ - Rate: 30 + Item: C_Kururinpa_Hair + Rate: 10 + Announced: true - Index: 18 - Item: Jur - Rate: 30 + Item: C_General_Helmet + Rate: 10 + Announced: true - Index: 19 - Item: Jur_ - Rate: 30 + Item: C_Spell_Circuit + Rate: 10 + Announced: true - Index: 20 - Item: Katar_ - Rate: 30 + Item: C_Dog_Officer + Rate: 10 + Announced: true - Index: 21 - Item: Katar_Of_Cold_Icicle - Rate: 25 + Item: C_Amistr_Beret + Rate: 10 + Announced: true - Index: 22 - Item: Katar_Of_Thornbush - Rate: 25 + Item: C_Classical_Fhat + Rate: 10 + Announced: true - Index: 23 - Item: Katar_Of_Raging_Blaze - Rate: 25 + Item: C_Electro_Two_Side_Up + Rate: 10 + Announced: true - Index: 24 - Item: Katar_Of_Piercing_Wind - Rate: 25 + Item: Durumagi + Rate: 10 + Announced: true - Index: 25 - Item: Ghoul_Leg - Rate: 25 + Item: C_Medium_Wave + Rate: 10 + Announced: true - Index: 26 - Item: Nail_Of_Loki - Rate: 300 + Item: C_Shih_Tzu_Long + Rate: 10 + Announced: true - Index: 27 - Item: Various_Jur - Rate: 300 + Item: C_L_Knitting_Low_Twin + Rate: 10 + Announced: true - Index: 28 - Item: Krishna - Rate: 25 + Item: C_Elegant_Wave + Rate: 10 + Announced: true - Index: 29 - Item: Cakram - Rate: 25 + Item: C_Braid_Half_Up_Box + Rate: 10 + Announced: true - Index: 30 - Item: Guillotine_Katar - Rate: 1 + Item: C_Inner_Color_Long + Rate: 10 + Announced: true - Index: 31 - Item: Axe - Rate: 300 + Item: Fluffy_Semi_Long_Box + Rate: 10 + Announced: true - Index: 32 - Item: Orcish_Axe - Rate: 400 + Item: Mushroom_Hair + Rate: 10 + Announced: true - Index: 33 - Item: Windhawk - Rate: 30 + Item: C_Medium_Wave_BD + Rate: 10 + Announced: true - Index: 34 - Item: Vecer_Axe - Rate: 25 + Item: C_Evil_Druid_Hat + Rate: 10 + Announced: true - Index: 35 - Item: Right_Epsilon - Rate: 25 + Item: Signon_Prin_Wave_Box + Rate: 10 + Announced: true - Index: 36 - Item: Hurricane_Fury - Rate: 1 + Item: Diffusion_Bravery_Bag + Rate: 10 + Announced: true - Index: 37 - Item: Ygnus_Stale - Rate: 25 + Item: K_King_Tiger_Doll_Hat + Rate: 10 + Announced: true - Index: 38 - Item: End_Sektura - Rate: 25 + Item: K_Fallen_Angel_Wing + Rate: 10 + Announced: true - Index: 39 - Item: Javelin_ - Rate: 300 + Item: FallenAngelWing_Reset + Rate: 10 + Announced: true - Index: 40 - Item: Pike_ - Rate: 300 + Item: Diffusion_Lacma + Rate: 10 + Announced: true - Index: 41 - Item: Gungnir - Rate: 25 + Item: K_Heart_Wing_Hairband + Rate: 10 + Announced: true - Index: 42 - Item: Gungnir_ - Rate: 1 + Item: K_New_Wave_Sunglasses + Rate: 10 + Announced: true - Index: 43 - Item: Hunting_Spear - Rate: 25 + Item: FaceWorm_Breath + Rate: 10 + Announced: true - Index: 44 - Item: Imperial_Spear - Rate: 25 + Item: Celine_Brooch_K + Rate: 10 + Announced: true - Index: 45 - Item: Guisarme_ - Rate: 30 + Item: Victory_Wing_Ear + Rate: 10 + Announced: true - Index: 46 - Item: Crescent_Scythe - Rate: 25 + Item: Thanatos_Pendant + Rate: 10 + Announced: true - Index: 47 - Item: Crescent_Scythe_ - Rate: 1 + Item: Pump_Of_Spirit + Rate: 40 + Announced: true - Index: 48 - Item: Cardo - Rate: 25 + Item: Blacksmith_Blessing + Rate: 100 + Announced: true - Index: 49 - Item: Giant_Lance - Rate: 1 + Item: Royal_Bow_K + Rate: 7 + Announced: true - Index: 50 - Item: Mace - Rate: 300 + Item: Narcis_Bow + Rate: 7 + Announced: true - Index: 51 - Item: Chain_ - Rate: 30 + Item: Shadow_Staff_K + Rate: 7 + Announced: true - Index: 52 - Item: Quadrille - Rate: 25 + Item: Iron_Nail_K + Rate: 7 + Announced: true - Index: 53 - Item: Iron_Driver - Rate: 25 + Item: Magic_Sword + Rate: 7 + Announced: true - Index: 54 - Item: Book - Rate: 30 + Item: Sword_Of_Bluefire + Rate: 7 + Announced: true - Index: 55 - Item: Book_Of_Billows - Rate: 25 + Item: Avenger + Rate: 7 + Announced: true - Index: 56 - Item: Book_Of_Mother_Earth - Rate: 25 + Item: Iron_Staff + Rate: 7 + Announced: true - Index: 57 - Item: Book_Of_Blazing_Sun - Rate: 25 + Item: Oriental_Sword + Rate: 7 + Announced: true - Index: 58 - Item: Book_Of_Gust_Of_Wind - Rate: 25 + Item: Undine_Spear_K + Rate: 7 + Announced: true - Index: 59 - Item: Diary_Of_Great_Sage - Rate: 25 + Item: Demon_Hunting_Bible_K + Rate: 7 + Announced: true - Index: 60 - Item: Death_Note - Rate: 25 + Item: Shiver_Katar_K + Rate: 7 + Announced: true - Index: 61 - Item: Principles_Of_Magic - Rate: 25 + Item: OneSkyOneSun + Rate: 7 + Announced: true - Index: 62 - Item: Chilly_Spell_Book - Rate: 25 + Item: SoulWeight + Rate: 7 + Announced: true - Index: 63 - Item: Rod - Rate: 300 + Item: MeawFoxtail + Rate: 7 + Announced: true - Index: 64 - Item: Rod_ - Rate: 400 + Item: Crimson_Rose + Rate: 7 + Announced: true - Index: 65 - Item: Wand - Rate: 300 + Item: Master_Soul_Rifle + Rate: 7 + Announced: true - Index: 66 - Item: Staff_ - Rate: 300 + Item: Demon_S_Shot + Rate: 7 + Announced: true - Index: 67 - Item: Arc_Wand - Rate: 30 + Item: Golden_L_Launcher + Rate: 7 + Announced: true - Index: 68 - Item: Bone_Wand - Rate: 400 + Item: The_Black_Gatling + Rate: 7 + Announced: true - Index: 69 - Item: Hypnotist's_Staff_ - Rate: 300 + Item: Sharp_Wind_Sword + Rate: 7 + Announced: true - Index: 70 - Item: Mental_Stick - Rate: 25 + Item: Fog_Dew_Sword + Rate: 7 + Announced: true - Index: 71 - Item: Recovery_Light - Rate: 1 + Item: Humma_Clear + Rate: 7 + Announced: true - Index: 72 - Item: Thorn_Staff_ - Rate: 1 + Item: Dragonic_Slayer + Rate: 7 + Announced: true - Index: 73 - Item: Bow - Rate: 300 + Item: Light_Blade + Rate: 7 + Announced: true - Index: 74 - Item: Bow_ - Rate: 304 + Item: Meteor_Striker + Rate: 7 + Announced: true - Index: 75 - Item: CrossBow_ - Rate: 30 + Item: Slate_Sword + Rate: 7 + Announced: true - Index: 76 - Item: Arbalest_ - Rate: 30 + Item: Trumpet_Shell_K + Rate: 7 + Announced: true - Index: 77 - Item: Kakkung_ - Rate: 30 + Item: Barb_Wire_K + Rate: 7 + Announced: true - Index: 78 - Item: Luna_Bow - Rate: 300 + Item: Saint_Hall + Rate: 7 + Announced: true - Index: 79 - Item: Hunter_Bow_ - Rate: 1 + Item: Ray_Knuckle + Rate: 7 + Announced: true - Index: 80 - Item: Waghnakh_ - Rate: 300 + Item: Blade_Katar + Rate: 7 + Announced: true - Index: 81 - Item: Knuckle_Duster_ - Rate: 30 + Item: Fatalist + Rate: 7 + Announced: true - Index: 82 - Item: Hora_ - Rate: 30 + Item: Scalet_Dragon_L_Bow + Rate: 7 + Announced: true - Index: 83 - Item: Fist_ - Rate: 30 + Item: Blue_Crystal_Staff + Rate: 7 + Announced: true - Index: 84 - Item: Berserk - Rate: 25 + Item: Freezing_Rod + Rate: 7 + Announced: true - Index: 85 - Item: Horn_Of_Hilthrion - Rate: 25 + Item: Thorn_Staff_ + Rate: 100 - Index: 86 - Item: Sura_Rampage - Rate: 25 + Item: Zweihander_ + Rate: 140 - Index: 87 - Item: Violin_ - Rate: 300 + Item: Giant_Lance + Rate: 140 - Index: 88 - Item: Mandolin_ - Rate: 30 + Item: Bazerald + Rate: 140 - Index: 89 - Item: Lute_ - Rate: 30 + Item: Robot's_Arm + Rate: 140 - Index: 90 - Item: Guitar_ - Rate: 30 + Item: Spoon + Rate: 140 - Index: 91 - Item: Guitar_Of_Passion - Rate: 25 + Item: Guillotine_Katar + Rate: 140 - Index: 92 - Item: Guitar_Of_Blue_Solo - Rate: 25 + Item: RAG203_ + Rate: 140 - Index: 93 - Item: Guitar_Of_Vast_Land - Rate: 25 - - Index: 94 - Item: Guitar_Of_Gentle_Breeze - Rate: 25 - - Index: 95 - Item: Berserk_Guitar - Rate: 25 - - Index: 96 - Item: Oriental_Lute_ - Rate: 1 - - Index: 97 - Item: Green_Whistle - Rate: 25 - - Index: 98 - Item: Rope_ - Rate: 300 - - Index: 99 - Item: Line_ - Rate: 30 - - Index: 100 - Item: Wire_ - Rate: 30 - - Index: 101 - Item: Rante_ - Rate: 30 - - Index: 102 - Item: Tail_ - Rate: 30 - - Index: 103 - Item: Whip_ - Rate: 30 - - Index: 104 - Item: Whip_Of_Red_Flame - Rate: 25 - - Index: 105 - Item: Whip_Of_Ice_Piece - Rate: 25 - - Index: 106 - Item: Whip_Of_Earth - Rate: 25 - - Index: 107 - Item: Jump_Rope - Rate: 25 - - Index: 108 - Item: Queen's_Whip - Rate: 25 - - Index: 109 - Item: Electric_Wire - Rate: 25 - - Index: 110 - Item: Queen's_Whip_ - Rate: 1 - - Index: 111 - Item: Stem_Whip - Rate: 25 - - Index: 112 - Item: Destruction_Rod - Rate: 25 - - Index: 113 - Item: Dea_Staff - Rate: 25 - - Index: 114 - Item: Staff_Of_Geffen - Rate: 1 - - Index: 115 - Item: Dragon_Killer - Rate: 25 - - Index: 116 - Item: Krieg - Rate: 25 - - Index: 117 - Item: Black_Wing - Rate: 25 - - Index: 118 - Item: Gold_Lux - Rate: 25 - - Index: 119 Item: ALTAIR_ARES_ - Rate: 1 - - Index: 120 + Rate: 140 + - Index: 94 + Item: P_BREAKER_ + Rate: 140 + - Index: 95 + Item: Hurricane_Fury + Rate: 142 + - Index: 96 + Item: Tornado_Axe + Rate: 143 + - Index: 97 + Item: Queen's_Whip_ + Rate: 143 + - Index: 98 + Item: Oriental_Lute_ + Rate: 143 + - Index: 99 + Item: Catapult + Rate: 143 + - Index: 100 + Item: Hunter_Bow_ + Rate: 143 + - Index: 101 + Item: Staff_Of_Geffen + Rate: 143 + - Index: 102 + Item: Recovery_Light + Rate: 143 + - Index: 103 + Item: Gungnir_ + Rate: 143 + - Index: 104 + Item: Crescent_Scythe_ + Rate: 143 + - Index: 105 + Item: Fire_Brand + Rate: 2500 + - Index: 106 + Item: Ice_Falchon + Rate: 2500 + - Index: 107 + Item: Zweihander + Rate: 2500 + - Index: 108 + Item: Alca_Bringer + Rate: 2500 + - Index: 109 + Item: Dragon_Killer + Rate: 2500 + - Index: 110 + Item: Gungnir + Rate: 2500 + - Index: 111 + Item: Imperial_Spear + Rate: 2500 + - Index: 112 + Item: Hunting_Spear + Rate: 2500 + - Index: 113 + Item: Crescent_Scythe + Rate: 2500 + - Index: 114 Item: Butcher_ - Rate: 25 - - Index: 121 + Rate: 2500 + - Index: 115 Item: Destroyer_ - Rate: 25 + Rate: 2500 + - Index: 116 + Item: Cardo + Rate: 2500 + - Index: 117 + Item: Berserk + Rate: 2500 + - Index: 118 + Item: Horn_Of_Hilthrion + Rate: 2500 + - Index: 119 + Item: Quadrille + Rate: 2500 + - Index: 120 + Item: Lever_Action_Rifle + Rate: 2500 + - Index: 121 + Item: Gold_Lux + Rate: 2500 - Index: 122 Item: Gate_KeeperDD - Rate: 25 + Rate: 2500 - Index: 123 - Item: Lever_Action_Rifle - Rate: 25 + Item: Berserk_Guitar + Rate: 2500 - Index: 124 - Item: RAG203_ - Rate: 1 + Item: Destruction_Rod + Rate: 2500 - Index: 125 - Item: P_BREAKER_ - Rate: 1 + Item: Right_Epsilon + Rate: 2500 - Index: 126 - Item: Huuma_Blaze - Rate: 25 + Item: Queen's_Whip + Rate: 2500 - Index: 127 - Item: Huuma_Swirling_Petal - Rate: 25 + Item: Death_Note + Rate: 2500 - Index: 128 - Item: Huuma_Fluttering_Snow - Rate: 25 + Item: Principles_Of_Magic + Rate: 2500 - Index: 129 - Item: Huuma_Thunderstorm - Rate: 25 + Item: Diary_Of_Great_Sage + Rate: 2500 - Index: 130 - Item: Chrome_Sword - Rate: 25 + Item: Huuma_Fluttering_Snow + Rate: 2500 - Index: 131 - Item: Red_Ether_Bag - Rate: 25 + Item: Huuma_Thunderstorm + Rate: 2500 - Index: 132 - Item: Robot's_Arm - Rate: 1 + Item: Huuma_Swirling_Petal + Rate: 2500 - Index: 133 - Item: Spoon - Rate: 1 + Item: Katar_Of_Raging_Blaze + Rate: 2500 - Index: 134 - Item: Catapult - Rate: 1 + Item: Katar_Of_Thornbush + Rate: 2500 - Index: 135 - Item: Creeper_Bow - Rate: 25 + Item: Katar_Of_Cold_Icicle + Rate: 2500 - Index: 136 - Item: Tornado_Axe - Rate: 1 + Item: Katar_Of_Piercing_Wind + Rate: 2500 + - Index: 137 + Item: Ghoul_Leg + Rate: 2500 + - Index: 138 + Item: Guitar_Of_Passion + Rate: 2500 + - Index: 139 + Item: Guitar_Of_Blue_Solo + Rate: 2500 + - Index: 140 + Item: Guitar_Of_Vast_Land + Rate: 2500 + - Index: 141 + Item: Guitar_Of_Gentle_Breeze + Rate: 2500 + - Index: 142 + Item: Whip_Of_Red_Flame + Rate: 2500 + - Index: 143 + Item: Whip_Of_Ice_Piece + Rate: 2500 + - Index: 144 + Item: Whip_Of_Earth + Rate: 2500 + - Index: 145 + Item: Electric_Wire + Rate: 2500 + - Index: 146 + Item: Jump_Rope + Rate: 2500 + - Index: 147 + Item: Huuma_Blaze + Rate: 2500 + - Index: 148 + Item: Iron_Driver + Rate: 2500 + - Index: 149 + Item: Book_Of_Billows + Rate: 2500 + - Index: 150 + Item: Book_Of_Mother_Earth + Rate: 2500 + - Index: 151 + Item: Book_Of_Blazing_Sun + Rate: 2500 + - Index: 152 + Item: Book_Of_Gust_Of_Wind + Rate: 2500 + - Index: 153 + Item: Chrome_Sword + Rate: 2500 + - Index: 154 + Item: Chrome_Twohand_Sword + Rate: 2500 + - Index: 155 + Item: Black_Wing + Rate: 2500 + - Index: 156 + Item: Krieg + Rate: 2500 + - Index: 157 + Item: Sura_Rampage + Rate: 2500 + - Index: 158 + Item: Red_Ether_Bag + Rate: 2500 + - Index: 159 + Item: Green_Whistle + Rate: 2500 + - Index: 160 + Item: Dea_Staff + Rate: 2500 + - Index: 161 + Item: End_Sektura + Rate: 2500 + - Index: 162 + Item: Ygnus_Stale + Rate: 2500 + - Index: 163 + Item: Stem_Whip + Rate: 2500 + - Index: 164 + Item: Chilly_Spell_Book + Rate: 2500 + - Index: 165 + Item: Krishna + Rate: 2500 + - Index: 166 + Item: Cakram + Rate: 2500 + - Index: 167 + Item: Mental_Stick + Rate: 2500 + - Index: 168 + Item: Vecer_Axe + Rate: 2500 + - Index: 169 + Item: Creeper_Bow + Rate: 2500 + - Index: 170 + Item: Whip_ + Rate: 3000 + - Index: 171 + Item: Rante_ + Rate: 3000 + - Index: 172 + Item: Tail_ + Rate: 3000 + - Index: 173 + Item: Line_ + Rate: 3000 + - Index: 174 + Item: Wire_ + Rate: 3000 + - Index: 175 + Item: Lute_ + Rate: 3000 + - Index: 176 + Item: Mandolin_ + Rate: 3000 + - Index: 177 + Item: Guitar_ + Rate: 3000 + - Index: 178 + Item: Fist_ + Rate: 3000 + - Index: 179 + Item: Hora_ + Rate: 3000 + - Index: 180 + Item: Knuckle_Duster_ + Rate: 3000 + - Index: 181 + Item: Book + Rate: 3000 + - Index: 182 + Item: Cinquedea_ + Rate: 3000 + - Index: 183 + Item: Town_Sword_ + Rate: 3000 + - Index: 184 + Item: Jur + Rate: 3000 + - Index: 185 + Item: Guisarme_ + Rate: 3000 + - Index: 186 + Item: Kakkung_ + Rate: 3000 + - Index: 187 + Item: Arbalest_ + Rate: 3000 + - Index: 188 + Item: CrossBow_ + Rate: 3000 + - Index: 189 + Item: Chain_ + Rate: 3000 + - Index: 190 + Item: Arc_Wand + Rate: 3000 + - Index: 191 + Item: Windhawk + Rate: 3000 + - Index: 192 + Item: Damascus + Rate: 3000 + - Index: 193 + Item: Katar_ + Rate: 3000 + - Index: 194 + Item: Jur_ + Rate: 3000 + - Index: 195 + Item: Saber_ + Rate: 3000 + - Index: 196 + Item: Bastard_Sword_ + Rate: 3000 + - Index: 197 + Item: Gladius_ + Rate: 3000 + - Index: 198 + Item: Javelin_ + Rate: 30000 + - Index: 199 + Item: Rope_ + Rate: 30000 + - Index: 200 + Item: Violin_ + Rate: 30000 + - Index: 201 + Item: Waghnakh_ + Rate: 30000 + - Index: 202 + Item: Various_Jur + Rate: 30000 + - Index: 203 + Item: Nail_Of_Loki + Rate: 30000 + - Index: 204 + Item: Hypnotist's_Staff_ + Rate: 30000 + - Index: 205 + Item: Luna_Bow + Rate: 30000 + - Index: 206 + Item: Knife + Rate: 30000 + - Index: 207 + Item: Sword + Rate: 30000 + - Index: 208 + Item: Rod + Rate: 30000 + - Index: 209 + Item: Katana + Rate: 30000 + - Index: 210 + Item: Axe + Rate: 30000 + - Index: 211 + Item: Bow + Rate: 30000 + - Index: 212 + Item: Mace + Rate: 30000 + - Index: 213 + Item: Wand + Rate: 30000 + - Index: 214 + Item: Blade_ + Rate: 30000 + - Index: 215 + Item: Staff_ + Rate: 30000 + - Index: 216 + Item: Pike_ + Rate: 30000 + - Index: 217 + Item: Main_Gauche_ + Rate: 30000 + - Index: 218 + Item: Bow_ + Rate: 30000 + - Index: 219 + Item: Bone_Wand + Rate: 39849 + - Index: 220 + Item: Rod_ + Rate: 40000 + - Index: 221 + Item: Orcish_Axe + Rate: 40000 - Group: CACHUA_ROBE SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Hood - Rate: 1202 + Item: God_Material_Box + Rate: 1 + Announced: true - Index: 1 - Item: Hood_ - Rate: 1200 + Item: Sillit_Pong_Bottle + Rate: 1 + Announced: true - Index: 2 - Item: Muffler - Rate: 1200 + Item: C_L_Magestic_Goat + Rate: 1 + Announced: true - Index: 3 - Item: Muffler_ - Rate: 1200 + Item: C_Vicious_Stop_Bandage + Rate: 1 + Announced: true - Index: 4 - Item: Manteau - Rate: 550 + Item: Drooping_Aliot + Rate: 1 + Announced: true - Index: 5 - Item: Manteau_ - Rate: 550 + Item: Drooping_Kiehl + Rate: 1 + Announced: true - Index: 6 - Item: Cape_Of_Ancient_Lord - Rate: 190 + Item: C_Invisible_Cap + Rate: 1 + Announced: true - Index: 7 - Item: Clack_Of_Servival - Rate: 200 + Item: C_Invisible_Sunglasses + Rate: 1 + Announced: true - Index: 8 - Item: Celestial_Robe - Rate: 1200 + Item: C_Invisible_Mask + Rate: 1 + Announced: true - Index: 9 - Item: Pauldron - Rate: 1300 + Item: C_Eleanor_Wig_YL + Rate: 1 + Announced: true - Index: 10 - Item: Wing_Of_Eagle - Rate: 200 + Item: C_Seraph_Wing_Helm + Rate: 1 + Announced: true - Index: 11 - Item: Angel's_Warmth - Rate: 190 + Item: C_FallenAngelWingEar + Rate: 1 + Announced: true - Index: 12 - Item: Undershirt_ - Rate: 3 + Item: C_Rabbit_Two_Side_Up + Rate: 1 + Announced: true - Index: 13 - Item: Valkyrie_Manteau - Rate: 3 + Item: C_Volume_Low_Twin_CB + Rate: 1 + Announced: true - Index: 14 - Item: Rider_Insignia - Rate: 200 + Item: C_Soulless_Wing + Rate: 1 + Announced: true - Index: 15 - Item: Rider_Insignia_ - Rate: 3 + Item: C_Piamette_Roll_HairK + Rate: 1 + Announced: true - Index: 16 - Item: Skin_Of_Ventus - Rate: 200 + Item: Brilliant_Golden_Wings + Rate: 1 + Announced: true - Index: 17 - Item: Dragon_Manteau - Rate: 200 + Item: C_Kururinpa_Hair + Rate: 1 + Announced: true - Index: 18 - Item: Beach_Towel - Rate: 200 + Item: C_General_Helmet + Rate: 1 + Announced: true - Index: 19 - Item: Supplement_Part_Con - Rate: 3 + Item: C_Spell_Circuit + Rate: 1 + Announced: true - Index: 20 - Item: Upgrade_Part_Engine - Rate: 3 + Item: C_Dog_Officer + Rate: 1 + Announced: true - Index: 21 + Item: C_Amistr_Beret + Rate: 1 + Announced: true + - Index: 22 + Item: C_Classical_Fhat + Rate: 1 + Announced: true + - Index: 23 + Item: C_Electro_Two_Side_Up + Rate: 1 + Announced: true + - Index: 24 + Item: Durumagi + Rate: 1 + Announced: true + - Index: 25 + Item: C_Medium_Wave + Rate: 1 + Announced: true + - Index: 26 + Item: C_Shih_Tzu_Long + Rate: 1 + Announced: true + - Index: 27 + Item: C_L_Knitting_Low_Twin + Rate: 1 + Announced: true + - Index: 28 + Item: C_Elegant_Wave + Rate: 1 + Announced: true + - Index: 29 + Item: C_Braid_Half_Up_Box + Rate: 1 + Announced: true + - Index: 30 + Item: C_Inner_Color_Long + Rate: 1 + Announced: true + - Index: 31 + Item: Fluffy_Semi_Long_Box + Rate: 1 + Announced: true + - Index: 32 + Item: Mushroom_Hair + Rate: 1 + Announced: true + - Index: 33 + Item: C_Medium_Wave_BD + Rate: 1 + Announced: true + - Index: 34 + Item: C_Evil_Druid_Hat + Rate: 1 + Announced: true + - Index: 35 + Item: Signon_Prin_Wave_Box + Rate: 1 + Announced: true + - Index: 36 + Item: Diffusion_Bravery_Bag + Rate: 1 + Announced: true + - Index: 37 + Item: K_King_Tiger_Doll_Hat + Rate: 1 + Announced: true + - Index: 38 + Item: K_Fallen_Angel_Wing + Rate: 1 + Announced: true + - Index: 39 + Item: FallenAngelWing_Reset + Rate: 1 + Announced: true + - Index: 40 + Item: Diffusion_Lacma + Rate: 1 + Announced: true + - Index: 41 + Item: K_Heart_Wing_Hairband + Rate: 1 + Announced: true + - Index: 42 + Item: K_New_Wave_Sunglasses + Rate: 1 + Announced: true + - Index: 43 + Item: FaceWorm_Breath + Rate: 1 + Announced: true + - Index: 44 + Item: Celine_Brooch_K + Rate: 1 + Announced: true + - Index: 45 + Item: Victory_Wing_Ear + Rate: 1 + Announced: true + - Index: 46 + Item: Thanatos_Pendant + Rate: 1 + Announced: true + - Index: 47 + Item: Pump_Of_Spirit + Rate: 4 + Announced: true + - Index: 48 + Item: Blacksmith_Blessing + Rate: 10 + - Index: 49 Item: Felock_Cape - Rate: 2 + Rate: 20 + - Index: 50 + Item: Valkyrie_Manteau + Rate: 30 + - Index: 51 + Item: Undershirt_ + Rate: 30 + - Index: 52 + Item: Rider_Insignia_ + Rate: 30 + - Index: 53 + Item: Upgrade_Part_Engine + Rate: 30 + - Index: 54 + Item: Supplement_Part_Con + Rate: 30 + - Index: 55 + Item: Cape_Of_Ancient_Lord + Rate: 1900 + - Index: 56 + Item: Angel's_Warmth + Rate: 1900 + - Index: 57 + Item: Beach_Towel + Rate: 2000 + - Index: 58 + Item: Wing_Of_Eagle + Rate: 2000 + - Index: 59 + Item: Skin_Of_Ventus + Rate: 2000 + - Index: 60 + Item: Rider_Insignia + Rate: 2000 + - Index: 61 + Item: Clack_Of_Servival + Rate: 2000 + - Index: 62 + Item: Dragon_Manteau + Rate: 2000 + - Index: 63 + Item: Manteau_ + Rate: 5500 + - Index: 64 + Item: Manteau + Rate: 5500 + - Index: 65 + Item: Muffler_ + Rate: 12000 + - Index: 66 + Item: Celestial_Robe + Rate: 12000 + - Index: 67 + Item: Hood_ + Rate: 12000 + - Index: 68 + Item: Muffler + Rate: 12000 + - Index: 69 + Item: Hood + Rate: 12000 + - Index: 70 + Item: Pauldron + Rate: 12969 - Group: CACHUA_MAIL SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Cotton_Shirt - Rate: 500 + Item: God_Material_Box + Rate: 1 + Announced: true - Index: 1 - Item: Cotton_Shirt_ - Rate: 462 + Item: Sillit_Pong_Bottle + Rate: 1 + Announced: true - Index: 2 - Item: Leather_Jacket - Rate: 400 + Item: C_L_Magestic_Goat + Rate: 1 + Announced: true - Index: 3 - Item: Leather_Jacket_ - Rate: 400 + Item: C_Vicious_Stop_Bandage + Rate: 1 + Announced: true - Index: 4 - Item: Adventure_Suit - Rate: 400 + Item: Drooping_Aliot + Rate: 1 + Announced: true - Index: 5 - Item: Adventurere's_Suit_ - Rate: 400 + Item: Drooping_Kiehl + Rate: 1 + Announced: true - Index: 6 - Item: Mantle - Rate: 500 + Item: C_Invisible_Cap + Rate: 1 + Announced: true - Index: 7 - Item: Mantle_ - Rate: 500 + Item: C_Invisible_Sunglasses + Rate: 1 + Announced: true - Index: 8 - Item: Coat - Rate: 500 + Item: C_Invisible_Mask + Rate: 1 + Announced: true - Index: 9 - Item: Coat_ - Rate: 400 + Item: C_Eleanor_Wig_YL + Rate: 1 + Announced: true - Index: 10 - Item: Mink_Coat - Rate: 400 + Item: C_Seraph_Wing_Helm + Rate: 1 + Announced: true - Index: 11 - Item: Clothes_Of_The_Lord - Rate: 400 + Item: C_FallenAngelWingEar + Rate: 1 + Announced: true - Index: 12 - Item: Glittering_Clothes - Rate: 400 + Item: C_Rabbit_Two_Side_Up + Rate: 1 + Announced: true - Index: 13 - Item: Formal_Suit - Rate: 400 + Item: C_Volume_Low_Twin_CB + Rate: 1 + Announced: true - Index: 14 - Item: Silk_Robe - Rate: 400 + Item: C_Soulless_Wing + Rate: 1 + Announced: true - Index: 15 - Item: Silk_Robe_ - Rate: 400 + Item: C_Piamette_Roll_HairK + Rate: 1 + Announced: true - Index: 16 - Item: Scapulare - Rate: 400 + Item: Brilliant_Golden_Wings + Rate: 1 + Announced: true - Index: 17 - Item: Scapulare_ - Rate: 400 + Item: C_Kururinpa_Hair + Rate: 1 + Announced: true - Index: 18 - Item: Holy_Robe - Rate: 130 + Item: C_General_Helmet + Rate: 1 + Announced: true - Index: 19 - Item: Wooden_Mail - Rate: 400 + Item: C_Spell_Circuit + Rate: 1 + Announced: true - Index: 20 - Item: Wooden_Mail_ - Rate: 400 + Item: C_Dog_Officer + Rate: 1 + Announced: true - Index: 21 - Item: Ninja_Suit - Rate: 130 + Item: C_Amistr_Beret + Rate: 1 + Announced: true - Index: 22 - Item: Wedding_Dress - Rate: 600 + Item: C_Classical_Fhat + Rate: 1 + Announced: true - Index: 23 - Item: G_Strings - Rate: 400 + Item: C_Electro_Two_Side_Up + Rate: 1 + Announced: true - Index: 24 - Item: Flame_Sprits_Armor_ + Item: Durumagi Rate: 1 + Announced: true - Index: 25 - Item: Water_Sprits_Armor_ + Item: C_Medium_Wave Rate: 1 + Announced: true - Index: 26 - Item: Wind_Sprits_Armor_ + Item: C_Shih_Tzu_Long Rate: 1 + Announced: true - Index: 27 - Item: Earth_Sprits_Armor_ + Item: C_L_Knitting_Low_Twin Rate: 1 + Announced: true - Index: 28 - Item: Angel's_Protection - Rate: 132 + Item: C_Elegant_Wave + Rate: 1 + Announced: true - Index: 29 - Item: Valkyrie_Armor + Item: C_Braid_Half_Up_Box Rate: 1 + Announced: true - Index: 30 - Item: Ninja_Suit_ + Item: C_Inner_Color_Long Rate: 1 + Announced: true - Index: 31 - Item: Orleans_Gown + Item: Fluffy_Semi_Long_Box Rate: 1 + Announced: true - Index: 32 - Item: G_Strings_ + Item: Mushroom_Hair Rate: 1 + Announced: true - Index: 33 - Item: Holy_Robe_ + Item: C_Medium_Wave_BD Rate: 1 + Announced: true - Index: 34 - Item: Improved_Tights + Item: C_Evil_Druid_Hat Rate: 1 + Announced: true - Index: 35 - Item: Dragon_Vest + Item: Signon_Prin_Wave_Box Rate: 1 + Announced: true - Index: 36 - Item: Tidung + Item: Diffusion_Bravery_Bag Rate: 1 + Announced: true - Index: 37 - Item: Prison_Uniform - Rate: 130 + Item: K_King_Tiger_Doll_Hat + Rate: 1 + Announced: true - Index: 38 - Item: Tenebris_Latitantes + Item: K_Fallen_Angel_Wing Rate: 1 + Announced: true - Index: 39 - Item: Rider_Suit + Item: FallenAngelWing_Reset Rate: 1 + Announced: true - Index: 40 - Item: Lounge_Suit + Item: Diffusion_Lacma Rate: 1 + Announced: true + - Index: 41 + Item: K_Heart_Wing_Hairband + Rate: 1 + Announced: true + - Index: 42 + Item: K_New_Wave_Sunglasses + Rate: 1 + Announced: true + - Index: 43 + Item: FaceWorm_Breath + Rate: 1 + Announced: true + - Index: 44 + Item: Celine_Brooch_K + Rate: 1 + Announced: true + - Index: 45 + Item: Victory_Wing_Ear + Rate: 1 + Announced: true + - Index: 46 + Item: Thanatos_Pendant + Rate: 1 + Announced: true + - Index: 47 + Item: Pump_Of_Spirit + Rate: 4 + Announced: true + - Index: 48 + Item: Blacksmith_Blessing + Rate: 10 + - Index: 49 + Item: Holy_Robe_ + Rate: 10 + - Index: 50 + Item: Ninja_Suit_ + Rate: 10 + - Index: 51 + Item: G_Strings_ + Rate: 10 + - Index: 52 + Item: Flame_Sprits_Armor_ + Rate: 10 + - Index: 53 + Item: Wind_Sprits_Armor_ + Rate: 10 + - Index: 54 + Item: Water_Sprits_Armor_ + Rate: 10 + - Index: 55 + Item: Earth_Sprits_Armor_ + Rate: 10 + - Index: 56 + Item: Lounge_Suit + Rate: 10 + - Index: 57 + Item: Tenebris_Latitantes + Rate: 10 + - Index: 58 + Item: Valkyrie_Armor + Rate: 10 + - Index: 59 + Item: Rider_Suit + Rate: 10 + - Index: 60 + Item: Tidung + Rate: 10 + - Index: 61 + Item: Improved_Tights + Rate: 10 + - Index: 62 + Item: Orleans_Gown + Rate: 10 + - Index: 63 + Item: Dragon_Vest + Rate: 10 + - Index: 64 + Item: Prison_Uniform + Rate: 1300 + - Index: 65 + Item: Holy_Robe + Rate: 1300 + - Index: 66 + Item: Ninja_Suit + Rate: 1300 + - Index: 67 + Item: Angel's_Protection + Rate: 1316 + - Index: 68 + Item: Formal_Suit + Rate: 4000 + - Index: 69 + Item: Clothes_Of_The_Lord + Rate: 4000 + - Index: 70 + Item: Wedding_Dress + Rate: 6000 + - Index: 71 + Item: Glittering_Clothes + Rate: 4000 + - Index: 72 + Item: Mink_Coat + Rate: 4000 + - Index: 73 + Item: Silk_Robe + Rate: 4000 + - Index: 74 + Item: Silk_Robe_ + Rate: 4000 + - Index: 75 + Item: Mantle + Rate: 5000 + - Index: 76 + Item: Mantle_ + Rate: 5000 + - Index: 77 + Item: G_Strings + Rate: 4000 + - Index: 78 + Item: Wooden_Mail + Rate: 4000 + - Index: 79 + Item: Wooden_Mail_ + Rate: 4000 + - Index: 80 + Item: Coat + Rate: 5000 + - Index: 81 + Item: Coat_ + Rate: 4000 + - Index: 82 + Item: Scapulare + Rate: 4000 + - Index: 83 + Item: Scapulare_ + Rate: 4000 + - Index: 84 + Item: Adventure_Suit + Rate: 4000 + - Index: 85 + Item: Adventurere's_Suit_ + Rate: 4000 + - Index: 86 + Item: Leather_Jacket + Rate: 4000 + - Index: 87 + Item: Leather_Jacket_ + Rate: 4000 + - Index: 88 + Item: Cotton_Shirt + Rate: 5000 + - Index: 89 + Item: Cotton_Shirt_ + Rate: 4573 - Group: CACHUA_SHOES SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Sandals - Rate: 800 + Item: God_Material_Box + Rate: 1 + Announced: true - Index: 1 - Item: Sandals_ - Rate: 752 + Item: Sillit_Pong_Bottle + Rate: 1 + Announced: true - Index: 2 - Item: Shoes - Rate: 800 + Item: C_L_Magestic_Goat + Rate: 1 + Announced: true - Index: 3 - Item: Shoes_ - Rate: 800 + Item: C_Vicious_Stop_Bandage + Rate: 1 + Announced: true - Index: 4 - Item: Boots - Rate: 1500 + Item: Drooping_Aliot + Rate: 1 + Announced: true - Index: 5 - Item: Boots_ - Rate: 1500 + Item: Drooping_Kiehl + Rate: 1 + Announced: true - Index: 6 - Item: Chrystal_Pumps - Rate: 800 + Item: C_Invisible_Cap + Rate: 1 + Announced: true - Index: 7 - Item: Cuffs - Rate: 800 + Item: C_Invisible_Sunglasses + Rate: 1 + Announced: true - Index: 8 - Item: Spiky_Heel - Rate: 800 + Item: C_Invisible_Mask + Rate: 1 + Announced: true - Index: 9 - Item: Angel's_Arrival - Rate: 360 + Item: C_Eleanor_Wig_YL + Rate: 1 + Announced: true - Index: 10 - Item: Valkyrie_Shoes - Rate: 3 + Item: C_Seraph_Wing_Helm + Rate: 1 + Announced: true - Index: 11 - Item: Variant_Shoes - Rate: 2 + Item: C_FallenAngelWingEar + Rate: 1 + Announced: true - Index: 12 - Item: Black_Leather_Boots - Rate: 360 + Item: C_Rabbit_Two_Side_Up + Rate: 1 + Announced: true - Index: 13 - Item: Shadow_Walk - Rate: 349 + Item: C_Volume_Low_Twin_CB + Rate: 1 + Announced: true - Index: 14 - Item: Black_Leather_Boots_ - Rate: 2 + Item: C_Soulless_Wing + Rate: 1 + Announced: true - Index: 15 - Item: Dance_Shoes - Rate: 360 + Item: C_Piamette_Roll_HairK + Rate: 1 + Announced: true - Index: 16 - Item: Shadow_Walk_ - Rate: 2 + Item: Brilliant_Golden_Wings + Rate: 1 + Announced: true - Index: 17 - Item: Supplement_Part_Agi - Rate: 3 + Item: C_Kururinpa_Hair + Rate: 1 + Announced: true - Index: 18 - Item: Upgrade_Part_Booster - Rate: 3 + Item: C_General_Helmet + Rate: 1 + Announced: true - Index: 19 + Item: C_Spell_Circuit + Rate: 1 + Announced: true + - Index: 20 + Item: C_Dog_Officer + Rate: 1 + Announced: true + - Index: 21 + Item: C_Amistr_Beret + Rate: 1 + Announced: true + - Index: 22 + Item: C_Classical_Fhat + Rate: 1 + Announced: true + - Index: 23 + Item: C_Electro_Two_Side_Up + Rate: 1 + Announced: true + - Index: 24 + Item: Durumagi + Rate: 1 + Announced: true + - Index: 25 + Item: C_Medium_Wave + Rate: 1 + Announced: true + - Index: 26 + Item: C_Shih_Tzu_Long + Rate: 1 + Announced: true + - Index: 27 + Item: C_L_Knitting_Low_Twin + Rate: 1 + Announced: true + - Index: 28 + Item: C_Elegant_Wave + Rate: 1 + Announced: true + - Index: 29 + Item: C_Braid_Half_Up_Box + Rate: 1 + Announced: true + - Index: 30 + Item: C_Inner_Color_Long + Rate: 1 + Announced: true + - Index: 31 + Item: Fluffy_Semi_Long_Box + Rate: 1 + Announced: true + - Index: 32 + Item: Mushroom_Hair + Rate: 1 + Announced: true + - Index: 33 + Item: C_Medium_Wave_BD + Rate: 1 + Announced: true + - Index: 34 + Item: C_Evil_Druid_Hat + Rate: 1 + Announced: true + - Index: 35 + Item: Signon_Prin_Wave_Box + Rate: 1 + Announced: true + - Index: 36 + Item: Diffusion_Bravery_Bag + Rate: 1 + Announced: true + - Index: 37 + Item: K_King_Tiger_Doll_Hat + Rate: 1 + Announced: true + - Index: 38 + Item: K_Fallen_Angel_Wing + Rate: 1 + Announced: true + - Index: 39 + Item: FallenAngelWing_Reset + Rate: 1 + Announced: true + - Index: 40 + Item: Diffusion_Lacma + Rate: 1 + Announced: true + - Index: 41 + Item: K_Heart_Wing_Hairband + Rate: 1 + Announced: true + - Index: 42 + Item: K_New_Wave_Sunglasses + Rate: 1 + Announced: true + - Index: 43 + Item: FaceWorm_Breath + Rate: 1 + Announced: true + - Index: 44 + Item: Celine_Brooch_K + Rate: 1 + Announced: true + - Index: 45 + Item: Victory_Wing_Ear + Rate: 1 + Announced: true + - Index: 46 + Item: Thanatos_Pendant + Rate: 1 + Announced: true + - Index: 47 + Item: Pump_Of_Spirit + Rate: 4 + Announced: true + - Index: 48 + Item: Blacksmith_Blessing + Rate: 10 + - Index: 49 Item: Felock_Boots - Rate: 2 + Rate: 20 + - Index: 50 + Item: Shadow_Walk_ + Rate: 20 + - Index: 51 + Item: Black_Leather_Boots_ + Rate: 20 + - Index: 52 + Item: Variant_Shoes + Rate: 20 + - Index: 53 + Item: Valkyrie_Shoes + Rate: 30 + - Index: 54 + Item: Upgrade_Part_Booster + Rate: 30 + - Index: 55 + Item: Supplement_Part_Agi + Rate: 30 + - Index: 56 + Item: Shadow_Walk + Rate: 3494 + - Index: 57 + Item: Dance_Shoes + Rate: 3600 + - Index: 58 + Item: Black_Leather_Boots + Rate: 3600 + - Index: 59 + Item: Angel's_Arrival + Rate: 3600 + - Index: 60 + Item: Chrystal_Pumps + Rate: 8000 + - Index: 61 + Item: Spiky_Heel + Rate: 8000 + - Index: 62 + Item: Cuffs + Rate: 8000 + - Index: 63 + Item: Boots_ + Rate: 15000 + - Index: 64 + Item: Shoes_ + Rate: 8000 + - Index: 65 + Item: Sandals_ + Rate: 8000 + - Index: 66 + Item: Boots + Rate: 14475 + - Index: 67 + Item: Shoes + Rate: 8000 + - Index: 68 + Item: Sandals + Rate: 8000 - Group: CACHUA_SHIELD SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Guard - Rate: 1750 + Item: God_Material_Box + Rate: 1 + Announced: true - Index: 1 - Item: Guard_ - Rate: 1750 + Item: Sillit_Pong_Bottle + Rate: 1 + Announced: true - Index: 2 - Item: Buckler - Rate: 1352 + Item: C_L_Magestic_Goat + Rate: 1 + Announced: true - Index: 3 - Item: Buckler_ - Rate: 1350 + Item: C_Vicious_Stop_Bandage + Rate: 1 + Announced: true - Index: 4 - Item: Memorize_Book - Rate: 1800 + Item: Drooping_Aliot + Rate: 1 + Announced: true - Index: 5 - Item: Valkyrja's_Shield - Rate: 3 + Item: Drooping_Kiehl + Rate: 1 + Announced: true - Index: 6 - Item: Angel's_Safeguard - Rate: 493 + Item: C_Invisible_Cap + Rate: 1 + Announced: true - Index: 7 - Item: Improved_Arm_Guard - Rate: 493 + Item: C_Invisible_Sunglasses + Rate: 1 + Announced: true - Index: 8 - Item: Improved_Arm_Guard_ - Rate: 4 + Item: C_Invisible_Mask + Rate: 1 + Announced: true - Index: 9 - Item: Platinum_Shield - Rate: 4 + Item: C_Eleanor_Wig_YL + Rate: 1 + Announced: true - Index: 10 - Item: Orleans_Server - Rate: 3 + Item: C_Seraph_Wing_Helm + Rate: 1 + Announced: true - Index: 11 - Item: Herald_Of_GOD_ - Rate: 4 + Item: C_FallenAngelWingEar + Rate: 1 + Announced: true - Index: 12 - Item: Flame_Thrower - Rate: 493 + Item: C_Rabbit_Two_Side_Up + Rate: 1 + Announced: true - Index: 13 - Item: Imperial_Guard - Rate: 3 + Item: C_Volume_Low_Twin_CB + Rate: 1 + Announced: true - Index: 14 - Item: Bible_Of_Promise1 - Rate: 493 + Item: C_Soulless_Wing + Rate: 1 + Announced: true - Index: 15 + Item: C_Piamette_Roll_HairK + Rate: 1 + Announced: true + - Index: 16 + Item: Brilliant_Golden_Wings + Rate: 1 + Announced: true + - Index: 17 + Item: C_Kururinpa_Hair + Rate: 1 + Announced: true + - Index: 18 + Item: C_General_Helmet + Rate: 1 + Announced: true + - Index: 19 + Item: C_Spell_Circuit + Rate: 1 + Announced: true + - Index: 20 + Item: C_Dog_Officer + Rate: 1 + Announced: true + - Index: 21 + Item: C_Amistr_Beret + Rate: 1 + Announced: true + - Index: 22 + Item: C_Classical_Fhat + Rate: 1 + Announced: true + - Index: 23 + Item: C_Electro_Two_Side_Up + Rate: 1 + Announced: true + - Index: 24 + Item: Durumagi + Rate: 1 + Announced: true + - Index: 25 + Item: C_Medium_Wave + Rate: 1 + Announced: true + - Index: 26 + Item: C_Shih_Tzu_Long + Rate: 1 + Announced: true + - Index: 27 + Item: C_L_Knitting_Low_Twin + Rate: 1 + Announced: true + - Index: 28 + Item: C_Elegant_Wave + Rate: 1 + Announced: true + - Index: 29 + Item: C_Braid_Half_Up_Box + Rate: 1 + Announced: true + - Index: 30 + Item: C_Inner_Color_Long + Rate: 1 + Announced: true + - Index: 31 + Item: Fluffy_Semi_Long_Box + Rate: 1 + Announced: true + - Index: 32 + Item: Mushroom_Hair + Rate: 1 + Announced: true + - Index: 33 + Item: C_Medium_Wave_BD + Rate: 1 + Announced: true + - Index: 34 + Item: C_Evil_Druid_Hat + Rate: 1 + Announced: true + - Index: 35 + Item: Signon_Prin_Wave_Box + Rate: 1 + Announced: true + - Index: 36 + Item: Diffusion_Bravery_Bag + Rate: 1 + Announced: true + - Index: 37 + Item: K_King_Tiger_Doll_Hat + Rate: 1 + Announced: true + - Index: 38 + Item: K_Fallen_Angel_Wing + Rate: 1 + Announced: true + - Index: 39 + Item: FallenAngelWing_Reset + Rate: 1 + Announced: true + - Index: 40 + Item: Diffusion_Lacma + Rate: 1 + Announced: true + - Index: 41 + Item: K_Heart_Wing_Hairband + Rate: 1 + Announced: true + - Index: 42 + Item: K_New_Wave_Sunglasses + Rate: 1 + Announced: true + - Index: 43 + Item: FaceWorm_Breath + Rate: 1 + Announced: true + - Index: 44 + Item: Celine_Brooch_K + Rate: 1 + Announced: true + - Index: 45 + Item: Victory_Wing_Ear + Rate: 1 + Announced: true + - Index: 46 + Item: Thanatos_Pendant + Rate: 1 + Announced: true + - Index: 47 + Item: Pump_Of_Spirit + Rate: 4 + Announced: true + - Index: 48 + Item: Blacksmith_Blessing + Rate: 10 + - Index: 49 Item: Bible_Of_Promise2 - Rate: 3 + Rate: 30 + - Index: 50 + Item: Valkyrja's_Shield + Rate: 30 + - Index: 51 + Item: Orleans_Server + Rate: 30 + - Index: 52 + Item: Imperial_Guard + Rate: 30 + - Index: 53 + Item: Herald_Of_GOD_ + Rate: 40 + - Index: 54 + Item: Platinum_Shield + Rate: 40 + - Index: 55 + Item: Improved_Arm_Guard_ + Rate: 40 + - Index: 56 + Item: Angel's_Safeguard + Rate: 4930 + - Index: 57 + Item: Bible_Of_Promise1 + Rate: 4934 + - Index: 58 + Item: Improved_Arm_Guard + Rate: 4930 + - Index: 59 + Item: Flame_Thrower + Rate: 4930 + - Index: 60 + Item: Memorize_Book + Rate: 18000 + - Index: 61 + Item: Buckler_ + Rate: 13500 + - Index: 62 + Item: Buckler + Rate: 13475 + - Index: 63 + Item: Guard_ + Rate: 17500 + - Index: 64 + Item: Guard + Rate: 17500 - Group: CACHUA_HELM SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Wedding_Veil - Rate: 250 + Item: God_Material_Box + Rate: 1 + Announced: true - Index: 1 - Item: Ribbon_ - Rate: 250 + Item: Sillit_Pong_Bottle + Rate: 1 + Announced: true - Index: 2 - Item: Bandana - Rate: 250 + Item: C_L_Magestic_Goat + Rate: 1 + Announced: true - Index: 3 - Item: Cat_Hairband - Rate: 250 + Item: C_Vicious_Stop_Bandage + Rate: 1 + Announced: true - Index: 4 - Item: Flower_Hairband - Rate: 250 + Item: Drooping_Aliot + Rate: 1 + Announced: true - Index: 5 - Item: Biretta - Rate: 250 + Item: Drooping_Kiehl + Rate: 1 + Announced: true - Index: 6 - Item: Biretta_ - Rate: 250 + Item: C_Invisible_Cap + Rate: 1 + Announced: true - Index: 7 - Item: Hat - Rate: 250 + Item: C_Invisible_Sunglasses + Rate: 1 + Announced: true - Index: 8 - Item: Hat_ - Rate: 250 + Item: C_Invisible_Mask + Rate: 1 + Announced: true - Index: 9 - Item: Turban - Rate: 250 + Item: C_Eleanor_Wig_YL + Rate: 1 + Announced: true - Index: 10 - Item: Turban_ - Rate: 250 + Item: C_Seraph_Wing_Helm + Rate: 1 + Announced: true - Index: 11 - Item: Goggle - Rate: 250 + Item: C_FallenAngelWingEar + Rate: 1 + Announced: true - Index: 12 - Item: Goggle_ - Rate: 250 + Item: C_Rabbit_Two_Side_Up + Rate: 1 + Announced: true - Index: 13 - Item: Cap - Rate: 250 + Item: C_Volume_Low_Twin_CB + Rate: 1 + Announced: true - Index: 14 - Item: Cap_ - Rate: 250 + Item: C_Soulless_Wing + Rate: 1 + Announced: true - Index: 15 - Item: Helm - Rate: 250 + Item: C_Piamette_Roll_HairK + Rate: 1 + Announced: true - Index: 16 - Item: Helm_ - Rate: 250 + Item: Brilliant_Golden_Wings + Rate: 1 + Announced: true - Index: 17 - Item: Circlet - Rate: 250 + Item: C_Kururinpa_Hair + Rate: 1 + Announced: true - Index: 18 - Item: Circlet_ - Rate: 248 + Item: C_General_Helmet + Rate: 1 + Announced: true - Index: 19 - Item: Tiara - Rate: 40 + Item: C_Spell_Circuit + Rate: 1 + Announced: true - Index: 20 - Item: Crown - Rate: 40 + Item: C_Dog_Officer + Rate: 1 + Announced: true - Index: 21 - Item: Santa's_Hat - Rate: 250 + Item: C_Amistr_Beret + Rate: 1 + Announced: true - Index: 22 - Item: Big_Sis'_Ribbon - Rate: 250 + Item: C_Classical_Fhat + Rate: 1 + Announced: true - Index: 23 - Item: Sweet_Gents - Rate: 250 + Item: C_Electro_Two_Side_Up + Rate: 1 + Announced: true - Index: 24 - Item: Golden_Gear - Rate: 40 + Item: Durumagi + Rate: 1 + Announced: true - Index: 25 - Item: Oldman's_Romance - Rate: 250 + Item: C_Medium_Wave + Rate: 1 + Announced: true - Index: 26 - Item: Western_Grace - Rate: 250 + Item: C_Shih_Tzu_Long + Rate: 1 + Announced: true - Index: 27 - Item: Coronet - Rate: 40 + Item: C_L_Knitting_Low_Twin + Rate: 1 + Announced: true - Index: 28 - Item: Fillet - Rate: 40 + Item: C_Elegant_Wave + Rate: 1 + Announced: true - Index: 29 - Item: Holy_Bonnet - Rate: 40 + Item: C_Braid_Half_Up_Box + Rate: 1 + Announced: true - Index: 30 - Item: Star_Sparkling - Rate: 250 + Item: C_Inner_Color_Long + Rate: 1 + Announced: true - Index: 31 - Item: Angelic_Chain - Rate: 40 + Item: Fluffy_Semi_Long_Box + Rate: 1 + Announced: true - Index: 32 - Item: Satanic_Chain - Rate: 40 + Item: Mushroom_Hair + Rate: 1 + Announced: true - Index: 33 - Item: Magestic_Goat - Rate: 40 + Item: C_Medium_Wave_BD + Rate: 1 + Announced: true - Index: 34 - Item: Sharp_Gear - Rate: 40 + Item: C_Evil_Druid_Hat + Rate: 1 + Announced: true - Index: 35 - Item: Mini_Propeller - Rate: 50 + Item: Signon_Prin_Wave_Box + Rate: 1 + Announced: true - Index: 36 - Item: Prontera_Army_Cap - Rate: 250 + Item: Diffusion_Bravery_Bag + Rate: 1 + Announced: true - Index: 37 - Item: Ghost_Bandana - Rate: 50 + Item: K_King_Tiger_Doll_Hat + Rate: 1 + Announced: true - Index: 38 - Item: Red_Bandana - Rate: 250 + Item: K_Fallen_Angel_Wing + Rate: 1 + Announced: true - Index: 39 - Item: Nurse_Cap - Rate: 50 + Item: FallenAngelWing_Reset + Rate: 1 + Announced: true - Index: 40 - Item: Apple_Of_Archer - Rate: 40 + Item: Diffusion_Lacma + Rate: 1 + Announced: true - Index: 41 - Item: Pirate_Bandana - Rate: 250 + Item: K_Heart_Wing_Hairband + Rate: 1 + Announced: true - Index: 42 - Item: Funeral_Costume - Rate: 50 + Item: K_New_Wave_Sunglasses + Rate: 1 + Announced: true - Index: 43 - Item: Viking_Helm - Rate: 250 + Item: FaceWorm_Breath + Rate: 1 + Announced: true - Index: 44 - Item: Gemmed_Crown - Rate: 50 + Item: Celine_Brooch_K + Rate: 1 + Announced: true - Index: 45 - Item: Joker_Jester - Rate: 250 + Item: Victory_Wing_Ear + Rate: 1 + Announced: true - Index: 46 - Item: Loard_Circlet - Rate: 40 + Item: Thanatos_Pendant + Rate: 1 + Announced: true - Index: 47 - Item: Puppy_Love - Rate: 50 + Item: Pump_Of_Spirit + Rate: 4 + Announced: true - Index: 48 - Item: Indian_Hair_Piece - Rate: 50 + Item: Blacksmith_Blessing + Rate: 10 - Index: 49 - Item: Antenna - Rate: 50 - - Index: 50 - Item: Ph.D_Hat - Rate: 250 - - Index: 51 - Item: Egg_Shell - Rate: 250 - - Index: 52 - Item: Bone_Helm - Rate: 40 - - Index: 53 - Item: Corsair - Rate: 40 - - Index: 54 - Item: Panda_Cap - Rate: 40 - - Index: 55 - Item: Poring_Hat - Rate: 40 - - Index: 56 - Item: Horn_Of_Succubus - Rate: 40 - - Index: 57 - Item: Inccubus_Horn - Rate: 40 - - Index: 58 - Item: Banana_Hat - Rate: 40 - - Index: 59 - Item: Ear_Of_Puppy - Rate: 250 - - Index: 60 - Item: Super_Novice_Hat_ - Rate: 250 - - Index: 61 - Item: Fedora_ - Rate: 250 - - Index: 62 - Item: Kiss_Of_Angel - Rate: 40 - - Index: 63 - Item: Marionette_Doll - Rate: 40 - - Index: 64 Item: Valkyrie_Helm - Rate: 1 - - Index: 65 + Rate: 7 + - Index: 50 Item: Cursed_Book - Rate: 1 + Rate: 7 + - Index: 51 + Item: Feather_Beret_ + Rate: 2 + - Index: 52 + Item: Helm_Of_Angel + Rate: 2 + - Index: 53 + Item: Brown_Bear_Cap + Rate: 3 + - Index: 54 + Item: Picnic_Hat + Rate: 3 + - Index: 55 + Item: Hair_Protector + Rate: 3 + - Index: 56 + Item: Deviruchi_Cap + Rate: 3 + - Index: 57 + Item: Ayam + Rate: 3 + - Index: 58 + Item: Drooping_Kitty + Rate: 3 + - Index: 59 + Item: Cowboy_Hat + Rate: 3 + - Index: 60 + Item: Winter_Hat + Rate: 3 + - Index: 61 + Item: Elven_Ears + Rate: 4 + - Index: 62 + Item: Blush + Rate: 4 + - Index: 63 + Item: Bride_Mask + Rate: 4 + - Index: 64 + Item: Guardian_Lion_Mask + Rate: 4 + - Index: 65 + Item: Hahoe_Mask + Rate: 4 + - Index: 66 + Item: Boy's_Cap + Rate: 4 + - Index: 67 + Item: Satto_Hat + Rate: 4 + - Index: 68 + Item: Fur_Hat + Rate: 4 + - Index: 69 + Item: Red_Bonnet + Rate: 4 + - Index: 70 + Item: Hat_Of_Cook + Rate: 4 + - Index: 71 + Item: Headgear_Of_Queen + Rate: 4 + - Index: 72 + Item: Wizardry_Hat + Rate: 4 + - Index: 73 + Item: Magician_Hat + Rate: 4 + - Index: 74 + Item: Oxygen_Mask + Rate: 4 + - Index: 75 + Item: Fish_On_Head + Rate: 4 + - Index: 76 + Item: Feather_Beret + Rate: 4 + - Index: 77 + Item: Baby_Pacifier + Rate: 4 + - Index: 78 + Item: Smoking_Pipe + Rate: 4 + - Index: 79 + Item: Sharp_Gear + Rate: 400 + - Index: 80 + Item: Coronet + Rate: 400 + - Index: 81 + Item: Bone_Helm + Rate: 400 + - Index: 82 + Item: Panda_Cap + Rate: 400 + - Index: 83 + Item: Poring_Hat + Rate: 400 + - Index: 84 + Item: Fillet + Rate: 400 + - Index: 85 + Item: Golden_Gear + Rate: 400 + - Index: 86 + Item: Holy_Bonnet + Rate: 400 + - Index: 87 + Item: Apple_Of_Archer + Rate: 400 + - Index: 88 + Item: Satanic_Chain + Rate: 400 + - Index: 89 + Item: Corsair + Rate: 400 + - Index: 90 + Item: Angelic_Chain + Rate: 400 + - Index: 91 + Item: Loard_Circlet + Rate: 400 + - Index: 92 + Item: Horn_Of_Succubus + Rate: 400 + - Index: 93 + Item: Crown + Rate: 400 + - Index: 94 + Item: Tiara + Rate: 400 + - Index: 95 + Item: Magestic_Goat + Rate: 400 + - Index: 96 + Item: Inccubus_Horn + Rate: 400 + - Index: 97 + Item: Banana_Hat + Rate: 400 + - Index: 98 + Item: Marionette_Doll + Rate: 400 + - Index: 99 + Item: Kiss_Of_Angel + Rate: 400 + - Index: 100 + Item: Puppy_Love + Rate: 500 + - Index: 101 + Item: Funeral_Costume + Rate: 500 + - Index: 102 + Item: Indian_Hair_Piece + Rate: 500 + - Index: 103 + Item: Mini_Propeller + Rate: 500 + - Index: 104 + Item: Ghost_Bandana + Rate: 500 + - Index: 105 + Item: Gemmed_Crown + Rate: 500 + - Index: 106 + Item: Nurse_Cap + Rate: 500 + - Index: 107 + Item: Antenna + Rate: 500 + - Index: 108 + Item: Circlet_ + Rate: 2425 + - Index: 109 + Item: Biretta + Rate: 2500 + - Index: 110 + Item: Turban + Rate: 2500 + - Index: 111 + Item: Helm + Rate: 2500 + - Index: 112 + Item: Star_Sparkling + Rate: 2500 + - Index: 113 + Item: Cap_ + Rate: 2500 + - Index: 114 + Item: Hat_ + Rate: 2500 + - Index: 115 + Item: Viking_Helm + Rate: 2500 + - Index: 116 + Item: Goggle + Rate: 2500 + - Index: 117 + Item: Santa's_Hat + Rate: 2500 + - Index: 118 + Item: Red_Bandana + Rate: 2500 + - Index: 119 + Item: Egg_Shell + Rate: 2500 + - Index: 120 + Item: Flower_Hairband + Rate: 2500 + - Index: 121 + Item: Cap + Rate: 2500 + - Index: 122 + Item: Ribbon_ + Rate: 2500 + - Index: 123 + Item: Ear_Of_Puppy + Rate: 2500 + - Index: 124 + Item: Fedora_ + Rate: 2500 + - Index: 125 + Item: Helm_ + Rate: 2500 + - Index: 126 + Item: Super_Novice_Hat_ + Rate: 2500 + - Index: 127 + Item: Bandana + Rate: 2500 + - Index: 128 + Item: Hat + Rate: 2500 + - Index: 129 + Item: Circlet + Rate: 2500 + - Index: 130 + Item: Biretta_ + Rate: 2500 + - Index: 131 + Item: Wedding_Veil + Rate: 2500 + - Index: 132 + Item: Prontera_Army_Cap + Rate: 2500 + - Index: 133 + Item: Pirate_Bandana + Rate: 2500 + - Index: 134 + Item: Ph.D_Hat + Rate: 2500 + - Index: 135 + Item: Big_Sis'_Ribbon + Rate: 2500 + - Index: 136 + Item: Cat_Hairband + Rate: 2500 + - Index: 137 + Item: Western_Grace + Rate: 2500 + - Index: 138 + Item: Turban_ + Rate: 2500 + - Index: 139 + Item: Oldman's_Romance + Rate: 2500 + - Index: 140 + Item: Sweet_Gents + Rate: 2500 + - Index: 141 + Item: Joker_Jester + Rate: 2500 + - Index: 142 + Item: Goggle_ + Rate: 2500 - Group: BALLOON_SCROLL SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Blacksmith_Blessing - Rate: 900 - - Index: 1 - Item: Treasure_Box - Rate: 1400 - - Index: 2 - Item: Poison_Bottle_Box2 - Rate: 1000 - - Index: 3 - Item: Potion_Box - Rate: 1000 - - Index: 4 - Item: C_Wing_Of_Fly_3Day_Box - Rate: 1000 - - Index: 5 - Item: Sealed_Card - Rate: 10 - - Index: 6 - Item: Weapon_7Up_Box - Rate: 15 - - Index: 7 - Item: Weapon_9Up_Box - Rate: 9 - - Index: 8 Item: Weapon_11Up_Box Rate: 1 - - Index: 9 - Item: Armor_7Up_Box - Rate: 15 - - Index: 10 - Item: Armor_9Up_Box - Rate: 9 - - Index: 11 + Announced: true + - Index: 1 Item: Armor_11Up_Box Rate: 1 + Announced: true + - Index: 2 + Item: Weapon_9Up_Box + Rate: 9 + Announced: true + - Index: 3 + Item: Armor_9Up_Box + Rate: 9 + Announced: true + - Index: 4 + Item: Weapon_7Up_Box + Rate: 15 + Announced: true + - Index: 5 + Item: Armor_7Up_Box + Rate: 15 + Announced: true + - Index: 6 + Item: Sealed_Card + Rate: 10 + Announced: true + - Index: 7 + Item: Poring_Balloon_Box + Rate: 400 + Announced: true + - Index: 8 + Item: Blacksmith_Blessing + Rate: 900 + - Index: 9 + Item: WOB_Box + Rate: 900 + - Index: 10 + Item: Class_Shadow_Cube + Rate: 1000 + - Index: 11 + Item: C_Wing_Of_Fly_3Day_Box + Rate: 1000 - Index: 12 Item: Comp_Battle_Bubble Rate: 1340 + Amount: 2 - Index: 13 - Item: Comp_Trans_Scroll + Item: Potion_Box Rate: 1000 - Index: 14 - Item: Class_Shadow_Cube + Item: Poison_Bottle_Box2 Rate: 1000 - Index: 15 - Item: Balloon_Scroll - Rate: 400 + Item: Comp_Trans_Scroll + Rate: 1000 - Index: 16 - Item: WOB_Box - Rate: 900 + Item: Treasure_Box + Rate: 1400 + Amount: 3 - Group: PORING_BALLOON_BOX SubGroups: - SubGroup: 1 - List: - - Index: 0 - Item: Angeling_Bubble - Rate: 10000 - - SubGroup: 2 List: - Index: 0 Item: Poring_Balloon - Rate: 1000 + Rate: 1 - Index: 1 Item: Marin_Balloon - Rate: 1000 + Rate: 1 - Index: 2 Item: Drops_Balloon - Rate: 1000 + Rate: 1 - Index: 3 Item: SantaPoring_Balloon - Rate: 1000 + Rate: 1 - Index: 4 Item: Poporing_Balloon - Rate: 1000 + Rate: 1 - Index: 5 Item: Metaling_Balloon - Rate: 1000 + Rate: 1 - Index: 6 Item: Deviling_Balloon - Rate: 1000 + Rate: 1 - Index: 7 Item: Angeling_Balloon - Rate: 1000 + Rate: 1 - Index: 8 Item: Ghostring_Balloon - Rate: 1000 + Rate: 1 - Index: 9 Item: Archangeling_Balloon - Rate: 1000 + Rate: 1 - Group: RIBEL_JUMPING_BOX SubGroups: - SubGroup: 0 @@ -52926,274 +56396,314 @@ Body: - Index: 0 Item: Probation_Revolver - Index: 1 - Item: Toughen_Time_Keepr_Robe + Item: Probation_Rifle - Index: 2 - Item: Toughen_Time_Keeper_Hat + Item: Toughen_Time_Keepr_Bts - Index: 3 Item: Toughen_Time_Keepr_MT - Index: 4 - Item: Toughen_Time_Keepr_Bts + Item: Toughen_Time_Keeper_Hat - Index: 5 - Item: Probation_Rifle + Item: Toughen_Time_Keepr_Robe - Index: 6 - Item: Probation_Gatling_Gun + Item: Probation_Shotgun - Index: 7 Item: Probation_Launcher - Index: 8 - Item: Probation_Shotgun + Item: Probation_Gatling_Gun - Group: GUNSLINGER_SCROLL SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Crystal_Jewel__ - Rate: 1000 - - Index: 1 - Item: Blacksmith_Blessing - Rate: 900 - - Index: 2 - Item: Poison_Bottle_Box2 - Rate: 1000 - - Index: 3 - Item: Potion_Box - Rate: 1150 - - Index: 4 - Item: C_Wing_Of_Fly_3Day_Box - Rate: 1000 - - Index: 5 - Item: Weapon_7Up_Box - Rate: 15 - - Index: 6 - Item: Weapon_9Up_Box - Rate: 9 - - Index: 7 Item: Weapon_11Up_Box Rate: 1 - - Index: 8 - Item: Armor_7Up_Box - Rate: 15 - - Index: 9 - Item: Armor_9Up_Box - Rate: 9 - - Index: 10 + Announced: true + - Index: 1 Item: Armor_11Up_Box Rate: 1 - - Index: 11 - Item: Comp_Battle_Bubble - Rate: 1000 - - Index: 12 - Item: Comp_Trans_Scroll - Rate: 1000 - - Index: 13 - Item: Lapine_DdukddakBox - Rate: 1000 - - Index: 14 + Announced: true + - Index: 2 + Item: Weapon_9Up_Box + Rate: 9 + Announced: true + - Index: 3 + Item: Armor_9Up_Box + Rate: 9 + Announced: true + - Index: 4 + Item: Weapon_7Up_Box + Rate: 15 + Announced: true + - Index: 5 + Item: Armor_7Up_Box + Rate: 15 + Announced: true + - Index: 6 Item: Gunslinger_Box Rate: 400 - - Index: 15 + Announced: true + - Index: 7 + Item: Blacksmith_Blessing + Rate: 900 + - Index: 8 Item: S_Ninja_Shield Rate: 250 - - Index: 16 + - Index: 9 Item: S_Taekwon_Shield Rate: 250 - - Index: 17 + - Index: 10 Item: S_DoramPhysical_Shield Rate: 250 - - Index: 18 + - Index: 11 Item: S_DoramMagical_Shield Rate: 250 - - Index: 19 + - Index: 12 Item: S_SuperNovice_Shield Rate: 250 - - Index: 20 + - Index: 13 Item: S_Gunslinger_Shield Rate: 250 + - Index: 14 + Item: Lapine_DdukddakBox + Rate: 1000 + - Index: 15 + Item: C_Wing_Of_Fly_3Day_Box + Rate: 1000 + - Index: 16 + Item: Comp_Battle_Bubble + Rate: 1000 + Amount: 2 + - Index: 17 + Item: Potion_Box + Rate: 1150 + - Index: 18 + Item: Poison_Bottle_Box2 + Rate: 1000 + - Index: 19 + Item: Comp_Trans_Scroll + Rate: 1000 + - Index: 20 + Item: Crystal_Jewel__ + Rate: 1000 + Amount: 10 - Group: GREEN_SCROLL_K SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Crystal_Jewel__ - Rate: 1140 - - Index: 1 - Item: Poison_Bottle_Box2 - Rate: 1000 - - Index: 2 - Item: Green_Scroll_K - Rate: 1000 - - Index: 3 - Item: Wet_CardAlbum - Rate: 100 - - Index: 4 - Item: Sealed_Card - Rate: 10 - - Index: 5 - Item: Weapon_7Up_Box - Rate: 15 - - Index: 6 - Item: Weapon_9Up_Box - Rate: 9 - - Index: 7 Item: Weapon_11Up_Box Rate: 1 - - Index: 8 - Item: Armor_7Up_Box - Rate: 15 - - Index: 9 - Item: Armor_9Up_Box - Rate: 9 - - Index: 10 + Announced: true + - Index: 1 Item: Armor_11Up_Box Rate: 1 - - Index: 11 - Item: Comp_Battle_Bubble - Rate: 1000 - - Index: 12 - Item: Comp_Trans_Scroll - Rate: 1000 - - Index: 13 - Item: Class_Shadow_Cube - Rate: 900 - - Index: 14 - Item: WOB_Box - Rate: 900 - - Index: 15 - Item: Lapine_DdukddakBox - Rate: 1500 - - Index: 16 + Announced: true + - Index: 2 + Item: Weapon_9Up_Box + Rate: 9 + Announced: true + - Index: 3 + Item: Armor_9Up_Box + Rate: 9 + Announced: true + - Index: 4 + Item: Weapon_7Up_Box + Rate: 15 + Announced: true + - Index: 5 + Item: Armor_7Up_Box + Rate: 15 + Announced: true + - Index: 6 + Item: Sealed_Card + Rate: 10 + Announced: true + - Index: 7 + Item: Wet_CardAlbum + Rate: 100 + Announced: true + - Index: 8 Item: Mini_Fan_Box Rate: 400 - - Index: 17 + Announced: true + - Index: 9 + Item: Class_Shadow_Cube + Rate: 900 + - Index: 10 + Item: WOB_Box + Rate: 900 + - Index: 11 + Item: Lapine_DdukddakBox + Rate: 1500 + - Index: 12 + Item: C_Giant_Fly_1Day_Box + Rate: 1000 + - Index: 13 + Item: Comp_Battle_Bubble + Rate: 1000 + Amount: 2 + - Index: 14 Item: Alchemist_Box Rate: 1000 + - Index: 15 + Item: Poison_Bottle_Box2 + Rate: 1000 + - Index: 16 + Item: Comp_Trans_Scroll + Rate: 1000 + - Index: 17 + Item: Crystal_Jewel__ + Rate: 1140 + Amount: 10 - Group: KAFRA_SCROLL SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Crystal_Jewel__ - Rate: 1000 - - Index: 1 - Item: Blacksmith_Blessing - Rate: 900 - - Index: 2 - Item: Poison_Bottle_Box2 - Rate: 1000 - - Index: 3 - Item: Potion_Box - Rate: 1000 - - Index: 4 - Item: C_Wing_Of_Fly_5Day_Box - Rate: 500 - - Index: 5 - Item: Kafra_Employee_Band - Rate: 100 - - Index: 6 - Item: Weapon_7Up_Box - Rate: 15 - - Index: 7 - Item: Weapon_9Up_Box - Rate: 9 - - Index: 8 Item: Weapon_11Up_Box Rate: 1 - - Index: 9 - Item: Armor_7Up_Box - Rate: 15 - - Index: 10 - Item: Armor_9Up_Box - Rate: 9 - - Index: 11 + Announced: true + - Index: 1 Item: Armor_11Up_Box Rate: 1 - - Index: 12 - Item: Shadow_Cube_Weapon - Rate: 300 - - Index: 13 - Item: Shadow_Cube_Armor - Rate: 300 - - Index: 14 - Item: Shadow_Cube_Shield - Rate: 300 - - Index: 15 - Item: Shadow_Cube_Shoes - Rate: 300 - - Index: 16 - Item: Shadow_Cube_Pendant - Rate: 300 - - Index: 17 - Item: Shadow_Cube_Earing - Rate: 300 - - Index: 18 - Item: Comp_Battle_Bubble - Rate: 1000 - - Index: 19 - Item: Class_Shadow_Cube - Rate: 1000 - - Index: 20 - Item: Lapine_DdukddakBox - Rate: 1250 - - Index: 21 + Announced: true + - Index: 2 + Item: Weapon_9Up_Box + Rate: 9 + Announced: true + - Index: 3 + Item: Armor_9Up_Box + Rate: 9 + Announced: true + - Index: 4 + Item: Weapon_7Up_Box + Rate: 15 + Announced: true + - Index: 5 + Item: Armor_7Up_Box + Rate: 15 + Announced: true + - Index: 6 + Item: Kafra_Employee_Band + Rate: 100 + Announced: true + - Index: 7 Item: Kafra_Box Rate: 400 + Announced: true + - Index: 8 + Item: Shadow_Cube_Weapon + Rate: 300 + - Index: 9 + Item: Shadow_Cube_Armor + Rate: 300 + - Index: 10 + Item: Shadow_Cube_Shoes + Rate: 300 + - Index: 11 + Item: Shadow_Cube_Shield + Rate: 300 + - Index: 12 + Item: Shadow_Cube_Pendant + Rate: 300 + - Index: 13 + Item: Shadow_Cube_Earing + Rate: 300 + - Index: 14 + Item: Blacksmith_Blessing + Rate: 900 + - Index: 15 + Item: C_Wing_Of_Fly_5Day_Box + Rate: 500 + - Index: 16 + Item: Lapine_DdukddakBox + Rate: 1250 + - Index: 17 + Item: Comp_Battle_Bubble + Rate: 1000 + Amount: 2 + - Index: 18 + Item: Potion_Box + Rate: 1000 + - Index: 19 + Item: Poison_Bottle_Box2 + Rate: 1000 + - Index: 20 + Item: Class_Shadow_Cube + Rate: 1000 + - Index: 21 + Item: Crystal_Jewel__ + Rate: 1000 + Amount: 10 - Group: SIGRUN_SCROLL SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Crystal_Jewel__ - Rate: 1000 - - Index: 1 - Item: Sigrun's_Wing - Rate: 10 - - Index: 2 - Item: Blacksmith_Blessing - Rate: 900 - - Index: 3 - Item: Poison_Bottle_Box2 - Rate: 1000 - - Index: 4 - Item: Potion_Box - Rate: 1000 - - Index: 5 - Item: Weapon_7Up_Box - Rate: 15 - - Index: 6 - Item: Weapon_9Up_Box - Rate: 9 - - Index: 7 Item: Weapon_11Up_Box Rate: 1 - - Index: 8 - Item: Armor_7Up_Box - Rate: 15 - - Index: 9 - Item: Armor_9Up_Box - Rate: 9 - - Index: 10 + Announced: true + - Index: 1 Item: Armor_11Up_Box Rate: 1 + Announced: true + - Index: 2 + Item: Weapon_9Up_Box + Rate: 9 + Announced: true + - Index: 3 + Item: Armor_9Up_Box + Rate: 9 + Announced: true + - Index: 4 + Item: Weapon_7Up_Box + Rate: 15 + Announced: true + - Index: 5 + Item: Armor_7Up_Box + Rate: 15 + Announced: true + - Index: 6 + Item: Sigrun's_Wing + Rate: 10 + Announced: true + - Index: 7 + Item: S_Sigrun_Armor + Rate: 250 + Announced: true + - Index: 8 + Item: S_Sigrun_Shield + Rate: 250 + Announced: true + - Index: 9 + Item: WOB_Box + Rate: 900 + - Index: 10 + Item: Blacksmith_Blessing + Rate: 900 - Index: 11 Item: Minus_Status_Box Rate: 1000 - Index: 12 - Item: Class_Shadow_Cube - Rate: 1000 - - Index: 13 - Item: WOB_Box - Rate: 900 - - Index: 14 Item: Lapine_DdukddakBox Rate: 1500 - - Index: 15 + - Index: 13 Item: Alchemist_Box Rate: 1140 + - Index: 14 + Item: Potion_Box + Rate: 1000 + - Index: 15 + Item: Poison_Bottle_Box2 + Rate: 1000 - Index: 16 - Item: S_Sigrun_Armor - Rate: 250 + Item: Class_Shadow_Cube + Rate: 1000 - Index: 17 - Item: S_Sigrun_Shield - Rate: 250 + Item: Crystal_Jewel__ + Rate: 1000 + Amount: 10 - Group: PREMIUMWOODENBOX SubGroups: - SubGroup: 0 @@ -53208,305 +56718,309 @@ Body: - SubGroup: 1 List: - Index: 0 - Item: Branch_Of_Dead_Tree - Rate: 80 - - Index: 1 - Item: Old_Card_Album - Rate: 80 - - Index: 2 - Item: Old_Violet_Box - Rate: 350 - - Index: 3 - Item: Inspector_Certificate - Rate: 350 - - Index: 4 - Item: Poison_Bottle - Rate: 307 - - Index: 5 - Item: Oridecon - Rate: 310 - - Index: 6 - Item: Elunium - Rate: 310 - - Index: 7 - Item: Guarantee_Weapon_7Up - Rate: 1 - - Index: 8 - Item: Guarantee_Armor_7Up - Rate: 1 - - Index: 9 - Item: Red_Slim_Potion_B - Rate: 1000 - Amount: 30 - - Index: 10 - Item: Green_Potion_B - Rate: 550 - Amount: 30 - - Index: 11 - Item: Blue_Potion_B - Rate: 550 - Amount: 5 - - Index: 12 Item: White_Slim_Potion_B Rate: 1000 Amount: 10 - - Index: 13 + - Index: 1 Item: Yellow_Slim_Potion_B Rate: 1000 Amount: 20 - - Index: 14 - Item: Bloody_Dead_Branch - Rate: 80 - - Index: 15 - Item: Comp_Battle_Manual - Rate: 80 - - Index: 16 - Item: Comp_Bubble_Gum - Rate: 80 - - Index: 17 - Item: Comp_Insurance - Rate: 80 - - Index: 18 - Item: E_WOB_Rune - Rate: 80 - - Index: 19 - Item: E_WOB_Schwaltz - Rate: 80 - - Index: 20 - Item: E_WOB_Rachel - Rate: 80 - - Index: 21 - Item: E_WOB_Local - Rate: 80 - - Index: 22 - Item: Old_Bleu_Box - Rate: 350 - - Index: 23 - Item: Berserk_Potion_B + - Index: 2 + Item: Red_Slim_Potion_B + Rate: 1000 + Amount: 30 + - Index: 3 + Item: Blue_Potion_B Rate: 550 - Amount: 10 - - Index: 24 + Amount: 5 + - Index: 4 + Item: Green_Potion_B + Rate: 550 + Amount: 30 + - Index: 5 Item: Awakening_Potion_B Rate: 550 Amount: 10 - - Index: 25 + - Index: 6 + Item: Berserk_Potion_B + Rate: 550 + Amount: 10 + - Index: 7 + Item: Old_Violet_Box + Rate: 350 + - Index: 8 + Item: Old_Bleu_Box + Rate: 350 + - Index: 9 + Item: Inspector_Certificate + Rate: 350 + - Index: 10 + Item: Oridecon + Rate: 310 + - Index: 11 + Item: Elunium + Rate: 310 + - Index: 12 Item: Speed_Up_Potion_B Rate: 310 - - Index: 26 + - Index: 13 Item: Water_Of_Darkness_B Rate: 310 - - Index: 27 + - Index: 14 + Item: Poison_Bottle + Rate: 307 + - Index: 15 Item: Sesame_Pastry_B Rate: 300 - - Index: 28 + - Index: 16 Item: Honey_Pastry_B Rate: 300 - - Index: 29 + - Index: 17 Item: Rainbow_Cake_B Rate: 300 + - Index: 18 + Item: Comp_Insurance + Rate: 80 + - Index: 19 + Item: Comp_Battle_Manual + Rate: 80 + - Index: 20 + Item: Comp_Bubble_Gum + Rate: 80 + - Index: 21 + Item: Branch_Of_Dead_Tree + Rate: 80 + - Index: 22 + Item: Bloody_Dead_Branch + Rate: 80 + - Index: 23 + Item: Old_Card_Album + Rate: 80 + - Index: 24 + Item: E_WOB_Rune + Rate: 80 + - Index: 25 + Item: E_WOB_Schwaltz + Rate: 80 + - Index: 26 + Item: E_WOB_Rachel + Rate: 80 + - Index: 27 + Item: E_WOB_Local + Rate: 80 + - Index: 28 + Item: Guarantee_Weapon_7Up + Rate: 1 + - Index: 29 + Item: Guarantee_Armor_7Up + Rate: 1 - Index: 30 - Item: PremiumWoodenBox + Item: Sealed_Hat_Box Rate: 1 - Index: 31 - Item: PremiumWoodenBox + Item: PremiumGoldenBox Rate: 500 - Group: PREMIUMGOLDENBOX SubGroups: - SubGroup: 0 List: - Index: 0 + Item: White_Slim_Pot_Box2 + - Index: 1 Item: Poison_Bottle Amount: 10 - - Index: 1 - Item: White_Slim_Pot_Box2 - Index: 2 - Item: E_Blessing_10_Scr_Box - - Index: 3 - Item: E_Inc_Agi_10_Scr_Box - - Index: 4 Item: Speed_Up_Potion_B Amount: 10 + - Index: 3 + Item: E_Blessing_10_Scr_Box + - Index: 4 + Item: E_Inc_Agi_10_Scr_Box - Index: 5 Item: PremiumNomalBox Amount: 5 - SubGroup: 1 List: - Index: 0 - Item: Branch_Of_Dead_Tree - Rate: 200 - Amount: 3 - - Index: 1 - Item: Old_Card_Album - Rate: 200 - - Index: 2 - Item: Old_Violet_Box - Rate: 300 - Amount: 3 - - Index: 3 - Item: Inspector_Certificate - Rate: 300 - Amount: 12 - - Index: 4 - Item: Oridecon - Rate: 200 - Amount: 12 - - Index: 5 - Item: Elunium - Rate: 200 - Amount: 12 - - Index: 6 - Item: Guarantee_Weapon_7Up - Rate: 1 - - Index: 7 - Item: Guarantee_Armor_7Up - Rate: 1 - - Index: 8 - Item: Blue_Potion_B - Rate: 1000 - Amount: 12 - - Index: 9 Item: White_Slim_Potion_B Rate: 1000 Amount: 40 + - Index: 1 + Item: Blue_Potion_B + Rate: 1000 + Amount: 12 + - Index: 2 + Item: Awakening_Potion_B + Rate: 1000 + Amount: 12 + - Index: 3 + Item: Berserk_Potion_B + Rate: 1000 + Amount: 12 + - Index: 4 + Item: Old_Violet_Box + Rate: 300 + Amount: 3 + - Index: 5 + Item: Old_Bleu_Box + Rate: 300 + Amount: 3 + - Index: 6 + Item: Inspector_Certificate + Rate: 300 + Amount: 12 + - Index: 7 + Item: Oridecon + Rate: 200 + Amount: 12 + - Index: 8 + Item: Elunium + Rate: 200 + Amount: 12 + - Index: 9 + Item: Water_Of_Darkness_B + Rate: 200 + Amount: 12 - Index: 10 - Item: Bloody_Dead_Branch + Item: Sesame_Pastry_B Rate: 200 + Amount: 12 - Index: 11 - Item: Magic_Card_Album - Rate: 185 + Item: Honey_Pastry_B + Rate: 200 + Amount: 12 - Index: 12 - Item: Comp_Battle_Manual + Item: Rainbow_Cake_B Rate: 200 + Amount: 12 - Index: 13 - Item: Comp_Bubble_Gum + Item: Reward_Job_BM25 Rate: 200 + Amount: 2 - Index: 14 Item: Comp_Insurance Rate: 200 - Index: 15 + Item: Comp_Battle_Manual + Rate: 200 + - Index: 16 + Item: Comp_Bubble_Gum + Rate: 200 + - Index: 17 + Item: Branch_Of_Dead_Tree + Rate: 200 + Amount: 3 + - Index: 18 + Item: Bloody_Dead_Branch + Rate: 200 + - Index: 19 + Item: Old_Card_Album + Rate: 200 + - Index: 20 + Item: Magic_Card_Album + Rate: 185 + - Index: 21 Item: E_WOB_Rune Rate: 160 Amount: 3 - - Index: 16 + - Index: 22 Item: E_WOB_Schwaltz Rate: 160 Amount: 3 - - Index: 17 + - Index: 23 Item: E_WOB_Rachel Rate: 160 Amount: 3 - - Index: 18 + - Index: 24 Item: E_WOB_Local Rate: 160 Amount: 3 - - Index: 19 - Item: Old_Bleu_Box - Rate: 300 - Amount: 3 - - Index: 20 - Item: Reward_Job_BM25 - Rate: 200 - Amount: 2 - - Index: 21 - Item: Berserk_Potion_B - Rate: 1000 - Amount: 12 - - Index: 22 - Item: Awakening_Potion_B - Rate: 1000 - Amount: 12 - - Index: 23 - Item: Water_Of_Darkness_B - Rate: 200 - Amount: 12 - - Index: 24 - Item: Sesame_Pastry_B - Rate: 200 - Amount: 12 - Index: 25 - Item: Honey_Pastry_B - Rate: 200 - Amount: 12 + Item: Guarantee_Weapon_7Up + Rate: 1 - Index: 26 - Item: Rainbow_Cake_B - Rate: 200 - Amount: 12 + Item: Guarantee_Armor_7Up + Rate: 1 - Index: 27 - Item: PremiumGoldenBox + Item: Sealed_Hat_Box2 Rate: 3 - Index: 28 - Item: PremiumGoldenBox + Item: Sealed_Hat_Box Rate: 3 - Index: 29 - Item: PremiumGoldenBox + Item: PremiumPlatinumBox Rate: 1667 - Group: PREMIUMPLATINUMBOX SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Poison_Bottle_Box2 - - Index: 1 Item: Potion_Box - - Index: 2 - Item: E_S_Life_Potion_Box - - Index: 3 - Item: E_Abrasive_Box10 - - Index: 4 - Item: E_Blessing_10_Scr_Box - - Index: 5 - Item: E_Inc_Agi_10_Scr_Box - - Index: 6 + - Index: 1 Item: Speed_Up_Potion_B Amount: 30 + - Index: 2 + Item: Poison_Bottle_Box2 + - Index: 3 + Item: E_S_Life_Potion_Box + - Index: 4 + Item: E_Abrasive_Box10 + - Index: 5 + Item: E_Blessing_10_Scr_Box + - Index: 6 + Item: E_Inc_Agi_10_Scr_Box - Index: 7 Item: PremiumNomalBox Amount: 30 - SubGroup: 1 List: - Index: 0 + Item: White_Slim_Pot_Box2 + Rate: 1000 + - Index: 1 + Item: Oridecon_Box + Rate: 1000 + Amount: 10 + - Index: 2 + Item: Elunium_Box + Rate: 1000 + Amount: 10 + - Index: 3 Item: Branch_Of_Dead_Tree Rate: 1000 Amount: 10 - - Index: 1 - Item: Old_Card_Album - Rate: 300 - Amount: 10 - - Index: 2 - Item: Sigrun's_Wing - Rate: 1 - - Index: 3 - Item: Guarantee_Weapon_9Up - Rate: 1 - Index: 4 - Item: Guarantee_Weapon_7Up - Rate: 3 - - Index: 5 - Item: Guarantee_Armor_9Up - Rate: 1 - - Index: 6 - Item: Guarantee_Armor_7Up - Rate: 3 - - Index: 7 - Item: Bloody_Dead_Branch - Rate: 300 - Amount: 3 - - Index: 8 Item: First_Aid_Kit Rate: 1000 Amount: 10 - - Index: 9 - Item: Magic_Card_Album - Rate: 300 - Amount: 3 - - Index: 10 - Item: Comp_Bubble_Gum - Rate: 300 + - Index: 5 + Item: Anodyne_B + Rate: 1000 Amount: 10 - - Index: 11 + - Index: 6 Item: Comp_Insurance Rate: 300 Amount: 10 + - Index: 7 + Item: Battle_Manual100 + Rate: 300 + Amount: 3 + - Index: 8 + Item: Comp_Bubble_Gum + Rate: 300 + Amount: 10 + - Index: 9 + Item: Bloody_Dead_Branch + Rate: 300 + Amount: 3 + - Index: 10 + Item: Old_Card_Album + Rate: 300 + Amount: 10 + - Index: 11 + Item: Magic_Card_Album + Rate: 300 + Amount: 3 - Index: 12 Item: E_WOB_Rune Rate: 300 @@ -53524,386 +57038,414 @@ Body: Rate: 300 Amount: 10 - Index: 16 - Item: White_Slim_Pot_Box2 - Rate: 1000 - - Index: 17 Item: Reward_Job_BM25 Rate: 300 Amount: 10 - - Index: 18 - Item: Elunium_Box - Rate: 1000 - Amount: 10 - - Index: 19 - Item: Oridecon_Box - Rate: 1000 - Amount: 10 - - Index: 20 - Item: Battle_Manual100 - Rate: 300 - Amount: 3 - - Index: 21 + - Index: 17 Item: E_Str_Dish_Box Rate: 100 - - Index: 22 + - Index: 18 Item: E_Agi_Dish_Box Rate: 100 - - Index: 23 + - Index: 19 Item: E_Int_Dish_Box Rate: 100 - - Index: 24 + - Index: 20 Item: E_Dex_Dish_Box Rate: 100 - - Index: 25 + - Index: 21 Item: E_Luk_Dish_Box Rate: 100 - - Index: 26 + - Index: 22 Item: E_Vit_Dish_Box Rate: 100 - - Index: 27 - Item: Anodyne_B - Rate: 1000 - Amount: 10 - - Index: 28 - Item: PremiumPlatinumBox - Rate: 9 - - Index: 29 - Item: PremiumPlatinumBox - Rate: 9 - - Index: 30 + - Index: 23 Item: Comp_Trans_Scroll Rate: 73 + - Index: 24 + Item: Guarantee_Weapon_7Up + Rate: 3 + - Index: 25 + Item: Guarantee_Armor_7Up + Rate: 3 + - Index: 26 + Item: Guarantee_Weapon_9Up + Rate: 1 + - Index: 27 + Item: Guarantee_Armor_9Up + Rate: 1 + - Index: 28 + Item: Sealed_Hat_Box2 + Rate: 9 + - Index: 29 + Item: Sealed_Hat_Box + Rate: 9 + - Index: 30 + Item: Sigrun's_Wing + Rate: 1 - Group: PREMIUMNOMALBOX SubGroups: - SubGroup: 0 List: - Index: 0 + Item: White_Slim_Potion_B + Amount: 50 + - Index: 1 Item: First_Aid_Kit_B - SubGroup: 1 List: - Index: 0 - Item: Old_Blue_Box - Rate: 136 + Item: White_Slim_Potion_B + Rate: 100 + Amount: 2 - Index: 1 - Item: Branch_Of_Dead_Tree - Rate: 18 - - Index: 2 - Item: Old_Card_Album - Rate: 9 - - Index: 3 - Item: Old_Violet_Box - Rate: 136 - - Index: 4 - Item: Inspector_Certificate - Rate: 136 - - Index: 5 - Item: Poison_Bottle - Rate: 55 - - Index: 6 - Item: Oridecon - Rate: 136 - - Index: 7 - Item: Elunium - Rate: 136 - - Index: 8 - Item: White_Potion_B - Rate: 545 - Amount: 2 - - Index: 9 - Item: Yellow_Potion_B - Rate: 545 - Amount: 4 - - Index: 10 - Item: Red_Slim_Potion_B - Rate: 909 - Amount: 6 - - Index: 11 - Item: Orange_Potion_B - Rate: 545 - Amount: 6 - - Index: 12 - Item: Red_Potion_B - Rate: 545 - Amount: 8 - - Index: 13 - Item: Green_Potion_B - Rate: 545 - Amount: 5 - - Index: 14 - Item: Blue_Potion_B - Rate: 545 - - Index: 15 - Item: White_Slim_Potion_B - Rate: 909 - Amount: 2 - - Index: 16 - Item: White_Slim_Potion_B - Rate: 909 - Amount: 50 - - Index: 17 Item: Yellow_Slim_Potion_B - Rate: 909 + Rate: 100 Amount: 4 - - Index: 18 - Item: Bloody_Dead_Branch - Rate: 9 - - Index: 19 - Item: Comp_Battle_Manual - Rate: 18 - - Index: 20 - Item: Comp_Bubble_Gum - Rate: 18 - - Index: 21 - Item: Comp_Insurance - Rate: 18 - - Index: 22 - Item: Berserk_Potion_B - Rate: 455 - - Index: 23 + - Index: 2 + Item: Red_Slim_Potion_B + Rate: 100 + Amount: 6 + - Index: 3 + Item: White_Potion_B + Rate: 60 + Amount: 2 + - Index: 4 + Item: Yellow_Potion_B + Rate: 60 + Amount: 4 + - Index: 5 + Item: Orange_Potion_B + Rate: 60 + Amount: 6 + - Index: 6 + Item: Red_Potion_B + Rate: 60 + Amount: 8 + - Index: 7 + Item: Green_Potion_B + Rate: 60 + Amount: 5 + - Index: 8 + Item: Blue_Potion_B + Rate: 60 + - Index: 9 Item: Awakening_Potion_B - Rate: 455 - - Index: 24 + Rate: 50 + - Index: 10 + Item: Berserk_Potion_B + Rate: 50 + - Index: 11 + Item: Old_Violet_Box + Rate: 15 + - Index: 12 + Item: Old_Blue_Box + Rate: 15 + - Index: 13 + Item: Inspector_Certificate + Rate: 15 + - Index: 14 + Item: Oridecon + Rate: 15 + - Index: 15 + Item: Elunium + Rate: 15 + - Index: 16 Item: Speed_Up_Potion_B - Rate: 136 - - Index: 25 + Rate: 15 + - Index: 17 Item: Water_Of_Darkness_B - Rate: 91 - - Index: 26 + Rate: 10 + - Index: 18 + Item: Poison_Bottle + Rate: 6 + - Index: 19 Item: Cookie_Bag_B - Rate: 55 - - Index: 27 + Rate: 6 + - Index: 20 Item: Sesame_Pastry_B - Rate: 55 - - Index: 28 + Rate: 6 + - Index: 21 Item: Honey_Pastry_B - Rate: 55 - - Index: 29 + Rate: 6 + - Index: 22 Item: Rainbow_Cake_B - Rate: 55 - - Index: 30 - Item: PremiumNomalBox - Rate: 909 + Rate: 6 + - Index: 23 + Item: Comp_Insurance + Rate: 2 + - Index: 24 + Item: Comp_Battle_Manual + Rate: 2 + - Index: 25 + Item: Comp_Bubble_Gum + Rate: 2 + - Index: 26 + Item: Branch_Of_Dead_Tree + Rate: 2 + - Index: 27 + Item: Bloody_Dead_Branch + Rate: 1 + - Index: 28 + Item: Old_Card_Album + Rate: 1 + - Index: 29 + Item: PremiumWoodenBox + Rate: 100 - Group: NEW_HAT_SCROLL2 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Crystal_Jewel__ - Rate: 1400 - - Index: 1 - Item: Blacksmith_Blessing - Rate: 900 - - Index: 2 - Item: Poison_Bottle_Box2 - Rate: 1000 - - Index: 3 - Item: Potion_Box - Rate: 1000 - - Index: 4 - Item: C_Wing_Of_Fly_5Day_Box - Rate: 500 - - Index: 5 - Item: Weapon_7Up_Box - Rate: 15 - - Index: 6 - Item: Weapon_9Up_Box - Rate: 9 - - Index: 7 Item: Weapon_11Up_Box Rate: 1 - - Index: 8 - Item: Armor_7Up_Box - Rate: 15 - - Index: 9 - Item: Armor_9Up_Box - Rate: 9 - - Index: 10 + Announced: true + - Index: 1 Item: Armor_11Up_Box Rate: 1 - - Index: 11 - Item: New_Hat_Scroll2 - Rate: 20 - - Index: 12 - Item: New_Hat_Scroll2 - Rate: 20 - - Index: 13 - Item: Minus_Status_Box - Rate: 1000 - - Index: 14 - Item: New_Hat_Scroll2 - Rate: 20 - - Index: 15 - Item: Class_Shadow_Cube - Rate: 1000 - - Index: 16 - Item: New_Hat_Scroll2 - Rate: 20 - - Index: 17 - Item: Lapine_DdukddakBox - Rate: 1500 - - Index: 18 - Item: Alchemist_Box - Rate: 1070 - - Index: 19 - Item: New_Hat_Scroll2 + Announced: true + - Index: 2 + Item: Weapon_9Up_Box + Rate: 9 + Announced: true + - Index: 3 + Item: Armor_9Up_Box + Rate: 9 + Announced: true + - Index: 4 + Item: Weapon_7Up_Box + Rate: 15 + Announced: true + - Index: 5 + Item: Armor_7Up_Box + Rate: 15 + Announced: true + - Index: 6 + Item: New_Hat_Box2 Rate: 300 - - Index: 20 + Announced: true + - Index: 7 Item: Pump_Of_Spirit Rate: 200 + Announced: true + - Index: 8 + Item: Sealed_Hat_Box + Rate: 20 + Announced: true + - Index: 9 + Item: Sealed_Hat_Box2 + Rate: 20 + Announced: true + - Index: 10 + Item: Sealed_Hat_Box3 + Rate: 20 + Announced: true + - Index: 11 + Item: New_Hat_Box + Rate: 20 + Announced: true + - Index: 12 + Item: C_Wing_Of_Fly_5Day_Box + Rate: 500 + - Index: 13 + Item: Blacksmith_Blessing + Rate: 900 + - Index: 14 + Item: Minus_Status_Box + Rate: 1000 + - Index: 15 + Item: Lapine_DdukddakBox + Rate: 1500 + - Index: 16 + Item: Alchemist_Box + Rate: 1070 + - Index: 17 + Item: Potion_Box + Rate: 1000 + - Index: 18 + Item: Poison_Bottle_Box2 + Rate: 1000 + - Index: 19 + Item: Class_Shadow_Cube + Rate: 1000 + - Index: 20 + Item: Crystal_Jewel__ + Rate: 1400 + Amount: 10 - Group: NEW_HAT_BOX2 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Anubis_Helm - Rate: 2000 - - Index: 1 - Item: Rabbit_Magic_Hat - Rate: 2000 - - Index: 2 - Item: Shadow_Booster - Rate: 2000 - - Index: 3 Item: Fallen_Angel_Blessing - Rate: 2000 - - Index: 4 + Rate: 1 + - Index: 1 Item: Elemental_Crown_K - Rate: 2000 + Rate: 1 + - Index: 2 + Item: Rabbit_Magic_Hat + Rate: 1 + - Index: 3 + Item: Anubis_Helm + Rate: 1 + - Index: 4 + Item: Shadow_Booster + Rate: 1 - Group: 2016_SPECIAL_SCROLL SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Crystal_Jewel__ - Rate: 1000 + Item: Weapon_11Up_Box + Rate: 1 + Announced: true - Index: 1 - Item: Blacksmith_Blessing - Rate: 900 + Item: Armor_11Up_Box + Rate: 1 + Announced: true - Index: 2 - Item: Poison_Bottle_Box2 - Rate: 1000 + Item: Weapon_9Up_Box + Rate: 9 + Announced: true - Index: 3 - Item: C_Wing_Of_Fly_5Day_Box - Rate: 400 + Item: Armor_9Up_Box + Rate: 9 + Announced: true - Index: 4 Item: Weapon_7Up_Box Rate: 15 + Announced: true - Index: 5 - Item: Weapon_9Up_Box - Rate: 9 - - Index: 6 - Item: Weapon_11Up_Box - Rate: 1 - - Index: 7 Item: Armor_7Up_Box Rate: 15 - - Index: 8 - Item: Armor_9Up_Box - Rate: 9 - - Index: 9 - Item: Armor_11Up_Box - Rate: 1 - - Index: 10 + Announced: true + - Index: 6 + Item: 2016_Special_Box + Rate: 450 + - Index: 7 Item: Shadow_Cube_Weapon Rate: 300 - - Index: 11 + - Index: 8 Item: Shadow_Cube_Armor Rate: 300 - - Index: 12 - Item: Shadow_Cube_Shield - Rate: 300 - - Index: 13 + - Index: 9 Item: Shadow_Cube_Shoes Rate: 300 - - Index: 14 + - Index: 10 + Item: Shadow_Cube_Shield + Rate: 300 + - Index: 11 Item: Shadow_Cube_Pendant Rate: 300 - - Index: 15 + - Index: 12 Item: Shadow_Cube_Earing Rate: 300 - - Index: 16 + - Index: 13 + Item: Blacksmith_Blessing + Rate: 900 + - Index: 14 + Item: C_Wing_Of_Fly_5Day_Box + Rate: 400 + - Index: 15 Item: Minus_Status_Box Rate: 400 - - Index: 17 - Item: Class_Shadow_Cube - Rate: 1000 - - Index: 18 + - Index: 16 Item: Lapine_DdukddakBox Rate: 1000 - - Index: 19 + - Index: 17 Item: Alchemist_Box Rate: 1000 - - Index: 20 - Item: 2016_Special_Scroll - Rate: 450 - - Index: 21 - Item: 2016_Special_Scroll + - Index: 18 + Item: Biscuit_Stick_2Set Rate: 1000 + - Index: 19 + Item: Poison_Bottle_Box2 + Rate: 1000 + - Index: 20 + Item: Class_Shadow_Cube + Rate: 1000 + - Index: 21 + Item: Crystal_Jewel__ + Rate: 1000 + Amount: 10 - Group: 2016_SPECIAL_BOX SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Poring_Sunglasses_K - Rate: 987 + Item: AngelPoring_Box + Rate: 400 + Announced: true - Index: 1 Item: Poring_Sunglasses_K_ - Rate: 38 + Rate: 15 + Announced: true - Index: 2 - Item: Spirit_Of_Chung_E - Rate: 513 + Item: Poring_Sunglasses_K + Rate: 385 + Announced: true - Index: 3 - Item: Kafra_Employee_Band - Rate: 1154 + Item: Amistr_Box + Rate: 300 + Announced: true - Index: 4 - Item: AngelPoring_Box - Rate: 1026 + Item: Spirit_Of_Chung_E + Rate: 200 + Announced: true - Index: 5 - Item: 2016_Special_Box - Rate: 769 + Item: Poring_Balloon_Box + Rate: 300 + Announced: true - Index: 6 - Item: 2016_Special_Box - Rate: 769 - - Index: 7 Item: Gunslinger_Box - Rate: 769 - - Index: 8 + Rate: 300 + Announced: true + - Index: 7 Item: Mini_Fan_Box - Rate: 769 - - Index: 9 + Rate: 300 + Announced: true + - Index: 8 Item: Kafra_Box - Rate: 769 - - Index: 10 - Item: 2016_Special_Box - Rate: 1154 - - Index: 11 - Item: S_Sigrun_Armor - Rate: 641 - - Index: 12 + Rate: 300 + Announced: true + - Index: 9 Item: S_Sigrun_Shield - Rate: 641 + Rate: 250 + Announced: true + - Index: 10 + Item: S_Sigrun_Armor + Rate: 250 + Announced: true + - Index: 11 + Item: New_Hat_Box2 + Rate: 450 + Announced: true + - Index: 12 + Item: Kafra_Employee_Band + Rate: 450 + Announced: true - Group: BISCUIT_STICK_2SET SubGroups: - SubGroup: 0 List: - Index: 0 - Item: EF_DEX_Biscuit_Stick - Amount: 2 - - Index: 1 - Item: EF_LUK_Biscuit_Stick - Amount: 2 - - Index: 2 Item: EF_STR_Biscuit_Stick Amount: 2 - - Index: 3 + - Index: 1 Item: EF_VIT_Biscuit_Stick Amount: 2 - - Index: 4 + - Index: 2 Item: EF_AGI_Biscuit_Stick Amount: 2 - - Index: 5 + - Index: 3 Item: EF_INT_Biscuit_Stick Amount: 2 + - Index: 4 + Item: EF_DEX_Biscuit_Stick + Amount: 2 + - Index: 5 + Item: EF_LUK_Biscuit_Stick + Amount: 2 - Group: RACING_EXCHANGE SubGroups: - SubGroup: 0 @@ -53913,1028 +57455,1088 @@ Body: - SubGroup: 1 List: - Index: 0 - Item: Old_Blue_Box - Rate: 100 - Amount: 10 - - Index: 1 - Item: Old_Card_Album - Rate: 10 - - Index: 2 - Item: Old_Violet_Box - Rate: 100 - Amount: 5 - - Index: 3 - Item: Flame_Sprits_Armor_ - Rate: 10 - - Index: 4 - Item: Water_Sprits_Armor_ - Rate: 10 - - Index: 5 - Item: Wind_Sprits_Armor_ - Rate: 10 - - Index: 6 - Item: Earth_Sprits_Armor_ - Rate: 10 - - Index: 7 - Item: Guarantee_Weapon_9Up + Item: Guarantee_Weapon_13Up Rate: 2 - - Index: 8 - Item: Guarantee_Weapon_8Up - Rate: 5 - - Index: 9 - Item: Guarantee_Weapon_7Up + Announced: true + - Index: 1 + Item: Guarantee_Armor_13Up + Rate: 2 + Announced: true + - Index: 2 + Item: Guarantee_Weapon_12Up + Rate: 4 + Announced: true + - Index: 3 + Item: Guarantee_Armor_12Up + Rate: 4 + Announced: true + - Index: 4 + Item: Sillit_Pong_Bottle + Rate: 8 + Announced: true + - Index: 5 + Item: Guarantee_Weapon_10Up Rate: 10 + Announced: true + - Index: 6 + Item: Guarantee_Armor_10Up + Rate: 10 + Announced: true + - Index: 7 + Item: FallenAngelWing_Reset + Rate: 25 + Announced: true + - Index: 8 + Item: Comp_Neuralizer + Rate: 25 + Announced: true + - Index: 9 + Item: Guarantee_Weapon_9Up + Rate: 25 + Announced: true - Index: 10 Item: Guarantee_Armor_9Up - Rate: 2 + Rate: 25 + Announced: true - Index: 11 - Item: Guarantee_Armor_8Up - Rate: 5 - - Index: 12 - Item: Guarantee_Armor_7Up - Rate: 10 - - Index: 13 Item: Anger_Seagod - Rate: 4 + Rate: 40 Amount: 10 + - Index: 12 + Item: Guarantee_Weapon_8Up + Rate: 50 + - Index: 13 + Item: Guarantee_Armor_8Up + Rate: 50 - Index: 14 - Item: Sillit_Pong_Bottle - Rate: 1 - - Index: 15 - Item: Guarantee_Weapon_10Up - Rate: 1 - - Index: 16 - Item: Guarantee_Armor_10Up - Rate: 1 - - Index: 17 - Item: White_Potion_B - Rate: 1000 - Amount: 3 - - Index: 18 - Item: Yellow_Potion_B - Rate: 1060 - Amount: 3 - - Index: 19 - Item: Red_Slim_Potion_B - Rate: 1000 - Amount: 10 - - Index: 20 - Item: Red_Potion_B - Rate: 1080 - Amount: 3 - - Index: 21 - Item: Blue_Potion_B + Item: Guarantee_Weapon_7Up Rate: 100 - Amount: 30 - - Index: 22 - Item: White_Slim_Potion_B - Rate: 1000 - Amount: 10 - - Index: 23 - Item: Yellow_Slim_Potion_B - Rate: 1000 - Amount: 10 - - Index: 24 + - Index: 15 + Item: Guarantee_Armor_7Up + Rate: 100 + - Index: 16 + Item: Old_Card_Album + Rate: 100 + - Index: 17 + Item: Flame_Sprits_Armor_ + Rate: 100 + - Index: 18 + Item: Wind_Sprits_Armor_ + Rate: 100 + - Index: 19 + Item: Water_Sprits_Armor_ + Rate: 100 + - Index: 20 + Item: Earth_Sprits_Armor_ + Rate: 100 + - Index: 21 Item: Set_Of_Taiming_Item - Rate: 31 + Rate: 310 Amount: 2 + - Index: 22 + Item: High_Weapon_Box + Rate: 310 + - Index: 23 + Item: E_Med_Life_Potion + Rate: 750 + Amount: 5 + - Index: 24 + Item: E_Small_Life_Potion + Rate: 750 + Amount: 10 - Index: 25 Item: Comp_Battle_Manual - Rate: 75 + Rate: 750 - Index: 26 Item: Comp_Bubble_Gum - Rate: 75 + Rate: 750 - Index: 27 - Item: E_Med_Life_Potion - Rate: 75 - Amount: 5 - - Index: 28 - Item: E_Small_Life_Potion - Rate: 75 - Amount: 10 - - Index: 29 - Item: Poison_Bottle_Box2 - Rate: 100 - - Index: 30 - Item: High_Weapon_Box - Rate: 31 - - Index: 31 - Item: Center_Potion_B + Item: Old_Blue_Box Rate: 1000 + Amount: 10 + - Index: 28 + Item: Blue_Potion_B + Rate: 1000 + Amount: 30 + - Index: 29 + Item: Old_Violet_Box + Rate: 1000 + Amount: 5 + - Index: 30 + Item: Poison_Bottle_Box2 + Rate: 1000 + - Index: 31 + Item: Berserk_Potion_B + Rate: 10000 Amount: 3 - Index: 32 - Item: Berserk_Potion_B - Rate: 1000 + Item: Awakening_Potion_B + Rate: 10000 Amount: 3 - Index: 33 - Item: Awakening_Potion_B - Rate: 1000 + Item: Center_Potion_B + Rate: 10000 Amount: 3 - Index: 34 - Item: Comp_Neuralizer - Rate: 2 + Item: White_Slim_Potion_B + Rate: 10000 + Amount: 10 - Index: 35 - Item: FallenAngelWing_Reset - Rate: 2 + Item: Yellow_Slim_Potion_B + Rate: 10000 + Amount: 10 + - Index: 36 + Item: Red_Slim_Potion_B + Rate: 10000 + Amount: 10 + - Index: 37 + Item: White_Potion_B + Rate: 10000 + Amount: 3 + - Index: 38 + Item: Yellow_Potion_B + Rate: 10600 + Amount: 3 + - Index: 39 + Item: Red_Potion_B + Rate: 10800 + Amount: 3 - Group: CANDLELIGHT_SCROLL SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Mad_Bunny - Rate: 10000 - - SubGroup: 2 - List: - - Index: 0 - Item: Crystal_Jewel__ - Rate: 1000 - - Index: 1 - Item: Blacksmith_Blessing - Rate: 900 - - Index: 2 - Item: Poison_Bottle_Box2 - Rate: 1000 - - Index: 3 - Item: Candlelight_Scroll - Rate: 1000 - - Index: 4 - Item: Magical_Feather_K - Rate: 50 - - Index: 5 - Item: Sealed_Card - Rate: 10 - - Index: 6 - Item: Weapon_7Up_Box - Rate: 15 - - Index: 7 - Item: Weapon_9Up_Box - Rate: 9 - - Index: 8 Item: Weapon_11Up_Box Rate: 1 - - Index: 9 - Item: Armor_7Up_Box - Rate: 15 - - Index: 10 - Item: Armor_9Up_Box - Rate: 9 - - Index: 11 + Announced: true + - Index: 1 Item: Armor_11Up_Box Rate: 1 - - Index: 12 - Item: Shadow_Cube_Weapon - Rate: 300 - - Index: 13 - Item: Shadow_Cube_Armor - Rate: 300 - - Index: 14 - Item: Shadow_Cube_Shield - Rate: 300 - - Index: 15 - Item: Shadow_Cube_Shoes - Rate: 300 - - Index: 16 - Item: Shadow_Cube_Pendant - Rate: 300 - - Index: 17 - Item: Shadow_Cube_Earing - Rate: 300 - - Index: 18 - Item: Comp_Battle_Bubble - Rate: 940 - - Index: 19 - Item: Minus_Status_Box - Rate: 800 - - Index: 20 - Item: Class_Shadow_Cube - Rate: 1000 - - Index: 21 - Item: Lapine_DdukddakBox - Rate: 1000 - - Index: 22 - Item: JobShadow_Mix_Weapon - Rate: 25 - - Index: 23 - Item: JobShadow_Mix_Armor - Rate: 25 - - Index: 24 - Item: JobShadow_Mix_Shoes - Rate: 25 - - Index: 25 - Item: JobShadow_Mix_Shield - Rate: 25 - - Index: 26 - Item: JobShadow_Mix_Pendant - Rate: 25 - - Index: 27 - Item: JobShadow_Mix_Earing - Rate: 25 - - Index: 28 + Announced: true + - Index: 2 + Item: Weapon_9Up_Box + Rate: 9 + Announced: true + - Index: 3 + Item: Armor_9Up_Box + Rate: 9 + Announced: true + - Index: 4 + Item: Weapon_7Up_Box + Rate: 15 + Announced: true + - Index: 5 + Item: Armor_7Up_Box + Rate: 15 + Announced: true + - Index: 6 + Item: Sealed_Card + Rate: 10 + Announced: true + - Index: 7 Item: Mad_Bunny_K Rate: 150 - - Index: 29 + Announced: true + - Index: 8 Item: Mad_Bunny_K_ Rate: 150 + Announced: true + - Index: 9 + Item: Magical_Feather_K + Rate: 50 + Announced: true + - Index: 10 + Item: JobShadow_Mix_Weapon + Rate: 25 + Announced: true + - Index: 11 + Item: JobShadow_Mix_Armor + Rate: 25 + Announced: true + - Index: 12 + Item: JobShadow_Mix_Shoes + Rate: 25 + Announced: true + - Index: 13 + Item: JobShadow_Mix_Shield + Rate: 25 + Announced: true + - Index: 14 + Item: JobShadow_Mix_Pendant + Rate: 25 + Announced: true + - Index: 15 + Item: JobShadow_Mix_Earing + Rate: 25 + Announced: true + - Index: 16 + Item: Shadow_Cube_Weapon + Rate: 300 + - Index: 17 + Item: Shadow_Cube_Armor + Rate: 300 + - Index: 18 + Item: Shadow_Cube_Shoes + Rate: 300 + - Index: 19 + Item: Shadow_Cube_Shield + Rate: 300 + - Index: 20 + Item: Shadow_Cube_Pendant + Rate: 300 + - Index: 21 + Item: Shadow_Cube_Earing + Rate: 300 + - Index: 22 + Item: Blacksmith_Blessing + Rate: 900 + - Index: 23 + Item: Minus_Status_Box + Rate: 800 + - Index: 24 + Item: Lapine_DdukddakBox + Rate: 1000 + - Index: 25 + Item: Comp_Battle_Bubble + Rate: 940 + Amount: 2 + - Index: 26 + Item: C_Giant_Fly_1Day_Box + Rate: 1000 + - Index: 27 + Item: Poison_Bottle_Box2 + Rate: 1000 + - Index: 28 + Item: Class_Shadow_Cube + Rate: 1000 + - Index: 29 + Item: Crystal_Jewel__ + Rate: 1000 + Amount: 10 - Group: LAPINE_SCROLL SubGroups: - SubGroup: 1 List: - Index: 0 - Item: C_CatPaw_7Day_Box_ - Rate: 10000 - - SubGroup: 2 - List: - - Index: 0 - Item: Crystal_Jewel__ - Rate: 1000 - - Index: 1 - Item: Costume_Exchange - Rate: 1000 - - Index: 2 - Item: Poison_Bottle_Box2 - Rate: 1000 - - Index: 3 - Item: Lapine_Scroll - Rate: 1000 - - Index: 4 - Item: Lapine_Scroll - Rate: 560 - - Index: 5 - Item: Sealed_Card - Rate: 10 - - Index: 6 - Item: New_Year_Shadow_Cube - Rate: 200 - - Index: 7 - Item: Weapon_7Up_Box - Rate: 15 - - Index: 8 - Item: Weapon_9Up_Box - Rate: 9 - - Index: 9 Item: Weapon_11Up_Box Rate: 1 - - Index: 10 - Item: Armor_7Up_Box - Rate: 15 - - Index: 11 - Item: Armor_9Up_Box - Rate: 9 - - Index: 12 + Announced: true + - Index: 1 Item: Armor_11Up_Box Rate: 1 - - Index: 13 - Item: Minus_Status_Box - Rate: 900 - - Index: 14 - Item: Class_Shadow_Cube - Rate: 1000 - - Index: 15 - Item: Lapine_Scroll - Rate: 3000 - - Index: 16 - Item: StatusShadow_Mix - Rate: 20 - - Index: 17 - Item: GemstoneShadow_Mix - Rate: 20 - - Index: 18 - Item: BearersShadow_Mix - Rate: 20 - - Index: 19 - Item: ComposeShadow_Mix - Rate: 20 - - Index: 20 + Announced: true + - Index: 2 + Item: Weapon_9Up_Box + Rate: 9 + Announced: true + - Index: 3 + Item: Armor_9Up_Box + Rate: 9 + Announced: true + - Index: 4 + Item: Weapon_7Up_Box + Rate: 15 + Announced: true + - Index: 5 + Item: Armor_7Up_Box + Rate: 15 + Announced: true + - Index: 6 + Item: Sealed_Card + Rate: 10 + Announced: true + - Index: 7 + Item: New_Year_Shadow_Cube + Rate: 200 + Announced: true + - Index: 8 Item: S_Critical_Shield Rate: 100 - - Index: 21 + Announced: true + - Index: 9 Item: S_Critical_Shoes Rate: 100 + Announced: true + - Index: 10 + Item: StatusShadow_Mix + Rate: 20 + Announced: true + - Index: 11 + Item: GemstoneShadow_Mix + Rate: 20 + Announced: true + - Index: 12 + Item: BearersShadow_Mix + Rate: 20 + Announced: true + - Index: 13 + Item: ComposeShadow_Mix + Rate: 20 + Announced: true + - Index: 14 + Item: LI_Lapine_DdukddakBox + Rate: 3000 + - Index: 15 + Item: C_CatPaw_7Day_Box + Rate: 560 + - Index: 16 + Item: Minus_Status_Box + Rate: 900 + - Index: 17 + Item: Costume_Exchange + Rate: 1000 + - Index: 18 + Item: C_Giant_Fly_1Day_Box + Rate: 1000 + - Index: 19 + Item: Poison_Bottle_Box2 + Rate: 1000 + - Index: 20 + Item: Class_Shadow_Cube + Rate: 1000 + - Index: 21 + Item: Crystal_Jewel__ + Rate: 1000 + Amount: 10 - Group: LI_LAPINE_DDUKDDAKBOX SubGroups: - SubGroup: 1 List: - Index: 0 Item: Shadow_Mix_Recipe - Rate: 3333 + Rate: 1000 - Index: 1 Item: EnchantStone_Recipe - Rate: 2667 + Rate: 800 - Index: 2 Item: EventItem_Recipe - Rate: 1500 + Rate: 450 - Index: 3 Item: PetEgg_Recipe - Rate: 500 + Rate: 150 - Index: 4 Item: Nyang_Costume_Recipe - Rate: 1700 + Rate: 510 - Index: 5 - Item: JobShadow_Mix_Weapon - Rate: 50 - - Index: 6 - Item: JobShadow_Mix_Armor - Rate: 50 - - Index: 7 - Item: JobShadow_Mix_Shoes - Rate: 50 - - Index: 8 - Item: JobShadow_Mix_Shield - Rate: 50 - - Index: 9 Item: JobShadow_Mix_Pendant - Rate: 50 + Rate: 15 + Announced: true + - Index: 6 + Item: JobShadow_Mix_Weapon + Rate: 15 + Announced: true + - Index: 7 + Item: JobShadow_Mix_Armor + Rate: 15 + Announced: true + - Index: 8 + Item: JobShadow_Mix_Shoes + Rate: 15 + Announced: true + - Index: 9 + Item: JobShadow_Mix_Shield + Rate: 15 + Announced: true - Index: 10 Item: JobShadow_Mix_Earing - Rate: 50 + Rate: 15 + Announced: true - SubGroup: 2 List: - Index: 0 - Item: J_Shop_Coupon - Rate: 370 + Item: Poison_Pack2 + Rate: 10 - Index: 1 - Item: Comp_Battle_Manual - Rate: 370 - Amount: 2 + Item: White_Slim_Pot_Box2 + Rate: 10 - Index: 2 - Item: Comp_Bubble_Gum - Rate: 370 - Amount: 2 + Item: E_WOB_Local + Rate: 10 + Amount: 3 - Index: 3 - Item: Comp_Insurance - Rate: 370 + Item: E_WOB_Rachel + Rate: 10 Amount: 3 - Index: 4 - Item: E_WOB_Rune - Rate: 370 + Item: E_WOB_Schwaltz + Rate: 10 Amount: 3 - Index: 5 - Item: E_WOB_Schwaltz - Rate: 370 + Item: E_WOB_Rune + Rate: 10 Amount: 3 - Index: 6 - Item: E_WOB_Rachel - Rate: 370 - Amount: 3 + Item: Comp_Battle_Manual + Rate: 10 + Amount: 2 - Index: 7 - Item: E_WOB_Local - Rate: 370 - Amount: 3 + Item: Comp_Bubble_Gum + Rate: 10 + Amount: 2 - Index: 8 - Item: White_Slim_Pot_Box2 - Rate: 370 - - Index: 9 - Item: Old_C_Album_Helm - Rate: 370 - - Index: 10 - Item: Old_C_Album_Armor - Rate: 370 - - Index: 11 - Item: Old_C_Album_Shield - Rate: 370 - - Index: 12 - Item: Old_C_Album_Garment - Rate: 370 - - Index: 13 - Item: Old_C_Album_Shoes - Rate: 370 - - Index: 14 - Item: Old_C_Album_Acc - Rate: 370 - - Index: 15 - Item: Old_C_Album_Weapon - Rate: 370 - - Index: 16 Item: C_Wing_Of_Fly_1Day_Box - Rate: 370 - - Index: 17 - Item: LI_Lapine_DdukddakBox - Rate: 370 - - Index: 18 + Rate: 10 + - Index: 9 Item: Minus_Str - Rate: 370 + Rate: 10 Amount: 3 - - Index: 19 + - Index: 10 Item: Minus_Agi - Rate: 370 + Rate: 10 Amount: 3 - - Index: 20 + - Index: 11 Item: Minus_Vit - Rate: 370 + Rate: 10 Amount: 3 - - Index: 21 + - Index: 12 Item: Minus_Int - Rate: 370 + Rate: 10 Amount: 3 - - Index: 22 + - Index: 13 Item: Minus_Dex - Rate: 370 + Rate: 10 Amount: 3 - - Index: 23 + - Index: 14 Item: Minus_Luk - Rate: 370 + Rate: 10 Amount: 3 + - Index: 15 + Item: Old_C_Album_Helm + Rate: 10 + - Index: 16 + Item: Old_C_Album_Armor + Rate: 10 + - Index: 17 + Item: Old_C_Album_Shield + Rate: 10 + - Index: 18 + Item: Old_C_Album_Garment + Rate: 10 + - Index: 19 + Item: Old_C_Album_Shoes + Rate: 10 + - Index: 20 + Item: Old_C_Album_Acc + Rate: 10 + - Index: 21 + Item: Old_C_Album_Weapon + Rate: 10 + - Index: 22 + Item: C_Greed_1Hour_Box + Rate: 10 + - Index: 23 + Item: J_Shop_Coupon + Rate: 10 - Index: 24 - Item: Comp_Spark_Candy - Rate: 370 + Item: Comp_Insurance + Rate: 10 Amount: 3 - Index: 25 Item: Comp_Magic_Candy - Rate: 370 + Rate: 10 Amount: 3 - Index: 26 - Item: Poison_Pack2 - Rate: 370 + Item: Comp_Spark_Candy + Rate: 10 + Amount: 3 - Group: HAIR_BUN_BOX SubGroups: - SubGroup: 1 List: - Index: 0 Item: C_Hair_Bun_BU - Rate: 1250 + Rate: 1 - Index: 1 Item: C_Hair_Bun_RD - Rate: 1250 + Rate: 1 - Index: 2 Item: C_Hair_Bun_YL - Rate: 1250 + Rate: 1 - Index: 3 Item: C_Hair_Bun_GN - Rate: 1250 + Rate: 1 - Index: 4 Item: C_Hair_Bun_BL - Rate: 1250 + Rate: 1 - Index: 5 Item: C_Hair_Bun_WH - Rate: 1250 + Rate: 1 - Index: 6 Item: C_Hair_Bun_OM - Rate: 1250 + Rate: 1 - Index: 7 Item: C_Hair_Bun_PP - Rate: 1250 + Rate: 1 - Group: ROLL_TWIN_BOX SubGroups: - SubGroup: 1 List: - Index: 0 Item: C_Roll_Twin_BU - Rate: 1250 + Rate: 1 - Index: 1 Item: C_Roll_Twin_RD - Rate: 1250 + Rate: 1 - Index: 2 Item: C_Roll_Twin_YL - Rate: 1250 + Rate: 1 - Index: 3 Item: C_Roll_Twin_GN - Rate: 1250 + Rate: 1 - Index: 4 Item: C_Roll_Twin_BL - Rate: 1250 + Rate: 1 - Index: 5 Item: C_Roll_Twin_WH - Rate: 1250 + Rate: 1 - Index: 6 Item: C_Roll_Twin_OM - Rate: 1250 + Rate: 1 - Index: 7 Item: C_Roll_Twin_PP - Rate: 1250 + Rate: 1 - Group: LONG_PONY_BOX SubGroups: - SubGroup: 1 List: - Index: 0 Item: C_Long_Pony_BU - Rate: 1250 + Rate: 1 - Index: 1 Item: C_Long_Pony_RD - Rate: 1250 + Rate: 1 - Index: 2 Item: C_Long_Pony_YL - Rate: 1250 + Rate: 1 - Index: 3 Item: C_Long_Pony_GN - Rate: 1250 + Rate: 1 - Index: 4 Item: C_Long_Pony_BL - Rate: 1250 + Rate: 1 - Index: 5 Item: C_Long_Pony_WH - Rate: 1250 + Rate: 1 - Index: 6 Item: C_Long_Pony_OM - Rate: 1250 + Rate: 1 - Index: 7 Item: C_Long_Pony_PP - Rate: 1250 + Rate: 1 - Group: 1LVUP SubGroups: - SubGroup: 1 List: - Index: 0 Item: Novice_Potion_B - Rate: 1111 + Rate: 1 Amount: 300 - Index: 1 - Item: Arrow_Container - Rate: 1111 - Amount: 5 + Item: N_Fly_Wing + Rate: 1 + Amount: 100 - Index: 2 - Item: Bullet_Case - Rate: 1111 - Amount: 5 + Item: N_Butterfly_Wing + Rate: 1 + Amount: 20 - Index: 3 - Item: Inspector_Certificate_ - Rate: 1111 + Item: N_Magnifier + Rate: 1 Amount: 10 - Index: 4 - Item: N_Fly_Wing - Rate: 1111 - Amount: 100 + Item: Arrow_Container + Rate: 1 + Amount: 5 - Index: 5 - Item: N_Butterfly_Wing - Rate: 1111 - Amount: 20 + Item: Bullet_Case + Rate: 1 + Amount: 5 - Index: 6 - Item: N_Magnifier - Rate: 1111 + Item: Inspector_Certificate_ + Rate: 1 Amount: 10 - Index: 7 Item: Time_Guardian_Box - Rate: 1111 + Rate: 1 - Index: 8 - Item: 1LVUP - Rate: 1111 + Item: 10LVUP + Rate: 1 - Group: 10LVUP SubGroups: - SubGroup: 1 List: - Index: 0 Item: Novice_Potion_B - Rate: 1429 + Rate: 1 Amount: 300 - Index: 1 - Item: Arrow_Container - Rate: 1429 - Amount: 5 - - Index: 2 - Item: Bullet_Case - Rate: 1429 - Amount: 5 - - Index: 3 Item: N_Fly_Wing - Rate: 1429 + Rate: 1 Amount: 150 - - Index: 4 + - Index: 2 Item: N_Magnifier - Rate: 1429 + Rate: 1 Amount: 10 + - Index: 3 + Item: Arrow_Container + Rate: 1 + Amount: 5 + - Index: 4 + Item: Bullet_Case + Rate: 1 + Amount: 5 - Index: 5 - Item: 10LVUP - Rate: 1429 - - Index: 6 Item: Time_Keeper_Ring - Rate: 1429 + Rate: 1 + - Index: 6 + Item: 20LVUP + Rate: 1 - Group: 20LVUP SubGroups: - SubGroup: 1 List: - Index: 0 Item: Novice_Potion_B - Rate: 1250 + Rate: 1 Amount: 300 - Index: 1 - Item: Arrow_Container - Rate: 1250 - Amount: 5 - - Index: 2 - Item: Bullet_Case - Rate: 1250 - Amount: 5 - - Index: 3 Item: N_Fly_Wing - Rate: 1250 + Rate: 1 Amount: 150 - - Index: 4 + - Index: 2 Item: N_Butterfly_Wing - Rate: 1250 + Rate: 1 Amount: 10 - - Index: 5 + - Index: 3 Item: N_Magnifier - Rate: 1250 + Rate: 1 Amount: 10 + - Index: 4 + Item: Arrow_Container + Rate: 1 + Amount: 5 + - Index: 5 + Item: Bullet_Case + Rate: 1 + Amount: 5 - Index: 6 Item: G_Almighty - Rate: 1250 + Rate: 1 - Index: 7 - Item: 20LVUP - Rate: 1250 + Item: 30LVUP + Rate: 1 - Group: 30LVUP SubGroups: - SubGroup: 1 List: - Index: 0 Item: Novice_Potion_B - Rate: 1111 + Rate: 1 Amount: 300 - Index: 1 - Item: Arrow_Container - Rate: 1111 - Amount: 5 + Item: N_Fly_Wing + Rate: 1 + Amount: 150 - Index: 2 - Item: Bullet_Case - Rate: 1111 - Amount: 5 + Item: N_Butterfly_Wing + Rate: 1 + Amount: 20 - Index: 3 - Item: Inspector_Certificate_ - Rate: 1111 + Item: N_Magnifier + Rate: 1 Amount: 10 - Index: 4 - Item: N_Fly_Wing - Rate: 1111 - Amount: 150 + Item: Arrow_Container + Rate: 1 + Amount: 5 - Index: 5 - Item: N_Butterfly_Wing - Rate: 1111 - Amount: 20 + Item: Bullet_Case + Rate: 1 + Amount: 5 - Index: 6 - Item: N_Magnifier - Rate: 1111 + Item: Inspector_Certificate_ + Rate: 1 Amount: 10 - Index: 7 Item: Time_Keeper_Glasses - Rate: 1111 + Rate: 1 - Index: 8 - Item: 30LVUP - Rate: 1111 + Item: 40LVUP + Rate: 1 - Group: 40LVUP SubGroups: - SubGroup: 1 List: - Index: 0 Item: Novice_Potion_B - Rate: 1111 + Rate: 1 Amount: 200 - Index: 1 Item: Orange_Potion_B - Rate: 1111 + Rate: 1 Amount: 30 - Index: 2 - Item: Arrow_Container - Rate: 1111 - Amount: 5 + Item: N_Fly_Wing + Rate: 1 + Amount: 100 - Index: 3 - Item: Bullet_Case - Rate: 1111 - Amount: 5 + Item: N_Butterfly_Wing + Rate: 1 + Amount: 20 - Index: 4 - Item: Inspector_Certificate_ - Rate: 1111 + Item: N_Magnifier + Rate: 1 Amount: 10 - Index: 5 - Item: N_Fly_Wing - Rate: 1111 - Amount: 100 + Item: Arrow_Container + Rate: 1 + Amount: 5 - Index: 6 - Item: N_Butterfly_Wing - Rate: 1111 - Amount: 20 + Item: Bullet_Case + Rate: 1 + Amount: 5 - Index: 7 - Item: N_Magnifier - Rate: 1111 + Item: Inspector_Certificate_ + Rate: 1 Amount: 10 - Index: 8 - Item: 40LVUP - Rate: 1111 + Item: 50LVUP + Rate: 1 - Group: 50LVUP SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Yellow_Potion_B - Rate: 1429 - Amount: 30 - - Index: 1 Item: Novice_Potion_B - Rate: 1429 + Rate: 1 Amount: 100 + - Index: 1 + Item: Yellow_Potion_B + Rate: 1 + Amount: 30 - Index: 2 - Item: Arrow_Container - Rate: 1429 - Amount: 5 - - Index: 3 - Item: Bullet_Case - Rate: 1429 - Amount: 5 - - Index: 4 Item: N_Fly_Wing - Rate: 1429 + Rate: 1 Amount: 150 - - Index: 5 + - Index: 3 Item: N_Magnifier - Rate: 1429 + Rate: 1 Amount: 10 + - Index: 4 + Item: Arrow_Container + Rate: 1 + Amount: 5 + - Index: 5 + Item: Bullet_Case + Rate: 1 + Amount: 5 - Index: 6 - Item: 50LVUP - Rate: 1429 + Item: 60LVUP + Rate: 1 - Group: 60LVUP SubGroups: - SubGroup: 1 List: - Index: 0 Item: Yellow_Slim_Potion_B - Rate: 2000 + Rate: 1 Amount: 100 - Index: 1 - Item: Inspector_Certificate_ - Rate: 2000 - Amount: 10 - - Index: 2 - Item: Comp_Battle_Manual - Rate: 2000 - Amount: 5 - - Index: 3 Item: Comp_Regenerate_Potion - Rate: 2000 + Rate: 1 Amount: 2 + - Index: 2 + Item: Inspector_Certificate_ + Rate: 1 + Amount: 10 + - Index: 3 + Item: Comp_Battle_Manual + Rate: 1 + Amount: 5 - Index: 4 - Item: 60LVUP - Rate: 2000 + Item: 70LVUP + Rate: 1 - Group: 70LVUP SubGroups: - SubGroup: 1 List: - Index: 0 Item: Yellow_Slim_Potion_B - Rate: 1667 + Rate: 1 Amount: 100 - Index: 1 - Item: Comp_Bubble_Gum - Rate: 1667 - Amount: 5 - - Index: 2 - Item: Comp_Insurance - Rate: 1667 - Amount: 5 - - Index: 3 - Item: 80LVUP - Rate: 1667 - - Index: 4 Item: Comp_Small_Mana_Potion - Rate: 1667 + Rate: 1 Amount: 3 - - Index: 5 + - Index: 2 Item: Comp_Regenerate_Potion - Rate: 1667 + Rate: 1 Amount: 4 + - Index: 3 + Item: Comp_Bubble_Gum + Rate: 1 + Amount: 5 + - Index: 4 + Item: Comp_Insurance + Rate: 1 + Amount: 5 + - Index: 5 + Item: 80LVUP + Rate: 1 - Group: 90LVUP SubGroups: - SubGroup: 1 List: - Index: 0 Item: Yellow_Slim_Potion_B - Rate: 1429 + Rate: 1 Amount: 150 - Index: 1 - Item: Inspector_Certificate_ - Rate: 1429 - Amount: 10 - - Index: 2 - Item: Comp_Battle_Manual - Rate: 1429 - Amount: 5 - - Index: 3 Item: N_Fly_Wing - Rate: 1429 + Rate: 1 Amount: 100 + - Index: 2 + Item: Comp_Regenerate_Potion + Rate: 1 + Amount: 4 + - Index: 3 + Item: Inspector_Certificate_ + Rate: 1 + Amount: 10 - Index: 4 - Item: E_Abrasive - Rate: 1429 + Item: Comp_Battle_Manual + Rate: 1 Amount: 5 - Index: 5 - Item: 100LVUP - Rate: 1429 + Item: E_Abrasive + Rate: 1 + Amount: 5 - Index: 6 - Item: Comp_Regenerate_Potion - Rate: 1429 - Amount: 4 + Item: 100LVUP + Rate: 1 - Group: 175LVUP SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Comp_M_DEFScroll - Amount: 30 - - Index: 1 Item: Comp_Power_Booster Amount: 20 - - Index: 2 + - Index: 1 Item: Comp_Almighty Amount: 20 + - Index: 2 + Item: Comp_M_DEFScroll + Amount: 30 - Group: BISCUIT_STICK_2SET_ SubGroups: - SubGroup: 0 List: - Index: 0 - Item: EF_DEX_Biscuit_Stick - Amount: 2 - - Index: 1 - Item: EF_LUK_Biscuit_Stick - Amount: 2 - - Index: 2 Item: EF_STR_Biscuit_Stick Amount: 2 - - Index: 3 + - Index: 1 Item: EF_VIT_Biscuit_Stick Amount: 2 - - Index: 4 + - Index: 2 Item: EF_AGI_Biscuit_Stick Amount: 2 - - Index: 5 + - Index: 3 Item: EF_INT_Biscuit_Stick Amount: 2 + - Index: 4 + Item: EF_DEX_Biscuit_Stick + Amount: 2 + - Index: 5 + Item: EF_LUK_Biscuit_Stick + Amount: 2 - Group: LOVE_SCROLL SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Love_Scroll - Rate: 10000 - - SubGroup: 2 - List: - - Index: 0 - Item: Crystal_Jewel__ - Rate: 1000 - - Index: 1 - Item: Blacksmith_Blessing - Rate: 800 - - Index: 2 - Item: Poison_Bottle_Box2 - Rate: 1000 - - Index: 3 - Item: C_Wing_Of_Fly_3Day_Box - Rate: 1000 - - Index: 4 - Item: Love_Scroll - Rate: 1000 - - Index: 5 - Item: Weapon_7Up_Box - Rate: 15 - - Index: 6 - Item: Weapon_9Up_Box - Rate: 9 - - Index: 7 Item: Weapon_11Up_Box Rate: 1 - - Index: 8 - Item: Armor_7Up_Box - Rate: 15 - - Index: 9 - Item: Armor_9Up_Box - Rate: 9 - - Index: 10 + Announced: true + - Index: 1 Item: Armor_11Up_Box Rate: 1 - - Index: 11 - Item: Comp_Trans_Scroll - Rate: 1000 - - Index: 12 - Item: WOB_Box - Rate: 830 - - Index: 13 - Item: Lapine_DdukddakBox - Rate: 1500 - - Index: 14 - Item: RaceShadow_Mix - Rate: 20 - - Index: 15 - Item: Love_Scroll - Rate: 800 - - Index: 16 - Item: Advanced_Taiming_Item - Rate: 500 - - Index: 17 - Item: Candy_Box_Melee - Rate: 100 - - Index: 18 - Item: Candy_Box_Range - Rate: 100 - - Index: 19 - Item: Candy_Box_Magic - Rate: 100 - - Index: 20 + Announced: true + - Index: 2 + Item: Weapon_9Up_Box + Rate: 9 + Announced: true + - Index: 3 + Item: Armor_9Up_Box + Rate: 9 + Announced: true + - Index: 4 + Item: Weapon_7Up_Box + Rate: 15 + Announced: true + - Index: 5 + Item: Armor_7Up_Box + Rate: 15 + Announced: true + - Index: 6 Item: S_Blitz_Weapon Rate: 100 - - Index: 21 + Announced: true + - Index: 7 Item: S_Blitz_Armor Rate: 100 + Announced: true + - Index: 8 + Item: RaceShadow_Mix + Rate: 20 + Announced: true + - Index: 9 + Item: Candy_Box_Melee + Rate: 100 + Announced: true + - Index: 10 + Item: Candy_Box_Range + Rate: 100 + Announced: true + - Index: 11 + Item: Candy_Box_Magic + Rate: 100 + Announced: true + - Index: 12 + Item: Advanced_Taiming_Item + Rate: 500 + - Index: 13 + Item: Biscuit_Stick_2Set_ + Rate: 800 + - Index: 14 + Item: Blacksmith_Blessing + Rate: 800 + - Index: 15 + Item: WOB_Box + Rate: 830 + - Index: 16 + Item: C_Wing_Of_Fly_3Day_Box + Rate: 1000 + - Index: 17 + Item: Comp_Trans_Scroll + Rate: 1000 + - Index: 18 + Item: C_Giant_Fly_1Day_Box + Rate: 1000 + - Index: 19 + Item: Lapine_DdukddakBox + Rate: 1500 + - Index: 20 + Item: Poison_Bottle_Box2 + Rate: 1000 + - Index: 21 + Item: Crystal_Jewel__ + Rate: 1000 + Amount: 10 - Group: LOVELY_EGG_BOX SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Orange_Juice - Rate: 300 + Item: Yummy_Cookie_Egg + Rate: 160 + Amount: 10 - Index: 1 - Item: Rainbow_Carrot - Rate: 300 + Item: Chocolate_Egg + Rate: 160 + Amount: 10 - Index: 2 - Item: Earthworm_The_Dude - Rate: 300 + Item: Holy_Egg + Rate: 60 - Index: 3 - Item: Sweet_Milk - Rate: 300 + Item: Heart_Of_Her + Rate: 30 - Index: 4 - Item: Well_Dried_Bone - Rate: 300 + Item: Little_Dall_Needle + Rate: 30 - Index: 5 - Item: Dew_Laden_Moss - Rate: 300 + Item: Delicious_Shaved_Ice + Rate: 30 - Index: 6 - Item: Deadly_Noxious_Herb - Rate: 300 + Item: Well_Dried_Bone + Rate: 30 - Index: 7 - Item: Fatty_Chubby_Earthworm - Rate: 300 + Item: Dew_Laden_Moss + Rate: 30 - Index: 8 - Item: Baked_Yam - Rate: 300 + Item: Deadly_Noxious_Herb + Rate: 30 - Index: 9 Item: Tropical_Banana - Rate: 300 + Rate: 30 - Index: 10 Item: No_Recipient - Rate: 300 + Rate: 30 - Index: 11 Item: Old_Broom - Rate: 300 + Rate: 30 - Index: 12 - Item: Contracts_In_Shadow - Rate: 300 + Item: Orange_Juice + Rate: 30 - Index: 13 - Item: Heart_Of_Her - Rate: 300 + Item: Contracts_In_Shadow + Rate: 30 - Index: 14 - Item: Sway_Apron - Rate: 300 + Item: Tantanmen + Rate: 30 - Index: 15 - Item: Chocolate_Egg - Rate: 1600 - Amount: 10 + Item: Sway_Apron + Rate: 30 - Index: 16 - Item: Yummy_Cookie_Egg - Rate: 1600 - Amount: 10 - - Index: 17 - Item: Holy_Egg - Rate: 600 - - Index: 18 Item: Very_Red_Juice - Rate: 300 + Rate: 30 + - Index: 17 + Item: Rainbow_Carrot + Rate: 30 + - Index: 18 + Item: Earthworm_The_Dude + Rate: 30 - Index: 19 - Item: Delicious_Shaved_Ice - Rate: 300 + Item: Sweet_Milk + Rate: 30 - Index: 20 - Item: Gril_Doll - Rate: 50 + Item: Fatty_Chubby_Earthworm + Rate: 30 - Index: 21 - Item: Gril's_Naivety - Rate: 10 + Item: Baked_Yam + Rate: 30 - Index: 22 Item: Boy's_Naivety - Rate: 40 + Rate: 4 - Index: 23 - Item: Tantanmen - Rate: 300 + Item: Gril's_Naivety + Rate: 1 - Index: 24 - Item: Clover_Silkhat - Rate: 50 + Item: Gril_Doll + Rate: 5 - Index: 25 - Item: Egg_Crispinette - Rate: 50 + Item: Clover_Silkhat + Rate: 5 - Index: 26 - Item: Saint_Egg_Shell - Rate: 50 + Item: Egg_Crispinette + Rate: 5 - Index: 27 Item: Devil_Egg_Shell - Rate: 50 + Rate: 5 - Index: 28 - Item: C_Clover_Silkhat - Rate: 50 + Item: Saint_Egg_Shell + Rate: 5 - Index: 29 - Item: Little_Dall_Needle - Rate: 300 + Item: C_Clover_Silkhat + Rate: 5 - Index: 30 - Item: C_Egg_Crispinette - Rate: 50 + Item: C_Mimic_Egg_Shell + Rate: 5 - Index: 31 Item: C_Holy_Egg_Hat - Rate: 50 + Rate: 5 - Index: 32 - Item: C_Mimic_Egg_Shell - Rate: 50 + Item: C_Egg_Crispinette + Rate: 5 - Group: C_CATPAW_1DAY_PARA SubGroups: - SubGroup: 0 @@ -54942,6 +58544,7 @@ Body: - Index: 0 Item: C_CatPaw_Ticket Duration: 1440 + UniqueId: true - Group: C_WING_OF_FLY_1DAY_PARA SubGroups: - SubGroup: 0 @@ -54949,91 +58552,107 @@ Body: - Index: 0 Item: C_Wing_Of_Fly Duration: 1440 + UniqueId: true - Group: CAT_SCROLL SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Crystal_Jewel__ - Rate: 1000 - - Index: 1 - Item: Blacksmith_Blessing - Rate: 800 - - Index: 2 - Item: Toy_Syringe_K - Rate: 40 - - Index: 3 - Item: Blue_Rear_Ribbon - Rate: 100 - - Index: 4 - Item: Necklace_Rosary_K - Rate: 100 - - Index: 5 - Item: Weapon_7Up_Box - Rate: 15 - - Index: 6 - Item: Weapon_9Up_Box - Rate: 9 - - Index: 7 Item: Weapon_11Up_Box Rate: 1 - - Index: 8 - Item: Armor_7Up_Box - Rate: 15 - - Index: 9 - Item: Armor_9Up_Box - Rate: 9 - - Index: 10 + Announced: true + - Index: 1 Item: Armor_11Up_Box Rate: 1 + Announced: true + - Index: 2 + Item: Weapon_9Up_Box + Rate: 9 + Announced: true + - Index: 3 + Item: Armor_9Up_Box + Rate: 9 + Announced: true + - Index: 4 + Item: Weapon_7Up_Box + Rate: 15 + Announced: true + - Index: 5 + Item: Armor_7Up_Box + Rate: 15 + Announced: true + - Index: 6 + Item: Toy_Syringe_K + Rate: 40 + Announced: true + - Index: 7 + Item: Magical_Booster_Box + Rate: 20 + Announced: true + - Index: 8 + Item: Cat_Head_Dress_Basket + Rate: 200 + Announced: true + - Index: 9 + Item: Blue_Rear_Ribbon + Rate: 100 + Announced: true + - Index: 10 + Item: Necklace_Rosary_K + Rate: 100 + Announced: true - Index: 11 - Item: Shadow_Cube_Weapon - Rate: 300 - - Index: 12 - Item: Shadow_Cube_Armor - Rate: 300 - - Index: 13 - Item: Shadow_Cube_Shield - Rate: 300 - - Index: 14 - Item: Shadow_Cube_Shoes - Rate: 300 - - Index: 15 - Item: Shadow_Cube_Pendant - Rate: 300 - - Index: 16 - Item: Shadow_Cube_Earing - Rate: 300 - - Index: 17 - Item: Comp_Trans_Scroll - Rate: 800 - - Index: 18 - Item: Minus_Status_Box - Rate: 1500 - - Index: 19 - Item: White_Slim_Potion_Box_ - Rate: 1000 - - Index: 20 - Item: Lapine_DdukddakBox - Rate: 1500 - - Index: 21 Item: Candy_Box_Melee Rate: 30 - - Index: 22 + Announced: true + - Index: 12 Item: Candy_Box_Range Rate: 30 - - Index: 23 + Announced: true + - Index: 13 Item: Candy_Box_Magic Rate: 30 + Announced: true + - Index: 14 + Item: Blacksmith_Blessing + Rate: 800 + - Index: 15 + Item: Shadow_Cube_Weapon + Rate: 300 + - Index: 16 + Item: Shadow_Cube_Armor + Rate: 300 + - Index: 17 + Item: Shadow_Cube_Shield + Rate: 300 + - Index: 18 + Item: Shadow_Cube_Shoes + Rate: 300 + - Index: 19 + Item: Shadow_Cube_Pendant + Rate: 300 + - Index: 20 + Item: Shadow_Cube_Earing + Rate: 300 + - Index: 21 + Item: Comp_Trans_Scroll + Rate: 800 + - Index: 22 + Item: Minus_Status_Box + Rate: 1500 + - Index: 23 + Item: Lapine_DdukddakBox + Rate: 1500 - Index: 24 - Item: Cat_Scroll - Rate: 20 - - Index: 25 - Item: Cat_Scroll - Rate: 200 - - Index: 26 - Item: Cat_Scroll + Item: Chemicals_Bag Rate: 1000 + - Index: 25 + Item: White_Slim_Potion_Box_ + Rate: 1000 + - Index: 26 + Item: Crystal_Jewel__ + Rate: 1000 + Amount: 10 - Group: MAGICAL_BOOSTER_BOX SubGroups: - SubGroup: 0 @@ -55055,125 +58674,135 @@ Body: - SubGroup: 1 List: - Index: 0 - Item: Poison_Bottle - Rate: 1667 - Amount: 30 - - Index: 1 Item: Fire_Bottle - Rate: 1667 + Rate: 1 + Amount: 50 + - Index: 1 + Item: Acid_Bottle + Rate: 1 Amount: 50 - Index: 2 - Item: Acid_Bottle - Rate: 1667 + Item: MenEater_Plant_Bottle + Rate: 1 Amount: 50 - Index: 3 - Item: MenEater_Plant_Bottle - Rate: 1667 + Item: Coating_Bottle + Rate: 1 Amount: 50 - Index: 4 Item: Mini_Bottle - Rate: 1667 + Rate: 1 Amount: 50 - Index: 5 - Item: Coating_Bottle - Rate: 1667 - Amount: 50 + Item: Poison_Bottle + Rate: 1 + Amount: 30 - Group: SHADOW_SCROLL2 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: C_Wing_Of_Fly_3Day_Box - Rate: 10000 - - SubGroup: 2 - List: - - Index: 0 - Item: Crystal_Jewel__ - Rate: 1000 + Item: Weapon_11Up_Box + Rate: 1 + Announced: true - Index: 1 - Item: Blacksmith_Blessing - Rate: 800 + Item: Armor_11Up_Box + Rate: 1 + Announced: true - Index: 2 - Item: Potion_Box - Rate: 1000 + Item: Weapon_9Up_Box + Rate: 9 + Announced: true - Index: 3 - Item: Spell_Circuit - Rate: 100 + Item: Armor_9Up_Box + Rate: 9 + Announced: true - Index: 4 Item: Weapon_7Up_Box Rate: 15 + Announced: true - Index: 5 - Item: Weapon_9Up_Box - Rate: 9 - - Index: 6 - Item: Weapon_11Up_Box - Rate: 1 - - Index: 7 Item: Armor_7Up_Box Rate: 15 + Announced: true + - Index: 6 + Item: S_Tempest_Shoes + Rate: 100 + Announced: true + - Index: 7 + Item: S_Tempest_Shield + Rate: 100 + Announced: true - Index: 8 - Item: Armor_9Up_Box - Rate: 9 + Item: S_M_ExeHoly_Armor + Rate: 50 + Announced: true - Index: 9 - Item: Armor_11Up_Box - Rate: 1 + Item: S_M_ExoCorrupt_Armor + Rate: 50 + Announced: true - Index: 10 + Item: S_M_DragonVib_Armor + Rate: 50 + Announced: true + - Index: 11 + Item: S_M_SciHunting_Armor + Rate: 50 + Announced: true + - Index: 12 + Item: S_M_FishInsect_Armor + Rate: 50 + Announced: true + - Index: 13 + Item: Spell_Circuit + Rate: 100 + Announced: true + - Index: 14 Item: Shadow_Cube_Weapon Rate: 300 - - Index: 11 + - Index: 15 Item: Shadow_Cube_Armor Rate: 300 - - Index: 12 - Item: Shadow_Cube_Shield - Rate: 300 - - Index: 13 + - Index: 16 Item: Shadow_Cube_Shoes Rate: 300 - - Index: 14 + - Index: 17 + Item: Shadow_Cube_Shield + Rate: 300 + - Index: 18 Item: Shadow_Cube_Pendant Rate: 300 - - Index: 15 + - Index: 19 Item: Shadow_Cube_Earing Rate: 300 - - Index: 16 - Item: Class_Shadow_Cube - Rate: 1000 - - Index: 17 - Item: Lapine_DdukddakBox - Rate: 1500 - - Index: 18 - Item: Advanced_Taiming_Item - Rate: 200 - - Index: 19 - Item: Shadow_Scroll2 - Rate: 1000 - Index: 20 - Item: Shadow_Scroll2 - Rate: 1000 + Item: Blacksmith_Blessing + Rate: 800 - Index: 21 Item: StabilityShadow_Mix Rate: 100 - Index: 22 - Item: S_Tempest_Shield - Rate: 100 + Item: Advanced_Taiming_Item + Rate: 200 - Index: 23 - Item: S_Tempest_Shoes - Rate: 100 + Item: Class_Shadow_Cube + Rate: 1000 - Index: 24 - Item: S_M_ExeHoly_Armor - Rate: 50 + Item: C_Wing_Of_Fly_3Day_Box_ + Rate: 1000 - Index: 25 - Item: S_M_ExoCorrupt_Armor - Rate: 50 + Item: Potion_Box + Rate: 1000 - Index: 26 - Item: S_M_DragonVib_Armor - Rate: 50 + Item: Chemicals_Bag + Rate: 1000 - Index: 27 - Item: S_M_SciHunting_Armor - Rate: 50 + Item: Lapine_DdukddakBox + Rate: 1500 - Index: 28 - Item: S_M_FishInsect_Armor - Rate: 50 + Item: Crystal_Jewel__ + Rate: 1000 + Amount: 10 - Group: C_WING_OF_FLY_3DAY_BOX_ SubGroups: - SubGroup: 0 @@ -55181,6 +58810,7 @@ Body: - Index: 0 Item: C_Wing_Of_Fly Duration: 4320 + UniqueId: true - Group: MOBILE_NOVICE_BOX SubGroups: - SubGroup: 0 @@ -55189,27 +58819,27 @@ Body: Item: Comp_Battle_Manual Amount: 5 - Index: 1 - Item: E_S_Life_Potion_Box - - Index: 2 - Item: E_Abrasive_Box10 - - Index: 3 - Item: E_Bubble_Gum_Box - - Index: 4 Item: E_Str_Dish_Box - - Index: 5 + - Index: 2 Item: E_Agi_Dish_Box - - Index: 6 + - Index: 3 Item: E_Int_Dish_Box - - Index: 7 + - Index: 4 Item: E_Dex_Dish_Box - - Index: 8 - Item: E_Luk_Dish_Box - - Index: 9 + - Index: 5 Item: E_Vit_Dish_Box - - Index: 10 + - Index: 6 + Item: E_Luk_Dish_Box + - Index: 7 Item: E_Blessing_10_Scr_Box - - Index: 11 + - Index: 8 Item: E_Inc_Agi_10_Scr_Box + - Index: 9 + Item: E_Bubble_Gum_Box + - Index: 10 + Item: E_S_Life_Potion_Box + - Index: 11 + Item: E_Abrasive_Box10 - Group: C_WING_OF_FLY_5DAY_BOX_ SubGroups: - SubGroup: 0 @@ -55236,310 +58866,469 @@ Body: - SubGroup: 1 List: - Index: 0 - Item: C_CatPaw_7Day_Box_ - Rate: 3182 - - Index: 1 - Item: C_Wing_Of_Fly_5Day_Box - Rate: 2273 - - Index: 2 - Item: May_Gold_Scroll - Rate: 4545 - - SubGroup: 2 - List: - - Index: 0 - Item: Crystal_Jewel__ - Rate: 1001 - - Index: 1 - Item: Blacksmith_Blessing - Rate: 800 - - Index: 2 - Item: Costume_Exchange - Rate: 1000 - - Index: 3 - Item: J_Shop_Coupon - Rate: 500 - - Index: 4 - Item: May_Gold_Scroll - Rate: 700 - - Index: 5 - Item: Weapon_7Up_Box - Rate: 15 - - Index: 6 - Item: Weapon_9Up_Box - Rate: 9 - - Index: 7 Item: Weapon_11Up_Box Rate: 1 - - Index: 8 - Item: Armor_7Up_Box - Rate: 15 - - Index: 9 - Item: Armor_9Up_Box - Rate: 9 - - Index: 10 + Announced: true + - Index: 1 Item: Armor_11Up_Box Rate: 1 + Announced: true + - Index: 2 + Item: Weapon_9Up_Box + Rate: 9 + Announced: true + - Index: 3 + Item: Armor_9Up_Box + Rate: 9 + Announced: true + - Index: 4 + Item: Weapon_7Up_Box + Rate: 15 + Announced: true + - Index: 5 + Item: Armor_7Up_Box + Rate: 15 + Announced: true + - Index: 6 + Item: New_Hat_Box3 + Rate: 300 + Announced: true + - Index: 7 + Item: ExShadow_DdukddakBox + Rate: 100 + Announced: true + - Index: 8 + Item: Sealed_Hat_Box + Rate: 33 + Announced: true + - Index: 9 + Item: Sealed_Hat_Box2 + Rate: 33 + Announced: true + - Index: 10 + Item: Sealed_Hat_Box3 + Rate: 33 + Announced: true - Index: 11 - Item: May_Gold_Scroll - Rate: 33 + Item: Blacksmith_Blessing + Rate: 800 - Index: 12 - Item: May_Gold_Scroll - Rate: 33 - - Index: 13 - Item: May_Gold_Scroll - Rate: 33 - - Index: 14 - Item: Lapine_DdukddakBox - Rate: 1650 - - Index: 15 - Item: May_Gold_Scroll - Rate: 1000 - - Index: 16 - Item: May_Gold_Scroll + Item: C_Wing_Of_Fly_5Day_Box_ Rate: 500 + - Index: 13 + Item: C_CatPaw_7Day_Box + Rate: 700 + - Index: 14 + Item: J_Shop_Coupon + Rate: 500 + - Index: 15 + Item: Material_Shadow_Cube + Rate: 300 + - Index: 16 + Item: Mysterious_Medal_Box + Rate: 1000 - Index: 17 - Item: May_Gold_Scroll + Item: C_Giant_Fly_1Day_Box_ Rate: 1000 - Index: 18 - Item: May_Gold_Scroll - Rate: 300 - - Index: 19 - Item: May_Gold_Scroll - Rate: 100 - - Index: 20 - Item: May_Gold_Scroll - Rate: 300 - - Index: 21 - Item: May_Gold_Scroll + Item: Costume_Exchange Rate: 1000 + - Index: 19 + Item: Chemicals_Bag + Rate: 1000 + - Index: 20 + Item: Lapine_DdukddakBox + Rate: 1650 + - Index: 21 + Item: Crystal_Jewel__ + Rate: 1001 + Amount: 10 - Group: NEW_HAT_BOX3 SubGroups: - SubGroup: 1 List: - Index: 0 Item: GoldFish_Hat - Rate: 2000 + Rate: 1 - Index: 1 Item: Smoky_TransformHat - Rate: 2000 + Rate: 1 - Index: 2 Item: Survive_Circlet_K - Rate: 2000 + Rate: 1 - Index: 3 Item: SurviveOrb_K - Rate: 2000 + Rate: 1 - Index: 4 Item: FaceWorm_Breath - Rate: 2000 + Rate: 1 - Group: EXSHADOW_DDUKDDAKBOX SubGroups: - SubGroup: 1 List: - Index: 0 - Item: JobShadow_Mix_Weapon - Rate: 667 - - Index: 1 - Item: JobShadow_Mix_Armor - Rate: 667 - - Index: 2 - Item: JobShadow_Mix_Shoes - Rate: 667 - - Index: 3 - Item: JobShadow_Mix_Shield - Rate: 667 - - Index: 4 - Item: JobShadow_Mix_Pendant - Rate: 667 - - Index: 5 - Item: JobShadow_Mix_Earing - Rate: 667 - - Index: 6 - Item: StatusShadow_Mix - Rate: 667 - - Index: 7 - Item: GemstoneShadow_Mix - Rate: 667 - - Index: 8 - Item: BearersShadow_Mix - Rate: 667 - - Index: 9 - Item: ComposeShadow_Mix - Rate: 667 - - Index: 10 Item: RaceShadow_Mix - Rate: 667 + Rate: 1 + - Index: 1 + Item: BearersShadow_Mix + Rate: 1 + - Index: 2 + Item: GemstoneShadow_Mix + Rate: 1 + - Index: 3 + Item: StatusShadow_Mix + Rate: 1 + - Index: 4 + Item: ComposeShadow_Mix + Rate: 1 + - Index: 5 + Item: JobShadow_Mix_Pendant + Rate: 1 + - Index: 6 + Item: JobShadow_Mix_Weapon + Rate: 1 + - Index: 7 + Item: JobShadow_Mix_Armor + Rate: 1 + - Index: 8 + Item: JobShadow_Mix_Shoes + Rate: 1 + - Index: 9 + Item: JobShadow_Mix_Shield + Rate: 1 + - Index: 10 + Item: JobShadow_Mix_Earing + Rate: 1 - Index: 11 Item: StabilityShadow_Mix - Rate: 667 + Rate: 1 - Index: 12 Item: InfinityShadow_Mix - Rate: 667 + Rate: 1 - Index: 13 Item: PerfectSize_Mix - Rate: 667 + Rate: 1 - Index: 14 Item: MagicPiercing_Mix - Rate: 667 + Rate: 1 - Group: MATERIAL_SHADOW_CUBE SubGroups: - SubGroup: 1 List: - Index: 0 - Item: S_Lucky_Weapon - Rate: 192 - - Index: 1 - Item: S_Power_Earring - Rate: 192 - - Index: 2 - Item: S_Int_Pendant - Rate: 192 - - Index: 3 - Item: S_Dexterous_Armor - Rate: 192 - - Index: 4 - Item: S_Vital_Shoes - Rate: 192 - - Index: 5 - Item: S_Athletic_Shield - Rate: 192 - - Index: 6 - Item: S_Lucky_Armor - Rate: 192 - - Index: 7 - Item: S_Power_Pendant - Rate: 192 - - Index: 8 - Item: S_Int_Earring - Rate: 192 - - Index: 9 - Item: S_Dexterous_Weapon - Rate: 192 - - Index: 10 - Item: S_Vital_Shield - Rate: 192 - - Index: 11 - Item: S_Athletic_Shoes - Rate: 192 - - Index: 12 - Item: S_Cranial_Shield - Rate: 192 - - Index: 13 - Item: S_Brutal_Shield - Rate: 192 - - Index: 14 - Item: S_Gargantua_Shield - Rate: 192 - - Index: 15 - Item: S_Homers_Shield - Rate: 192 - - Index: 16 - Item: S_Dragoon_Shield - Rate: 192 - - Index: 17 - Item: S_Satanic_Shield - Rate: 192 - - Index: 18 - Item: S_Flameguard_Shield - Rate: 192 - - Index: 19 - Item: S_Requiem_Shield - Rate: 192 - - Index: 20 - Item: S_Cadi_Shield - Rate: 192 - - Index: 21 - Item: S_Bloody_Shoes - Rate: 192 - - Index: 22 - Item: S_Chemical_Shoes - Rate: 192 - - Index: 23 - Item: S_Clamorous_Shoes - Rate: 192 - - Index: 24 - Item: S_Insecticide_Shoes - Rate: 192 - - Index: 25 - Item: S_Fisher_Shoes - Rate: 192 - - Index: 26 - Item: S_Seraphim_Shoes - Rate: 192 - - Index: 27 - Item: S_Beholder_Shoes - Rate: 192 - - Index: 28 - Item: S_Divine_Shoes - Rate: 192 - - Index: 29 - Item: S_Dragoon_Shoes - Rate: 192 - - Index: 30 Item: S_Plasterer's_Armor - Rate: 192 - - Index: 31 + Rate: 1 + - Index: 1 Item: S_Plasterer's_Shoes - Rate: 192 - - Index: 32 + Rate: 1 + - Index: 2 Item: S_Insomniac_Armor - Rate: 192 - - Index: 33 + Rate: 1 + - Index: 3 Item: S_Insomniac_Shoes - Rate: 192 - - Index: 34 + Rate: 1 + - Index: 4 Item: S_Peerless_Armor - Rate: 192 - - Index: 35 + Rate: 1 + - Index: 5 Item: S_Peerless_Shoes - Rate: 192 - - Index: 36 + Rate: 1 + - Index: 6 Item: S_Adurate_Armor - Rate: 192 - - Index: 37 + Rate: 1 + - Index: 7 Item: S_Adurate_Shoes - Rate: 192 - - Index: 38 + Rate: 1 + - Index: 8 Item: Unfreez_Weapon_S - Rate: 192 - - Index: 39 + Rate: 1 + - Index: 9 Item: Unfreeze_Earing_S - Rate: 192 - - Index: 40 + Rate: 1 + - Index: 10 Item: Unfreeze_Pendent_S - Rate: 192 - - Index: 41 + Rate: 1 + - Index: 11 Item: Vitality_Earing_S - Rate: 192 - - Index: 42 + Rate: 1 + - Index: 12 Item: Vitality_Pendant_S - Rate: 192 - - Index: 43 + Rate: 1 + - Index: 13 Item: S_Neutral_Weapon - Rate: 192 - - Index: 44 + Rate: 1 + - Index: 14 Item: S_Neutral_Earring - Rate: 192 - - Index: 45 + Rate: 1 + - Index: 15 Item: S_Neutral_Pendent - Rate: 192 - - Index: 46 + Rate: 1 + - Index: 16 Item: S_Curse_Lift_Earring - Rate: 192 - - Index: 47 + Rate: 1 + - Index: 17 Item: S_Curse_Lift_Pendent - Rate: 192 - - Index: 48 + Rate: 1 + - Index: 18 + Item: S_Homers_Shield + Rate: 1 + - Index: 19 + Item: S_Cadi_Shield + Rate: 1 + - Index: 20 + Item: S_Requiem_Shield + Rate: 1 + - Index: 21 + Item: S_Flameguard_Shield + Rate: 1 + - Index: 22 + Item: S_Satanic_Shield + Rate: 1 + - Index: 23 + Item: S_Dragoon_Shield + Rate: 1 + - Index: 24 + Item: S_Gargantua_Shield + Rate: 1 + - Index: 25 + Item: S_Brutal_Shield + Rate: 1 + - Index: 26 + Item: S_Cranial_Shield + Rate: 1 + - Index: 27 + Item: S_Divine_Shoes + Rate: 1 + - Index: 28 + Item: S_Beholder_Shoes + Rate: 1 + - Index: 29 + Item: S_Seraphim_Shoes + Rate: 1 + - Index: 30 + Item: S_Fisher_Shoes + Rate: 1 + - Index: 31 + Item: S_Insecticide_Shoes + Rate: 1 + - Index: 32 + Item: S_Clamorous_Shoes + Rate: 1 + - Index: 33 + Item: S_Chemical_Shoes + Rate: 1 + - Index: 34 + Item: S_Bloody_Shoes + Rate: 1 + - Index: 35 + Item: S_Dragoon_Shoes + Rate: 1 + - Index: 36 Item: S_ColdBolt_Armor - Rate: 192 - - Index: 49 + Rate: 1 + - Index: 37 Item: S_FireBolt_Armor - Rate: 192 - - Index: 50 + Rate: 1 + - Index: 38 Item: S_LightingBolt_Armor - Rate: 192 - - Index: 51 + Rate: 1 + - Index: 39 Item: S_EarthSpike_Armor - Rate: 192 + Rate: 1 + - Index: 40 + Item: S_Lucky_Weapon + Rate: 1 + - Index: 41 + Item: S_Power_Earring + Rate: 1 + - Index: 42 + Item: S_Int_Pendant + Rate: 1 + - Index: 43 + Item: S_Dexterous_Armor + Rate: 1 + - Index: 44 + Item: S_Vital_Shoes + Rate: 1 + - Index: 45 + Item: S_Athletic_Shield + Rate: 1 + - Index: 46 + Item: S_Lucky_Armor + Rate: 1 + - Index: 47 + Item: S_Power_Pendant + Rate: 1 + - Index: 48 + Item: S_Int_Earring + Rate: 1 + - Index: 49 + Item: S_Dexterous_Weapon + Rate: 1 + - Index: 50 + Item: S_Vital_Shield + Rate: 1 + - Index: 51 + Item: S_Athletic_Shoes + Rate: 1 + - SubGroup: 2 + List: + - Index: 0 + Item: S_Plasterer's_Armor + Rate: 1 + - Index: 1 + Item: S_Plasterer's_Shoes + Rate: 1 + - Index: 2 + Item: S_Insomniac_Armor + Rate: 1 + - Index: 3 + Item: S_Insomniac_Shoes + Rate: 1 + - Index: 4 + Item: S_Peerless_Armor + Rate: 1 + - Index: 5 + Item: S_Peerless_Shoes + Rate: 1 + - Index: 6 + Item: S_Adurate_Armor + Rate: 1 + - Index: 7 + Item: S_Adurate_Shoes + Rate: 1 + - Index: 8 + Item: Unfreez_Weapon_S + Rate: 1 + - Index: 9 + Item: Unfreeze_Earing_S + Rate: 1 + - Index: 10 + Item: Unfreeze_Pendent_S + Rate: 1 + - Index: 11 + Item: Vitality_Earing_S + Rate: 1 + - Index: 12 + Item: Vitality_Pendant_S + Rate: 1 + - Index: 13 + Item: S_Neutral_Weapon + Rate: 1 + - Index: 14 + Item: S_Neutral_Earring + Rate: 1 + - Index: 15 + Item: S_Neutral_Pendent + Rate: 1 + - Index: 16 + Item: S_Curse_Lift_Earring + Rate: 1 + - Index: 17 + Item: S_Curse_Lift_Pendent + Rate: 1 + - Index: 18 + Item: S_Homers_Shield + Rate: 1 + - Index: 19 + Item: S_Cadi_Shield + Rate: 1 + - Index: 20 + Item: S_Requiem_Shield + Rate: 1 + - Index: 21 + Item: S_Flameguard_Shield + Rate: 1 + - Index: 22 + Item: S_Satanic_Shield + Rate: 1 + - Index: 23 + Item: S_Dragoon_Shield + Rate: 1 + - Index: 24 + Item: S_Gargantua_Shield + Rate: 1 + - Index: 25 + Item: S_Brutal_Shield + Rate: 1 + - Index: 26 + Item: S_Cranial_Shield + Rate: 1 + - Index: 27 + Item: S_Divine_Shoes + Rate: 1 + - Index: 28 + Item: S_Beholder_Shoes + Rate: 1 + - Index: 29 + Item: S_Seraphim_Shoes + Rate: 1 + - Index: 30 + Item: S_Fisher_Shoes + Rate: 1 + - Index: 31 + Item: S_Insecticide_Shoes + Rate: 1 + - Index: 32 + Item: S_Clamorous_Shoes + Rate: 1 + - Index: 33 + Item: S_Chemical_Shoes + Rate: 1 + - Index: 34 + Item: S_Bloody_Shoes + Rate: 1 + - Index: 35 + Item: S_Dragoon_Shoes + Rate: 1 + - Index: 36 + Item: S_ColdBolt_Armor + Rate: 1 + - Index: 37 + Item: S_FireBolt_Armor + Rate: 1 + - Index: 38 + Item: S_LightingBolt_Armor + Rate: 1 + - Index: 39 + Item: S_EarthSpike_Armor + Rate: 1 + - Index: 40 + Item: S_Lucky_Weapon + Rate: 1 + - Index: 41 + Item: S_Power_Earring + Rate: 1 + - Index: 42 + Item: S_Int_Pendant + Rate: 1 + - Index: 43 + Item: S_Dexterous_Armor + Rate: 1 + - Index: 44 + Item: S_Vital_Shoes + Rate: 1 + - Index: 45 + Item: S_Athletic_Shield + Rate: 1 + - Index: 46 + Item: S_Lucky_Armor + Rate: 1 + - Index: 47 + Item: S_Power_Pendant + Rate: 1 + - Index: 48 + Item: S_Int_Earring + Rate: 1 + - Index: 49 + Item: S_Dexterous_Weapon + Rate: 1 + - Index: 50 + Item: S_Vital_Shield + Rate: 1 + - Index: 51 + Item: S_Athletic_Shoes + Rate: 1 - Group: MYSTERIOUS_MEDAL_BOX SubGroups: - SubGroup: 1 @@ -55614,72 +59403,84 @@ Body: List: - Index: 0 Item: Vend_Arbeit_1Lv + Duration: 1440 - Group: VEND_ARBEIT1_2LV SubGroups: - SubGroup: 0 List: - Index: 0 Item: Vend_Arbeit_2Lv + Duration: 1440 - Group: VEND_ARBEIT1_3LV SubGroups: - SubGroup: 0 List: - Index: 0 Item: Vend_Arbeit_3Lv + Duration: 1440 - Group: BUY_ARBEIT1_1LV SubGroups: - SubGroup: 0 List: - Index: 0 Item: Buy_Arbeit_1Lv + Duration: 1440 - Group: BUY_ARBEIT1_2LV SubGroups: - SubGroup: 0 List: - Index: 0 Item: Buy_Arbeit_2Lv + Duration: 1440 - Group: BUY_ARBEIT1_3LV SubGroups: - SubGroup: 0 List: - Index: 0 Item: Buy_Arbeit_3Lv + Duration: 1440 - Group: VEND_ARBEIT3_1LV SubGroups: - SubGroup: 0 List: - Index: 0 Item: Vend_Arbeit_1Lv + Duration: 4320 - Group: VEND_ARBEIT3_2LV SubGroups: - SubGroup: 0 List: - Index: 0 Item: Vend_Arbeit_2Lv + Duration: 4320 - Group: VEND_ARBEIT3_3LV SubGroups: - SubGroup: 0 List: - Index: 0 Item: Vend_Arbeit_3Lv + Duration: 4320 - Group: BUY_ARBEIT3_1LV SubGroups: - SubGroup: 0 List: - Index: 0 Item: Buy_Arbeit_1Lv + Duration: 4320 - Group: BUY_ARBEIT3_2LV SubGroups: - SubGroup: 0 List: - Index: 0 Item: Buy_Arbeit_2Lv + Duration: 4320 - Group: BUY_ARBEIT3_3LV SubGroups: - SubGroup: 0 List: - Index: 0 Item: Buy_Arbeit_3Lv + Duration: 4320 - Group: CRYPTURA_GIFTBOX SubGroups: - SubGroup: 0 @@ -55698,443 +59499,473 @@ Body: - SubGroup: 1 List: - Index: 0 - Item: C_Wing_Of_Fly_3Day_Box - Rate: 9091 - - Index: 1 - Item: General_Helmet - Rate: 909 - - SubGroup: 2 - List: - - Index: 0 - Item: Crystal_Jewel__ - Rate: 1000 - - Index: 1 - Item: General_Helmet_ - Rate: 100 - - Index: 2 - Item: Weapon_7Up_Box - Rate: 15 - - Index: 3 - Item: Weapon_9Up_Box - Rate: 9 - - Index: 4 Item: Weapon_11Up_Box Rate: 1 + Announced: true + - Index: 1 + Item: Armor_11Up_Box + Rate: 1 + Announced: true + - Index: 2 + Item: Weapon_9Up_Box + Rate: 9 + Announced: true + - Index: 3 + Item: Armor_9Up_Box + Rate: 9 + Announced: true + - Index: 4 + Item: Weapon_7Up_Box + Rate: 15 + Announced: true - Index: 5 Item: Armor_7Up_Box Rate: 15 + Announced: true - Index: 6 - Item: Armor_9Up_Box - Rate: 9 + Item: General_Helmet_ + Rate: 100 + Announced: true - Index: 7 - Item: Armor_11Up_Box - Rate: 1 + Item: S_Healing_Shield + Rate: 50 + Announced: true - Index: 8 - Item: Comp_Trans_Scroll - Rate: 1000 + Item: S_Healing_Shoes + Rate: 50 + Announced: true - Index: 9 - Item: Lapine_DdukddakBox - Rate: 2000 + Item: S_Restore_Earring + Rate: 50 + Announced: true - Index: 10 - Item: General_Scroll - Rate: 1000 + Item: S_Restore_Pendent + Rate: 50 + Announced: true - Index: 11 - Item: General_Scroll - Rate: 1000 + Item: S_MortalBlow_Weapon + Rate: 50 + Announced: true - Index: 12 - Item: General_Scroll - Rate: 1000 + Item: S_MortalBlow_Earring + Rate: 50 + Announced: true - Index: 13 - Item: Fire_Armor_S - Rate: 400 + Item: S_MortalBlow_Pendent + Rate: 50 + Announced: true - Index: 14 - Item: Cold_Armor_S + Item: Earth_Armor_S Rate: 400 + Amount: 5 - Index: 15 Item: Wind_Armor_S Rate: 400 + Amount: 5 - Index: 16 - Item: Earth_Armor_S + Item: Cold_Armor_S Rate: 400 + Amount: 5 - Index: 17 - Item: S_Tension_Weapon - Rate: 150 + Item: Fire_Armor_S + Rate: 400 + Amount: 5 - Index: 18 - Item: S_Tension_Earring + Item: S_Tension_Weapon Rate: 150 - Index: 19 Item: S_Tension_Pendent Rate: 150 - Index: 20 - Item: S_Elegant_Weapon + Item: S_Tension_Earring Rate: 150 - Index: 21 - Item: S_Elegant_Earring + Item: S_Elegant_Weapon Rate: 150 - Index: 22 Item: S_Elegant_Pendent Rate: 150 - Index: 23 - Item: S_Healing_Shield - Rate: 50 + Item: S_Elegant_Earring + Rate: 150 - Index: 24 - Item: S_Healing_Shoes - Rate: 50 + Item: Comp_Trans_Scroll + Rate: 1000 - Index: 25 - Item: S_Restore_Earring - Rate: 50 + Item: C_Wing_Of_Fly_3Day_Box_ + Rate: 1000 - Index: 26 - Item: S_Restore_Pendent - Rate: 50 + Item: Mysterious_Medal_Box + Rate: 1000 - Index: 27 - Item: S_MortalBlow_Weapon - Rate: 50 + Item: Chemicals_Bag + Rate: 1000 - Index: 28 - Item: S_MortalBlow_Earring - Rate: 50 + Item: Lapine_DdukddakBox + Rate: 2000 - Index: 29 - Item: S_MortalBlow_Pendent - Rate: 50 + Item: Crystal_Jewel__ + Rate: 1000 + Amount: 10 - Group: GREEN_SCROLL_K2 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: C_CatPaw_7Day_Box_ - Rate: 4118 + Item: Weapon_11Up_Box + Rate: 1 + Announced: true - Index: 1 - Item: C_Wing_Of_Fly_3Day_Box - Rate: 5882 - - SubGroup: 2 - List: - - Index: 0 - Item: Crystal_Jewel__ - Rate: 1000 - - Index: 1 - Item: Green_Scroll_K2 - Rate: 700 + Item: Armor_11Up_Box + Rate: 1 + Announced: true - Index: 2 - Item: Classical_Fhat - Rate: 100 + Item: Weapon_9Up_Box + Rate: 9 + Announced: true - Index: 3 - Item: PetTradeTicket_Box - Rate: 500 + Item: Armor_9Up_Box + Rate: 9 + Announced: true - Index: 4 Item: Weapon_7Up_Box Rate: 15 + Announced: true - Index: 5 - Item: Weapon_9Up_Box - Rate: 9 - - Index: 6 - Item: Weapon_11Up_Box - Rate: 1 - - Index: 7 Item: Armor_7Up_Box Rate: 15 - - Index: 8 - Item: Armor_9Up_Box - Rate: 9 - - Index: 9 - Item: Armor_11Up_Box - Rate: 1 - - Index: 10 - Item: Minus_Status_Box - Rate: 800 - - Index: 11 - Item: Class_Shadow_Cube - Rate: 1000 - - Index: 12 - Item: Lapine_DdukddakBox - Rate: 2000 - - Index: 13 - Item: Green_Scroll_K2 - Rate: 1000 - - Index: 14 - Item: Green_Scroll_K2 - Rate: 1000 - - Index: 15 - Item: Green_Scroll_K2 - Rate: 400 - - Index: 16 - Item: Green_Scroll_K2 - Rate: 1000 - - Index: 17 + Announced: true + - Index: 6 Item: S_Penetration_Shoes Rate: 100 - - Index: 18 + Announced: true + - Index: 7 Item: S_Penetration_Shield Rate: 100 - - Index: 19 + Announced: true + - Index: 8 Item: S_ExeHoly_Armor Rate: 50 - - Index: 20 + Announced: true + - Index: 9 Item: S_ExoCorrupt_Armor Rate: 50 - - Index: 21 + Announced: true + - Index: 10 Item: S_DragonVib_Armor Rate: 50 - - Index: 22 + Announced: true + - Index: 11 Item: S_SciHunting_Armor Rate: 50 - - Index: 23 + Announced: true + - Index: 12 Item: S_FishInsect_Armor Rate: 50 + Announced: true + - Index: 13 + Item: Classical_Fhat + Rate: 100 + Announced: true + - Index: 14 + Item: PetTradeTicket_Box + Rate: 500 + - Index: 15 + Item: Material_Shadow_Cube + Rate: 400 + - Index: 16 + Item: C_CatPaw_7Day_Box + Rate: 700 + - Index: 17 + Item: Minus_Status_Box + Rate: 800 + - Index: 18 + Item: Class_Shadow_Cube + Rate: 1000 + - Index: 19 + Item: C_Wing_Of_Fly_3Day_Box_ + Rate: 1000 + - Index: 20 + Item: Mysterious_Medal_Box + Rate: 1000 + - Index: 21 + Item: Chemicals_Bag + Rate: 1000 + - Index: 22 + Item: Lapine_DdukddakBox + Rate: 2000 + - Index: 23 + Item: Crystal_Jewel__ + Rate: 1000 + Amount: 10 - Group: NEW_SHADOW_CUBE SubGroups: - SubGroup: 1 List: - Index: 0 Item: S2_Hasty_Shoes - Rate: 204 + Rate: 10 - Index: 1 Item: S2_Bearers_Pendent - Rate: 204 + Rate: 10 - Index: 2 Item: S2_Gemstone_Earring - Rate: 204 + Rate: 10 - Index: 3 Item: S2_Spell_Flow_Shield - Rate: 204 + Rate: 10 - Index: 4 Item: S2_Spiritual_Weapon - Rate: 204 + Rate: 10 - Index: 5 Item: S2_Malicious_Armor - Rate: 204 + Rate: 10 - Index: 6 Item: S_Sigrun_Armor - Rate: 204 + Rate: 10 - Index: 7 Item: S_Sigrun_Shield - Rate: 204 + Rate: 10 - Index: 8 Item: S2_Force_Ex_Weapon - Rate: 204 + Rate: 10 - Index: 9 Item: S2_Spirit_M_E_Weapon - Rate: 204 + Rate: 10 - Index: 10 Item: S2_Caster_Armor - Rate: 204 + Rate: 10 - Index: 11 Item: S2_Reload_Armor - Rate: 204 + Rate: 10 - Index: 12 Item: S_Critical_Shield - Rate: 204 + Rate: 10 - Index: 13 Item: S_Critical_Shoes - Rate: 204 + Rate: 10 - Index: 14 Item: S_Blitz_Weapon - Rate: 204 + Rate: 10 - Index: 15 Item: S_Blitz_Armor - Rate: 204 + Rate: 10 - Index: 16 Item: S_Tempest_Shield - Rate: 204 + Rate: 10 - Index: 17 Item: S_Tempest_Shoes - Rate: 204 + Rate: 10 - Index: 18 Item: S_M_ExeHoly_Armor - Rate: 204 + Rate: 10 - Index: 19 Item: S_M_ExoCorrupt_Armor - Rate: 204 + Rate: 10 - Index: 20 Item: S_M_DragonVib_Armor - Rate: 204 + Rate: 10 - Index: 21 Item: S_M_SciHunting_Armor - Rate: 204 + Rate: 10 - Index: 22 Item: S_M_FishInsect_Armor - Rate: 204 + Rate: 10 - Index: 23 Item: S_Tension_Weapon - Rate: 204 + Rate: 10 - Index: 24 Item: S_Tension_Earring - Rate: 204 + Rate: 10 - Index: 25 Item: S_Tension_Pendent - Rate: 204 + Rate: 10 - Index: 26 Item: S_Elegant_Weapon - Rate: 204 + Rate: 10 - Index: 27 Item: S_Elegant_Earring - Rate: 204 + Rate: 10 - Index: 28 Item: S_Elegant_Pendent - Rate: 204 + Rate: 10 - Index: 29 Item: S_Healing_Shield - Rate: 204 + Rate: 10 - Index: 30 Item: S_Healing_Shoes - Rate: 204 + Rate: 10 - Index: 31 Item: S_Restore_Earring - Rate: 204 + Rate: 10 - Index: 32 Item: S_Restore_Pendent - Rate: 204 + Rate: 10 - Index: 33 Item: S_MortalBlow_Weapon - Rate: 204 + Rate: 10 - Index: 34 Item: S_MortalBlow_Earring - Rate: 204 + Rate: 10 - Index: 35 Item: S_MortalBlow_Pendent - Rate: 204 + Rate: 10 - Index: 36 Item: S_Penetration_Shoes - Rate: 204 + Rate: 10 - Index: 37 Item: S_Penetration_Shield - Rate: 204 + Rate: 10 - Index: 38 Item: S_ExeHoly_Armor - Rate: 204 + Rate: 10 - Index: 39 Item: S_ExoCorrupt_Armor - Rate: 204 + Rate: 10 - Index: 40 Item: S_DragonVib_Armor - Rate: 204 + Rate: 10 - Index: 41 Item: S_SciHunting_Armor - Rate: 204 + Rate: 10 - Index: 42 Item: S_FishInsect_Armor - Rate: 204 + Rate: 10 - Index: 43 Item: Sentimental_Weapone_S - Rate: 204 + Rate: 10 - Index: 44 Item: Sentimental_Earring_S - Rate: 204 + Rate: 10 - Index: 45 Item: Sentimental_Pendant_S - Rate: 204 + Rate: 10 - Index: 46 Item: Enchanting_Weapone_S - Rate: 204 + Rate: 10 - Index: 47 Item: Enchanting_Earring_S - Rate: 204 + Rate: 10 - Index: 48 Item: Enchanting_Pendant_S - Rate: 204 + Rate: 10 - Group: SENTIMENTAL_SCROLL SubGroups: - SubGroup: 1 List: - Index: 0 - Item: General_Helmet - Rate: 10000 - - SubGroup: 2 - List: - - Index: 0 - Item: Crystal_Jewel__ - Rate: 1005 - - Index: 1 - Item: Spell_Circuit - Rate: 35 - - Index: 2 - Item: General_Helmet_ - Rate: 35 - - Index: 3 - Item: Classical_Fhat - Rate: 35 - - Index: 4 - Item: Dog_Officer - Rate: 100 - - Index: 5 - Item: Weapon_7Up_Box - Rate: 15 - - Index: 6 - Item: Weapon_9Up_Box - Rate: 9 - - Index: 7 Item: Weapon_11Up_Box Rate: 1 - - Index: 8 - Item: Armor_7Up_Box - Rate: 15 - - Index: 9 - Item: Armor_9Up_Box - Rate: 9 - - Index: 10 + Announced: true + - Index: 1 Item: Armor_11Up_Box Rate: 1 - - Index: 11 - Item: Shadow_Cube_Weapon - Rate: 200 - - Index: 12 - Item: Shadow_Cube_Armor - Rate: 200 - - Index: 13 - Item: Shadow_Cube_Shield - Rate: 200 - - Index: 14 - Item: Shadow_Cube_Shoes - Rate: 200 - - Index: 15 - Item: Shadow_Cube_Pendant - Rate: 200 - - Index: 16 - Item: Shadow_Cube_Earing - Rate: 200 - - Index: 17 - Item: Lapine_DdukddakBox - Rate: 2000 - - Index: 18 - Item: Sentimental_Scroll - Rate: 1000 - - Index: 19 - Item: Sentimental_Scroll - Rate: 1000 - - Index: 20 - Item: Fire_Armor_S - Rate: 360 - - Index: 21 - Item: Cold_Armor_S - Rate: 360 - - Index: 22 - Item: Wind_Armor_S - Rate: 360 - - Index: 23 - Item: Earth_Armor_S - Rate: 360 - - Index: 24 + Announced: true + - Index: 2 + Item: Weapon_9Up_Box + Rate: 9 + Announced: true + - Index: 3 + Item: Armor_9Up_Box + Rate: 9 + Announced: true + - Index: 4 + Item: Weapon_7Up_Box + Rate: 15 + Announced: true + - Index: 5 + Item: Armor_7Up_Box + Rate: 15 + Announced: true + - Index: 6 + Item: Dog_Officer + Rate: 100 + Announced: true + - Index: 7 + Item: Spell_Circuit + Rate: 35 + Announced: true + - Index: 8 + Item: General_Helmet_ + Rate: 35 + Announced: true + - Index: 9 + Item: Classical_Fhat + Rate: 35 + Announced: true + - Index: 10 Item: Shadow_Refine_Hammer Rate: 200 - - Index: 25 - Item: Sentimental_Scroll + Announced: true + - Index: 11 + Item: New_Shadow_Cube Rate: 100 - - Index: 26 + Announced: true + - Index: 12 Item: Sentimental_Weapone_S Rate: 300 - - Index: 27 + - Index: 13 Item: Sentimental_Earring_S Rate: 300 - - Index: 28 + - Index: 14 Item: Sentimental_Pendant_S Rate: 300 - - Index: 29 + - Index: 15 Item: Enchanting_Weapone_S Rate: 300 - - Index: 30 + - Index: 16 Item: Enchanting_Earring_S Rate: 300 - - Index: 31 + - Index: 17 Item: Enchanting_Pendant_S Rate: 300 + - Index: 18 + Item: Shadow_Cube_Weapon + Rate: 200 + - Index: 19 + Item: Shadow_Cube_Armor + Rate: 200 + - Index: 20 + Item: Shadow_Cube_Shoes + Rate: 200 + - Index: 21 + Item: Shadow_Cube_Shield + Rate: 200 + - Index: 22 + Item: Shadow_Cube_Pendant + Rate: 200 + - Index: 23 + Item: Shadow_Cube_Earing + Rate: 200 + - Index: 24 + Item: Fire_Armor_S + Rate: 360 + Amount: 5 + - Index: 25 + Item: Cold_Armor_S + Rate: 360 + Amount: 5 + - Index: 26 + Item: Wind_Armor_S + Rate: 360 + Amount: 5 + - Index: 27 + Item: Earth_Armor_S + Rate: 360 + Amount: 5 + - Index: 28 + Item: Mysterious_Medal_Box + Rate: 1000 + - Index: 29 + Item: Chemicals_Bag + Rate: 1000 + - Index: 30 + Item: Lapine_DdukddakBox + Rate: 2000 + - Index: 31 + Item: Crystal_Jewel__ + Rate: 1005 + Amount: 10 - Group: JULY_HAIR_BOX SubGroups: - SubGroup: 0 @@ -56145,163 +59976,174 @@ Body: List: - Index: 0 Item: C_Man_Medal - Rate: 2500 + Rate: 10 - Index: 1 Item: C_Man_Medal_Gold - Rate: 2500 + Rate: 10 - Index: 2 Item: C_Straight_Long_WHK - Rate: 2500 + Rate: 10 - Index: 3 Item: C_Straight_Long_YLK - Rate: 2500 + Rate: 10 - Group: INFINITY_SCROLL SubGroups: - SubGroup: 1 List: - Index: 0 - Item: C_Wing_Of_Fly_3Day_Box - Rate: 9756 - - Index: 1 - Item: General_Helmet - Rate: 244 - - SubGroup: 2 - List: - - Index: 0 - Item: Crystal_Jewel__ - Rate: 1000 - - Index: 1 - Item: Blacksmith_Blessing - Rate: 700 - - Index: 2 - Item: Old_C_Album_Helm - Rate: 200 - - Index: 3 - Item: Old_C_Album_Armor - Rate: 200 - - Index: 4 - Item: Old_C_Album_Shield - Rate: 200 - - Index: 5 - Item: Old_C_Album_Garment - Rate: 200 - - Index: 6 - Item: Old_C_Album_Shoes - Rate: 200 - - Index: 7 - Item: Old_C_Album_Acc - Rate: 200 - - Index: 8 - Item: Old_C_Album_Weapon - Rate: 200 - - Index: 9 - Item: Comp_Kafra_Card_Box - Rate: 400 - - Index: 10 - Item: Spell_Circuit - Rate: 25 - - Index: 11 - Item: General_Helmet_ - Rate: 25 - - Index: 12 - Item: Classical_Fhat - Rate: 25 - - Index: 13 - Item: Dog_Officer - Rate: 25 - - Index: 14 - Item: Amistr_Beret - Rate: 200 - - Index: 15 - Item: Sealed_Card - Rate: 10 - - Index: 16 - Item: Weapon_7Up_Box - Rate: 15 - - Index: 17 - Item: Weapon_9Up_Box - Rate: 9 - - Index: 18 Item: Weapon_11Up_Box Rate: 1 - - Index: 19 - Item: Armor_7Up_Box - Rate: 15 - - Index: 20 - Item: Armor_9Up_Box - Rate: 9 - - Index: 21 + Announced: true + - Index: 1 Item: Armor_11Up_Box Rate: 1 - - Index: 22 - Item: Minus_Status_Box - Rate: 900 - - Index: 23 - Item: Lapine_DdukddakBox - Rate: 2000 - - Index: 24 - Item: Infinity_Scroll - Rate: 1000 - - Index: 25 - Item: Infinity_Scroll - Rate: 1000 - - Index: 26 - Item: Infinity_Scroll - Rate: 20 - - Index: 27 - Item: Infinity_Scroll - Rate: 1000 - - Index: 28 + Announced: true + - Index: 2 + Item: Weapon_9Up_Box + Rate: 9 + Announced: true + - Index: 3 + Item: Armor_9Up_Box + Rate: 9 + Announced: true + - Index: 4 + Item: Weapon_7Up_Box + Rate: 15 + Announced: true + - Index: 5 + Item: Armor_7Up_Box + Rate: 15 + Announced: true + - Index: 6 + Item: Sealed_Card + Rate: 10 + Announced: true + - Index: 7 + Item: Dog_Officer + Rate: 25 + Announced: true + - Index: 8 + Item: Spell_Circuit + Rate: 25 + Announced: true + - Index: 9 + Item: General_Helmet_ + Rate: 25 + Announced: true + - Index: 10 + Item: Classical_Fhat + Rate: 25 + Announced: true + - Index: 11 + Item: Amistr_Beret + Rate: 200 + Announced: true + - Index: 12 Item: Shadow_Refine_Hammer Rate: 200 - - Index: 29 + Announced: true + - Index: 13 Item: InfinityShadow_Mix Rate: 20 + Announced: true + - Index: 14 + Item: ExShadow_DdukddakBox + Rate: 20 + Announced: true + - Index: 15 + Item: Blacksmith_Blessing + Rate: 700 + - Index: 16 + Item: Minus_Status_Box + Rate: 900 + - Index: 17 + Item: Comp_Kafra_Card_Box + Rate: 400 + - Index: 18 + Item: Old_C_Album_Weapon + Rate: 200 + - Index: 19 + Item: Old_C_Album_Acc + Rate: 200 + - Index: 20 + Item: Old_C_Album_Shoes + Rate: 200 + - Index: 21 + Item: Old_C_Album_Garment + Rate: 200 + - Index: 22 + Item: Old_C_Album_Shield + Rate: 200 + - Index: 23 + Item: Old_C_Album_Armor + Rate: 200 + - Index: 24 + Item: Old_C_Album_Helm + Rate: 200 + - Index: 25 + Item: C_Wing_Of_Fly_3Day_Box_ + Rate: 1000 + - Index: 26 + Item: Mysterious_Medal_Box + Rate: 1000 + - Index: 27 + Item: Chemicals_Bag + Rate: 1000 + - Index: 28 + Item: Lapine_DdukddakBox + Rate: 2000 + - Index: 29 + Item: Crystal_Jewel__ + Rate: 1000 + Amount: 10 - Group: BLOODY_SCROLL SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Bloody_Scroll - Rate: 9091 - - Index: 1 - Item: Royal_Bow - Rate: 909 - - SubGroup: 2 - List: - - Index: 0 - Item: Crystal_Jewel__ - Rate: 1000 - - Index: 1 - Item: Iron_Nail_K - Rate: 100 - - Index: 2 - Item: Blacksmith_Blessing - Rate: 800 - - Index: 3 - Item: Royal_Bow_K - Rate: 100 - - Index: 4 - Item: Ancient_Hero_Boots - Rate: 100 - - Index: 5 - Item: Weapon_7Up_Box - Rate: 15 - - Index: 6 - Item: Weapon_9Up_Box - Rate: 9 - - Index: 7 Item: Weapon_11Up_Box Rate: 1 - - Index: 8 - Item: Armor_7Up_Box - Rate: 15 - - Index: 9 - Item: Armor_9Up_Box - Rate: 9 - - Index: 10 + Announced: true + - Index: 1 Item: Armor_11Up_Box Rate: 1 + Announced: true + - Index: 2 + Item: Weapon_9Up_Box + Rate: 9 + Announced: true + - Index: 3 + Item: Armor_9Up_Box + Rate: 9 + Announced: true + - Index: 4 + Item: Weapon_7Up_Box + Rate: 15 + Announced: true + - Index: 5 + Item: Armor_7Up_Box + Rate: 15 + Announced: true + - Index: 6 + Item: BloodyKnight_Shield_Box + Rate: 200 + Announced: true + - Index: 7 + Item: Ancient_Hero_Boots + Rate: 100 + Announced: true + - Index: 8 + Item: Royal_Bow_K + Rate: 100 + Announced: true + - Index: 9 + Item: Shadow_Staff_K + Rate: 100 + Announced: true + - Index: 10 + Item: Iron_Nail_K + Rate: 100 + Announced: true - Index: 11 Item: Shadow_Cube_Weapon Rate: 300 @@ -56321,29 +60163,30 @@ Body: Item: Shadow_Cube_Earing Rate: 300 - Index: 17 - Item: Comp_Trans_Scroll - Rate: 1000 - - Index: 18 Item: Minus_Status_Box Rate: 600 + - Index: 18 + Item: Blacksmith_Blessing + Rate: 800 - Index: 19 - Item: Lapine_DdukddakBox - Rate: 1150 + Item: Comp_Trans_Scroll + Rate: 1000 - Index: 20 - Item: Bloody_Scroll + Item: C_Giant_Fly_1Day_Box_ Rate: 1000 - Index: 21 - Item: Bloody_Scroll + Item: Mysterious_Medal_Box Rate: 1000 - Index: 22 - Item: Bloody_Scroll + Item: Chemicals_Bag Rate: 1000 - Index: 23 - Item: BloodyKnight_Shield_Box - Rate: 200 + Item: Lapine_DdukddakBox + Rate: 1150 - Index: 24 - Item: Shadow_Staff_K - Rate: 100 + Item: Crystal_Jewel__ + Rate: 1000 + Amount: 10 - Group: SNOW_FESTA_BOX SubGroups: - SubGroup: 1 @@ -56403,261 +60246,280 @@ Body: - SubGroup: 1 List: - Index: 0 - Item: Blue_Card_B - Rate: 588 - - Index: 1 - Item: Blue_Card_C - Rate: 588 - - Index: 2 - Item: Blue_Card_M - Rate: 588 - - Index: 3 - Item: Blue_Card_T - Rate: 588 - - Index: 4 - Item: Blue_Card_V - Rate: 588 - - Index: 5 Item: BlueCard_A - Rate: 588 - - Index: 6 + Rate: 10 + - Index: 1 + Item: Blue_Card_B + Rate: 10 + - Index: 2 + Item: Blue_Card_C + Rate: 10 + - Index: 3 + Item: BlueCard_D + Rate: 10 + - Index: 4 Item: BlueCard_E - Rate: 588 - - Index: 7 + Rate: 10 + - Index: 5 Item: BlueCard_F - Rate: 588 - - Index: 8 + Rate: 10 + - Index: 6 Item: BlueCard_H - Rate: 588 - - Index: 9 + Rate: 10 + - Index: 7 + Item: BlueCard_I + Rate: 10 + - Index: 8 Item: BlueCard_L - Rate: 588 + Rate: 10 + - Index: 9 + Item: Blue_Card_M + Rate: 10 - Index: 10 Item: BlueCard_N - Rate: 588 + Rate: 10 - Index: 11 Item: BlueCard_O - Rate: 588 + Rate: 10 - Index: 12 - Item: BlueCard_W - Rate: 588 - - Index: 13 - Item: BlueCard_I - Rate: 588 - - Index: 14 - Item: BlueCard_D - Rate: 588 - - Index: 15 - Item: BlueCard_S - Rate: 588 - - Index: 16 Item: BlueCard_R - Rate: 588 + Rate: 10 + - Index: 13 + Item: BlueCard_S + Rate: 10 + - Index: 14 + Item: Blue_Card_T + Rate: 10 + - Index: 15 + Item: Blue_Card_V + Rate: 10 + - Index: 16 + Item: BlueCard_W + Rate: 10 - Group: 2017_SPECIAL_SCROLL SubGroups: - SubGroup: 1 List: - Index: 0 - Item: C_CatPaw_7Day_Box_ - Rate: 3077 + Item: Weapon_11Up_Box + Rate: 1 + Announced: true - Index: 1 - Item: 2017_Special_Scroll - Rate: 3846 + Item: Armor_11Up_Box + Rate: 1 + Announced: true - Index: 2 - Item: 2017_Special_Scroll - Rate: 3077 - - SubGroup: 2 - List: - - Index: 0 - Item: Crystal_Jewel__ - Rate: 1000 - - Index: 1 - Item: 2017_Special_Scroll - Rate: 800 - - Index: 2 - Item: Comp_Kafra_Card_Box - Rate: 800 + Item: Weapon_9Up_Box + Rate: 9 + Announced: true - Index: 3 - Item: Sealed_Card - Rate: 10 + Item: Armor_9Up_Box + Rate: 9 + Announced: true - Index: 4 Item: Weapon_7Up_Box Rate: 15 + Announced: true - Index: 5 - Item: Weapon_9Up_Box - Rate: 9 - - Index: 6 - Item: Weapon_11Up_Box - Rate: 1 - - Index: 7 Item: Armor_7Up_Box Rate: 15 + Announced: true + - Index: 6 + Item: Sealed_Card + Rate: 10 + Announced: true + - Index: 7 + Item: 2017_Special_Box + Rate: 450 + Announced: true - Index: 8 - Item: Armor_9Up_Box - Rate: 9 - - Index: 9 - Item: Armor_11Up_Box - Rate: 1 - - Index: 10 - Item: Lapine_DdukddakBox - Rate: 1220 - - Index: 11 - Item: 2017_Special_Scroll - Rate: 800 - - Index: 12 - Item: Advanced_Taiming_Item - Rate: 200 - - Index: 13 - Item: 2017_Special_Scroll - Rate: 1000 - - Index: 14 - Item: 2017_Special_Scroll - Rate: 1000 - - Index: 15 - Item: 2017_Special_Scroll + Item: ExShadow_DdukddakBox Rate: 20 - - Index: 16 - Item: 2017_Special_Scroll - Rate: 300 - - Index: 17 - Item: 2017_Special_Scroll - Rate: 1000 - - Index: 18 - Item: Fire_Armor_S - Rate: 300 - - Index: 19 - Item: Cold_Armor_S - Rate: 300 - - Index: 20 - Item: Wind_Armor_S - Rate: 300 - - Index: 21 - Item: Earth_Armor_S - Rate: 300 - - Index: 22 + Announced: true + - Index: 9 Item: Shadow_Refine_Hammer Rate: 50 - - Index: 23 - Item: 2017_Special_Scroll + Announced: true + - Index: 10 + Item: New_Shadow_Cube Rate: 100 + Announced: true + - Index: 11 + Item: Earth_Armor_S + Rate: 300 + - Index: 12 + Item: Wind_Armor_S + Rate: 300 + - Index: 13 + Item: Cold_Armor_S + Rate: 300 + - Index: 14 + Item: Fire_Armor_S + Rate: 300 + - Index: 15 + Item: C_CatPaw_7Day_Box + Rate: 800 + - Index: 16 + Item: Advanced_Taiming_Item + Rate: 200 + - Index: 17 + Item: Comp_Kafra_Card_Box + Rate: 800 + - Index: 18 + Item: Material_Shadow_Cube + Rate: 300 + - Index: 19 + Item: Mysterious_Medal_Box + Rate: 1000 + - Index: 20 + Item: C_Giant_Fly_1Day_Box_ + Rate: 1000 + - Index: 21 + Item: Biscuit_Stick_2Set_ + Rate: 800 + - Index: 22 + Item: Chemicals_Bag + Rate: 1000 + - Index: 23 + Item: Lapine_DdukddakBox + Rate: 1220 - Index: 24 - Item: 2017_Special_Scroll - Rate: 450 + Item: Crystal_Jewel__ + Rate: 1000 + Amount: 10 - Group: 2017_SPECIAL_BOX SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Iron_Nail_K - Rate: 526 + Item: BloodyKnight_Shield_Box + Rate: 10 + Announced: true - Index: 1 - Item: Royal_Bow_K - Rate: 526 + Item: Ancient_Hero_Boots + Rate: 10 + Announced: true - Index: 2 - Item: Toy_Syringe_K - Rate: 526 + Item: Royal_Bow_K + Rate: 10 + Announced: true - Index: 3 - Item: Blue_Rear_Ribbon - Rate: 526 + Item: Shadow_Staff_K + Rate: 10 + Announced: true - Index: 4 - Item: Necklace_Rosary_K - Rate: 526 + Item: Iron_Nail_K + Rate: 10 + Announced: true - Index: 5 - Item: Spell_Circuit - Rate: 526 + Item: Amistr_Beret + Rate: 10 + Announced: true - Index: 6 - Item: General_Helmet_ - Rate: 526 + Item: Dog_Officer + Rate: 10 + Announced: true - Index: 7 Item: Classical_Fhat - Rate: 526 + Rate: 10 + Announced: true - Index: 8 - Item: Dog_Officer - Rate: 526 + Item: General_Helmet_ + Rate: 10 + Announced: true - Index: 9 - Item: Amistr_Beret - Rate: 526 + Item: New_Hat_Box3 + Rate: 10 + Announced: true - Index: 10 - Item: Ancient_Hero_Boots - Rate: 526 + Item: Spell_Circuit + Rate: 10 + Announced: true - Index: 11 - Item: Candy_Box_Melee - Rate: 526 + Item: Toy_Syringe_K + Rate: 10 + Announced: true - Index: 12 - Item: Candy_Box_Range - Rate: 526 + Item: Magical_Booster_Box + Rate: 10 + Announced: true - Index: 13 - Item: Candy_Box_Magic - Rate: 526 + Item: Cat_Head_Dress_Basket + Rate: 10 + Announced: true - Index: 14 - Item: 2017_Special_Box - Rate: 526 + Item: Blue_Rear_Ribbon + Rate: 10 + Announced: true - Index: 15 - Item: 2017_Special_Box - Rate: 526 + Item: Necklace_Rosary_K + Rate: 10 + Announced: true - Index: 16 - Item: 2017_Special_Box - Rate: 526 + Item: Candy_Box_Melee + Rate: 10 + Announced: true - Index: 17 - Item: BloodyKnight_Shield_Box - Rate: 526 + Item: Candy_Box_Range + Rate: 10 + Announced: true - Index: 18 - Item: Shadow_Staff_K - Rate: 526 + Item: Candy_Box_Magic + Rate: 10 + Announced: true - Group: ICE_SCROLL SubGroups: - SubGroup: 1 List: - Index: 0 - Item: C_CatPaw_7Day_Box_ - Rate: 3529 - - Index: 1 - Item: Honglyun's_Sword - Rate: 588 - - Index: 2 - Item: Ice_Scroll - Rate: 5882 - - SubGroup: 2 - List: - - Index: 0 - Item: Crystal_Jewel__ - Rate: 1000 - - Index: 1 - Item: Iron_Staff - Rate: 100 - - Index: 2 - Item: Blacksmith_Blessing - Rate: 800 - - Index: 3 - Item: Sword_Of_Bluefire - Rate: 100 - - Index: 4 - Item: Ice_Scroll - Rate: 600 - - Index: 5 - Item: Oriental_Sword - Rate: 100 - - Index: 6 - Item: Ancient_Hero_Boots - Rate: 250 - - Index: 7 - Item: Weapon_7Up_Box - Rate: 15 - - Index: 8 - Item: Weapon_9Up_Box - Rate: 9 - - Index: 9 Item: Weapon_11Up_Box Rate: 1 - - Index: 10 - Item: Armor_7Up_Box - Rate: 15 - - Index: 11 - Item: Armor_9Up_Box - Rate: 9 - - Index: 12 + Announced: true + - Index: 1 Item: Armor_11Up_Box Rate: 1 + Announced: true + - Index: 2 + Item: Weapon_9Up_Box + Rate: 9 + Announced: true + - Index: 3 + Item: Armor_9Up_Box + Rate: 9 + Announced: true + - Index: 4 + Item: Weapon_7Up_Box + Rate: 15 + Announced: true + - Index: 5 + Item: Armor_7Up_Box + Rate: 15 + Announced: true + - Index: 6 + Item: Iron_Staff + Rate: 100 + Announced: true + - Index: 7 + Item: Sword_Of_Bluefire + Rate: 100 + Announced: true + - Index: 8 + Item: Oriental_Sword + Rate: 100 + Announced: true + - Index: 9 + Item: Ancient_Hero_Boots + Rate: 250 + Announced: true + - Index: 10 + Item: Blacksmith_Blessing + Rate: 800 + - Index: 11 + Item: Shadow_Refine_Hammer + Rate: 200 + - Index: 12 + Item: C_CatPaw_7Day_Box + Rate: 600 - Index: 13 Item: Shadow_Cube_Weapon Rate: 300 @@ -56665,10 +60527,10 @@ Body: Item: Shadow_Cube_Armor Rate: 300 - Index: 15 - Item: Shadow_Cube_Shield + Item: Shadow_Cube_Shoes Rate: 300 - Index: 16 - Item: Shadow_Cube_Shoes + Item: Shadow_Cube_Shield Rate: 300 - Index: 17 Item: Shadow_Cube_Pendant @@ -56677,1174 +60539,1586 @@ Body: Item: Shadow_Cube_Earing Rate: 300 - Index: 19 - Item: Comp_Trans_Scroll + Item: C_Giant_Fly_1Day_Box_ Rate: 1000 - Index: 20 - Item: Lapine_DdukddakBox + Item: Comp_Trans_Scroll Rate: 1000 - Index: 21 - Item: Ice_Scroll + Item: Mysterious_Medal_Box Rate: 1000 - Index: 22 - Item: Ice_Scroll + Item: Chemicals_Bag Rate: 1000 - Index: 23 - Item: Ice_Scroll + Item: Lapine_DdukddakBox Rate: 1000 - Index: 24 - Item: Shadow_Refine_Hammer - Rate: 200 + Item: Crystal_Jewel__ + Rate: 1000 + Amount: 10 - Group: 2018_NEW_YEAR_SCROLL SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Crystal_Jewel__ - Rate: 1000 - - Index: 1 - Item: Blacksmith_Blessing - Rate: 800 - - Index: 2 - Item: Overwhelm_Str_Armor - Rate: 200 - - Index: 3 - Item: Overwhelm_Int_Armor - Rate: 200 - - Index: 4 - Item: Sealed_Card - Rate: 10 - - Index: 5 - Item: Weapon_7Up_Box - Rate: 15 - - Index: 6 - Item: Weapon_9Up_Box - Rate: 9 - - Index: 7 Item: Weapon_11Up_Box Rate: 1 - - Index: 8 - Item: Armor_7Up_Box - Rate: 15 - - Index: 9 - Item: Armor_9Up_Box - Rate: 9 - - Index: 10 + Announced: true + - Index: 1 Item: Armor_11Up_Box Rate: 1 - - Index: 11 - Item: Minus_Status_Box - Rate: 700 - - Index: 12 - Item: Class_Shadow_Cube - Rate: 1000 - - Index: 13 - Item: 2018_New_Year_Scroll - Rate: 1000 - - Index: 14 - Item: 2018_New_Year_Scroll - Rate: 1000 - - Index: 15 - Item: Shadow_Refine_Hammer + Announced: true + - Index: 2 + Item: Weapon_9Up_Box + Rate: 9 + Announced: true + - Index: 3 + Item: Armor_9Up_Box + Rate: 9 + Announced: true + - Index: 4 + Item: Weapon_7Up_Box + Rate: 15 + Announced: true + - Index: 5 + Item: Armor_7Up_Box + Rate: 15 + Announced: true + - Index: 6 + Item: Sealed_Card + Rate: 10 + Announced: true + - Index: 7 + Item: 2018_Year_Shadow_Cube Rate: 200 - - Index: 16 - Item: 2018_New_Year_Scroll + Announced: true + - Index: 8 + Item: Overwhelm_Str_Armor Rate: 200 - - Index: 17 - Item: 2018_New_Year_Scroll - Rate: 390 - - Index: 18 - Item: 2018_New_Year_Scroll - Rate: 3000 - - Index: 19 + Announced: true + - Index: 9 + Item: Overwhelm_Int_Armor + Rate: 200 + Announced: true + - Index: 10 Item: PhysicalMagical_Mix Rate: 50 - - Index: 20 + - Index: 11 Item: ImmunedAthena_Mix Rate: 50 - - Index: 21 + - Index: 12 Item: HardChamption_Mix Rate: 50 - - Index: 22 + - Index: 13 Item: KingbirdAncient_Mix Rate: 50 - - Index: 23 + - Index: 14 Item: CriticalHit_Mix Rate: 50 + - Index: 15 + Item: Blacksmith_Blessing + Rate: 800 + - Index: 16 + Item: Shadow_Refine_Hammer + Rate: 200 + - Index: 17 + Item: 2018_Material_Cube + Rate: 390 + - Index: 18 + Item: Minus_Status_Box + Rate: 700 + - Index: 19 + Item: 2018_Lapine_DdukddakBox + Rate: 3000 + - Index: 20 + Item: Mysterious_Medal_Box + Rate: 1000 + - Index: 21 + Item: Chemicals_Bag + Rate: 1000 + - Index: 22 + Item: Class_Shadow_Cube + Rate: 1000 + - Index: 23 + Item: Crystal_Jewel__ + Rate: 1000 + Amount: 10 - Group: 2018_YEAR_SHADOW_CUBE SubGroups: - SubGroup: 1 List: - Index: 0 - Item: S_Safeguard_Shield - Rate: 93 - - Index: 1 - Item: S_Liberation_Shoes - Rate: 93 - - Index: 2 - Item: S_Gemstone_Armor - Rate: 47 - - Index: 3 - Item: S_Gemstone_Shoes - Rate: 47 - - Index: 4 - Item: S_Gemstone_Shield - Rate: 47 - - Index: 5 - Item: S_Gemstone_Weapon - Rate: 47 - - Index: 6 - Item: S_Gemstone_Earring - Rate: 47 - - Index: 7 - Item: S_Gemstone_Pendent - Rate: 47 - - Index: 8 - Item: S_Spell_Flow_Shoes - Rate: 140 - - Index: 9 - Item: S_Spell_Flow_Armor - Rate: 140 - - Index: 10 - Item: S_Spell_Flow_Shield - Rate: 140 - - Index: 11 - Item: S_Greed_Armor - Rate: 93 - - Index: 12 - Item: S_Greed_Shoes - Rate: 93 - - Index: 13 - Item: S_Greed_Shield - Rate: 93 - - Index: 14 - Item: S_Greed_Weapon - Rate: 93 - - Index: 15 - Item: S_Greed_Earring - Rate: 93 - - Index: 16 - Item: S_Greed_Pendant - Rate: 93 - - Index: 17 - Item: S_Infinity_Earring - Rate: 93 - - Index: 18 - Item: S_Infinity_Pendant - Rate: 93 - - Index: 19 - Item: S_Executioner_Weapon - Rate: 93 - - Index: 20 - Item: S_Exorcist_Weapon - Rate: 93 - - Index: 21 - Item: S_Penetration_Earring - Rate: 93 - - Index: 22 - Item: S_Penetration_Pendent - Rate: 93 - - Index: 23 - Item: S_Tempest_Earring - Rate: 93 - - Index: 24 - Item: S_Tempest_Pendent - Rate: 93 - - Index: 25 - Item: S_M_Executioner_Weapon - Rate: 140 - - Index: 26 - Item: S_M_Exorcist_Weapon - Rate: 140 - - Index: 27 - Item: S_Bearers_Armor - Rate: 47 - - Index: 28 - Item: S_Bearers_Shoes - Rate: 47 - - Index: 29 - Item: S_Bearers_Shield - Rate: 47 - - Index: 30 - Item: S_Bearers_Weapon - Rate: 47 - - Index: 31 - Item: S_Bearers_Earring - Rate: 47 - - Index: 32 - Item: S_Bearers_Pendent - Rate: 47 - - Index: 33 - Item: S_Hasty_Shoes - Rate: 93 - - Index: 34 - Item: S_Hasty_Armor - Rate: 93 - - Index: 35 - Item: S_Expert_Shoes - Rate: 93 - - Index: 36 - Item: S_Expert_Shield - Rate: 93 - - Index: 37 - Item: S_Beginner_Shoes - Rate: 140 - - Index: 38 - Item: S_Beginner_Shield - Rate: 140 - - Index: 39 - Item: S_Rookie_Shoes - Rate: 140 - - Index: 40 - Item: S_Rookie_Shield - Rate: 140 - - Index: 41 - Item: S_Advanced_Shoes - Rate: 140 - - Index: 42 - Item: S_Advanced_Shield - Rate: 140 - - Index: 43 - Item: S_Attack_Armor - Rate: 140 - - Index: 44 - Item: S_Blitz_Earring - Rate: 93 - - Index: 45 - Item: S_Blitz_Pendent - Rate: 93 - - Index: 46 - Item: S_Enhance_Force_Weapon - Rate: 93 - - Index: 47 - Item: S_Force_Weapon - Rate: 140 - - Index: 48 - Item: S_Force_Earring - Rate: 140 - - Index: 49 - Item: S_Force_Pendant - Rate: 140 - - Index: 50 - Item: S_Enhance_Spirit_Weapon - Rate: 93 - - Index: 51 - Item: S_Spirit_Weapon - Rate: 140 - - Index: 52 - Item: S_Spirit_Earring - Rate: 140 - - Index: 53 - Item: S_Spirit_Pendant - Rate: 140 - - Index: 54 - Item: S_Blitz_Shoes - Rate: 47 - - Index: 55 - Item: S_Blitz_Shield - Rate: 47 - - Index: 56 Item: S2_Hasty_Shoes - Rate: 93 - - Index: 57 + Rate: 10 + - Index: 1 Item: S2_Bearers_Pendent - Rate: 93 - - Index: 58 + Rate: 10 + - Index: 2 Item: S2_Gemstone_Earring - Rate: 93 - - Index: 59 + Rate: 10 + - Index: 3 Item: S2_Spell_Flow_Shield - Rate: 93 - - Index: 60 + Rate: 10 + - Index: 4 Item: S2_Spiritual_Weapon - Rate: 93 - - Index: 61 + Rate: 10 + - Index: 5 Item: S2_Malicious_Armor - Rate: 93 - - Index: 62 + Rate: 10 + - Index: 6 Item: S_Sigrun_Armor - Rate: 93 - - Index: 63 + Rate: 10 + - Index: 7 Item: S_Sigrun_Shield - Rate: 93 - - Index: 64 + Rate: 10 + - Index: 8 Item: S2_Force_Ex_Weapon - Rate: 93 - - Index: 65 + Rate: 10 + - Index: 9 Item: S2_Spirit_M_E_Weapon - Rate: 93 - - Index: 66 + Rate: 10 + - Index: 10 Item: S2_Caster_Armor - Rate: 93 - - Index: 67 + Rate: 10 + - Index: 11 Item: S2_Reload_Armor - Rate: 93 - - Index: 68 + Rate: 10 + - Index: 12 Item: S_Critical_Shield - Rate: 93 - - Index: 69 + Rate: 10 + - Index: 13 Item: S_Critical_Shoes - Rate: 93 - - Index: 70 + Rate: 10 + - Index: 14 Item: S_Blitz_Weapon - Rate: 93 - - Index: 71 + Rate: 10 + - Index: 15 Item: S_Blitz_Armor - Rate: 93 - - Index: 72 + Rate: 10 + - Index: 16 Item: S_Tempest_Shield - Rate: 93 - - Index: 73 + Rate: 10 + - Index: 17 Item: S_Tempest_Shoes - Rate: 93 - - Index: 74 + Rate: 10 + - Index: 18 Item: S_M_ExeHoly_Armor - Rate: 93 - - Index: 75 + Rate: 10 + - Index: 19 Item: S_M_ExoCorrupt_Armor - Rate: 93 - - Index: 76 + Rate: 10 + - Index: 20 Item: S_M_DragonVib_Armor - Rate: 93 - - Index: 77 + Rate: 10 + - Index: 21 Item: S_M_SciHunting_Armor - Rate: 93 - - Index: 78 + Rate: 10 + - Index: 22 Item: S_M_FishInsect_Armor - Rate: 93 - - Index: 79 + Rate: 10 + - Index: 23 Item: S_Tension_Weapon - Rate: 93 - - Index: 80 + Rate: 10 + - Index: 24 Item: S_Tension_Earring - Rate: 93 - - Index: 81 + Rate: 10 + - Index: 25 Item: S_Tension_Pendent - Rate: 93 - - Index: 82 + Rate: 10 + - Index: 26 Item: S_Elegant_Weapon - Rate: 93 - - Index: 83 + Rate: 10 + - Index: 27 Item: S_Elegant_Earring - Rate: 93 - - Index: 84 + Rate: 10 + - Index: 28 Item: S_Elegant_Pendent - Rate: 93 - - Index: 85 + Rate: 10 + - Index: 29 Item: S_Healing_Shield - Rate: 93 - - Index: 86 + Rate: 10 + - Index: 30 Item: S_Healing_Shoes - Rate: 93 - - Index: 87 + Rate: 10 + - Index: 31 Item: S_Restore_Earring - Rate: 93 - - Index: 88 + Rate: 10 + - Index: 32 Item: S_Restore_Pendent - Rate: 93 - - Index: 89 + Rate: 10 + - Index: 33 Item: S_MortalBlow_Weapon - Rate: 93 - - Index: 90 + Rate: 10 + - Index: 34 Item: S_MortalBlow_Earring - Rate: 93 - - Index: 91 + Rate: 10 + - Index: 35 Item: S_MortalBlow_Pendent - Rate: 93 - - Index: 92 + Rate: 10 + - Index: 36 Item: S_Penetration_Shoes - Rate: 93 - - Index: 93 + Rate: 10 + - Index: 37 Item: S_Penetration_Shield - Rate: 93 - - Index: 94 + Rate: 10 + - Index: 38 Item: S_ExeHoly_Armor - Rate: 93 - - Index: 95 + Rate: 10 + - Index: 39 Item: S_ExoCorrupt_Armor - Rate: 93 - - Index: 96 + Rate: 10 + - Index: 40 Item: S_DragonVib_Armor - Rate: 93 - - Index: 97 + Rate: 10 + - Index: 41 Item: S_SciHunting_Armor - Rate: 93 - - Index: 98 + Rate: 10 + - Index: 42 Item: S_FishInsect_Armor - Rate: 93 - - Index: 99 + Rate: 10 + - Index: 43 Item: Sentimental_Weapone_S - Rate: 93 - - Index: 100 + Rate: 10 + - Index: 44 Item: Sentimental_Earring_S - Rate: 93 - - Index: 101 + Rate: 10 + - Index: 45 Item: Sentimental_Pendant_S - Rate: 93 - - Index: 102 + Rate: 10 + - Index: 46 Item: Enchanting_Weapone_S - Rate: 93 - - Index: 103 + Rate: 10 + - Index: 47 Item: Enchanting_Earring_S - Rate: 93 - - Index: 104 + Rate: 10 + - Index: 48 Item: Enchanting_Pendant_S - Rate: 93 + Rate: 10 + - Index: 49 + Item: S_Gemstone_Weapon + Rate: 5 + Announced: true + - Index: 50 + Item: S_Gemstone_Earring + Rate: 5 + Announced: true + - Index: 51 + Item: S_Gemstone_Pendent + Rate: 5 + Announced: true + - Index: 52 + Item: S_Gemstone_Armor + Rate: 5 + Announced: true + - Index: 53 + Item: S_Gemstone_Shoes + Rate: 5 + Announced: true + - Index: 54 + Item: S_Gemstone_Shield + Rate: 5 + Announced: true + - Index: 55 + Item: S_Bearers_Weapon + Rate: 5 + Announced: true + - Index: 56 + Item: S_Bearers_Earring + Rate: 5 + Announced: true + - Index: 57 + Item: S_Bearers_Pendent + Rate: 5 + Announced: true + - Index: 58 + Item: S_Bearers_Armor + Rate: 5 + Announced: true + - Index: 59 + Item: S_Bearers_Shoes + Rate: 5 + Announced: true + - Index: 60 + Item: S_Bearers_Shield + Rate: 5 + Announced: true + - Index: 61 + Item: S_Blitz_Shoes + Rate: 5 + Announced: true + - Index: 62 + Item: S_Blitz_Shield + Rate: 5 + Announced: true + - Index: 63 + Item: S_Greed_Weapon + Rate: 10 + Announced: true + - Index: 64 + Item: S_Greed_Earring + Rate: 10 + Announced: true + - Index: 65 + Item: S_Greed_Pendant + Rate: 10 + Announced: true + - Index: 66 + Item: S_Greed_Armor + Rate: 10 + Announced: true + - Index: 67 + Item: S_Greed_Shoes + Rate: 10 + Announced: true + - Index: 68 + Item: S_Greed_Shield + Rate: 10 + Announced: true + - Index: 69 + Item: S_Liberation_Shoes + Rate: 10 + Announced: true + - Index: 70 + Item: S_Safeguard_Shield + Rate: 10 + Announced: true + - Index: 71 + Item: S_Infinity_Earring + Rate: 10 + Announced: true + - Index: 72 + Item: S_Infinity_Pendant + Rate: 10 + Announced: true + - Index: 73 + Item: S_Penetration_Earring + Rate: 10 + Announced: true + - Index: 74 + Item: S_Penetration_Pendent + Rate: 10 + Announced: true + - Index: 75 + Item: S_Executioner_Weapon + Rate: 10 + Announced: true + - Index: 76 + Item: S_Exorcist_Weapon + Rate: 10 + Announced: true + - Index: 77 + Item: S_Tempest_Earring + Rate: 10 + Announced: true + - Index: 78 + Item: S_Tempest_Pendent + Rate: 10 + Announced: true + - Index: 79 + Item: S_Hasty_Shoes + Rate: 10 + Announced: true + - Index: 80 + Item: S_Hasty_Armor + Rate: 10 + Announced: true + - Index: 81 + Item: S_Expert_Shoes + Rate: 10 + Announced: true + - Index: 82 + Item: S_Expert_Shield + Rate: 10 + Announced: true + - Index: 83 + Item: S_Blitz_Earring + Rate: 10 + Announced: true + - Index: 84 + Item: S_Blitz_Pendent + Rate: 10 + Announced: true + - Index: 85 + Item: S_Enhance_Force_Weapon + Rate: 10 + Announced: true + - Index: 86 + Item: S_Enhance_Spirit_Weapon + Rate: 10 + Announced: true + - Index: 87 + Item: S_Spell_Flow_Armor + Rate: 15 + - Index: 88 + Item: S_Spell_Flow_Shoes + Rate: 15 + - Index: 89 + Item: S_Spell_Flow_Shield + Rate: 15 + - Index: 90 + Item: S_M_Executioner_Weapon + Rate: 15 + - Index: 91 + Item: S_M_Exorcist_Weapon + Rate: 15 + - Index: 92 + Item: S_Attack_Armor + Rate: 15 + - Index: 93 + Item: S_Beginner_Shield + Rate: 15 + - Index: 94 + Item: S_Beginner_Shoes + Rate: 15 + - Index: 95 + Item: S_Rookie_Shield + Rate: 15 + - Index: 96 + Item: S_Rookie_Shoes + Rate: 15 + - Index: 97 + Item: S_Advanced_Shield + Rate: 15 + - Index: 98 + Item: S_Advanced_Shoes + Rate: 15 + - Index: 99 + Item: S_Force_Weapon + Rate: 15 + - Index: 100 + Item: S_Force_Earring + Rate: 15 + - Index: 101 + Item: S_Force_Pendant + Rate: 15 + - Index: 102 + Item: S_Spirit_Weapon + Rate: 15 + - Index: 103 + Item: S_Spirit_Earring + Rate: 15 + - Index: 104 + Item: S_Spirit_Pendant + Rate: 15 - Group: 2018_MATERIAL_CUBE SubGroups: - SubGroup: 1 List: - Index: 0 - Item: S_Physical_Earring - Rate: 143 - - Index: 1 - Item: S_Physical_Weapon - Rate: 143 - - Index: 2 - Item: S_Physical_Pendant - Rate: 143 - - Index: 3 - Item: S_Magical_Earring - Rate: 143 - - Index: 4 - Item: S_Magical_Weapon - Rate: 143 - - Index: 5 - Item: S_Magical_Pendant - Rate: 143 - - Index: 6 - Item: S_Champion_Shoes - Rate: 143 - - Index: 7 - Item: S_Athena_Shield - Rate: 143 - - Index: 8 - Item: S_Immune_Armor - Rate: 143 - - Index: 9 - Item: S_Hard_Armor - Rate: 143 - - Index: 10 - Item: S_Ancient_Armor - Rate: 143 - - Index: 11 - Item: S_Critical_Armor - Rate: 143 - - Index: 12 - Item: S_Kingbird_Weapon - Rate: 143 - - Index: 13 - Item: S_Cri_Hit_Weapon - Rate: 143 - - Index: 14 - Item: S_Lucky_Weapon - Rate: 143 - - Index: 15 - Item: S_Power_Earring - Rate: 143 - - Index: 16 - Item: S_Int_Pendant - Rate: 143 - - Index: 17 - Item: S_Dexterous_Armor - Rate: 143 - - Index: 18 - Item: S_Vital_Shoes - Rate: 143 - - Index: 19 - Item: S_Athletic_Shield - Rate: 143 - - Index: 20 - Item: S_Lucky_Armor - Rate: 143 - - Index: 21 - Item: S_Power_Pendant - Rate: 143 - - Index: 22 - Item: S_Int_Earring - Rate: 143 - - Index: 23 - Item: S_Dexterous_Weapon - Rate: 143 - - Index: 24 - Item: S_Vital_Shield - Rate: 143 - - Index: 25 - Item: S_Athletic_Shoes - Rate: 143 - - Index: 26 - Item: S_Hard_Earring - Rate: 143 - - Index: 27 - Item: S_Athena_Earring - Rate: 143 - - Index: 28 - Item: S_Cranial_Shield - Rate: 143 - - Index: 29 - Item: S_Brutal_Shield - Rate: 143 - - Index: 30 - Item: S_Gargantua_Shield - Rate: 143 - - Index: 31 - Item: S_Homers_Shield - Rate: 143 - - Index: 32 - Item: S_Dragoon_Shield - Rate: 143 - - Index: 33 - Item: S_Satanic_Shield - Rate: 143 - - Index: 34 - Item: S_Flameguard_Shield - Rate: 143 - - Index: 35 - Item: S_Requiem_Shield - Rate: 143 - - Index: 36 - Item: S_Cadi_Shield - Rate: 143 - - Index: 37 - Item: S_Bloody_Shoes - Rate: 143 - - Index: 38 - Item: S_Chemical_Shoes - Rate: 143 - - Index: 39 - Item: S_Clamorous_Shoes - Rate: 143 - - Index: 40 - Item: S_Insecticide_Shoes - Rate: 143 - - Index: 41 - Item: S_Fisher_Shoes - Rate: 143 - - Index: 42 - Item: S_Seraphim_Shoes - Rate: 143 - - Index: 43 - Item: S_Beholder_Shoes - Rate: 143 - - Index: 44 - Item: S_Divine_Shoes - Rate: 143 - - Index: 45 - Item: S_Dragoon_Shoes - Rate: 143 - - Index: 46 Item: S_Plasterer's_Armor - Rate: 143 - - Index: 47 + Rate: 1 + - Index: 1 Item: S_Plasterer's_Shoes - Rate: 143 - - Index: 48 + Rate: 1 + - Index: 2 Item: S_Insomniac_Armor - Rate: 143 - - Index: 49 + Rate: 1 + - Index: 3 Item: S_Insomniac_Shoes - Rate: 143 - - Index: 50 + Rate: 1 + - Index: 4 Item: S_Peerless_Armor - Rate: 143 - - Index: 51 + Rate: 1 + - Index: 5 Item: S_Peerless_Shoes - Rate: 143 - - Index: 52 + Rate: 1 + - Index: 6 Item: S_Adurate_Armor - Rate: 143 - - Index: 53 + Rate: 1 + - Index: 7 Item: S_Adurate_Shoes - Rate: 143 - - Index: 54 + Rate: 1 + - Index: 8 Item: Unfreez_Weapon_S - Rate: 143 - - Index: 55 + Rate: 1 + - Index: 9 Item: Unfreeze_Earing_S - Rate: 143 - - Index: 56 + Rate: 1 + - Index: 10 Item: Unfreeze_Pendent_S - Rate: 143 - - Index: 57 + Rate: 1 + - Index: 11 Item: Vitality_Earing_S - Rate: 143 - - Index: 58 + Rate: 1 + - Index: 12 Item: Vitality_Pendant_S - Rate: 143 - - Index: 59 + Rate: 1 + - Index: 13 Item: S_Neutral_Weapon - Rate: 143 - - Index: 60 + Rate: 1 + - Index: 14 Item: S_Neutral_Earring - Rate: 143 - - Index: 61 + Rate: 1 + - Index: 15 Item: S_Neutral_Pendent - Rate: 143 - - Index: 62 + Rate: 1 + - Index: 16 Item: S_Curse_Lift_Earring - Rate: 143 - - Index: 63 + Rate: 1 + - Index: 17 Item: S_Curse_Lift_Pendent - Rate: 143 - - Index: 64 + Rate: 1 + - Index: 18 + Item: S_Homers_Shield + Rate: 1 + - Index: 19 + Item: S_Cadi_Shield + Rate: 1 + - Index: 20 + Item: S_Requiem_Shield + Rate: 1 + - Index: 21 + Item: S_Flameguard_Shield + Rate: 1 + - Index: 22 + Item: S_Satanic_Shield + Rate: 1 + - Index: 23 + Item: S_Dragoon_Shield + Rate: 1 + - Index: 24 + Item: S_Gargantua_Shield + Rate: 1 + - Index: 25 + Item: S_Brutal_Shield + Rate: 1 + - Index: 26 + Item: S_Cranial_Shield + Rate: 1 + - Index: 27 + Item: S_Divine_Shoes + Rate: 1 + - Index: 28 + Item: S_Beholder_Shoes + Rate: 1 + - Index: 29 + Item: S_Seraphim_Shoes + Rate: 1 + - Index: 30 + Item: S_Fisher_Shoes + Rate: 1 + - Index: 31 + Item: S_Insecticide_Shoes + Rate: 1 + - Index: 32 + Item: S_Clamorous_Shoes + Rate: 1 + - Index: 33 + Item: S_Chemical_Shoes + Rate: 1 + - Index: 34 + Item: S_Bloody_Shoes + Rate: 1 + - Index: 35 + Item: S_Dragoon_Shoes + Rate: 1 + - Index: 36 Item: S_ColdBolt_Armor - Rate: 143 - - Index: 65 + Rate: 1 + - Index: 37 Item: S_FireBolt_Armor - Rate: 143 - - Index: 66 + Rate: 1 + - Index: 38 Item: S_LightingBolt_Armor - Rate: 143 - - Index: 67 + Rate: 1 + - Index: 39 Item: S_EarthSpike_Armor - Rate: 143 - - Index: 68 - Item: S_Critical_Shield - Rate: 143 - - Index: 69 + Rate: 1 + - Index: 40 + Item: S_Lucky_Weapon + Rate: 1 + - Index: 41 + Item: S_Power_Earring + Rate: 1 + - Index: 42 + Item: S_Int_Pendant + Rate: 1 + - Index: 43 + Item: S_Dexterous_Armor + Rate: 1 + - Index: 44 + Item: S_Vital_Shoes + Rate: 1 + - Index: 45 + Item: S_Athletic_Shield + Rate: 1 + - Index: 46 + Item: S_Lucky_Armor + Rate: 1 + - Index: 47 + Item: S_Power_Pendant + Rate: 1 + - Index: 48 + Item: S_Int_Earring + Rate: 1 + - Index: 49 + Item: S_Dexterous_Weapon + Rate: 1 + - Index: 50 + Item: S_Vital_Shield + Rate: 1 + - Index: 51 + Item: S_Athletic_Shoes + Rate: 1 + - Index: 52 Item: S_Critical_Shoes - Rate: 143 + Rate: 1 + - Index: 53 + Item: S_Critical_Shield + Rate: 1 + - Index: 54 + Item: S_Cri_Hit_Weapon + Rate: 1 + - Index: 55 + Item: S_Critical_Armor + Rate: 1 + - Index: 56 + Item: S_Kingbird_Weapon + Rate: 1 + - Index: 57 + Item: S_Ancient_Armor + Rate: 1 + - Index: 58 + Item: S_Hard_Armor + Rate: 1 + - Index: 59 + Item: S_Champion_Shoes + Rate: 1 + - Index: 60 + Item: S_Athena_Shield + Rate: 1 + - Index: 61 + Item: S_Immune_Armor + Rate: 1 + - Index: 62 + Item: S_Hard_Earring + Rate: 1 + - Index: 63 + Item: S_Athena_Earring + Rate: 1 + - Index: 64 + Item: S_Physical_Weapon + Rate: 1 + - Index: 65 + Item: S_Physical_Earring + Rate: 1 + - Index: 66 + Item: S_Physical_Pendant + Rate: 1 + - Index: 67 + Item: S_Magical_Weapon + Rate: 1 + - Index: 68 + Item: S_Magical_Earring + Rate: 1 + - Index: 69 + Item: S_Magical_Pendant + Rate: 1 + - SubGroup: 2 + List: + - Index: 0 + Item: S_Plasterer's_Armor + Rate: 1 + - Index: 1 + Item: S_Plasterer's_Shoes + Rate: 1 + - Index: 2 + Item: S_Insomniac_Armor + Rate: 1 + - Index: 3 + Item: S_Insomniac_Shoes + Rate: 1 + - Index: 4 + Item: S_Peerless_Armor + Rate: 1 + - Index: 5 + Item: S_Peerless_Shoes + Rate: 1 + - Index: 6 + Item: S_Adurate_Armor + Rate: 1 + - Index: 7 + Item: S_Adurate_Shoes + Rate: 1 + - Index: 8 + Item: Unfreez_Weapon_S + Rate: 1 + - Index: 9 + Item: Unfreeze_Earing_S + Rate: 1 + - Index: 10 + Item: Unfreeze_Pendent_S + Rate: 1 + - Index: 11 + Item: Vitality_Earing_S + Rate: 1 + - Index: 12 + Item: Vitality_Pendant_S + Rate: 1 + - Index: 13 + Item: S_Neutral_Weapon + Rate: 1 + - Index: 14 + Item: S_Neutral_Earring + Rate: 1 + - Index: 15 + Item: S_Neutral_Pendent + Rate: 1 + - Index: 16 + Item: S_Curse_Lift_Earring + Rate: 1 + - Index: 17 + Item: S_Curse_Lift_Pendent + Rate: 1 + - Index: 18 + Item: S_Homers_Shield + Rate: 1 + - Index: 19 + Item: S_Cadi_Shield + Rate: 1 + - Index: 20 + Item: S_Requiem_Shield + Rate: 1 + - Index: 21 + Item: S_Flameguard_Shield + Rate: 1 + - Index: 22 + Item: S_Satanic_Shield + Rate: 1 + - Index: 23 + Item: S_Dragoon_Shield + Rate: 1 + - Index: 24 + Item: S_Gargantua_Shield + Rate: 1 + - Index: 25 + Item: S_Brutal_Shield + Rate: 1 + - Index: 26 + Item: S_Cranial_Shield + Rate: 1 + - Index: 27 + Item: S_Divine_Shoes + Rate: 1 + - Index: 28 + Item: S_Beholder_Shoes + Rate: 1 + - Index: 29 + Item: S_Seraphim_Shoes + Rate: 1 + - Index: 30 + Item: S_Fisher_Shoes + Rate: 1 + - Index: 31 + Item: S_Insecticide_Shoes + Rate: 1 + - Index: 32 + Item: S_Clamorous_Shoes + Rate: 1 + - Index: 33 + Item: S_Chemical_Shoes + Rate: 1 + - Index: 34 + Item: S_Bloody_Shoes + Rate: 1 + - Index: 35 + Item: S_Dragoon_Shoes + Rate: 1 + - Index: 36 + Item: S_ColdBolt_Armor + Rate: 1 + - Index: 37 + Item: S_FireBolt_Armor + Rate: 1 + - Index: 38 + Item: S_LightingBolt_Armor + Rate: 1 + - Index: 39 + Item: S_EarthSpike_Armor + Rate: 1 + - Index: 40 + Item: S_Lucky_Weapon + Rate: 1 + - Index: 41 + Item: S_Power_Earring + Rate: 1 + - Index: 42 + Item: S_Int_Pendant + Rate: 1 + - Index: 43 + Item: S_Dexterous_Armor + Rate: 1 + - Index: 44 + Item: S_Vital_Shoes + Rate: 1 + - Index: 45 + Item: S_Athletic_Shield + Rate: 1 + - Index: 46 + Item: S_Lucky_Armor + Rate: 1 + - Index: 47 + Item: S_Power_Pendant + Rate: 1 + - Index: 48 + Item: S_Int_Earring + Rate: 1 + - Index: 49 + Item: S_Dexterous_Weapon + Rate: 1 + - Index: 50 + Item: S_Vital_Shield + Rate: 1 + - Index: 51 + Item: S_Athletic_Shoes + Rate: 1 + - Index: 52 + Item: S_Critical_Shoes + Rate: 1 + - Index: 53 + Item: S_Critical_Shield + Rate: 1 + - Index: 54 + Item: S_Cri_Hit_Weapon + Rate: 1 + - Index: 55 + Item: S_Critical_Armor + Rate: 1 + - Index: 56 + Item: S_Kingbird_Weapon + Rate: 1 + - Index: 57 + Item: S_Ancient_Armor + Rate: 1 + - Index: 58 + Item: S_Hard_Armor + Rate: 1 + - Index: 59 + Item: S_Champion_Shoes + Rate: 1 + - Index: 60 + Item: S_Athena_Shield + Rate: 1 + - Index: 61 + Item: S_Immune_Armor + Rate: 1 + - Index: 62 + Item: S_Hard_Earring + Rate: 1 + - Index: 63 + Item: S_Athena_Earring + Rate: 1 + - Index: 64 + Item: S_Physical_Weapon + Rate: 1 + - Index: 65 + Item: S_Physical_Earring + Rate: 1 + - Index: 66 + Item: S_Physical_Pendant + Rate: 1 + - Index: 67 + Item: S_Magical_Weapon + Rate: 1 + - Index: 68 + Item: S_Magical_Earring + Rate: 1 + - Index: 69 + Item: S_Magical_Pendant + Rate: 1 - Group: 2018_LAPINE_DDUKDDAKBOX SubGroups: - SubGroup: 1 List: - Index: 0 Item: Shadow_Mix_Recipe - Rate: 3333 + Rate: 1000 - Index: 1 Item: EnchantStone_Recipe - Rate: 2567 + Rate: 770 - Index: 2 Item: EventItem_Recipe - Rate: 1400 + Rate: 420 - Index: 3 Item: PetEgg_Recipe - Rate: 400 + Rate: 120 - Index: 4 Item: Nyang_Costume_Recipe - Rate: 1700 + Rate: 510 - Index: 5 - Item: JobShadow_Mix_Weapon - Rate: 50 - - Index: 6 - Item: JobShadow_Mix_Armor - Rate: 50 - - Index: 7 - Item: JobShadow_Mix_Shoes - Rate: 50 - - Index: 8 - Item: JobShadow_Mix_Shield - Rate: 50 - - Index: 9 Item: JobShadow_Mix_Pendant - Rate: 50 + Rate: 15 + Announced: true + - Index: 6 + Item: JobShadow_Mix_Weapon + Rate: 15 + Announced: true + - Index: 7 + Item: JobShadow_Mix_Armor + Rate: 15 + Announced: true + - Index: 8 + Item: JobShadow_Mix_Shoes + Rate: 15 + Announced: true + - Index: 9 + Item: JobShadow_Mix_Shield + Rate: 15 + Announced: true - Index: 10 Item: JobShadow_Mix_Earing - Rate: 50 + Rate: 15 + Announced: true - Index: 11 Item: StatusShadow_Mix - Rate: 50 + Rate: 15 + Announced: true - Index: 12 - Item: GemstoneShadow_Mix - Rate: 50 - - Index: 13 Item: BearersShadow_Mix - Rate: 50 + Rate: 15 + Announced: true + - Index: 13 + Item: GemstoneShadow_Mix + Rate: 15 + Announced: true - Index: 14 Item: ComposeShadow_Mix - Rate: 50 + Rate: 15 + Announced: true - Index: 15 Item: RaceShadow_Mix - Rate: 50 + Rate: 15 + Announced: true - Index: 16 Item: StabilityShadow_Mix - Rate: 50 + Rate: 15 + Announced: true - SubGroup: 2 List: - Index: 0 - Item: J_Shop_Coupon - Rate: 370 + Item: Poison_Pack2 + Rate: 10 - Index: 1 - Item: Comp_Battle_Manual - Rate: 370 - Amount: 2 + Item: White_Slim_Pot_Box2 + Rate: 10 - Index: 2 - Item: Comp_Bubble_Gum - Rate: 370 - Amount: 2 + Item: E_WOB_Local + Rate: 10 + Amount: 3 - Index: 3 - Item: Comp_Insurance - Rate: 370 + Item: E_WOB_Rachel + Rate: 10 Amount: 3 - Index: 4 - Item: E_WOB_Rune - Rate: 370 + Item: E_WOB_Schwaltz + Rate: 10 Amount: 3 - Index: 5 - Item: E_WOB_Schwaltz - Rate: 370 + Item: E_WOB_Rune + Rate: 10 Amount: 3 - Index: 6 - Item: E_WOB_Rachel - Rate: 370 - Amount: 3 + Item: Comp_Battle_Manual + Rate: 10 + Amount: 2 - Index: 7 - Item: E_WOB_Local - Rate: 370 - Amount: 3 + Item: Comp_Bubble_Gum + Rate: 10 + Amount: 2 - Index: 8 - Item: White_Slim_Pot_Box2 - Rate: 370 - - Index: 9 - Item: Old_C_Album_Helm - Rate: 370 - - Index: 10 - Item: Old_C_Album_Armor - Rate: 370 - - Index: 11 - Item: Old_C_Album_Shield - Rate: 370 - - Index: 12 - Item: Old_C_Album_Garment - Rate: 370 - - Index: 13 - Item: Old_C_Album_Shoes - Rate: 370 - - Index: 14 - Item: Old_C_Album_Acc - Rate: 370 - - Index: 15 - Item: Old_C_Album_Weapon - Rate: 370 - - Index: 16 Item: C_Wing_Of_Fly_1Day_Box - Rate: 370 - - Index: 17 - Item: 2018_Lapine_DdukddakBox - Rate: 370 - - Index: 18 + Rate: 10 + - Index: 9 Item: Minus_Str - Rate: 370 + Rate: 10 Amount: 3 - - Index: 19 + - Index: 10 Item: Minus_Agi - Rate: 370 + Rate: 10 Amount: 3 - - Index: 20 + - Index: 11 Item: Minus_Vit - Rate: 370 + Rate: 10 Amount: 3 - - Index: 21 + - Index: 12 Item: Minus_Int - Rate: 370 + Rate: 10 Amount: 3 - - Index: 22 + - Index: 13 Item: Minus_Dex - Rate: 370 + Rate: 10 Amount: 3 - - Index: 23 + - Index: 14 Item: Minus_Luk - Rate: 370 + Rate: 10 Amount: 3 + - Index: 15 + Item: Old_C_Album_Helm + Rate: 10 + - Index: 16 + Item: Old_C_Album_Armor + Rate: 10 + - Index: 17 + Item: Old_C_Album_Shield + Rate: 10 + - Index: 18 + Item: Old_C_Album_Garment + Rate: 10 + - Index: 19 + Item: Old_C_Album_Shoes + Rate: 10 + - Index: 20 + Item: Old_C_Album_Acc + Rate: 10 + - Index: 21 + Item: Old_C_Album_Weapon + Rate: 10 + - Index: 22 + Item: C_Greed_1Hour_Box + Rate: 10 + - Index: 23 + Item: J_Shop_Coupon + Rate: 10 - Index: 24 - Item: Comp_Spark_Candy - Rate: 370 + Item: Comp_Insurance + Rate: 10 Amount: 3 - Index: 25 Item: Comp_Magic_Candy - Rate: 370 + Rate: 10 Amount: 3 - Index: 26 - Item: Poison_Pack2 - Rate: 370 + Item: Comp_Spark_Candy + Rate: 10 + Amount: 3 - Group: SWEETS_EVT_BOX SubGroups: - SubGroup: 1 List: - Index: 0 - Item: White_Chocolate_B - Rate: 2040 - - Index: 1 Item: Crepe Rate: 1105 + - Index: 1 + Item: St_Cupcake + Rate: 1105 - Index: 2 - Item: C_Sweet_Candy - Rate: 50 + Item: Parfait + Rate: 1105 - Index: 3 - Item: C_SweetChocolate_Hat - Rate: 50 + Item: Macaron + Rate: 1105 - Index: 4 - Item: Soccer_Cake + Item: Mont_Blanc_Cake Rate: 1105 - Index: 5 - Item: Mont_Blanc_Cake + Item: Soccer_Cake Rate: 1105 - Index: 6 Item: Strawberry_CreamCake Rate: 1105 - Index: 7 - Item: St_Cupcake - Rate: 1105 + Item: C_Sweet_Candy + Rate: 50 - Index: 8 - Item: Parfait - Rate: 1105 - - Index: 9 - Item: Macaron - Rate: 1105 - - Index: 10 - Item: K_Secret_Key - Rate: 25 - - Index: 11 Item: C_Choco_Minihat Rate: 50 - - Index: 12 + - Index: 9 + Item: C_SweetChocolate_Hat + Rate: 50 + - Index: 10 + Item: White_Chocolate_B + Rate: 2040 + - Index: 11 Item: C_Sweets_Bonbon Rate: 50 + - Index: 12 + Item: K_Secret_Key + Rate: 25 - Group: EVT_JAN02KR SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Warnut_Chocoball - Rate: 3034 + Item: K_Secret_Key + Rate: 25 - Index: 1 - Item: Old_Card_Album - Rate: 291 + Item: Inventory_Ex_Evt + Rate: 50 - Index: 2 - Item: Magic_Card_Album - Rate: 97 - - Index: 3 - Item: E_Med_Life_Potion - Rate: 777 - Amount: 3 - - Index: 4 - Item: E_Small_Life_Potion - Rate: 777 - Amount: 3 - - Index: 5 - Item: C_Nut_Cracker - Rate: 291 - - Index: 6 Item: C_bullhead - Rate: 97 + Rate: 100 + - Index: 3 + Item: Magic_Card_Album + Rate: 100 + - Index: 4 + Item: Old_Card_Album + Rate: 300 + - Index: 5 + Item: E_Small_Life_Potion + Rate: 800 + Amount: 3 + - Index: 6 + Item: E_Med_Life_Potion + Rate: 800 + Amount: 3 - Index: 7 - Item: Choco_Tteokguk - Rate: 1456 + Item: E_Red_Booster + Rate: 800 - Index: 8 Item: Comp_M_DEFScroll - Rate: 777 + Rate: 800 - Index: 9 Item: Comp_Power_Booster - Rate: 777 + Rate: 800 - Index: 10 Item: Comp_Almighty - Rate: 777 + Rate: 800 - Index: 11 - Item: K_Secret_Key - Rate: 24 + Item: Choco_Tteokguk + Rate: 4225 - Index: 12 - Item: Inventory_Ex_Evt - Rate: 49 + Item: C_HwaHoJumJung + Rate: 100 - Index: 13 - Item: E_Red_Booster - Rate: 777 + Item: C_Nut_Cracker + Rate: 300 - Group: 2018_VISIONARY_CARD SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Phreeoni_Card - Rate: 340 - - Index: 1 - Item: Eddga_Card - Rate: 42 - - Index: 2 Item: Golden_Bug_Card Rate: 1 - - Index: 3 - Item: Moonlight_Flower_Card - Rate: 340 - - Index: 4 - Item: Mistress_Card - Rate: 42 - - Index: 5 - Item: Dracula_Card - Rate: 12 - - Index: 6 - Item: Orc_Load_Card - Rate: 340 - - Index: 7 - Item: Drake_Card - Rate: 90 - - Index: 8 - Item: Doppelganger_Card - Rate: 330 - - Index: 9 - Item: Orc_Hero_Card - Rate: 340 - - Index: 10 - Item: Osiris_Card - Rate: 340 - - Index: 11 - Item: Berzebub_Card - Rate: 42 - - Index: 12 - Item: Maya_Card - Rate: 42 - - Index: 13 - Item: Baphomet_Card - Rate: 90 - - Index: 14 - Item: Pharaoh_Card - Rate: 340 - - Index: 15 - Item: Dark_Lord_Card - Rate: 90 - - Index: 16 - Item: Amon_Ra_Card - Rate: 90 - - Index: 17 - Item: Incant_Samurai_Card - Rate: 42 - - Index: 18 - Item: Lord_Of_Death_Card - Rate: 42 - - Index: 19 + Announced: true + - Index: 1 Item: Tao_Gunka_Card Rate: 1 - - Index: 20 - Item: Turtle_General_Card - Rate: 340 - - Index: 21 - Item: Knight_Windstorm_Card - Rate: 340 - - Index: 22 - Item: Garm_Card - Rate: 340 - - Index: 23 - Item: Dark_Snake_Lord_Card - Rate: 340 - - Index: 24 - Item: Rsx_0806_Card - Rate: 42 - - Index: 25 - Item: B_Ygnizem_Card - Rate: 340 - - Index: 26 + Announced: true + - Index: 2 Item: B_Seyren_Card Rate: 1 - - Index: 27 - Item: B_Eremes_Card - Rate: 12 - - Index: 28 - Item: B_Harword_Card - Rate: 12 - - Index: 29 - Item: B_Magaleta_Card - Rate: 12 - - Index: 30 - Item: B_Katrinn_Card - Rate: 12 - - Index: 31 - Item: B_Shecil_Card - Rate: 12 - - Index: 32 - Item: Apocalips_H_Card - Rate: 340 - - Index: 33 - Item: Lady_Tanee_Card - Rate: 340 - - Index: 34 - Item: Detale_Card - Rate: 340 - - Index: 35 + Announced: true + - Index: 3 Item: Thanatos_Card Rate: 1 - - Index: 36 + Announced: true + - Index: 4 Item: Kiel_Card Rate: 1 - - Index: 37 - Item: Randgris_Card - Rate: 42 - - Index: 38 - Item: Gloom_Under_Night_Card - Rate: 1 - - Index: 39 - Item: Ktullanux_Card - Rate: 340 - - Index: 40 - Item: Atroce_Card - Rate: 340 - - Index: 41 - Item: Ifrit_Card - Rate: 340 - - Index: 42 + Announced: true + - Index: 5 Item: Fallen_Bishop_Card Rate: 1 - - Index: 43 - Item: Ant_Buyanne_Card - Rate: 340 - - Index: 44 - Item: Nidhogg_Shadow_Card - Rate: 340 - - Index: 45 - Item: Nahtzigger_Card - Rate: 90 - - Index: 46 - Item: Q_Scaraba_Card - Rate: 340 - - Index: 47 - Item: Leak_Card - Rate: 90 - - Index: 48 - Item: Kraken_Card - Rate: 340 - - Index: 49 - Item: Clown_Card - Rate: 13 - - Index: 50 - Item: Professor_Card - Rate: 13 - - Index: 51 - Item: Champion_Card - Rate: 13 - - Index: 52 - Item: Creator_Card - Rate: 13 - - Index: 53 - Item: Stalker_Card - Rate: 13 - - Index: 54 + Announced: true + - Index: 6 + Item: Gloom_Under_Night_Card + Rate: 1 + Announced: true + - Index: 7 + Item: B_Harword_Card + Rate: 12 + Announced: true + - Index: 8 + Item: B_Eremes_Card + Rate: 12 + Announced: true + - Index: 9 + Item: B_Katrinn_Card + Rate: 12 + Announced: true + - Index: 10 + Item: B_Magaleta_Card + Rate: 12 + Announced: true + - Index: 11 + Item: B_Shecil_Card + Rate: 12 + Announced: true + - Index: 12 + Item: Dracula_Card + Rate: 12 + Announced: true + - Index: 13 Item: Paladin_Card - Rate: 13 - - Index: 55 + Rate: 12 + Announced: true + - Index: 14 + Item: Creator_Card + Rate: 12 + Announced: true + - Index: 15 Item: Gypsy_Card - Rate: 13 - - Index: 56 - Item: Daehyon_Card - Rate: 90 - - Index: 57 - Item: Gioia_Card - Rate: 42 - - Index: 58 - Item: Pyuriel_Card - Rate: 90 - - Index: 59 + Rate: 12 + Announced: true + - Index: 16 + Item: Champion_Card + Rate: 12 + Announced: true + - Index: 17 + Item: Clown_Card + Rate: 12 + Announced: true + - Index: 18 + Item: Stalker_Card + Rate: 12 + Announced: true + - Index: 19 + Item: Professor_Card + Rate: 12 + Announced: true + - Index: 20 + Item: Eddga_Card + Rate: 40 + Announced: true + - Index: 21 + Item: Maya_Card + Rate: 40 + Announced: true + - Index: 22 Item: Kades_Card - Rate: 42 - - Index: 60 + Rate: 40 + Announced: true + - Index: 23 + Item: Gioia_Card + Rate: 40 + Announced: true + - Index: 24 + Item: Incant_Samurai_Card + Rate: 40 + Announced: true + - Index: 25 + Item: Mistress_Card + Rate: 40 + Announced: true + - Index: 26 + Item: Randgris_Card + Rate: 40 + Announced: true + - Index: 27 + Item: Berzebub_Card + Rate: 40 + Announced: true + - Index: 28 + Item: Lord_Of_Death_Card + Rate: 40 + Announced: true + - Index: 29 + Item: Rsx_0806_Card + Rate: 40 + Announced: true + - Index: 30 Item: Timeholder_Card - Rate: 90 + Rate: 80 + Announced: true + - Index: 31 + Item: Mechaspider_Card + Rate: 80 + Announced: true + - Index: 32 + Item: Daehyon_Card + Rate: 80 + Announced: true + - Index: 33 + Item: Amon_Ra_Card + Rate: 80 + Announced: true + - Index: 34 + Item: Baphomet_Card + Rate: 80 + Announced: true + - Index: 35 + Item: Dark_Lord_Card + Rate: 80 + Announced: true + - Index: 36 + Item: Drake_Card + Rate: 80 + Announced: true + - Index: 37 + Item: Nahtzigger_Card + Rate: 80 + Announced: true + - Index: 38 + Item: Evil_Card + Rate: 80 + Announced: true + - Index: 39 + Item: Cutie_Card + Rate: 80 + Announced: true + - Index: 40 + Item: Venom_Kimera_Card + Rate: 80 + Announced: true + - Index: 41 + Item: Gopinich_Card + Rate: 80 + Announced: true + - Index: 42 + Item: Leak_Card + Rate: 80 + Announced: true + - Index: 43 + Item: Pyuriel_Card + Rate: 80 + Announced: true + - Index: 44 + Item: Doppelganger_Card + Rate: 315 + Announced: true + - Index: 45 + Item: Garm_Card + Rate: 315 + Announced: true + - Index: 46 + Item: Knight_Windstorm_Card + Rate: 315 + Announced: true + - Index: 47 + Item: Moonlight_Flower_Card + Rate: 315 + Announced: true + - Index: 48 + Item: Orc_Load_Card + Rate: 315 + Announced: true + - Index: 49 + Item: Orc_Hero_Card + Rate: 315 + Announced: true + - Index: 50 + Item: Osiris_Card + Rate: 315 + Announced: true + - Index: 51 + Item: Pharaoh_Card + Rate: 315 + Announced: true + - Index: 52 + Item: Phreeoni_Card + Rate: 315 + Announced: true + - Index: 53 + Item: Turtle_General_Card + Rate: 315 + Announced: true + - Index: 54 + Item: Ant_Buyanne_Card + Rate: 315 + Announced: true + - Index: 55 + Item: Detale_Card + Rate: 315 + Announced: true + - Index: 56 + Item: Apocalips_H_Card + Rate: 315 + Announced: true + - Index: 57 + Item: B_Ygnizem_Card + Rate: 315 + Announced: true + - Index: 58 + Item: Atroce_Card + Rate: 315 + Announced: true + - Index: 59 + Item: Ifrit_Card + Rate: 315 + Announced: true + - Index: 60 + Item: Ktullanux_Card + Rate: 315 + Announced: true - Index: 61 Item: Charleston_Card - Rate: 340 + Rate: 315 + Announced: true - Index: 62 Item: Grand_Pere_Card - Rate: 340 + Rate: 315 + Announced: true - Index: 63 - Item: Venom_Kimera_Card - Rate: 90 + Item: Nidhogg_Shadow_Card + Rate: 315 + Announced: true - Index: 64 - Item: Evil_Card - Rate: 90 + Item: Q_Scaraba_Card + Rate: 315 + Announced: true - Index: 65 - Item: Cutie_Card - Rate: 90 + Item: Kraken_Card + Rate: 315 + Announced: true - Index: 66 - Item: Gopinich_Card - Rate: 90 + Item: Dark_Snake_Lord_Card + Rate: 315 + Announced: true - Index: 67 - Item: Mechaspider_Card - Rate: 90 + Item: Lady_Tanee_Card + Rate: 315 + Announced: true + - Index: 68 + Item: Bone_Detale_Card + Rate: 1 + - Index: 69 + Item: Ingrid_Card + Rate: 15 + - Index: 70 + Item: Reginleif_Card + Rate: 15 + - Index: 71 + Item: Redpepper_H_Card + Rate: 1 + - Index: 72 + Item: Gran_Papilia_Card + Rate: 1 + - Index: 73 + Item: C_Amdarais_Card + Rate: 1 + - Index: 74 + Item: C_Himel_Card + Rate: 1 + - Index: 75 + Item: Death_Witch_Card + Rate: 10 + - Index: 76 + Item: ILL_Abysmal_Witch_Card + Rate: 2 + - Index: 77 + Item: Sakray_Card + Rate: 4 + - Index: 78 + Item: Tiara_Card + Rate: 4 + - Index: 79 + Item: MD_Airboat_Card7 + Rate: 315 + - Index: 80 + Item: EP18_Burning_Fang_Card + Rate: 1 + - Index: 81 + Item: EP18_Demi_Freyja_Card + Rate: 3 + - Index: 82 + Item: EP18_Schulang_Card + Rate: 3 + - Index: 83 + Item: Ultra_Limacina_Card + Rate: 1 + - Index: 84 + Item: Limacina_Card + Rate: 125 + - Index: 85 + Item: Shining_Seaweed_Card + Rate: 125 + - Index: 86 + Item: Aquila_Card + Rate: 125 + - Index: 87 + Item: Simulation_Juncea_Card + Rate: 4 - Group: LUNAR_NEW_YEAR_SCROLL SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Lunar_New_Year_Scroll - Rate: 5000 + Item: Weapon_11Up_Box + Rate: 1 + Announced: true - Index: 1 - Item: Lunar_New_Year_Scroll - Rate: 5000 - - SubGroup: 2 - List: - - Index: 0 - Item: Crystal_Jewel__ - Rate: 1000 - - Index: 1 - Item: Comp_Kafra_Card_Box - Rate: 800 + Item: Armor_11Up_Box + Rate: 1 + Announced: true - Index: 2 - Item: Narcis_Bow - Rate: 100 + Item: Weapon_9Up_Box + Rate: 9 + Announced: true - Index: 3 - Item: Ancient_Hero_Boots - Rate: 100 + Item: Armor_9Up_Box + Rate: 9 + Announced: true - Index: 4 Item: Weapon_7Up_Box Rate: 15 + Announced: true - Index: 5 - Item: Weapon_9Up_Box - Rate: 9 - - Index: 6 - Item: Weapon_11Up_Box - Rate: 1 - - Index: 7 Item: Armor_7Up_Box Rate: 15 + Announced: true + - Index: 6 + Item: New_Hat_Box + Rate: 50 + Announced: true + - Index: 7 + Item: New_Hat_Box2 + Rate: 50 + Announced: true - Index: 8 - Item: Armor_9Up_Box - Rate: 9 + Item: New_Hat_Box3 + Rate: 50 + Announced: true - Index: 9 - Item: Armor_11Up_Box - Rate: 1 - - Index: 10 - Item: Comp_Trans_Scroll - Rate: 600 - - Index: 11 - Item: Minus_Status_Box - Rate: 800 - - Index: 12 - Item: Lunar_New_Year_Scroll - Rate: 50 - - Index: 13 - Item: Class_Shadow_Cube - Rate: 1000 - - Index: 14 - Item: Lunar_New_Year_Scroll - Rate: 50 - - Index: 15 - Item: Lunar_New_Year_Scroll - Rate: 1000 - - Index: 16 - Item: Lunar_New_Year_Scroll - Rate: 1000 - - Index: 17 - Item: Lunar_New_Year_Scroll - Rate: 1000 - - Index: 18 - Item: Lunar_New_Year_Scroll - Rate: 50 - - Index: 19 - Item: Lunar_New_Year_Scroll - Rate: 1000 - - Index: 20 - Item: Fire_Armor_S - Rate: 300 - - Index: 21 - Item: Cold_Armor_S - Rate: 300 - - Index: 22 - Item: Wind_Armor_S - Rate: 300 - - Index: 23 - Item: Earth_Armor_S - Rate: 300 - - Index: 24 - Item: Avenger + Item: Narcis_Bow Rate: 100 - - Index: 25 + Announced: true + - Index: 10 Item: Magic_Sword Rate: 100 + Announced: true + - Index: 11 + Item: Avenger + Rate: 100 + Announced: true + - Index: 12 + Item: Ancient_Hero_Boots + Rate: 100 + Announced: true + - Index: 13 + Item: Comp_Kafra_Card_Box + Rate: 800 + - Index: 14 + Item: Minus_Status_Box + Rate: 800 + - Index: 15 + Item: Fire_Armor_S + Rate: 300 + Amount: 5 + - Index: 16 + Item: Cold_Armor_S + Rate: 300 + Amount: 5 + - Index: 17 + Item: Wind_Armor_S + Rate: 300 + Amount: 5 + - Index: 18 + Item: Earth_Armor_S + Rate: 300 + Amount: 5 + - Index: 19 + Item: Comp_Trans_Scroll + Rate: 600 + - Index: 20 + Item: Biscuit_Stick_2Set_ + Rate: 1000 + - Index: 21 + Item: C_Giant_Fly_1Day_Box_ + Rate: 1000 + - Index: 22 + Item: Mysterious_Medal_Box + Rate: 1000 + - Index: 23 + Item: Chemicals_Bag + Rate: 1000 + - Index: 24 + Item: Class_Shadow_Cube + Rate: 1000 + - Index: 25 + Item: Crystal_Jewel__ + Rate: 1000 + Amount: 10 - Group: FEBRUARY_HAIR_BOX SubGroups: - SubGroup: 0 @@ -57854,303 +62128,338 @@ Body: - SubGroup: 1 List: - Index: 0 - Item: C_Afro_Wig_Red - Rate: 2500 - - Index: 1 - Item: C_Red_Strong_Hair - Rate: 2500 - - Index: 2 Item: C_Volume_Low_TwinK - Rate: 2500 + Rate: 10 + - Index: 1 + Item: C_Afro_Wig_Red + Rate: 10 + - Index: 2 + Item: C_Red_Strong_Hair + Rate: 10 - Index: 3 Item: C_Lolita_Two_Side_UpK - Rate: 2500 + Rate: 10 - Group: 2018_SPRING_SCROLL SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Engineer_Cap - Rate: 1667 + Item: Weapon_11Up_Box + Rate: 1 + Announced: true - Index: 1 - Item: 2018_Spring_Scroll - Rate: 8333 - - SubGroup: 2 - List: - - Index: 0 - Item: Crystal_Jewel__ - Rate: 1000 - - Index: 1 - Item: New_Insurance - Rate: 920 + Item: Armor_11Up_Box + Rate: 1 + Announced: true - Index: 2 - Item: Blacksmith_Blessing - Rate: 800 + Item: Weapon_9Up_Box + Rate: 9 + Announced: true - Index: 3 - Item: Overwhelm_Luk_Armor - Rate: 100 + Item: Armor_9Up_Box + Rate: 9 + Announced: true - Index: 4 - Item: Overwhelm_Vit_Armor - Rate: 100 + Item: Weapon_7Up_Box + Rate: 15 + Announced: true - Index: 5 - Item: Engineer_Cap_K - Rate: 200 + Item: Armor_7Up_Box + Rate: 15 + Announced: true - Index: 6 Item: Sealed_Card Rate: 10 + Announced: true - Index: 7 - Item: Weapon_7Up_Box - Rate: 15 + Item: ExShadow_DdukddakBox + Rate: 20 + Announced: true - Index: 8 - Item: Weapon_9Up_Box - Rate: 9 + Item: Overwhelm_Luk_Armor + Rate: 100 + Announced: true - Index: 9 - Item: Weapon_11Up_Box - Rate: 1 + Item: Overwhelm_Vit_Armor + Rate: 100 + Announced: true - Index: 10 - Item: Armor_7Up_Box - Rate: 15 + Item: Engineer_Cap_K + Rate: 200 + Announced: true - Index: 11 - Item: Armor_9Up_Box - Rate: 9 + Item: Blacksmith_Blessing + Rate: 800 - Index: 12 - Item: Armor_11Up_Box - Rate: 1 + Item: Shadow_Refine_Hammer + Rate: 200 - Index: 13 + Item: Advanced_Taiming_Item + Rate: 500 + - Index: 14 Item: Shadow_Cube_Weapon Rate: 300 - - Index: 14 - Item: Shadow_Cube_Armor - Rate: 300 - Index: 15 - Item: Shadow_Cube_Shield + Item: Shadow_Cube_Armor Rate: 300 - Index: 16 Item: Shadow_Cube_Shoes Rate: 300 - Index: 17 - Item: Shadow_Cube_Pendant + Item: Shadow_Cube_Shield Rate: 300 - Index: 18 - Item: Shadow_Cube_Earing + Item: Shadow_Cube_Pendant Rate: 300 - Index: 19 - Item: Class_Shadow_Cube - Rate: 1000 + Item: Shadow_Cube_Earing + Rate: 300 - Index: 20 - Item: Advanced_Taiming_Item - Rate: 500 + Item: Material_Shadow_Cube + Rate: 300 - Index: 21 - Item: 2018_Spring_Scroll - Rate: 1000 + Item: New_Insurance + Rate: 920 - Index: 22 - Item: 2018_Spring_Scroll + Item: C_Giant_Fly_1Day_Box_ Rate: 1000 - Index: 23 - Item: 2018_Spring_Scroll - Rate: 20 + Item: Mysterious_Medal_Box + Rate: 1000 - Index: 24 - Item: 2018_Spring_Scroll - Rate: 300 + Item: Chemicals_Bag + Rate: 1000 - Index: 25 - Item: 2018_Spring_Scroll + Item: Class_Shadow_Cube Rate: 1000 - Index: 26 - Item: Shadow_Refine_Hammer - Rate: 200 + Item: Crystal_Jewel__ + Rate: 1000 + Amount: 10 - Group: 2018_SAKURA_SCROLL SubGroups: - SubGroup: 1 List: - Index: 0 - Item: 2018_Sakura_Scroll - Rate: 9524 - - Index: 1 - Item: General_Helmet - Rate: 476 - - SubGroup: 2 - List: - - Index: 0 - Item: Crystal_Jewel__ - Rate: 1000 - - Index: 1 - Item: New_Insurance - Rate: 690 - - Index: 2 - Item: Blacksmith_Blessing - Rate: 800 - - Index: 3 - Item: Overwhelm_Agi_Armor - Rate: 100 - - Index: 4 - Item: Overwhelm_Dex_Armor - Rate: 100 - - Index: 5 - Item: Spell_Circuit - Rate: 50 - - Index: 6 - Item: General_Helmet_ - Rate: 50 - - Index: 7 - Item: Classical_Fhat - Rate: 50 - - Index: 8 - Item: Dog_Officer - Rate: 50 - - Index: 9 - Item: Amistr_Beret - Rate: 50 - - Index: 10 - Item: Weapon_7Up_Box - Rate: 15 - - Index: 11 - Item: Weapon_9Up_Box - Rate: 9 - - Index: 12 Item: Weapon_11Up_Box Rate: 1 - - Index: 13 - Item: Armor_7Up_Box - Rate: 15 - - Index: 14 - Item: Armor_9Up_Box - Rate: 9 - - Index: 15 + Announced: true + - Index: 1 Item: Armor_11Up_Box Rate: 1 - - Index: 16 - Item: Shadow_Cube_Weapon - Rate: 200 - - Index: 17 - Item: Shadow_Cube_Armor - Rate: 200 - - Index: 18 - Item: Shadow_Cube_Shield - Rate: 200 - - Index: 19 - Item: Shadow_Cube_Shoes - Rate: 200 - - Index: 20 - Item: Shadow_Cube_Pendant - Rate: 200 - - Index: 21 - Item: Shadow_Cube_Earing - Rate: 200 - - Index: 22 - Item: Class_Shadow_Cube - Rate: 1000 - - Index: 23 - Item: JobShadow_Mix_Weapon - Rate: 150 - - Index: 24 - Item: JobShadow_Mix_Armor - Rate: 150 - - Index: 25 - Item: JobShadow_Mix_Shoes - Rate: 150 - - Index: 26 - Item: JobShadow_Mix_Shield - Rate: 150 - - Index: 27 - Item: JobShadow_Mix_Pendant - Rate: 150 - - Index: 28 - Item: JobShadow_Mix_Earing - Rate: 150 - - Index: 29 - Item: 2018_Sakura_Scroll - Rate: 1000 - - Index: 30 - Item: 2018_Sakura_Scroll - Rate: 1000 - - Index: 31 - Item: 2018_Sakura_Scroll - Rate: 1000 - - Index: 32 - Item: Shadow_Refine_Hammer - Rate: 400 - - Index: 33 - Item: 2018_Sakura_Scroll + Announced: true + - Index: 2 + Item: Weapon_9Up_Box + Rate: 9 + Announced: true + - Index: 3 + Item: Armor_9Up_Box + Rate: 9 + Announced: true + - Index: 4 + Item: Weapon_7Up_Box + Rate: 15 + Announced: true + - Index: 5 + Item: Armor_7Up_Box + Rate: 15 + Announced: true + - Index: 6 + Item: Sealed_Card2 Rate: 10 - - Index: 34 + Announced: true + - Index: 7 + Item: Overwhelm_Agi_Armor + Rate: 100 + Announced: true + - Index: 8 + Item: Overwhelm_Dex_Armor + Rate: 100 + Announced: true + - Index: 9 + Item: Dog_Officer + Rate: 50 + Announced: true + - Index: 10 + Item: Spell_Circuit + Rate: 50 + Announced: true + - Index: 11 + Item: General_Helmet_ + Rate: 50 + Announced: true + - Index: 12 + Item: Classical_Fhat + Rate: 50 + Announced: true + - Index: 13 + Item: Amistr_Beret + Rate: 50 + Announced: true + - Index: 14 Item: Shadow_Random_Mix Rate: 500 + - Index: 15 + Item: JobShadow_Mix_Weapon + Rate: 150 + - Index: 16 + Item: JobShadow_Mix_Armor + Rate: 150 + - Index: 17 + Item: JobShadow_Mix_Shoes + Rate: 150 + - Index: 18 + Item: JobShadow_Mix_Shield + Rate: 150 + - Index: 19 + Item: JobShadow_Mix_Pendant + Rate: 150 + - Index: 20 + Item: JobShadow_Mix_Earing + Rate: 150 + - Index: 21 + Item: Blacksmith_Blessing + Rate: 800 + - Index: 22 + Item: Shadow_Refine_Hammer + Rate: 400 + - Index: 23 + Item: Shadow_Cube_Weapon + Rate: 200 + - Index: 24 + Item: Shadow_Cube_Armor + Rate: 200 + - Index: 25 + Item: Shadow_Cube_Shoes + Rate: 200 + - Index: 26 + Item: Shadow_Cube_Shield + Rate: 200 + - Index: 27 + Item: Shadow_Cube_Pendant + Rate: 200 + - Index: 28 + Item: Shadow_Cube_Earing + Rate: 200 + - Index: 29 + Item: New_Insurance + Rate: 690 + - Index: 30 + Item: C_Giant_Fly_1Day_Box_ + Rate: 1000 + - Index: 31 + Item: Mysterious_Medal_Box + Rate: 1000 + - Index: 32 + Item: Chemicals_Bag + Rate: 1000 + - Index: 33 + Item: Class_Shadow_Cube + Rate: 1000 + - Index: 34 + Item: Crystal_Jewel__ + Rate: 1000 + Amount: 10 - Group: SEALED_CARD2 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Sealed_Ktullanux_Card - Rate: 417 - - Index: 1 - Item: Sealed_Mistress_Card - Rate: 417 - - Index: 2 Item: Sealed_Orc_Hero_Card - Rate: 417 - - Index: 3 + Rate: 10 + Announced: true + - Index: 1 Item: Sealed_Lady_Tanee_Card - Rate: 417 - - Index: 4 + Rate: 10 + Announced: true + - Index: 2 Item: Sealed_Samurai_Card - Rate: 417 - - Index: 5 + Rate: 10 + Announced: true + - Index: 3 Item: Sealed_Orc_Load_Card - Rate: 417 - - Index: 6 + Rate: 10 + Announced: true + - Index: 4 Item: Sealed_B_Magaleta_Card - Rate: 417 - - Index: 7 + Rate: 10 + Announced: true + - Index: 5 Item: Sealed_B_Harword_Card - Rate: 417 - - Index: 8 + Rate: 10 + Announced: true + - Index: 6 Item: Sealed_Eddga_Card - Rate: 417 + Rate: 10 + Announced: true + - Index: 7 + Item: Sealed_Ktullanux_Card + Rate: 10 + Announced: true + - Index: 8 + Item: Sealed_Mistress_Card + Rate: 10 + Announced: true - Index: 9 Item: SLD_Q_Scaraba_Card - Rate: 417 + Rate: 10 + Announced: true - Index: 10 Item: SLD_Baphomet_Card - Rate: 417 + Rate: 10 + Announced: true - Index: 11 Item: SLD_Maya_Card - Rate: 417 + Rate: 10 + Announced: true - Index: 12 Item: SLD_Clown_Card - Rate: 417 + Rate: 10 + Announced: true - Index: 13 Item: SLD_Professor_Card - Rate: 417 + Rate: 10 + Announced: true - Index: 14 Item: SLD_Champion_Card - Rate: 417 + Rate: 10 + Announced: true - Index: 15 Item: SLD_Creator_Card - Rate: 417 + Rate: 10 + Announced: true - Index: 16 Item: SLD_Stalker_Card - Rate: 417 + Rate: 10 + Announced: true - Index: 17 Item: SLD_Paladin_Card - Rate: 417 + Rate: 10 + Announced: true - Index: 18 Item: SLD_Gypsy_Card - Rate: 417 + Rate: 10 + Announced: true - Index: 19 Item: SLD_Daehyon_Card - Rate: 417 + Rate: 10 + Announced: true - Index: 20 Item: SLD_Gioia_Card - Rate: 417 + Rate: 10 + Announced: true - Index: 21 Item: SLD_Pyuriel_Card - Rate: 417 + Rate: 10 + Announced: true - Index: 22 Item: SLD_Kades_Card - Rate: 417 + Rate: 10 + Announced: true - Index: 23 Item: SLD_Timeholder_Card - Rate: 417 + Rate: 10 + Announced: true - Group: CELEBRATE_EGG SubGroups: - SubGroup: 1 @@ -58158,174 +62467,177 @@ Body: - Index: 0 Item: Guarantee_Weapon_7Up Rate: 1 + Announced: true - Index: 1 Item: Guarantee_Armor_7Up Rate: 1 + Announced: true - Index: 2 - Item: E_Token_Of_Siegfried - Rate: 50 + Item: Comp_Auger_Of_Spirit + Rate: 3 + Announced: true - Index: 3 - Item: Blue_Potion_B - Rate: 715 - Amount: 5 - - Index: 4 - Item: White_Slim_Potion_B - Rate: 715 - Amount: 5 - - Index: 5 - Item: Yellow_Slim_Potion_B - Rate: 715 - Amount: 5 - - Index: 6 - Item: Sesame_Pastry - Rate: 700 - Amount: 2 - - Index: 7 - Item: Honey_Pastry - Rate: 700 - Amount: 2 - - Index: 8 - Item: Rainbow_Cake - Rate: 700 - Amount: 2 - - Index: 9 - Item: Lucky_Rice_Cake - Rate: 700 - Amount: 2 - - Index: 10 - Item: Comp_Battle_Manual - Rate: 100 - - Index: 11 - Item: Comp_Bubble_Gum - Rate: 100 - - Index: 12 - Item: E_WOB_Rune - Rate: 550 - - Index: 13 - Item: E_WOB_Schwaltz - Rate: 550 - - Index: 14 - Item: E_WOB_Rachel - Rate: 550 - - Index: 15 - Item: E_WOB_Local - Rate: 550 - - Index: 16 - Item: E_Abrasive - Rate: 100 - - Index: 17 - Item: E_Med_Life_Potion - Rate: 50 - Amount: 3 - - Index: 18 - Item: E_Small_Life_Potion - Rate: 50 - Amount: 3 - - Index: 19 - Item: E_Blessing_10_Scroll - Rate: 100 - Amount: 3 - - Index: 20 - Item: E_Inc_Agi_10_Scroll - Rate: 100 - Amount: 3 - - Index: 21 - Item: Reward_Job_BM25 - Rate: 100 - - Index: 22 - Item: BraisedShortRibs - Rate: 550 - Amount: 2 - - Index: 23 - Item: BraisedSpareribs - Rate: 550 - Amount: 2 - - Index: 24 - Item: G_Mysterious_Water - Rate: 50 - - Index: 25 - Item: G_Almighty - Rate: 50 - - Index: 26 - Item: G_ASPD_Potion - Rate: 100 - - Index: 27 - Item: G_Red_Booster - Rate: 100 - - Index: 28 - Item: Comp_Small_Mana_Potion - Rate: 50 - - Index: 29 - Item: Comp_Tyr's_Blessing - Rate: 100 - - Index: 30 - Item: Comp_Regenerate_Potion - Rate: 100 - - Index: 31 - Item: Comp_Spark_Candy - Rate: 100 - - Index: 32 - Item: Comp_Magic_Candy - Rate: 100 - - Index: 33 - Item: Comp_Glass_Of_Illusion - Rate: 100 - - Index: 34 Item: Comp_M_DEFScroll Rate: 50 Amount: 2 - - Index: 35 + - Index: 4 + Item: G_Almighty + Rate: 50 + - Index: 5 + Item: Comp_Small_Mana_Potion + Rate: 50 + - Index: 6 + Item: E_Med_Life_Potion + Rate: 50 + Amount: 3 + - Index: 7 + Item: E_Small_Life_Potion + Rate: 50 + Amount: 3 + - Index: 8 + Item: G_Mysterious_Water + Rate: 50 + - Index: 9 + Item: E_Token_Of_Siegfried + Rate: 50 + - Index: 10 + Item: Comp_Bubble_Gum + Rate: 100 + - Index: 11 + Item: Comp_Battle_Manual + Rate: 100 + - Index: 12 + Item: Reward_Job_BM25 + Rate: 100 + - Index: 13 + Item: Comp_Regenerate_Potion + Rate: 100 + - Index: 14 + Item: E_Abrasive + Rate: 100 + - Index: 15 + Item: G_Red_Booster + Rate: 100 + - Index: 16 + Item: G_ASPD_Potion + Rate: 100 + - Index: 17 + Item: Comp_Spark_Candy + Rate: 100 + - Index: 18 + Item: Comp_Magic_Candy + Rate: 100 + - Index: 19 + Item: Comp_Tyr's_Blessing + Rate: 100 + - Index: 20 + Item: Comp_Glass_Of_Illusion + Rate: 100 + - Index: 21 + Item: E_Blessing_10_Scroll + Rate: 100 + Amount: 3 + - Index: 22 + Item: E_Inc_Agi_10_Scroll + Rate: 100 + Amount: 3 + - Index: 23 Item: Comp_Megaphone Rate: 100 + - Index: 24 + Item: BraisedSpareribs + Rate: 550 + Amount: 2 + - Index: 25 + Item: BraisedShortRibs + Rate: 550 + Amount: 2 + - Index: 26 + Item: E_WOB_Rune + Rate: 550 + - Index: 27 + Item: E_WOB_Schwaltz + Rate: 550 + - Index: 28 + Item: E_WOB_Rachel + Rate: 550 + - Index: 29 + Item: E_WOB_Local + Rate: 550 + - Index: 30 + Item: Sesame_Pastry + Rate: 700 + Amount: 2 + - Index: 31 + Item: Rainbow_Cake + Rate: 700 + Amount: 2 + - Index: 32 + Item: Lucky_Rice_Cake + Rate: 700 + Amount: 2 + - Index: 33 + Item: Honey_Pastry + Rate: 700 + Amount: 2 + - Index: 34 + Item: White_Slim_Potion_B + Rate: 715 + Amount: 5 + - Index: 35 + Item: Blue_Potion_B + Rate: 715 + Amount: 5 - Index: 36 - Item: Comp_Auger_Of_Spirit - Rate: 3 + Item: Yellow_Slim_Potion_B + Rate: 715 + Amount: 5 - Group: NOODLE_FESTA_CAN SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Ice_Cream - Rate: 2100 - - Index: 1 - Item: Festival_Noodle - Rate: 1750 - - Index: 2 Item: Magic_Card_Album Rate: 20 - - Index: 3 - Item: Supper_Swimsuit_K - Rate: 100 - - Index: 4 + - Index: 1 Item: Scuba_Mask_K Rate: 100 - - Index: 5 - Item: C_Iceflake_Hat - Rate: 300 - - Index: 6 + - Index: 2 + Item: Supper_Swimsuit_K + Rate: 100 + - Index: 3 Item: Oxygen_Bomb_K Rate: 100 - - Index: 7 - Item: Pig_Potato - Rate: 1830 - - Index: 8 - Item: K_Secret_Key - Rate: 50 - - Index: 9 - Item: Noodle_Festa_Coupon - Rate: 2300 - - Index: 10 - Item: C_Gelato_Hat - Rate: 300 - - Index: 11 - Item: C_Sailor_Hat - Rate: 300 - - Index: 12 + - Index: 4 Item: C_Starfish_Headband Rate: 300 - - Index: 13 + - Index: 5 + Item: C_Sailor_Hat + Rate: 300 + - Index: 6 Item: C_Forceps_Hairpin Rate: 300 + - Index: 7 + Item: C_Iceflake_Hat + Rate: 300 + - Index: 8 + Item: C_Gelato_Hat + Rate: 300 + - Index: 9 + Item: Pig_Potato + Rate: 1830 + - Index: 10 + Item: Festival_Noodle + Rate: 1750 + - Index: 11 + Item: Noodle_Festa_Coupon + Rate: 2300 + - Index: 12 + Item: Ice_Cream + Rate: 2100 + - Index: 13 + Item: K_Secret_Key + Rate: 50 - Index: 14 Item: C_Slurp_Slurp_Hat Rate: 150 @@ -58340,658 +62652,801 @@ Body: - SubGroup: 0 List: - Index: 0 - Item: Premium_Reset_Stone - - Index: 1 Item: Service30P_F_01_Call + Duration: 43200 + - Index: 1 + Item: Premium_Reset_Stone - Group: COMP_ALL_RING_BOX SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Spectacles - - Index: 1 Item: Comp_All_In_One_Ring + Duration: 43200 + - Index: 1 + Item: Spectacles - Group: MYSTERIOUS_EGG3 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Mysterious_Egg3 - Rate: 278 - - Index: 1 - Item: Mysterious_Egg3 - Rate: 278 - - Index: 2 Item: 2015_New_Year_Scroll - Rate: 278 - - Index: 3 + Rate: 1 + - Index: 1 Item: Sealed_Scroll2 - Rate: 278 + Rate: 1 + - Index: 2 + Item: Sealed_Scroll3 + Rate: 1 + - Index: 3 + Item: Status_Decrease_Scroll + Rate: 1 - Index: 4 - Item: Mysterious_Egg3 - Rate: 278 + Item: Mad_Bunny_Scroll + Rate: 1 - Index: 5 - Item: Mysterious_Egg3 - Rate: 278 + Item: Pump_Of_Spirit_Scroll + Rate: 1 - Index: 6 - Item: Mysterious_Egg3 - Rate: 278 + Item: Happy_Balloon_Scroll + Rate: 1 - Index: 7 - Item: Mysterious_Egg3 - Rate: 278 + Item: Piamette_Scroll + Rate: 1 - Index: 8 - Item: Mysterious_Egg3 - Rate: 278 + Item: Invisible_Scroll + Rate: 1 - Index: 9 - Item: Mysterious_Egg3 - Rate: 278 + Item: New_Hat_Scroll + Rate: 1 - Index: 10 - Item: Mysterious_Egg3 - Rate: 278 + Item: 2015_Special_Scroll + Rate: 1 - Index: 11 - Item: Mysterious_Egg3 - Rate: 278 + Item: 2015_Angel_Scroll + Rate: 1 - Index: 12 - Item: Mysterious_Egg3 - Rate: 278 + Item: Poring_Scroll + Rate: 1 - Index: 13 - Item: Mysterious_Egg3 - Rate: 278 + Item: Amistr_Scroll + Rate: 1 - Index: 14 - Item: Mysterious_Egg3 - Rate: 278 + Item: Shadow_Scroll + Rate: 1 - Index: 15 - Item: Mysterious_Egg3 - Rate: 278 + Item: Spirit_Scroll + Rate: 1 - Index: 16 - Item: Mysterious_Egg3 - Rate: 278 + Item: Balloon_Scroll + Rate: 1 - Index: 17 - Item: Mysterious_Egg3 - Rate: 278 + Item: Gunslinger_Scroll + Rate: 1 - Index: 18 - Item: Mysterious_Egg3 - Rate: 278 + Item: Green_Scroll_K + Rate: 1 - Index: 19 - Item: Mysterious_Egg3 - Rate: 278 + Item: Kafra_Scroll + Rate: 1 - Index: 20 - Item: Mysterious_Egg3 - Rate: 278 + Item: Sigrun_Scroll + Rate: 1 - Index: 21 - Item: Mysterious_Egg3 - Rate: 278 + Item: New_Hat_Scroll2 + Rate: 1 - Index: 22 - Item: Mysterious_Egg3 - Rate: 278 + Item: 2016_Special_Scroll + Rate: 1 - Index: 23 - Item: Mysterious_Egg3 - Rate: 278 + Item: Candlelight_Scroll + Rate: 1 - Index: 24 - Item: Mysterious_Egg3 - Rate: 278 + Item: Lapine_Scroll + Rate: 1 - Index: 25 - Item: Mysterious_Egg3 - Rate: 278 + Item: Love_Scroll + Rate: 1 - Index: 26 - Item: Mysterious_Egg3 - Rate: 278 + Item: Cat_Scroll + Rate: 1 - Index: 27 - Item: Mysterious_Egg3 - Rate: 278 + Item: Shadow_Scroll2 + Rate: 1 - Index: 28 - Item: Mysterious_Egg3 - Rate: 278 + Item: May_Gold_Scroll + Rate: 1 - Index: 29 - Item: Mysterious_Egg3 - Rate: 278 + Item: General_Scroll + Rate: 1 - Index: 30 - Item: Mysterious_Egg3 - Rate: 278 + Item: Green_Scroll_K2 + Rate: 1 - Index: 31 - Item: Mysterious_Egg3 - Rate: 278 + Item: Sentimental_Scroll + Rate: 1 - Index: 32 - Item: Mysterious_Egg3 - Rate: 278 + Item: Infinity_Scroll + Rate: 1 - Index: 33 - Item: Mysterious_Egg3 - Rate: 278 + Item: Bloody_Scroll + Rate: 1 - Index: 34 - Item: Mysterious_Egg3 - Rate: 278 + Item: 2017_Special_Scroll + Rate: 1 - Index: 35 - Item: Mysterious_Egg3 - Rate: 278 + Item: Ice_Scroll + Rate: 1 + - SubGroup: 2 + List: + - Index: 0 + Item: 2015_New_Year_Scroll + Rate: 1 + - Index: 1 + Item: Sealed_Scroll2 + Rate: 1 + - Index: 2 + Item: Sealed_Scroll3 + Rate: 1 + - Index: 3 + Item: Status_Decrease_Scroll + Rate: 1 + - Index: 4 + Item: Mad_Bunny_Scroll + Rate: 1 + - Index: 5 + Item: Pump_Of_Spirit_Scroll + Rate: 1 + - Index: 6 + Item: Happy_Balloon_Scroll + Rate: 1 + - Index: 7 + Item: Piamette_Scroll + Rate: 1 + - Index: 8 + Item: Invisible_Scroll + Rate: 1 + - Index: 9 + Item: New_Hat_Scroll + Rate: 1 + - Index: 10 + Item: 2015_Special_Scroll + Rate: 1 + - Index: 11 + Item: 2015_Angel_Scroll + Rate: 1 + - Index: 12 + Item: Poring_Scroll + Rate: 1 + - Index: 13 + Item: Amistr_Scroll + Rate: 1 + - Index: 14 + Item: Shadow_Scroll + Rate: 1 + - Index: 15 + Item: Spirit_Scroll + Rate: 1 + - Index: 16 + Item: Balloon_Scroll + Rate: 1 + - Index: 17 + Item: Gunslinger_Scroll + Rate: 1 + - Index: 18 + Item: Green_Scroll_K + Rate: 1 + - Index: 19 + Item: Kafra_Scroll + Rate: 1 + - Index: 20 + Item: Sigrun_Scroll + Rate: 1 + - Index: 21 + Item: New_Hat_Scroll2 + Rate: 1 + - Index: 22 + Item: 2016_Special_Scroll + Rate: 1 + - Index: 23 + Item: Candlelight_Scroll + Rate: 1 + - Index: 24 + Item: Lapine_Scroll + Rate: 1 + - Index: 25 + Item: Love_Scroll + Rate: 1 + - Index: 26 + Item: Cat_Scroll + Rate: 1 + - Index: 27 + Item: Shadow_Scroll2 + Rate: 1 + - Index: 28 + Item: May_Gold_Scroll + Rate: 1 + - Index: 29 + Item: General_Scroll + Rate: 1 + - Index: 30 + Item: Green_Scroll_K2 + Rate: 1 + - Index: 31 + Item: Sentimental_Scroll + Rate: 1 + - Index: 32 + Item: Infinity_Scroll + Rate: 1 + - Index: 33 + Item: Bloody_Scroll + Rate: 1 + - Index: 34 + Item: 2017_Special_Scroll + Rate: 1 + - Index: 35 + Item: Ice_Scroll + Rate: 1 - Group: COMP_BOX2 SubGroups: - SubGroup: 0 List: - Index: 0 + Item: Mysterious_Egg3 + - Index: 1 Item: Comp_Battle_Bubble Amount: 5 - - Index: 1 - Item: Mysterious_Egg3 - Group: MAY_RAINBOW_SCROLL SubGroups: - SubGroup: 1 List: - Index: 0 - Item: May_Rainbow_Scroll - Rate: 9390 - - Index: 1 - Item: Poring_Sunglasses - Rate: 610 - - SubGroup: 2 - List: - - Index: 0 - Item: Crystal_Jewel__ - Rate: 1000 - - Index: 1 - Item: New_Insurance - Rate: 770 - - Index: 2 - Item: Blacksmith_Blessing - Rate: 800 - - Index: 3 - Item: Poring_Sunglasses_K - Rate: 65 - - Index: 4 - Item: Poring_Sunglasses_K_ - Rate: 10 - - Index: 5 - Item: Sealed_Card - Rate: 10 - - Index: 6 - Item: Weapon_7Up_Box - Rate: 15 - - Index: 7 - Item: Weapon_9Up_Box - Rate: 9 - - Index: 8 Item: Weapon_11Up_Box Rate: 1 - - Index: 9 - Item: Armor_7Up_Box - Rate: 15 - - Index: 10 - Item: Armor_9Up_Box - Rate: 9 - - Index: 11 + Announced: true + - Index: 1 Item: Armor_11Up_Box Rate: 1 - - Index: 12 - Item: Minus_Str_Box - Rate: 200 - - Index: 13 - Item: Minus_Agi_Box - Rate: 200 - - Index: 14 - Item: Minus_Vit_Box - Rate: 200 - - Index: 15 - Item: Minus_Int_Box - Rate: 200 - - Index: 16 - Item: Minus_Dex_Box - Rate: 200 - - Index: 17 - Item: Minus_Luk_Box - Rate: 200 - - Index: 18 - Item: Comp_Trans_Scroll - Rate: 800 - - Index: 19 - Item: May_Rainbow_Scroll - Rate: 100 - - Index: 20 - Item: AngelPoring_Box - Rate: 75 - - Index: 21 - Item: WOB_Box - Rate: 1000 - - Index: 22 - Item: Lapine_DdukddakBox - Rate: 1000 - - Index: 23 - Item: May_Rainbow_Scroll - Rate: 100 - - Index: 24 - Item: May_Rainbow_Scroll - Rate: 1000 - - Index: 25 - Item: May_Rainbow_Scroll - Rate: 100 - - Index: 26 - Item: May_Rainbow_Scroll - Rate: 1000 - - Index: 27 - Item: Shadow_Refine_Hammer - Rate: 400 - - Index: 28 - Item: May_Rainbow_Scroll + Announced: true + - Index: 2 + Item: Weapon_9Up_Box + Rate: 9 + Announced: true + - Index: 3 + Item: Armor_9Up_Box + Rate: 9 + Announced: true + - Index: 4 + Item: Weapon_7Up_Box + Rate: 15 + Announced: true + - Index: 5 + Item: Armor_7Up_Box + Rate: 15 + Announced: true + - Index: 6 + Item: Sealed_Card Rate: 10 - - Index: 29 - Item: Shadow_Random_Mix - Rate: 200 - - Index: 30 - Item: Advanced_Taiming_Item2 - Rate: 200 - - Index: 31 - Item: Overwhelm_Armor_Box - Rate: 50 - - Index: 32 - Item: Powerful_Helm_Box - Rate: 50 - - Index: 33 + Announced: true + - Index: 7 + Item: Sealed_Card2 + Rate: 10 + Announced: true + - Index: 8 Item: Mightysoul_Essence Rate: 10 + Announced: true + - Index: 9 + Item: New_Hat_Box + Rate: 100 + Announced: true + - Index: 10 + Item: New_Hat_Box2 + Rate: 100 + Announced: true + - Index: 11 + Item: New_Hat_Box3 + Rate: 100 + Announced: true + - Index: 12 + Item: Overwhelm_Armor_Box + Rate: 50 + Announced: true + - Index: 13 + Item: Powerful_Helm_Box + Rate: 50 + Announced: true + - Index: 14 + Item: AngelPoring_Box + Rate: 75 + Announced: true + - Index: 15 + Item: Poring_Sunglasses_K + Rate: 65 + Announced: true + - Index: 16 + Item: Poring_Sunglasses_K_ + Rate: 10 + Announced: true + - Index: 17 + Item: Shadow_Random_Mix + Rate: 200 + - Index: 18 + Item: Minus_Str_Box + Rate: 200 + - Index: 19 + Item: Minus_Agi_Box + Rate: 200 + - Index: 20 + Item: Minus_Vit_Box + Rate: 200 + - Index: 21 + Item: Minus_Int_Box + Rate: 200 + - Index: 22 + Item: Minus_Dex_Box + Rate: 200 + - Index: 23 + Item: Minus_Luk_Box + Rate: 200 + - Index: 24 + Item: Advanced_Taiming_Item2 + Rate: 200 + - Index: 25 + Item: Blacksmith_Blessing + Rate: 800 + - Index: 26 + Item: Shadow_Refine_Hammer + Rate: 400 + - Index: 27 + Item: Comp_Trans_Scroll + Rate: 800 + - Index: 28 + Item: New_Insurance + Rate: 770 + - Index: 29 + Item: C_Giant_Fly_1Day_Box_ + Rate: 1000 + - Index: 30 + Item: Mysterious_Medal_Box + Rate: 1000 + - Index: 31 + Item: WOB_Box + Rate: 1000 + - Index: 32 + Item: Lapine_DdukddakBox + Rate: 1000 + - Index: 33 + Item: Crystal_Jewel__ + Rate: 1000 + Amount: 10 - Group: SWEET_CANDY_BOX SubGroups: - SubGroup: 0 List: - Index: 0 Item: Sweet_Candy + Duration: 10080 - Group: PUMP_OF_SPIRIT_SCROLL2 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Shiver_Katar - Rate: 909 + Item: Weapon_11Up_Box + Rate: 1 + Announced: true - Index: 1 - Item: Pump_Of_Spirit_Scroll2 - Rate: 9091 - - SubGroup: 2 - List: - - Index: 0 - Item: Crystal_Jewel__ - Rate: 1000 - - Index: 1 - Item: New_Insurance - Rate: 780 + Item: Armor_11Up_Box + Rate: 1 + Announced: true - Index: 2 - Item: Blacksmith_Blessing - Rate: 700 + Item: Weapon_9Up_Box + Rate: 9 + Announced: true - Index: 3 - Item: Ancient_Hero_Boots - Rate: 100 + Item: Armor_9Up_Box + Rate: 9 + Announced: true - Index: 4 Item: Weapon_7Up_Box Rate: 15 + Announced: true - Index: 5 - Item: Weapon_9Up_Box - Rate: 9 - - Index: 6 - Item: Weapon_11Up_Box - Rate: 1 - - Index: 7 Item: Armor_7Up_Box Rate: 15 - - Index: 8 - Item: Armor_9Up_Box - Rate: 9 - - Index: 9 - Item: Armor_11Up_Box - Rate: 1 - - Index: 10 - Item: WOB_Box - Rate: 1000 - - Index: 11 - Item: Lapine_DdukddakBox - Rate: 1000 - - Index: 12 - Item: Pump_Of_Spirit_Scroll2 - Rate: 1000 - - Index: 13 - Item: Pump_Of_Spirit_Scroll2 + Announced: true + - Index: 6 + Item: ExShadow_DdukddakBox Rate: 20 - - Index: 14 - Item: Pump_Of_Spirit_Scroll2 - Rate: 300 - - Index: 15 - Item: Pump_Of_Spirit_Scroll2 - Rate: 1000 - - Index: 16 - Item: Shadow_Refine_Hammer - Rate: 400 - - Index: 17 - Item: Shadow_Random_Mix - Rate: 200 - - Index: 18 - Item: Advanced_Taiming_Item2 - Rate: 200 - - Index: 19 - Item: Pump_Of_Spirit_Scroll2 - Rate: 50 - - Index: 20 - Item: Pump_Of_Spirit_Scroll2 - Rate: 50 - - Index: 21 - Item: S_Rebellion_Armor - Rate: 300 - - Index: 22 - Item: S_Kagerou_Armor - Rate: 300 - - Index: 23 - Item: S_Oboro_Armor - Rate: 300 - - Index: 24 - Item: S_Rebellion_Shoes - Rate: 300 - - Index: 25 - Item: S_Kagerou_Shoes - Rate: 300 - - Index: 26 - Item: S_Oboro_Shoes - Rate: 300 - - Index: 27 - Item: Pump_Of_Spirit - Rate: 50 - - Index: 28 - Item: Shiver_Katar_K - Rate: 100 - - Index: 29 - Item: Demon_Hunting_Bible_K - Rate: 100 - - Index: 30 + Announced: true + - Index: 7 Item: Undine_Spear_K Rate: 100 + Announced: true + - Index: 8 + Item: Demon_Hunting_Bible_K + Rate: 100 + Announced: true + - Index: 9 + Item: Shiver_Katar_K + Rate: 100 + Announced: true + - Index: 10 + Item: Hero_Weapon_Box + Rate: 50 + Announced: true + - Index: 11 + Item: Pump_Of_Spirit + Rate: 50 + Announced: true + - Index: 12 + Item: Spirit_Hat_Box + Rate: 50 + Announced: true + - Index: 13 + Item: Ancient_Hero_Boots + Rate: 100 + Announced: true + - Index: 14 + Item: Shadow_Random_Mix + Rate: 200 + - Index: 15 + Item: S_Rebellion_Armor + Rate: 300 + - Index: 16 + Item: S_Rebellion_Shoes + Rate: 300 + - Index: 17 + Item: S_Kagerou_Armor + Rate: 300 + - Index: 18 + Item: S_Kagerou_Shoes + Rate: 300 + - Index: 19 + Item: S_Oboro_Armor + Rate: 300 + - Index: 20 + Item: S_Oboro_Shoes + Rate: 300 + - Index: 21 + Item: Advanced_Taiming_Item2 + Rate: 200 + - Index: 22 + Item: Blacksmith_Blessing + Rate: 700 + - Index: 23 + Item: Shadow_Refine_Hammer + Rate: 400 + - Index: 24 + Item: Material_Shadow_Cube + Rate: 300 + - Index: 25 + Item: New_Insurance + Rate: 780 + - Index: 26 + Item: C_Giant_Fly_1Day_Box_ + Rate: 1000 + - Index: 27 + Item: Mysterious_Medal_Box + Rate: 1000 + - Index: 28 + Item: WOB_Box + Rate: 1000 + - Index: 29 + Item: Lapine_DdukddakBox + Rate: 1000 + - Index: 30 + Item: Crystal_Jewel__ + Rate: 1000 + Amount: 10 - Group: SPIRIT_HAT_BOX SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Chick_Hat - Rate: 833 + Item: Sigrun's_Wing + Rate: 1 - Index: 1 Item: Robo_Eye - Rate: 833 + Rate: 1 - Index: 2 Item: Angel_Spirit - Rate: 833 + Rate: 1 - Index: 3 - Item: Ifrit's_Ear - Rate: 833 - - Index: 4 - Item: Anubis_Helm - Rate: 833 - - Index: 5 - Item: Rabbit_Magic_Hat - Rate: 833 - - Index: 6 - Item: Sigrun's_Wing - Rate: 833 - - Index: 7 - Item: Shadow_Booster - Rate: 833 - - Index: 8 - Item: New_Wave_Sunglasses - Rate: 833 - - Index: 9 - Item: Fallen_Angel_Blessing - Rate: 833 - - Index: 10 Item: Spirit_Of_Chung_E - Rate: 833 - - Index: 11 + Rate: 1 + - Index: 4 + Item: Ifrit's_Ear + Rate: 1 + - Index: 5 + Item: Chick_Hat + Rate: 1 + - Index: 6 + Item: Shadow_Booster + Rate: 1 + - Index: 7 + Item: Fallen_Angel_Blessing + Rate: 1 + - Index: 8 Item: Elemental_Crown_K - Rate: 833 + Rate: 1 + - Index: 9 + Item: Rabbit_Magic_Hat + Rate: 1 + - Index: 10 + Item: New_Wave_Sunglasses + Rate: 1 + - Index: 11 + Item: Anubis_Helm + Rate: 1 - Group: HERO_WEAPON_BOX SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Iron_Nail_K - Rate: 278 - - Index: 1 - Item: Iron_Staff - Rate: 278 - - Index: 2 - Item: Humma_Clear - Rate: 278 - - Index: 3 - Item: Sword_Of_Bluefire - Rate: 278 - - Index: 4 Item: Royal_Bow_K - Rate: 278 - - Index: 5 + Rate: 1 + - Index: 1 Item: Narcis_Bow - Rate: 278 - - Index: 6 - Item: Oriental_Sword - Rate: 278 - - Index: 7 + Rate: 1 + - Index: 2 Item: Shadow_Staff_K - Rate: 278 - - Index: 8 - Item: SoulWeight - Rate: 278 - - Index: 9 - Item: MeawFoxtail - Rate: 278 - - Index: 10 - Item: Shiver_Katar_K - Rate: 278 - - Index: 11 - Item: Avenger - Rate: 278 - - Index: 12 - Item: Master_Soul_Rifle - Rate: 278 - - Index: 13 - Item: Demon_S_Shot - Rate: 278 - - Index: 14 - Item: Golden_L_Launcher - Rate: 278 - - Index: 15 - Item: The_Black_Gatling - Rate: 278 - - Index: 16 - Item: Demon_Hunting_Bible_K - Rate: 278 - - Index: 17 - Item: OneSkyOneSun - Rate: 278 - - Index: 18 + Rate: 1 + - Index: 3 + Item: Iron_Nail_K + Rate: 1 + - Index: 4 Item: Magic_Sword - Rate: 278 - - Index: 19 - Item: Sharp_Wind_Sword - Rate: 278 - - Index: 20 - Item: Fog_Dew_Sword - Rate: 278 - - Index: 21 + Rate: 1 + - Index: 5 + Item: Sword_Of_Bluefire + Rate: 1 + - Index: 6 + Item: Avenger + Rate: 1 + - Index: 7 + Item: Iron_Staff + Rate: 1 + - Index: 8 + Item: Oriental_Sword + Rate: 1 + - Index: 9 Item: Undine_Spear_K - Rate: 278 - - Index: 22 + Rate: 1 + - Index: 10 + Item: Demon_Hunting_Bible_K + Rate: 1 + - Index: 11 + Item: Shiver_Katar_K + Rate: 1 + - Index: 12 + Item: OneSkyOneSun + Rate: 1 + - Index: 13 + Item: SoulWeight + Rate: 1 + - Index: 14 + Item: MeawFoxtail + Rate: 1 + - Index: 15 Item: Crimson_Rose - Rate: 278 + Rate: 1 + - Index: 16 + Item: Master_Soul_Rifle + Rate: 1 + - Index: 17 + Item: Demon_S_Shot + Rate: 1 + - Index: 18 + Item: Golden_L_Launcher + Rate: 1 + - Index: 19 + Item: The_Black_Gatling + Rate: 1 + - Index: 20 + Item: Sharp_Wind_Sword + Rate: 1 + - Index: 21 + Item: Fog_Dew_Sword + Rate: 1 + - Index: 22 + Item: Humma_Clear + Rate: 1 - Index: 23 - Item: Light_Blade - Rate: 278 - - Index: 24 - Item: Slate_Sword - Rate: 278 - - Index: 25 - Item: Fatalist - Rate: 278 - - Index: 26 - Item: Freezing_Rod - Rate: 278 - - Index: 27 - Item: Ray_Knuckle - Rate: 278 - - Index: 28 - Item: Trumpet_Shell_K - Rate: 278 - - Index: 29 - Item: Barb_Wire_K - Rate: 278 - - Index: 30 - Item: Meteor_Striker - Rate: 278 - - Index: 31 - Item: Saint_Hall - Rate: 278 - - Index: 32 Item: Dragonic_Slayer - Rate: 278 - - Index: 33 + Rate: 1 + - Index: 24 + Item: Light_Blade + Rate: 1 + - Index: 25 + Item: Slate_Sword + Rate: 1 + - Index: 26 + Item: Trumpet_Shell_K + Rate: 1 + - Index: 27 + Item: Barb_Wire_K + Rate: 1 + - Index: 28 + Item: Meteor_Striker + Rate: 1 + - Index: 29 + Item: Saint_Hall + Rate: 1 + - Index: 30 + Item: Ray_Knuckle + Rate: 1 + - Index: 31 Item: Blade_Katar - Rate: 278 + Rate: 1 + - Index: 32 + Item: Fatalist + Rate: 1 + - Index: 33 + Item: Scalet_Dragon_L_Bow + Rate: 1 - Index: 34 Item: Blue_Crystal_Staff - Rate: 278 + Rate: 1 - Index: 35 - Item: Scalet_Dragon_L_Bow - Rate: 278 + Item: Freezing_Rod + Rate: 1 + - Index: 36 + Item: Freedom_Stick + Rate: 1 + - Index: 37 + Item: Blessed_Knife + Rate: 1 - Group: STARSOUL_SCROLL SubGroups: - SubGroup: 1 List: - Index: 0 - Item: C_CatPaw_7Day_Box_ - Rate: 5000 - - Index: 1 - Item: C_Wing_Of_Fly_5Day_Box - Rate: 5000 - - SubGroup: 2 - List: - - Index: 0 - Item: Crystal_Jewel__ - Rate: 1000 - - Index: 1 - Item: Blacksmith_Blessing - Rate: 700 - - Index: 2 - Item: Poison_Bottle_Box2 - Rate: 780 - - Index: 3 - Item: StarSoul_Scroll - Rate: 1000 - - Index: 4 - Item: Ancient_Hero_Boots - Rate: 100 - - Index: 5 - Item: Weapon_7Up_Box - Rate: 15 - - Index: 6 - Item: Weapon_9Up_Box - Rate: 9 - - Index: 7 Item: Weapon_11Up_Box Rate: 1 - - Index: 8 - Item: Armor_7Up_Box - Rate: 15 - - Index: 9 - Item: Armor_9Up_Box - Rate: 9 - - Index: 10 + Announced: true + - Index: 1 Item: Armor_11Up_Box Rate: 1 - - Index: 11 - Item: Lapine_DdukddakBox - Rate: 1000 - - Index: 12 - Item: StarSoul_Scroll - Rate: 1000 - - Index: 13 - Item: StarSoul_Scroll + Announced: true + - Index: 2 + Item: Weapon_9Up_Box + Rate: 9 + Announced: true + - Index: 3 + Item: Armor_9Up_Box + Rate: 9 + Announced: true + - Index: 4 + Item: Weapon_7Up_Box + Rate: 15 + Announced: true + - Index: 5 + Item: Armor_7Up_Box + Rate: 15 + Announced: true + - Index: 6 + Item: ExShadow_DdukddakBox Rate: 20 - - Index: 14 - Item: StarSoul_Scroll - Rate: 300 - - Index: 15 - Item: StarSoul_Scroll - Rate: 1000 - - Index: 16 - Item: Shadow_Refine_Hammer - Rate: 400 - - Index: 17 - Item: Shadow_Random_Mix - Rate: 200 - - Index: 18 - Item: Advanced_Taiming_Item2 - Rate: 200 - - Index: 19 - Item: StarSoul_Scroll - Rate: 50 - - Index: 20 - Item: StarSoul_Scroll - Rate: 50 - - Index: 21 - Item: S_DoramPhysical_Armor - Rate: 150 - - Index: 22 - Item: S_DoramPhysical_Shoes - Rate: 150 - - Index: 23 - Item: S_DoramMagical_Armor - Rate: 150 - - Index: 24 - Item: S_DoramMagical_Shoes - Rate: 150 - - Index: 25 - Item: S_Star_Emperor_Armor - Rate: 300 - - Index: 26 - Item: S_Star_Emperor_Shoes - Rate: 300 - - Index: 27 - Item: S_Soul_Reaper_Armor - Rate: 300 - - Index: 28 - Item: S_Soul_Reaper_Shoes - Rate: 300 - - Index: 29 - Item: Pump_Of_Spirit - Rate: 50 - - Index: 30 - Item: SoulWeight - Rate: 100 - - Index: 31 - Item: MeawFoxtail - Rate: 100 - - Index: 32 + Announced: true + - Index: 7 Item: OneSkyOneSun Rate: 100 + Announced: true + - Index: 8 + Item: SoulWeight + Rate: 100 + Announced: true + - Index: 9 + Item: MeawFoxtail + Rate: 100 + Announced: true + - Index: 10 + Item: Hero_Weapon_Box + Rate: 50 + Announced: true + - Index: 11 + Item: Pump_Of_Spirit + Rate: 50 + Announced: true + - Index: 12 + Item: Spirit_Hat_Box + Rate: 50 + Announced: true + - Index: 13 + Item: Ancient_Hero_Boots + Rate: 100 + Announced: true + - Index: 14 + Item: Shadow_Random_Mix + Rate: 200 + - Index: 15 + Item: S_Star_Emperor_Armor + Rate: 300 + - Index: 16 + Item: S_Star_Emperor_Shoes + Rate: 300 + - Index: 17 + Item: S_Soul_Reaper_Armor + Rate: 300 + - Index: 18 + Item: S_Soul_Reaper_Shoes + Rate: 300 + - Index: 19 + Item: S_DoramPhysical_Armor + Rate: 150 + - Index: 20 + Item: S_DoramPhysical_Shoes + Rate: 150 + - Index: 21 + Item: S_DoramMagical_Armor + Rate: 150 + - Index: 22 + Item: S_DoramMagical_Shoes + Rate: 150 + - Index: 23 + Item: Advanced_Taiming_Item2 + Rate: 200 + - Index: 24 + Item: Blacksmith_Blessing + Rate: 700 + - Index: 25 + Item: Shadow_Refine_Hammer + Rate: 400 + - Index: 26 + Item: Material_Shadow_Cube + Rate: 300 + - Index: 27 + Item: Poison_Bottle_Box2 + Rate: 780 + - Index: 28 + Item: C_Wing_Of_Fly_5Day_Box_ + Rate: 1000 + - Index: 29 + Item: Mysterious_Medal_Box + Rate: 1000 + - Index: 30 + Item: C_CatPaw_7Day_Box + Rate: 1000 + - Index: 31 + Item: Lapine_DdukddakBox + Rate: 1000 + - Index: 32 + Item: Crystal_Jewel__ + Rate: 1000 + Amount: 10 - Group: COMP_CONNECTERROR SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Comp_Bubble_Gum - Amount: 2 - - Index: 1 - Item: Battle_Manual100 - - Index: 2 Item: Premium_Box_5d7 - - Index: 3 + - Index: 1 Item: World_Tour_Ticket Amount: 10 + - Index: 2 + Item: Battle_Manual100 + - Index: 3 + Item: Comp_Bubble_Gum + Amount: 2 - Group: 2018_JUMP_THX_BOX SubGroups: - SubGroup: 0 List: - Index: 0 - Item: E_Med_Life_Potion - Amount: 20 - - Index: 1 - Item: E_Small_Life_Potion - Amount: 20 - - Index: 2 - Item: Comp_Small_Mana_Potion + Item: Comp_Almighty Amount: 10 - - Index: 3 + - Index: 1 Item: Comp_Power_Booster Amount: 10 + - Index: 2 + Item: E_Small_Life_Potion + Amount: 20 + - Index: 3 + Item: E_Med_Life_Potion + Amount: 20 - Index: 4 - Item: Comp_Almighty + Item: Comp_Small_Mana_Potion Amount: 10 - Index: 5 Item: World_Tour_Ticket @@ -59007,70 +63462,73 @@ Body: - Index: 2 Item: Time_Overload_Boots - Index: 3 - Item: S_Timeoverload_Weapon - - Index: 4 - Item: S_Timeoverload_Armor - - Index: 5 - Item: S_Timeoverload_Shield - - Index: 6 - Item: S_Timeoverload_Shoes - - Index: 7 - Item: S_Timeoverload_Earing - - Index: 8 - Item: S_Timeoverload_Pandent - - Index: 9 Item: Time_Overload_Ring + - Index: 4 + Item: S_Timeoverload_Weapon + - Index: 5 + Item: S_Timeoverload_Armor + - Index: 6 + Item: S_Timeoverload_Shield + - Index: 7 + Item: S_Timeoverload_Shoes + - Index: 8 + Item: S_Timeoverload_Earing + - Index: 9 + Item: S_Timeoverload_Pandent - Group: 110LVUP SubGroups: - SubGroup: 0 List: - Index: 0 - Item: E_Med_Life_Potion - Amount: 30 - - Index: 1 - Item: E_Small_Life_Potion - Amount: 30 - - Index: 2 - Item: Reward_Job_BM25 - Amount: 2 - - Index: 3 - Item: 120LVUP - - Index: 4 Item: Comp_Battle_Bubble Amount: 2 - - Index: 5 + - Index: 1 + Item: Reward_Job_BM25 + Amount: 2 + - Index: 2 Item: World_Tour_Ticket Amount: 10 + - Index: 3 + Item: E_Small_Life_Potion + Amount: 30 + - Index: 4 + Item: E_Med_Life_Potion + Amount: 30 + - Index: 5 + Item: 120LVUP - Group: SEASON_EVT_REWARD_3 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Orange_Juice - Rate: 310 + Item: Yummy_Cookie_Egg + Rate: 1000 + Amount: 10 - Index: 1 - Item: Rainbow_Carrot - Rate: 310 + Item: Chocolate_Egg + Rate: 1545 + Amount: 10 - Index: 2 - Item: Earthworm_The_Dude - Rate: 310 + Item: Holy_Egg + Rate: 945 + Amount: 5 - Index: 3 - Item: Sweet_Milk + Item: Heart_Of_Her Rate: 310 - Index: 4 - Item: Well_Dried_Bone + Item: Little_Dall_Needle Rate: 310 - Index: 5 - Item: Dew_Laden_Moss + Item: Delicious_Shaved_Ice Rate: 310 - Index: 6 - Item: Deadly_Noxious_Herb + Item: Well_Dried_Bone Rate: 310 - Index: 7 - Item: Fatty_Chubby_Earthworm + Item: Dew_Laden_Moss Rate: 310 - Index: 8 - Item: Baked_Yam + Item: Deadly_Noxious_Herb Rate: 310 - Index: 9 Item: Tropical_Banana @@ -59082,317 +63540,362 @@ Body: Item: Old_Broom Rate: 310 - Index: 12 - Item: Contracts_In_Shadow + Item: Orange_Juice Rate: 310 - Index: 13 - Item: Heart_Of_Her + Item: Contracts_In_Shadow Rate: 310 - Index: 14 - Item: Sway_Apron - Rate: 310 - - Index: 15 - Item: Chocolate_Egg - Rate: 1600 - Amount: 10 - - Index: 16 - Item: Yummy_Cookie_Egg - Rate: 1600 - Amount: 10 - - Index: 17 - Item: Holy_Egg - Rate: 600 - Amount: 5 - - Index: 18 - Item: Very_Red_Juice - Rate: 310 - - Index: 19 - Item: Delicious_Shaved_Ice - Rate: 310 - - Index: 20 - Item: Gril_Doll - Rate: 40 - - Index: 21 - Item: Gril's_Naivety - Rate: 10 - - Index: 22 - Item: Boy's_Naivety - Rate: 35 - - Index: 23 Item: Tantanmen Rate: 310 - - Index: 24 - Item: C_Luna_On_Shoulder - Rate: 50 - - Index: 25 - Item: Little_Dall_Needle + - Index: 15 + Item: Sway_Apron Rate: 310 + - Index: 16 + Item: Very_Red_Juice + Rate: 310 + - Index: 17 + Item: Rainbow_Carrot + Rate: 310 + - Index: 18 + Item: Earthworm_The_Dude + Rate: 310 + - Index: 19 + Item: Sweet_Milk + Rate: 310 + - Index: 20 + Item: Fatty_Chubby_Earthworm + Rate: 310 + - Index: 21 + Item: Baked_Yam + Rate: 310 + - Index: 22 + Item: Boy's_Naivety + Rate: 100 + - Index: 23 + Item: Gril's_Naivety + Rate: 30 + - Index: 24 + Item: Gril_Doll + Rate: 120 + - Index: 25 + Item: C_Mimic_Egg_Shell + Rate: 50 - Index: 26 - Item: K_Secret_Key - Rate: 25 + Item: C_Holy_Egg_Hat + Rate: 50 - Index: 27 Item: C_Egg_Minihat Rate: 50 - Index: 28 - Item: C_Holy_Egg_Hat + Item: C_Luna_On_Shoulder Rate: 50 - Index: 29 - Item: C_Mimic_Egg_Shell + Item: C_Rose_Crispinette + Rate: 50 + - Index: 30 + Item: C_Egg_Crispinette + Rate: 50 + - Index: 31 + Item: Magic_Card_Album + Rate: 10 + - Index: 32 + Item: Old_Card_Album + Rate: 10 + - Index: 33 + Item: C_Happy_Lunatic_Ear Rate: 50 - Group: SEASON_EVT_REWARD_4 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Small_Spray_Of_Flowers - Rate: 4600 - Amount: 3 + Item: Cherry_Blossom_Cake + Rate: 4095 - Index: 1 + Item: Small_Spray_Of_Flowers + Rate: 3100 + Amount: 3 + - Index: 2 + Item: Fancy_Spray_Of_Flowers + Rate: 1500 + - Index: 3 Item: E_Med_Life_Potion Rate: 200 Amount: 3 - - Index: 2 + - Index: 4 Item: E_Small_Life_Potion Rate: 200 Amount: 3 - - Index: 3 - Item: Cherry_Blossom_Cake - Rate: 4525 - - Index: 4 + - Index: 5 Item: Comp_Power_Booster Rate: 200 - - Index: 5 + - Index: 6 Item: Comp_Almighty Rate: 200 - - Index: 6 - Item: K_Secret_Key - Rate: 25 - Index: 7 Item: C_Cherry_Blossom_Hat_YL - Rate: 50 + Rate: 40 + - Index: 8 + Item: C_Persika + Rate: 40 + - Index: 9 + Item: C_Blossom_Glasses + Rate: 40 + - Index: 10 + Item: C_Cherry_Blossom_Hat + Rate: 40 + - Index: 11 + Item: Cherryblossom_Fan + Rate: 40 + - Index: 12 + Item: Bloody_Dead_Branch + Rate: 10 + - Index: 13 + Item: Luxurious_Blue_Box + Rate: 15 + - Index: 14 + Item: Cherry_Twig_In_Mouth + Rate: 40 + - Index: 15 + Item: C_Pray_Cherry_Blossom + Rate: 40 + - Index: 16 + Item: E_Infinity_Drink + Rate: 200 - Group: SEASON_EVT_REWARD_5 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Old_Blue_Box - Rate: 500 + Item: Magic_Card_Album + Rate: 15 - Index: 1 - Item: Branch_Of_Dead_Tree - Rate: 500 - - Index: 2 - Item: Yggdrasilberry - Rate: 141 - - Index: 3 Item: Old_Card_Album - Rate: 10 - - Index: 4 - Item: Old_Violet_Box - Rate: 102 - - Index: 5 - Item: Inspector_Certificate - Rate: 500 - - Index: 6 - Item: Sweet_Melon - Rate: 3559 - Amount: 5 - - Index: 7 + Rate: 15 + - Index: 2 Item: Bloody_Dead_Branch Rate: 10 + - Index: 3 + Item: K_Secret_Key + Rate: 20 + - Index: 4 + Item: C_Mini_Melon + Rate: 100 + - Index: 5 + Item: C_Dalcom_Helmet + Rate: 100 + - Index: 6 + Item: C_Melon_Cap + Rate: 100 + - Index: 7 + Item: Yggdrasilberry + Rate: 141 - Index: 8 - Item: Set_Of_Taiming_Item - Rate: 68 + Item: Old_Violet_Box + Rate: 102 - Index: 9 - Item: Sesame_Pastry - Rate: 335 + Item: Melon_Parfait + Rate: 340 - Index: 10 - Item: Honey_Pastry - Rate: 500 - - Index: 11 - Item: Magic_Card_Album - Rate: 10 - - Index: 12 Item: E_Med_Life_Potion Rate: 150 Amount: 3 - - Index: 13 + - Index: 11 Item: E_Small_Life_Potion Rate: 150 Amount: 3 - - Index: 14 - Item: C_Melon_Cap - Rate: 100 - - Index: 15 - Item: Melon_Juice - Rate: 1500 - - Index: 16 - Item: Sweet_Melon_Juice - Rate: 1000 - - Index: 17 - Item: Melon_Parfait - Rate: 340 - - Index: 18 + - Index: 12 Item: Comp_Power_Booster Rate: 150 - - Index: 19 + - Index: 13 Item: Comp_Almighty Rate: 150 + - Index: 14 + Item: Set_Of_Taiming_Item + Rate: 68 + - Index: 15 + Item: Sweet_Melon_Juice + Rate: 1000 + - Index: 16 + Item: Sesame_Pastry + Rate: 335 + - Index: 17 + Item: Honey_Pastry + Rate: 500 + - Index: 18 + Item: Melon_Juice + Rate: 1500 + - Index: 19 + Item: Old_Blue_Box + Rate: 500 - Index: 20 - Item: K_Secret_Key - Rate: 25 + Item: Branch_Of_Dead_Tree + Rate: 500 - Index: 21 - Item: C_Dalcom_Helmet - Rate: 100 + Item: Inspector_Certificate + Rate: 500 - Index: 22 - Item: C_Mini_Melon + Item: Sweet_Melon + Rate: 3452 + Amount: 5 + - Index: 23 + Item: Sealed_Card2 + Rate: 1 + - Index: 24 + Item: C_Melon_Headphone Rate: 100 + - Index: 25 + Item: Sealed_Card + Rate: 1 - Group: JOB_ENCHANT_STONE_BOX SubGroups: - SubGroup: 1 List: - Index: 0 - Item: SuraStone_Top - Rate: 238 - - Index: 1 - Item: SuraStone_Middle - Rate: 238 - - Index: 2 - Item: SuraStone_Bottom - Rate: 238 - - Index: 3 - Item: SuraStone_Robe - Rate: 119 - - Index: 4 - Item: RangerStone_Top - Rate: 238 - - Index: 5 - Item: RangerStone_Middle - Rate: 238 - - Index: 6 - Item: RangerStone_Bottom - Rate: 238 - - Index: 7 - Item: RangerStone_Robe - Rate: 119 - - Index: 8 - Item: SorcererStone_Top - Rate: 238 - - Index: 9 - Item: SorcererStone_Middle - Rate: 238 - - Index: 10 - Item: SorcererStone_Bottom - Rate: 238 - - Index: 11 - Item: SorcererStone_Robe - Rate: 119 - - Index: 12 - Item: RuneknightStone_Top - Rate: 238 - - Index: 13 - Item: RuneknightStone_Middle - Rate: 238 - - Index: 14 - Item: RuneknightStone_Bottom - Rate: 238 - - Index: 15 - Item: RuneknightStone_Robe - Rate: 119 - - Index: 16 - Item: GeneticStone_Robe - Rate: 119 - - Index: 17 - Item: GeneticStone_Top - Rate: 238 - - Index: 18 - Item: GeneticStone_Middle - Rate: 238 - - Index: 19 - Item: GeneticStone_Bottom - Rate: 238 - - Index: 20 - Item: WarlockStone_Top - Rate: 238 - - Index: 21 - Item: WarlockStone_Middle - Rate: 238 - - Index: 22 - Item: WarlockStone_Bottom - Rate: 238 - - Index: 23 - Item: WarlockStone_Robe - Rate: 119 - - Index: 24 - Item: ShadowchaserStone_Top - Rate: 238 - - Index: 25 - Item: ShadowchaseStone_Middle - Rate: 238 - - Index: 26 - Item: ShadowchaseStone_Bottom - Rate: 238 - - Index: 27 - Item: ShadowchaserStone_Robe - Rate: 119 - - Index: 28 - Item: MechanicStone_Top - Rate: 238 - - Index: 29 - Item: MechanicStone_Middle - Rate: 238 - - Index: 30 - Item: MechanicStone_Bottom - Rate: 238 - - Index: 31 - Item: MechanicStone_Robe - Rate: 119 - - Index: 32 - Item: WanderMinstrelStone_Top - Rate: 238 - - Index: 33 - Item: WanderMinstStone_Middle - Rate: 238 - - Index: 34 - Item: WanderMinstStone_Bottom - Rate: 238 - - Index: 35 - Item: WanderMinstreStone_Robe - Rate: 119 - - Index: 36 - Item: HighpriestStone_Top - Rate: 238 - - Index: 37 - Item: HighpriestStone_Middle - Rate: 238 - - Index: 38 - Item: HighpriestStone_Bottom - Rate: 238 - - Index: 39 Item: ArchbishopStone_Robe - Rate: 119 - - Index: 40 - Item: PaladinStone_Top - Rate: 238 - - Index: 41 - Item: PaladinStone_Middle - Rate: 238 - - Index: 42 - Item: PaladinStone_Bottom - Rate: 238 - - Index: 43 + Rate: 1 + - Index: 1 Item: RoyalguardStone_Robe - Rate: 119 - - Index: 44 - Item: AssacrossStone_Top - Rate: 238 - - Index: 45 - Item: AssacrossStone_Middle - Rate: 238 - - Index: 46 - Item: AssacrossStone_Bottom - Rate: 238 - - Index: 47 + Rate: 1 + - Index: 2 Item: GuillcrossStone_Robe - Rate: 119 + Rate: 1 + - Index: 3 + Item: HighpriestStone_Top + Rate: 2 + - Index: 4 + Item: HighpriestStone_Middle + Rate: 2 + - Index: 5 + Item: HighpriestStone_Bottom + Rate: 2 + - Index: 6 + Item: PaladinStone_Top + Rate: 2 + - Index: 7 + Item: PaladinStone_Middle + Rate: 2 + - Index: 8 + Item: PaladinStone_Bottom + Rate: 2 + - Index: 9 + Item: AssacrossStone_Top + Rate: 2 + - Index: 10 + Item: AssacrossStone_Middle + Rate: 2 + - Index: 11 + Item: AssacrossStone_Bottom + Rate: 2 + - Index: 12 + Item: ShadowchaserStone_Robe + Rate: 1 + - Index: 13 + Item: MechanicStone_Robe + Rate: 1 + - Index: 14 + Item: WanderMinstreStone_Robe + Rate: 1 + - Index: 15 + Item: ShadowchaserStone_Top + Rate: 2 + - Index: 16 + Item: ShadowchaseStone_Middle + Rate: 2 + - Index: 17 + Item: ShadowchaseStone_Bottom + Rate: 2 + - Index: 18 + Item: MechanicStone_Top + Rate: 2 + - Index: 19 + Item: MechanicStone_Middle + Rate: 2 + - Index: 20 + Item: MechanicStone_Bottom + Rate: 2 + - Index: 21 + Item: WanderMinstrelStone_Top + Rate: 2 + - Index: 22 + Item: WanderMinstStone_Middle + Rate: 2 + - Index: 23 + Item: WanderMinstStone_Bottom + Rate: 2 + - Index: 24 + Item: RuneknightStone_Robe + Rate: 1 + - Index: 25 + Item: GeneticStone_Robe + Rate: 1 + - Index: 26 + Item: WarlockStone_Robe + Rate: 1 + - Index: 27 + Item: RuneknightStone_Top + Rate: 2 + - Index: 28 + Item: RuneknightStone_Middle + Rate: 2 + - Index: 29 + Item: RuneknightStone_Bottom + Rate: 2 + - Index: 30 + Item: GeneticStone_Top + Rate: 2 + - Index: 31 + Item: GeneticStone_Middle + Rate: 2 + - Index: 32 + Item: GeneticStone_Bottom + Rate: 2 + - Index: 33 + Item: WarlockStone_Top + Rate: 2 + - Index: 34 + Item: WarlockStone_Middle + Rate: 2 + - Index: 35 + Item: WarlockStone_Bottom + Rate: 2 + - Index: 36 + Item: SuraStone_Robe + Rate: 1 + - Index: 37 + Item: RangerStone_Robe + Rate: 1 + - Index: 38 + Item: SorcererStone_Robe + Rate: 1 + - Index: 39 + Item: SuraStone_Top + Rate: 2 + - Index: 40 + Item: SuraStone_Middle + Rate: 2 + - Index: 41 + Item: SuraStone_Bottom + Rate: 2 + - Index: 42 + Item: RangerStone_Top + Rate: 2 + - Index: 43 + Item: RangerStone_Middle + Rate: 2 + - Index: 44 + Item: RangerStone_Bottom + Rate: 2 + - Index: 45 + Item: SorcererStone_Top + Rate: 2 + - Index: 46 + Item: SorcererStone_Middle + Rate: 2 + - Index: 47 + Item: SorcererStone_Bottom + Rate: 2 - Group: MAIN_LUCKY_BOX SubGroups: - SubGroup: 0 @@ -59402,393 +63905,274 @@ Body: - SubGroup: 1 List: - Index: 0 - Item: Guarantee_Weapon_8Up + Item: Sillit_Pong_Box Rate: 1 + Announced: true - Index: 1 - Item: Guarantee_Weapon_7Up - Rate: 1 + Item: High_Refine_Guarantee + Rate: 5 + Announced: true - Index: 2 - Item: Guarantee_Armor_8Up - Rate: 1 + Item: Enchant_Ticket + Rate: 6 + Amount: 2 + Announced: true - Index: 3 - Item: Guarantee_Armor_7Up - Rate: 1 - - Index: 4 - Item: Blacksmith_Blessing - Rate: 450 - - Index: 5 - Item: M_Dimension_Essence - Rate: 9 - - Index: 6 - Item: C_CatPaw_7Day_Box_ - Rate: 569 - - Index: 7 - Item: Poison_Bottle_Box2 - Rate: 664 - - Index: 8 - Item: Honglyun's_Sword - Rate: 1 - - Index: 9 - Item: C_Wing_Of_Fly_5Day_Box - Rate: 47 - - Index: 10 - Item: Main_Lucky_Box - Rate: 47 - - Index: 11 - Item: Narcis_Bow - Rate: 1 - - Index: 12 - Item: FaceWorm_Breath - Rate: 1 - - Index: 13 - Item: Ancient_Hero_Boots - Rate: 47 - - Index: 14 - Item: Sealed_Card - Rate: 9 - - Index: 15 - Item: Comp_Battle_Bubble - Rate: 47 - - Index: 16 - Item: Comp_Trans_Scroll - Rate: 47 - - Index: 17 - Item: Class_Shadow_Cube - Rate: 266 - - Index: 18 - Item: WOB_Box - Rate: 569 - - Index: 19 - Item: Alchemist_Box - Rate: 47 - - Index: 20 - Item: Main_Lucky_Box - Rate: 664 - - Index: 21 - Item: Main_Lucky_Box - Rate: 569 - - Index: 22 - Item: Main_Lucky_Box - Rate: 569 - - Index: 23 - Item: Shadow_Refine_Hammer - Rate: 379 - - Index: 24 - Item: BloodyKnight_Shield_Box - Rate: 1 - - Index: 25 - Item: Main_Lucky_Box - Rate: 9 - - Index: 26 - Item: Shadow_Random_Mix - Rate: 427 - - Index: 27 - Item: Overwhelm_Armor_Box - Rate: 2 - - Index: 28 - Item: Main_Lucky_Box - Rate: 95 - - Index: 29 - Item: Shadow_9_Refine_Hammer - Rate: 1 - - Index: 30 Item: Mightysoul_Essence Rate: 9 + Announced: true + - Index: 4 + Item: M_Dimension_Essence + Rate: 9 + Announced: true + - Index: 5 + Item: Refine_Guarantee + Rate: 83 + Announced: true + - Index: 6 + Item: SLD_Boss_Card_Album + Rate: 9 + Announced: true + - Index: 7 + Item: AceCard_Box + Rate: 10 + Announced: true + - Index: 8 + Item: aegis_410232 + Rate: 10 + Announced: true + - Index: 9 + Item: Pump_Of_Spirit + Rate: 20 + Announced: true + - Index: 10 + Item: Slayer_Furious + Rate: 50 + Announced: true + - Index: 11 + Item: Trident_Furious + Rate: 50 + Announced: true + - Index: 12 + Item: Demonius_Furious + Rate: 50 + Announced: true + - Index: 13 + Item: Demonsword_Furious + Rate: 50 + Announced: true + - Index: 14 + Item: Foxtail_Furious + Rate: 50 + Announced: true + - Index: 15 + Item: Setaria_Furious + Rate: 50 + Announced: true + - Index: 16 + Item: FuriousCirclet_DK + Rate: 50 + Announced: true + - Index: 17 + Item: FuriousCirclet_ABC + Rate: 50 + Announced: true + - Index: 18 + Item: FuriousCirclet_SH + Rate: 50 + Announced: true + - Index: 19 + Item: FuriousBoots + Rate: 50 + Announced: true + - Index: 20 + Item: Refine_Furious + Rate: 50 + Announced: true + - Index: 21 + Item: S_Master_Weapon + Rate: 20 + Announced: true + - Index: 22 + Item: S_Master_Shield + Rate: 20 + Announced: true + - Index: 23 + Item: M_Armor_Box + Rate: 100 + - Index: 24 + Item: M_Shoes_Box + Rate: 100 + - Index: 25 + Item: M_Pendant_Box + Rate: 100 + - Index: 26 + Item: M_Earring_Box + Rate: 100 + - Index: 27 + Item: Blacksmith_Bless_Box_3 + Rate: 30 + Announced: true + - Index: 28 + Item: Shadow_Hammer_Box_3 + Rate: 30 + Announced: true + - Index: 29 + Item: S_Enchant_Essence_Box_3 + Rate: 30 + Announced: true + - Index: 30 + Item: Shadow_Up_Box + Rate: 400 - Index: 31 - Item: World_Tour_Ticket - Rate: 569 + Item: Blacksmith_Blessing + Rate: 400 - Index: 32 - Item: Mad_Bunny_K_ - Rate: 9 + Item: S_Enchant_Essence + Rate: 268 - Index: 33 - Item: Ancient_Hero_Bravery - Rate: 1 + Item: Loki_Coin_Box + Rate: 60 - Index: 34 - Item: Ancient_Hero_Wisdom - Rate: 1 + Item: Loki_Advice_Box + Rate: 60 - Index: 35 - Item: Main_Lucky_Box - Rate: 2 + Item: Material_Shadow_CubeII + Rate: 150 - Index: 36 - Item: Main_Lucky_Box - Rate: 47 + Item: Shadow_Refine_Hammer + Rate: 400 - Index: 37 - Item: Skill_Sha_M_S_Weapon - Rate: 5 + Item: Skill_Shadow_Cube + Rate: 420 - Index: 38 - Item: Main_Lucky_Box - Rate: 95 + Item: All_Shadow_Cube + Rate: 300 - Index: 39 - Item: Class_Sha_R_M_Melee - Rate: 33 + Item: Shadow_R_M_Box_ + Rate: 300 - Index: 40 - Item: Class_Sha_R_M_Magic - Rate: 33 + Item: Shadowdecon_Ore_Box + Rate: 400 - Index: 41 - Item: Skill_Sha_R_M_Melee - Rate: 33 + Item: Zelunium_Ore_Box + Rate: 400 - Index: 42 - Item: Skill_Sha_R_M_Magic - Rate: 33 + Item: Minus_Status_Box_ + Rate: 400 - Index: 43 - Item: Skill_Sha_M_S_Shield - Rate: 5 + Item: Poison_Bottle_Box2 + Rate: 400 - Index: 44 - Item: Skill_Sha_M_S_Pendant - Rate: 5 + Item: C_CatPaw_7Day_Box_ + Rate: 400 - Index: 45 - Item: Skill_Sha_M_S_Earing - Rate: 5 + Item: Alchemist_Box_ + Rate: 400 - Index: 46 - Item: Skill_Sha_M_S_Shoes - Rate: 5 + Item: Ein_Ore_Box + Rate: 400 - Index: 47 - Item: Skill_Sha_M_S_Armor - Rate: 5 + Item: Fate_Fragment_Box + Rate: 400 - Index: 48 - Item: Main_Lucky_Box - Rate: 569 + Item: Sin_Fragment_Box + Rate: 400 - Index: 49 - Item: Main_Lucky_Box - Rate: 569 + Item: Amethyst_Fragment_Box + Rate: 400 - Index: 50 - Item: Refine_Hero_Weapon - Rate: 1 + Item: Snow_F_Ore_Box + Rate: 400 - Index: 51 - Item: Refine_Hero_Boots - Rate: 1 + Item: C_Wing_Of_Fly_5Day_Box_ + Rate: 400 - Index: 52 - Item: Remodel_Hero_Boots - Rate: 1 + Item: Brown_Dia_Box_3_7 + Rate: 400 - Index: 53 - Item: Main_Lucky_Box - Rate: 10 + Item: Gold + Rate: 400 + Amount: 3 - Index: 54 - Item: Main_Lucky_Box - Rate: 10 - - Index: 55 - Item: Main_Lucky_Box - Rate: 10 - - Index: 56 - Item: Main_Lucky_Box - Rate: 10 - - Index: 57 - Item: Sword_Of_Bluefire_Cube - Rate: 1 - - Index: 58 - Item: Slate_Sword_Cube - Rate: 1 - - Index: 59 - Item: Narcis_Bow_Cube - Rate: 1 - - Index: 60 - Item: Trumpet_Shell_K_Cube - Rate: 1 - - Index: 61 - Item: Barb_Wire_K_Cube - Rate: 1 - - Index: 62 - Item: Main_Lucky_Box - Rate: 474 - - Index: 63 - Item: Main_Lucky_Box - Rate: 47 - - Index: 64 - Item: Main_Lucky_Box - Rate: 47 - - Index: 65 - Item: Main_Lucky_Box - Rate: 1138 - - Index: 66 - Item: Main_Lucky_Box - Rate: 266 - - Index: 67 - Item: Main_Lucky_Box - Rate: 9 - - Index: 68 - Item: Main_Lucky_Box - Rate: 5 - - Index: 69 - Item: Main_Lucky_Box - Rate: 79 - - Index: 70 - Item: Main_Lucky_Box - Rate: 28 - - Index: 71 - Item: Hero_Equipment_Cube - Rate: 47 - - Index: 72 - Item: Main_Lucky_Box - Rate: 66 - - Index: 73 - Item: Main_Lucky_Box - Rate: 66 - - Index: 74 - Item: Large_Sorcerer_Crown - Rate: 5 - - Index: 75 - Item: Viva_Adul_Hat_AB1 - Rate: 9 - - Index: 76 - Item: Viva_Adul_Hat_AB2 - Rate: 9 - - Index: 77 - Item: Viva_Adul_Hat_SC1 - Rate: 9 - - Index: 78 - Item: Viva_Adul_Hat_SC2 - Rate: 9 - - Index: 79 - Item: Hero_Insignia - Rate: 9 - - Index: 80 - Item: Hero_Token_SHC - Rate: 5 - - Index: 81 - Item: Hero_Token_ABC - Rate: 5 - - Index: 82 - Item: Slate_Sword - Rate: 1 - - Index: 83 - Item: Trumpet_Shell_K - Rate: 1 - - Index: 84 - Item: Barb_Wire_K - Rate: 1 - - Index: 85 - Item: Mad_Bunny_Ticket - Rate: 19 - - Index: 86 - Item: Hero_Enchant_Ticket - Rate: 19 + Item: World_Tour_Ticket + Rate: 400 + Amount: 5 - Group: SEASON_EVT_REWARD SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Warnut_Chocoball - Rate: 1233 - - Index: 1 - Item: Old_Card_Album - Rate: 103 - - Index: 2 - Item: Season_Evt_Reward - Rate: 2 - - Index: 3 - Item: True_Hunting_9Refine - Rate: 31 - - Index: 4 - Item: True_Hunting_Opt_A - Rate: 360 - - Index: 5 - Item: True_Hunting_Opt_B - Rate: 360 - - Index: 6 - Item: Octupus_Leg - Rate: 450 - - Index: 7 - Item: Magic_Card_Album - Rate: 103 - - Index: 8 - Item: 2009_Rice_Cake_Soup - Rate: 411 - - Index: 9 - Item: E_Med_Life_Potion - Rate: 154 - Amount: 3 - - Index: 10 - Item: E_Small_Life_Potion - Rate: 154 - Amount: 3 - - Index: 11 - Item: C_Nut_Cracker - Rate: 257 - - Index: 12 - Item: C_bullhead - Rate: 51 - - Index: 13 - Item: BraisedShortRibs - Rate: 514 - - Index: 14 - Item: BraisedSpareribs - Rate: 514 - - Index: 15 - Item: Choco_Tteokguk - Rate: 617 - - Index: 16 - Item: Comp_Small_Mana_Potion - Rate: 77 - Amount: 3 - - Index: 17 - Item: Season_Evt_Reward - Rate: 257 - - Index: 18 - Item: Comp_Power_Booster - Rate: 154 - - Index: 19 - Item: Comp_Almighty - Rate: 154 - - Index: 20 Item: K_Secret_Key - Rate: 13 - - Index: 21 - Item: Nihil_Card - Rate: 360 - - Index: 22 - Item: Agnes_Card - Rate: 360 - - Index: 23 - Item: Jurgen_Card - Rate: 360 - - Index: 24 - Item: Spica_Card - Rate: 360 - - Index: 25 - Item: Kronecker_Card - Rate: 360 - - Index: 26 - Item: Skia_Card - Rate: 360 - - Index: 27 - Item: Kathryn_Card - Rate: 563 - - Index: 28 - Item: Isaac_Card - Rate: 563 - - Index: 29 - Item: C_Midgarts_Glory - Rate: 15 - - Index: 30 - Item: Poe_Card - Rate: 360 - - Index: 31 - Item: C_Pierced_Apple - Rate: 15 + Rate: 25 + - Index: 1 + Item: C_bullhead + Rate: 100 + - Index: 2 + Item: C_Nut_Cracker + Rate: 500 + - Index: 3 + Item: Magic_Card_Album + Rate: 200 + - Index: 4 + Item: Old_Card_Album + Rate: 200 + - Index: 5 + Item: E_Small_Life_Potion + Rate: 300 + Amount: 3 + - Index: 6 + Item: E_Med_Life_Potion + Rate: 300 + Amount: 3 + - Index: 7 + Item: Comp_Power_Booster + Rate: 300 + - Index: 8 + Item: Comp_Almighty + Rate: 300 + - Index: 9 + Item: EVT_JAN02KR + Rate: 500 + - Index: 10 + Item: 2009_Rice_Cake_Soup + Rate: 800 + - Index: 11 + Item: Octupus_Leg + Rate: 875 + - Index: 12 + Item: BraisedShortRibs + Rate: 1000 + - Index: 13 + Item: BraisedSpareribs + Rate: 1000 + - Index: 14 + Item: Choco_Tteokguk + Rate: 1200 + - Index: 15 + Item: Warnut_Chocoball + Rate: 2400 - Group: CANDY_BOX SubGroups: - SubGroup: 1 List: - Index: 0 Item: Candy_Box_Melee - Rate: 3333 + Rate: 1 - Index: 1 Item: Candy_Box_Range - Rate: 3333 + Rate: 1 - Index: 2 Item: Candy_Box_Magic - Rate: 3333 + Rate: 1 - Group: PORING_SUNGLASSES_BOX SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Poring_Sunglasses - Rate: 9988 - - Index: 1 Item: Poring_Sunglasses_K - Rate: 11 - - Index: 2 + Rate: 10 + - Index: 1 Item: Poring_Sunglasses_K_ Rate: 1 - Group: SIGRUN_SHADOW_BOX @@ -59796,21 +64180,21 @@ Body: - SubGroup: 1 List: - Index: 0 - Item: S_Sigrun_Armor - Rate: 5000 - - Index: 1 Item: S_Sigrun_Shield - Rate: 5000 + Rate: 3 + - Index: 1 + Item: S_Sigrun_Armor + Rate: 3 - Group: MAD_BUNNY_BOX SubGroups: - SubGroup: 1 List: - Index: 0 Item: Mad_Bunny_K - Rate: 5000 + Rate: 3 - Index: 1 Item: Mad_Bunny_K_ - Rate: 5000 + Rate: 3 - Group: LEVEL_ACHIEVEMENT_BOX SubGroups: - SubGroup: 0 @@ -59828,54 +64212,54 @@ Body: - SubGroup: 1 List: - Index: 0 - Item: Dragon_Canine - Rate: 1230 - Amount: 10 + Item: Drabone_L + Rate: 70 - Index: 1 - Item: Dragon_Scale - Rate: 1230 - Amount: 10 + Item: Drabone_S + Rate: 200 - Index: 2 - Item: Dragon_Train - Rate: 1230 - Amount: 10 - - Index: 3 - Item: Dragon's_Skin - Rate: 1230 - Amount: 10 - - Index: 4 - Item: Abyss_Ddbox - Rate: 50 - - Index: 5 Item: Dragenergy_Green Rate: 770 Amount: 3 - - Index: 6 + - Index: 3 Item: Dragenergy_Blue Rate: 770 Amount: 3 - - Index: 7 + - Index: 4 Item: Dragenergy_Red Rate: 770 Amount: 3 - - Index: 8 + - Index: 5 Item: Dragenergy_Gold Rate: 770 Amount: 3 - - Index: 9 + - Index: 6 Item: Dragenergy_Purple Rate: 770 Amount: 3 - - Index: 10 + - Index: 7 Item: Dragenergy_Silver Rate: 770 Amount: 3 + - Index: 8 + Item: Abyss_Ddbox + Rate: 50 + - Index: 9 + Item: Dragon's_Skin + Rate: 1230 + Amount: 10 + - Index: 10 + Item: Dragon_Canine + Rate: 1230 + Amount: 10 - Index: 11 - Item: Drabone_L - Rate: 70 + Item: Dragon_Scale + Rate: 1230 + Amount: 10 - Index: 12 - Item: Drabone_S - Rate: 200 + Item: Dragon_Train + Rate: 1230 + Amount: 10 - Index: 13 Item: Abyss_Ddbox3 Rate: 70 @@ -59887,569 +64271,598 @@ Body: - SubGroup: 1 List: - Index: 0 - Item: Soft_Feather - Rate: 3000 - Amount: 5 - - Index: 1 - Item: Rune_Of_Darkness - Rate: 2000 - Amount: 2 - - Index: 2 Item: CassockA_STR Rate: 600 - - Index: 3 + - Index: 1 Item: CassockA_AGI Rate: 600 - - Index: 4 + - Index: 2 Item: CassockA_VIT Rate: 600 - - Index: 5 + - Index: 3 Item: CassockA_DEX Rate: 600 - - Index: 6 + - Index: 4 Item: CassockA_INT Rate: 600 - - Index: 7 + - Index: 5 Item: CassockA_LUK Rate: 600 - - Index: 8 - Item: Cassock_Manteau - Rate: 400 - - Index: 9 + - Index: 6 Item: Cassock_Boots Rate: 400 - - Index: 10 + - Index: 7 + Item: Cassock_Manteau + Rate: 400 + - Index: 8 Item: Angel_Dream Rate: 600 Amount: 3 + - Index: 9 + Item: Rune_Of_Darkness + Rate: 2000 + Amount: 2 + - Index: 10 + Item: Soft_Feather + Rate: 3000 + Amount: 5 - Group: BIO_W_BOX SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Golden_Wrench - Rate: 256 - - Index: 1 - Item: Combo_Fist - Rate: 256 - - Index: 2 - Item: Asura_Bandage - Rate: 256 - - Index: 3 - Item: Staff_Of_Miracle - Rate: 256 - - Index: 4 - Item: Gravitation_Staff - Rate: 256 - - Index: 5 - Item: Adorare_Staff - Rate: 256 - - Index: 6 - Item: Engine_Pilebuncker - Rate: 256 - - Index: 7 - Item: Coolant_Injection - Rate: 256 - - Index: 8 - Item: Gene_Rod - Rate: 256 - - Index: 9 - Item: Lucis_Flail - Rate: 256 - - Index: 10 - Item: Bright_Mace - Rate: 256 - - Index: 11 - Item: Rapid_Fire_C_Bow - Rate: 256 - - Index: 12 - Item: Sharp_Star_Bow - Rate: 256 - - Index: 13 - Item: Aiming_Bow - Rate: 256 - - Index: 14 - Item: Falken_Shooter - Rate: 256 - - Index: 15 - Item: Wind_Gale - Rate: 256 - - Index: 16 Item: Volar - Rate: 256 - - Index: 17 + Rate: 10 + - Index: 1 Item: Vernan - Rate: 256 + Rate: 10 + - Index: 2 + Item: Argen_Blanco + Rate: 10 + - Index: 3 + Item: Farthezan + Rate: 10 + - Index: 4 + Item: Harve + Rate: 10 + - Index: 5 + Item: Fortrage + Rate: 10 + - Index: 6 + Item: Golden_Wrench + Rate: 10 + - Index: 7 + Item: Engine_Pilebuncker + Rate: 10 + - Index: 8 + Item: Maxi_Spanner + Rate: 10 + - Index: 9 + Item: Estal + Rate: 10 + - Index: 10 + Item: Coolant_Injection + Rate: 10 + - Index: 11 + Item: Gene_Rod + Rate: 10 + - Index: 12 + Item: Judgement_Slasher + Rate: 10 + - Index: 13 + Item: Repent_Slasher + Rate: 10 + - Index: 14 + Item: Reaper_Cross + Rate: 10 + - Index: 15 + Item: Agudo_Filo + Rate: 10 + - Index: 16 + Item: Jack_The_Knife + Rate: 10 + - Index: 17 + Item: Platinum_Dagger + Rate: 10 - Index: 18 Item: Crimson_Rose_Stick - Rate: 256 + Rate: 10 - Index: 19 - Item: Psychic_Spear_Rod - Rate: 256 + Item: Staff_Of_Miracle + Rate: 10 - Index: 20 - Item: Dust_Grave - Rate: 256 + Item: Gravitation_Staff + Rate: 10 - Index: 21 - Item: Ponitendtia - Rate: 256 - - Index: 22 - Item: Heart_Whip - Rate: 256 - - Index: 23 - Item: Scarlet_Ribbon - Rate: 256 - - Index: 24 - Item: Reaper_Cross - Rate: 256 - - Index: 25 - Item: Agudo_Filo - Rate: 256 - - Index: 26 - Item: Maxi_Spanner - Rate: 256 - - Index: 27 Item: Boltigin - Rate: 256 + Rate: 10 + - Index: 22 + Item: Psychic_Spear_Rod + Rate: 10 + - Index: 23 + Item: Dust_Grave + Rate: 10 + - Index: 24 + Item: Ponitendtia + Rate: 10 + - Index: 25 + Item: Adorare_Staff + Rate: 10 + - Index: 26 + Item: Lucis_Flail + Rate: 10 + - Index: 27 + Item: Combo_Fist + Rate: 10 - Index: 28 - Item: Judgement_Slasher - Rate: 256 + Item: Asura_Bandage + Rate: 10 - Index: 29 - Item: Repent_Slasher - Rate: 256 + Item: Bright_Mace + Rate: 10 - Index: 30 - Item: Jack_The_Knife - Rate: 256 + Item: Sharp_Star_Bow + Rate: 10 - Index: 31 - Item: Platinum_Dagger - Rate: 256 + Item: Falken_Shooter + Rate: 10 - Index: 32 - Item: Argen_Blanco - Rate: 256 + Item: Aiming_Bow + Rate: 10 - Index: 33 - Item: Harve - Rate: 256 + Item: Wind_Gale + Rate: 10 - Index: 34 - Item: Fortrage - Rate: 256 - - Index: 35 Item: Black_Circle - Rate: 256 - - Index: 36 + Rate: 10 + - Index: 35 Item: Antique_Cello - Rate: 256 + Rate: 10 + - Index: 36 + Item: Heart_Whip + Rate: 10 - Index: 37 - Item: Farthezan - Rate: 256 + Item: Scarlet_Ribbon + Rate: 10 - Index: 38 - Item: Estal - Rate: 256 + Item: Rapid_Fire_C_Bow + Rate: 10 - Group: BIO_DOCU_BOX SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Old_Card_Album - Rate: 1667 - - Index: 1 - Item: Magic_Card_Album - Rate: 1667 - - Index: 2 - Item: Bio_Reseearch_Docu - Rate: 3333 - Amount: 3 - - Index: 3 Item: Bio_Test_Fragment - Rate: 3333 + Rate: 250 Amount: 3 + - Index: 1 + Item: Bio_Test_Fragment + Rate: 100 + Amount: 4 + - Index: 2 + Item: Bio_Test_Fragment + Rate: 100 + Amount: 5 + - Index: 3 + Item: Bio_Reseearch_Docu + Rate: 250 + Amount: 3 + - Index: 4 + Item: Bio_Reseearch_Docu + Rate: 100 + Amount: 4 + - Index: 5 + Item: Bio_Reseearch_Docu + Rate: 100 + Amount: 5 + - Index: 6 + Item: Magic_Card_Album + Rate: 50 + - Index: 7 + Item: Old_Card_Album + Rate: 50 - Group: BIO_REACTANT_BOX SubGroups: - SubGroup: 1 List: - Index: 0 Item: Soul_Of_Swordman - Rate: 1200 + Rate: 120 - Index: 1 Item: Soul_Of_Merchant - Rate: 1200 + Rate: 120 - Index: 2 Item: Soul_Of_Thief - Rate: 1200 + Rate: 120 - Index: 3 Item: Soul_Of_Magicion - Rate: 1200 + Rate: 120 - Index: 4 - Item: Soul_Of_Archer - Rate: 1200 - - Index: 5 Item: Soul_Of_Acolyte - Rate: 1200 + Rate: 120 + - Index: 5 + Item: Soul_Of_Archer + Rate: 120 - Index: 6 - Item: Particles_Of_Energy - Rate: 1000 - - Index: 7 Item: Pieces_Of_Sentiment - Rate: 1200 + Rate: 120 + - Index: 7 + Item: Particles_Of_Energy + Rate: 100 - Index: 8 Item: Pieces_Of_Grudge - Rate: 600 + Rate: 60 - Group: PAYPROMOTION_BOX SubGroups: - SubGroup: 1 List: - Index: 0 - Item: C_Afro_Wig_Red - Rate: 2174 + Item: C_Fairy_Long_BD + Rate: 1 - Index: 1 - Item: C_Man_Medal_Gold - Rate: 2174 + Item: C_Fairy_Long_SV + Rate: 1 - Index: 2 - Item: C_Alice_Wig_PK - Rate: 2174 + Item: C_Man_Medal_Gold + Rate: 5 - Index: 3 - Item: C_Volume_Low_TwinK - Rate: 1304 + Item: C_Alice_Wig_PK + Rate: 5 - Index: 4 Item: C_Lolita_Two_Side_UpK - Rate: 1304 + Rate: 3 - Index: 5 - Item: C_Fairy_Long_BD - Rate: 435 + Item: C_Volume_Low_TwinK + Rate: 3 - Index: 6 - Item: C_Fairy_Long_SV - Rate: 435 + Item: C_Afro_Wig_Red + Rate: 5 - Group: E_BCRYSTAL_BOX SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Oridecon_Stone - Rate: 2042 - Amount: 5 + Item: C_PoringBeret_TW + Rate: 50 - Index: 1 - Item: Crystal_Blue - Rate: 833 - Amount: 5 + Item: C_Heart_Hair_Pin + Rate: 75 - Index: 2 - Item: E_Bcrystal_Box - Rate: 1667 + Item: C_Picnic_Hat + Rate: 75 - Index: 3 Item: C_Cryptura_Hair_Cap - Rate: 125 + Rate: 75 - Index: 4 - Item: C_Heart_Hair_Pin - Rate: 125 - - Index: 5 - Item: C_Picnic_Hat - Rate: 125 - - Index: 6 - Item: White_Slim_Potion_Box_ - Rate: 1667 - - Index: 7 Item: 2019_SStarR_Ticket - Rate: 3333 + Rate: 4000 + - Index: 5 + Item: 2019_SStarR_Ticket + Rate: 2000 + Amount: 3 + - Index: 6 + Item: 2019_SStarR_Tbox + Rate: 1000 + - Index: 7 + Item: White_Slim_Potion_Box_ + Rate: 1000 - Index: 8 - Item: C_PoringBeret_TW - Rate: 83 + Item: Crystal_Blue + Rate: 500 + Amount: 5 + - Index: 9 + Item: Oridecon_Stone + Rate: 1225 + Amount: 5 - Group: E_MCRYSTAL_BOX SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Oridecon_Stone - Rate: 1615 - Amount: 4 - - Index: 1 - Item: Crystal_Blue - Rate: 2923 - Amount: 4 - - Index: 2 - Item: E_Mcrystal_Box - Rate: 1231 - - Index: 3 - Item: C_Cryptura_Hair_Cap - Rate: 77 - - Index: 4 Item: C_Heart_Hair_Pin - Rate: 77 - - Index: 5 + Rate: 50 + - Index: 1 Item: C_Picnic_Hat - Rate: 77 + Rate: 50 + - Index: 2 + Item: C_Cryptura_Hair_Cap + Rate: 50 + - Index: 3 + Item: 2019_SStarR_Ticket + Rate: 3500 + - Index: 4 + Item: 2019_SStarR_Ticket + Rate: 1700 + Amount: 3 + - Index: 5 + Item: 2019_SStarR_Tbox + Rate: 800 - Index: 6 Item: White_Slim_Potion_Box_ - Rate: 1385 + Rate: 900 - Index: 7 - Item: 2019_SStarR_Ticket - Rate: 2615 + Item: Crystal_Blue + Rate: 1900 + Amount: 4 + - Index: 8 + Item: Oridecon_Stone + Rate: 1050 + Amount: 4 - Group: E_SCRYSTAL_BOX SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Oridecon_Stone - Rate: 1321 - Amount: 3 - - Index: 1 - Item: Crystal_Blue - Rate: 4286 - Amount: 3 - - Index: 2 - Item: E_Scrystal_Box - Rate: 1000 - - Index: 3 - Item: C_Cryptura_Hair_Cap - Rate: 36 - - Index: 4 Item: C_Heart_Hair_Pin - Rate: 36 - - Index: 5 + Rate: 25 + - Index: 1 Item: C_Picnic_Hat - Rate: 36 + Rate: 25 + - Index: 2 + Item: C_Cryptura_Hair_Cap + Rate: 25 + - Index: 3 + Item: 2019_SStarR_Ticket + Rate: 3000 + - Index: 4 + Item: 2019_SStarR_Ticket + Rate: 1500 + Amount: 3 + - Index: 5 + Item: 2019_SStarR_Tbox + Rate: 700 - Index: 6 Item: White_Slim_Potion_Box_ - Rate: 1143 + Rate: 800 - Index: 7 - Item: 2019_SStarR_Ticket - Rate: 2143 + Item: Crystal_Blue + Rate: 3000 + Amount: 3 + - Index: 8 + Item: Oridecon_Stone + Rate: 925 + Amount: 3 - Group: BOOSTER_PACK_1 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Blue_Potion_B_10 - Amount: 2 - - Index: 1 Item: Novice_Potion_B Amount: 200 + - Index: 1 + Item: E_Wing_Of_Fly_3Day_Box - Index: 2 - Item: Arrow_Container - Amount: 5 - - Index: 3 Item: N_Butterfly_Wing Amount: 30 + - Index: 3 + Item: Blue_Potion_B_10 + Amount: 2 - Index: 4 Item: N_Magnifier Amount: 30 - Index: 5 - Item: Metal_Dagger + Item: Arrow_Container + Amount: 5 - Index: 6 - Item: C_School_Bag_BU + Item: Metal_Dagger - Index: 7 - Item: Center_Potion_B - Amount: 2 - - Index: 8 - Item: E_Wing_Of_Fly_3Day_Box - - Index: 9 - Item: Metal_W_Ticket - - Index: 10 - Item: Booster_Pack_15 - - Index: 11 Item: Stater_A_Box - - Index: 12 - Item: Booster_Call - - Index: 13 - Item: C_Squirrel_Ear_Hat_Kr + - Index: 8 + Item: Time_Over_S_Box + - Index: 9 + Item: Booster_Pack_10 + - Index: 10 + Item: Bullet_Case + Amount: 5 - Group: BOOSTER_PACK_15 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Blue_Potion_B_10 - Amount: 3 - - Index: 1 - Item: Arrow_Container - Amount: 5 - - Index: 2 - Item: Center_Potion_B - Amount: 5 - - Index: 3 Item: Orange_Potion_B_20 Amount: 4 - - Index: 4 - Item: Booster_Pack_30 - - Index: 5 + - Index: 1 Item: Boarding_Halter_Box30_Z - - Index: 6 + - Index: 2 + Item: Blue_Potion_B_10 + Amount: 3 + - Index: 3 + Item: Center_Potion_B + Amount: 5 + - Index: 4 + Item: Arrow_Container + Amount: 5 + - Index: 5 Item: Booster_Coin Amount: 4 + - Index: 6 + Item: Booster_Pack_30 + - Index: 7 + Item: Bullet_Case + Amount: 5 - Group: BOOSTER_PACK_30 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Blue_Potion_B_10 - Amount: 4 - - Index: 1 - Item: Arrow_Container - Amount: 5 - - Index: 2 Item: Orange_Potion_B_20 Amount: 8 + - Index: 1 + Item: Blue_Potion_B_10 + Amount: 4 + - Index: 2 + Item: Bullet_Case + Amount: 5 - Index: 3 + Item: Arrow_Container + Amount: 5 + - Index: 4 + Item: Booster_Coin + Amount: 12 + - Index: 5 Item: World_Tour_Ticket Amount: 10 - - Index: 4 - Item: Booster_Pack_45 - - Index: 5 - Item: Metal_7_Ticket - Index: 6 - Item: Exp_Up_1 - Amount: 5 - - Index: 7 - Item: Jexp_Up_1 - Amount: 5 - - Index: 8 - Item: Booster_Coin - Amount: 8 + Item: Booster_Pack_40 - Group: BOOSTER_PACK_45 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Blue_Potion_B_10 - Amount: 5 + Item: Yellow_Potion_B_20 + Amount: 4 - Index: 1 - Item: Arrow_Container + Item: Blue_Potion_B_10 Amount: 5 - Index: 2 Item: Awakening_Potion_B Amount: 2 - Index: 3 - Item: Yellow_Potion_B_20 - Amount: 4 + Item: Arrow_Container + Amount: 5 - Index: 4 - Item: World_Tour_Ticket - Amount: 10 - - Index: 5 - Item: Booster_Pack_60 - - Index: 6 Item: Booster_Coin Amount: 10 + - Index: 5 + Item: World_Tour_Ticket + Amount: 10 + - Index: 6 + Item: Booster_Pack_60 + - Index: 7 + Item: Bullet_Case + Amount: 5 - Group: BOOSTER_PACK_60 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Blue_Potion_B_10 - Amount: 6 - - Index: 1 Item: Yellow_Potion_B_20 Amount: 8 + - Index: 1 + Item: Blue_Potion_B_10 + Amount: 6 - Index: 2 - Item: Comp_Power_Booster - Amount: 5 - - Index: 3 Item: Comp_Almighty Amount: 5 + - Index: 3 + Item: Comp_Power_Booster + Amount: 5 - Index: 4 - Item: World_Tour_Ticket - Amount: 10 - - Index: 5 - Item: Booster_Pack_75 - - Index: 6 - Item: Time_Over_S_Box - - Index: 7 Item: E_Infinity_Drink Amount: 5 - - Index: 8 + - Index: 5 Item: Booster_Coin - Amount: 15 + Amount: 24 + - Index: 6 + Item: World_Tour_Ticket + Amount: 10 + - Index: 7 + Item: Booster_Pack_70 - Group: BOOSTER_PACK_75 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Blue_Potion_B_10 - Amount: 7 - - Index: 1 - Item: E_Life_Potion_Pack - - Index: 2 Item: White_Potion_B_20 Amount: 4 - - Index: 3 - Item: World_Tour_Ticket - Amount: 10 - - Index: 4 - Item: Booster_Pack_90 - - Index: 5 + - Index: 1 + Item: Blue_Potion_B_10 + Amount: 7 + - Index: 2 Item: E_Red_Booster Amount: 20 - - Index: 6 + - Index: 3 + Item: E_Life_Potion_Pack + - Index: 4 Item: Exp_Up_2 Amount: 5 - - Index: 7 + - Index: 5 Item: Jexp_Up_1 Amount: 5 - - Index: 8 + - Index: 6 Item: Booster_Coin Amount: 20 + - Index: 7 + Item: World_Tour_Ticket + Amount: 10 + - Index: 8 + Item: Booster_Pack_90 - Group: BOOSTER_PACK_90 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Blue_Potion_B_10 - Amount: 8 - - Index: 1 Item: White_Potion_B_20 Amount: 8 - - Index: 2 + - Index: 1 Item: E_Wing_Of_Fly_3Day_Box + - Index: 2 + Item: Blue_Potion_B_10 + Amount: 8 - Index: 3 - Item: Comp_Power_Booster - Amount: 5 - - Index: 4 Item: Comp_Almighty Amount: 5 + - Index: 4 + Item: Comp_Power_Booster + Amount: 5 - Index: 5 - Item: World_Tour_Ticket - Amount: 10 - - Index: 6 - Item: Booster_Pack_100 - - Index: 7 Item: E_Infinity_Drink Amount: 5 - - Index: 8 + - Index: 6 Item: Booster_Coin - Amount: 22 + Amount: 36 + - Index: 7 + Item: World_Tour_Ticket + Amount: 10 + - Index: 8 + Item: Booster_Pack_100 + - Index: 9 + Item: Lv_Up_T_90 + Amount: 3 + - Index: 10 + Item: E_Life_Potion_Pack + - Index: 11 + Item: E_Red_Booster + Amount: 20 - Group: BOOSTER_PACK_100 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Blue_Potion_B_10 - Amount: 9 - - Index: 1 Item: E_Life_Potion_Pack - - Index: 2 + - Index: 1 Item: E_DEF_Scroll_Box + - Index: 2 + Item: Comp_Small_Mana_Potion + Amount: 40 - Index: 3 - Item: Biting_Off_Rideword - - Index: 4 Item: E_Wing_Of_Fly_3Day_Box + - Index: 4 + Item: Boarding_Halter_Box30_Z - Index: 5 - Item: World_Tour_Ticket - Amount: 10 - - Index: 6 - Item: Booster_Pack_115 - - Index: 7 - Item: Boost_Up_1 - Amount: 3 - - Index: 8 Item: E_Red_Booster Amount: 20 - - Index: 9 - Item: Boarding_Halter_Box30_Z - - Index: 10 - Item: Booster_W_Up_3 - - Index: 11 - Item: Boost_A_Ticket - - Index: 12 - Item: Booster_W_Ticket - - Index: 13 - Item: Booster_Coin - Amount: 25 - - Index: 14 + - Index: 6 + Item: Booster_B_M_1 + Amount: 3 + - Index: 7 Item: EpisodClear16_ + - Index: 8 + Item: Biting_Off_Rideword + - Index: 9 + Item: Booster_W_Ticket + - Index: 10 + Item: Boost_Armor_Box + - Index: 11 + Item: Booster_W_Up_3 + - Index: 12 + Item: Booster_Coin + Amount: 40 + - Index: 13 + Item: Booster_Pack_110 + - Index: 14 + Item: World_Tour_Ticket + Amount: 20 - Group: BOOSTER_PACK_115 SubGroups: - SubGroup: 0 @@ -60458,79 +64871,76 @@ Body: Item: Blue_Potion_B_10 Amount: 10 - Index: 1 - Item: Battle_Manual100 - Amount: 2 + Item: Comp_Almighty + Amount: 5 - Index: 2 Item: Comp_Power_Booster Amount: 5 - Index: 3 - Item: Comp_Almighty - Amount: 5 - - Index: 4 - Item: Booster_Pack_130 - - Index: 5 Item: E_Infinity_Drink Amount: 5 - - Index: 6 + - Index: 4 Item: Exp_Up_3 Amount: 5 - - Index: 7 + - Index: 5 Item: Jexp_Up_1 Amount: 10 - - Index: 8 + - Index: 6 + Item: Battle_Manual100 + Amount: 2 + - Index: 7 Item: Booster_Coin Amount: 30 + - Index: 8 + Item: Booster_Pack_130 - Group: BOOSTER_PACK_130 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: E_Life_Potion_Pack - Amount: 2 + Item: Comp_Almighty + Amount: 5 - Index: 1 - Item: E_DEF_Scroll_Box - Amount: 2 + Item: Comp_Power_Booster + Amount: 5 - Index: 2 - Item: Comp_Small_Mana_Potion - Amount: 40 + Item: E_Infinity_Drink + Amount: 5 - Index: 3 - Item: World_Tour_Ticket - Amount: 10 - - Index: 4 - Item: Inventory_Ex_Evt + Item: Booster_B_M_1 Amount: 3 - - Index: 5 - Item: Booster_Pack_145 - - Index: 6 - Item: E_Red_Booster - Amount: 40 - - Index: 7 + - Index: 4 Item: Booster_Coin - Amount: 32 + Amount: 58 + - Index: 5 + Item: World_Tour_Ticket + Amount: 20 + - Index: 6 + Item: Booster_Pack_140 - Group: BOOSTER_PACK_145 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Battle_Manual100 - Amount: 2 + Item: Comp_Almighty + Amount: 10 - Index: 1 Item: Comp_Power_Booster Amount: 10 - Index: 2 - Item: Comp_Almighty - Amount: 10 - - Index: 3 - Item: World_Tour_Ticket - Amount: 10 - - Index: 4 - Item: Booster_Pack_160 - - Index: 5 Item: E_Infinity_Drink Amount: 10 - - Index: 6 + - Index: 3 + Item: Battle_Manual100 + Amount: 2 + - Index: 4 Item: Booster_Coin Amount: 36 + - Index: 5 + Item: World_Tour_Ticket + Amount: 10 + - Index: 6 + Item: Booster_Pack_160 - Group: BOOSTER_PACK_160 SubGroups: - SubGroup: 0 @@ -60542,52 +64952,49 @@ Body: Item: E_DEF_Scroll_Box Amount: 3 - Index: 2 - Item: Battle_Manual100 - Amount: 2 - - Index: 3 Item: Comp_Small_Mana_Potion Amount: 60 - - Index: 4 - Item: World_Tour_Ticket - Amount: 10 - - Index: 5 - Item: Inventory_Ex_Evt - Amount: 3 - - Index: 6 - Item: Booster_Pack_175 - - Index: 7 + - Index: 3 Item: E_Red_Booster Amount: 60 - - Index: 8 - Item: Exp_Up_4 - Amount: 5 - - Index: 9 + - Index: 4 + Item: Inventory_Ex_Evt + Amount: 3 + - Index: 5 + Item: Booster_B_M_2 + Amount: 3 + - Index: 6 Item: Booster_Coin - Amount: 40 + Amount: 76 + - Index: 7 + Item: World_Tour_Ticket + Amount: 20 + - Index: 8 + Item: Booster_Pack_170 - Group: BOOSTER_PACK_175 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Battle_Manual100 - Amount: 2 + Item: Comp_Almighty + Amount: 10 - Index: 1 Item: Comp_Power_Booster Amount: 10 - Index: 2 - Item: Comp_Almighty - Amount: 10 - - Index: 3 - Item: World_Tour_Ticket - Amount: 10 - - Index: 4 Item: E_Infinity_Drink Amount: 10 - - Index: 5 - Item: Booster_Pack_190 - - Index: 6 + - Index: 3 + Item: Battle_Manual100 + Amount: 2 + - Index: 4 Item: Booster_Coin Amount: 44 + - Index: 5 + Item: World_Tour_Ticket + Amount: 10 + - Index: 6 + Item: Booster_Pack_190 - Group: STATER_A_BOX SubGroups: - SubGroup: 0 @@ -60607,9 +65014,9 @@ Body: - Index: 0 Item: Atker_Plate - Index: 1 - Item: Atker_Greave - - Index: 2 Item: Atker_Manteau + - Index: 2 + Item: Atker_Greave - Index: 3 Item: Atker_Ring - Group: BOOST_RAN_BOX @@ -60619,9 +65026,9 @@ Body: - Index: 0 Item: Ran_Suits - Index: 1 - Item: Ran_Boots - - Index: 2 Item: Ran_Manteau + - Index: 2 + Item: Ran_Boots - Index: 3 Item: Ran_Brooch - Group: BOOST_ELE_BOX @@ -60631,9 +65038,9 @@ Body: - Index: 0 Item: Ele_Robe - Index: 1 - Item: Ele_Shoes - - Index: 2 Item: Ele_Muffler + - Index: 2 + Item: Ele_Shoes - Index: 3 Item: Ele_Earing - Group: BOOST_DEFN_BOX @@ -60643,9 +65050,9 @@ Body: - Index: 0 Item: Defn_Robe - Index: 1 - Item: Defn_Shoes - - Index: 2 Item: Defn_Muffler + - Index: 2 + Item: Defn_Shoes - Index: 3 Item: Defn_Earing - Group: GOAL_GIFT_BOX @@ -60653,56 +65060,56 @@ Body: - SubGroup: 1 List: - Index: 0 - Item: C_Garden_Of_Eden - Rate: 1000 - - Index: 1 - Item: C_Fluffy_Angel_Cape - Rate: 1000 - - Index: 2 - Item: C_Male_Poring_Earmuff - Rate: 2500 - - Index: 3 - Item: C_Adv_Whisper_Mask_J - Rate: 2500 - - Index: 4 Item: C_Miyabi_Long_Hair Rate: 500 - - Index: 5 + - Index: 1 + Item: C_Garden_Of_Eden + Rate: 1000 + - Index: 2 + Item: C_Fluffy_Angel_Cape + Rate: 1000 + - Index: 3 Item: C_VesperHeadGear Rate: 2500 + - Index: 4 + Item: C_Adv_Whisper_Mask_J + Rate: 2500 + - Index: 5 + Item: C_Male_Poring_Earmuff + Rate: 2500 - Group: BOOSTER_PACK_PREORDER SubGroups: - SubGroup: 0 List: - Index: 0 - Item: E_Mysterious_Water - Amount: 30 + Item: E_Blessing_10_Scroll + Amount: 50 - Index: 1 - Item: E_Med_Life_Potion - Amount: 30 + Item: E_Inc_Agi_10_Scroll + Amount: 50 - Index: 2 Item: E_Small_Life_Potion Amount: 30 - Index: 3 - Item: E_Blessing_10_Scroll - Amount: 50 + Item: E_Med_Life_Potion + Amount: 30 - Index: 4 - Item: E_Inc_Agi_10_Scroll - Amount: 50 + Item: E_Mysterious_Water + Amount: 30 - Index: 5 - Item: Comp_Small_Mana_Potion + Item: Comp_Almighty Amount: 20 - Index: 6 Item: Comp_Power_Booster Amount: 20 - Index: 7 - Item: Comp_Almighty + Item: E_Infinity_Drink Amount: 20 - Index: 8 - Item: World_Tour_Ticket + Item: Comp_Small_Mana_Potion Amount: 20 - Index: 9 - Item: E_Infinity_Drink + Item: World_Tour_Ticket Amount: 20 - Index: 10 Item: Booster_Coin @@ -60712,11 +65119,11 @@ Body: - SubGroup: 0 List: - Index: 0 - Item: S_Timeoverload_Weapon - - Index: 1 Item: S_Timeoverload_Armor - - Index: 2 + - Index: 1 Item: S_Timeoverload_Shield + - Index: 2 + Item: S_Timeoverload_Weapon - Index: 3 Item: S_Timeoverload_Shoes - Index: 4 @@ -60735,1341 +65142,1300 @@ Body: - SubGroup: 1 List: - Index: 0 - Item: Temporal_M_Str - Rate: 1667 + Item: Temporal_M_Luk + Rate: 1 - Index: 1 - Item: Temporal_M_Agi - Rate: 1667 + Item: Temporal_M_Dex + Rate: 1 - Index: 2 Item: Temporal_M_Vit - Rate: 1667 + Rate: 1 - Index: 3 - Item: Temporal_M_Int - Rate: 1667 + Item: Temporal_M_Agi + Rate: 1 - Index: 4 - Item: Temporal_M_Dex - Rate: 1667 + Item: Temporal_M_Str + Rate: 1 - Index: 5 - Item: Temporal_M_Luk - Rate: 1667 + Item: Temporal_M_Int + Rate: 1 - Group: LAPINE_DDUKDDAKBOX2 SubGroups: - SubGroup: 1 - List: - - Index: 0 - Item: JobShadow_Mix_Weapon - Rate: 667 - - Index: 1 - Item: JobShadow_Mix_Armor - Rate: 667 - - Index: 2 - Item: JobShadow_Mix_Shoes - Rate: 667 - - Index: 3 - Item: JobShadow_Mix_Shield - Rate: 667 - - Index: 4 - Item: JobShadow_Mix_Pendant - Rate: 667 - - Index: 5 - Item: JobShadow_Mix_Earing - Rate: 667 - - Index: 6 - Item: StatusShadow_Mix - Rate: 667 - - Index: 7 - Item: GemstoneShadow_Mix - Rate: 667 - - Index: 8 - Item: BearersShadow_Mix - Rate: 667 - - Index: 9 - Item: ComposeShadow_Mix - Rate: 667 - - Index: 10 - Item: RaceShadow_Mix - Rate: 667 - - Index: 11 - Item: InfinityShadow_Mix - Rate: 667 - - Index: 12 - Item: PerfectSize_Mix - Rate: 667 - - Index: 13 - Item: MagicPiercing_Mix - Rate: 667 - - Index: 14 - Item: Piercing_Mix - Rate: 667 - - SubGroup: 2 List: - Index: 0 Item: Shadow_Mix_Recipe - Rate: 3571 + Rate: 250 - Index: 1 Item: EnchantStone_Recipe - Rate: 3571 + Rate: 250 - Index: 2 Item: PetEgg_Recipe - Rate: 1429 + Rate: 100 - Index: 3 Item: Nyang_Costume_Recipe - Rate: 1429 + Rate: 100 + - Index: 4 + Item: RaceShadow_Mix + Rate: 1 + Announced: true + - Index: 5 + Item: BearersShadow_Mix + Rate: 1 + Announced: true + - Index: 6 + Item: GemstoneShadow_Mix + Rate: 1 + Announced: true + - Index: 7 + Item: StatusShadow_Mix + Rate: 1 + Announced: true + - Index: 8 + Item: ComposeShadow_Mix + Rate: 1 + Announced: true + - Index: 9 + Item: InfinityShadow_Mix + Rate: 1 + Announced: true + - Index: 10 + Item: PerfectSize_Mix + Rate: 1 + Announced: true + - Index: 11 + Item: MagicPiercing_Mix + Rate: 1 + Announced: true + - Index: 12 + Item: Piercing_Mix + Rate: 1 + Announced: true + - Index: 13 + Item: JobShadow_Mix_Pendant + Rate: 1 + Announced: true + - Index: 14 + Item: JobShadow_Mix_Weapon + Rate: 1 + Announced: true + - Index: 15 + Item: JobShadow_Mix_Armor + Rate: 1 + Announced: true + - Index: 16 + Item: JobShadow_Mix_Shoes + Rate: 1 + Announced: true + - Index: 17 + Item: JobShadow_Mix_Shield + Rate: 1 + Announced: true + - Index: 18 + Item: JobShadow_Mix_Earing + Rate: 1 + Announced: true + - Index: 19 + Item: Shadow_Mix_Recipe + Rate: 250 + - Index: 20 + Item: EnchantStone_Recipe + Rate: 250 + - Index: 21 + Item: PetEgg_Recipe + Rate: 100 + - Index: 22 + Item: Nyang_Costume_Recipe + Rate: 100 - Group: KR_B_SPECIAL02 SubGroups: - - SubGroup: 1 + - SubGroup: 0 List: - Index: 0 - Item: C_Over_Protector - Rate: 751 + Item: Kr_B_Special01 + Amount: 2 - Index: 1 - Item: C_Evil_Druid_Hat_Black - Rate: 751 + Item: All_In_One_Healing_B + Amount: 2 - Index: 2 - Item: C_Cons_Of_Water - Rate: 8 + Item: Cachua_Coupon - Index: 3 - Item: C_Two_Tone_Beret - Rate: 751 - - Index: 4 - Item: C_Bloody_Wing - Rate: 23 - - Index: 5 - Item: C_BlueAngeling_Wing - Rate: 23 - - Index: 6 - Item: C_Wings_Of_Raguel - Rate: 23 - - Index: 7 - Item: C_Wings_Of_Raphael - Rate: 23 - - Index: 8 - Item: C_Underlamp - Rate: 751 - - Index: 9 - Item: C_Piamette_Hood_Red - Rate: 751 - - Index: 10 - Item: C_Piamette_BowTie_Red - Rate: 751 - - Index: 11 - Item: C_White_Rabbit - Rate: 751 - - Index: 12 - Item: C_False_Ears - Rate: 751 - - Index: 13 - Item: C_SeraphimCoronet - Rate: 751 - - Index: 14 - Item: C_Greater_Dracul_Horn - Rate: 751 - - Index: 15 - Item: C_Variant_Veil - Rate: 751 - - Index: 16 - Item: C_Jitterbug_Cap - Rate: 751 - - Index: 17 - Item: C_Orange_Rabbit - Rate: 751 - - Index: 18 - Item: C_Cons_Of_Fire - Rate: 8 - - Index: 19 - Item: C_ResonateTaego - Rate: 23 - - Index: 20 - Item: C_Miracle_Plant - Rate: 23 - - Index: 21 - Item: C_SnackParty - Rate: 23 - - Index: 22 - Item: C_Cons_Of_Wind - Rate: 8 - - Index: 23 - Item: Cons_Of_Earth - Rate: 8 - - Index: 24 - Item: C_Floating_Parasol - Rate: 23 - - Index: 25 - Item: C_Cons_Of_Darkness - Rate: 8 - - Index: 26 - Item: C_Hair_Bun_Wave - Rate: 23 + Item: Evt_Cos_Coin - Group: GOLDPCBANG_SHIELDBOX SubGroups: - SubGroup: 1 List: - Index: 0 Item: Sharel_Shield - Rate: 1429 + Rate: 1 - Index: 1 - Item: Flow_Shield - Rate: 1429 - - Index: 2 Item: Sombre_Shield - Rate: 1429 + Rate: 1 + - Index: 2 + Item: Flow_Shield + Rate: 1 - Index: 3 Item: Poison_Shield - Rate: 1429 + Rate: 1 - Index: 4 Item: Lumiere_Shield - Rate: 1429 + Rate: 1 - Index: 5 - Item: Rouban_Shield - Rate: 1429 - - Index: 6 Item: Lian_Shield - Rate: 1429 + Rate: 1 + - Index: 6 + Item: Rouban_Shield + Rate: 1 - Group: SET_OF_TAIMING_ITEM2 SubGroups: - SubGroup: 1 List: - Index: 0 + Item: Unripe_Apple + Rate: 10 + - Index: 1 + Item: Orange_Juice + Rate: 10 + - Index: 2 + Item: Bitter_Herb + Rate: 10 + - Index: 3 + Item: Rainbow_Carrot + Rate: 10 + - Index: 4 + Item: Earthworm_The_Dude + Rate: 10 + - Index: 5 + Item: Rotten_Fish + Rate: 10 + - Index: 6 + Item: Lusty_Iron + Rate: 10 + - Index: 7 + Item: Monster_Juice + Rate: 10 + - Index: 8 + Item: Sweet_Milk + Rate: 10 + - Index: 9 + Item: Well_Dried_Bone + Rate: 10 + - Index: 10 Item: Singing_Plant - Rate: 10000 + Rate: 10 + - Index: 11 + Item: Dew_Laden_Moss + Rate: 10 + - Index: 12 + Item: Deadly_Noxious_Herb + Rate: 10 + - Index: 13 + Item: Fatty_Chubby_Earthworm + Rate: 10 + - Index: 14 + Item: Baked_Yam + Rate: 10 + - Index: 15 + Item: Tropical_Banana + Rate: 10 + - Index: 16 + Item: Horror_Of_Tribe + Rate: 10 + - Index: 17 + Item: No_Recipient + Rate: 10 + - Index: 18 + Item: Old_Broom + Rate: 10 + - Index: 19 + Item: Silver_Knife_Of_Chaste + Rate: 10 + - Index: 20 + Item: Armlet_Of_Obedience + Rate: 10 + - Index: 21 + Item: Shining_Stone + Rate: 10 + - Index: 22 + Item: Contracts_In_Shadow + Rate: 10 + - Index: 23 + Item: Book_Of_Devil + Rate: 10 + - Index: 24 + Item: Heart_Of_Her + Rate: 10 + - Index: 25 + Item: Prohibition_Red_Candle + Rate: 10 + - Index: 26 + Item: Sway_Apron + Rate: 10 + - Index: 27 + Item: Skull_Helm + Rate: 10 + - Index: 28 + Item: Monster_Oxygen_Mask + Rate: 10 + - Index: 29 + Item: Transparent_Headgear + Rate: 10 + - Index: 30 + Item: Pacifier + Rate: 10 + - Index: 31 + Item: Wig + Rate: 10 + - Index: 32 + Item: Queen's_Hair_Ornament + Rate: 10 + - Index: 33 + Item: Silk_Ribbon + Rate: 10 + - Index: 34 + Item: Punisher + Rate: 10 + - Index: 35 + Item: Wild_Flower + Rate: 10 + - Index: 36 + Item: Battered_Pot + Rate: 10 + - Index: 37 + Item: Stellar_Hairpin + Rate: 10 + - Index: 38 + Item: Tiny_Egg_Shell + Rate: 10 + - Index: 39 + Item: Backpack + Rate: 10 + - Index: 40 + Item: Rocker_Glasses + Rate: 10 + - Index: 41 + Item: Green_Lace + Rate: 10 + - Index: 42 + Item: Golden_Bell + Rate: 10 + - Index: 43 + Item: Bark_Shorts + Rate: 10 + - Index: 44 + Item: Monkey_Circlet + Rate: 10 + - Index: 45 + Item: Red_Muffler + Rate: 10 + - Index: 46 + Item: Sword_Of_Grave_Keeper + Rate: 10 + - Index: 47 + Item: Very_Red_Juice + Rate: 10 + - Index: 48 + Item: Delicious_Shaved_Ice + Rate: 10 + - Index: 49 + Item: Fit_Pipe + Rate: 10 + - Index: 50 + Item: Gril's_Naivety + Rate: 10 + - Index: 51 + Item: Boy's_Naivety + Rate: 10 + - Index: 52 + Item: Flaming_Ice + Rate: 10 + - Index: 53 + Item: Tantanmen + Rate: 10 + - Index: 54 + Item: Skull_Of_Vagabond + Rate: 10 + - Index: 55 + Item: Sap_Jelly + Rate: 10 + - Index: 56 + Item: Airship_Part + Rate: 10 + - Index: 57 + Item: Little_Dall_Needle + Rate: 10 + - Index: 58 + Item: Very_Soft_Plant + Rate: 10 + - Index: 59 + Item: Elixir_Bandage + Rate: 10 + - Index: 60 + Item: Dew_Of_Old_Tree + Rate: 10 + - Index: 61 + Item: Foul_Rotten_Meat + Rate: 10 + - Index: 62 + Item: Hell_Contract + Rate: 10 + - Index: 63 + Item: Luxury_Whisky_Bottle + Rate: 10 - SubGroup: 2 List: - Index: 0 + Item: Unripe_Apple + Rate: 10 + - Index: 1 + Item: Orange_Juice + Rate: 10 + - Index: 2 + Item: Bitter_Herb + Rate: 10 + - Index: 3 + Item: Rainbow_Carrot + Rate: 10 + - Index: 4 + Item: Earthworm_The_Dude + Rate: 10 + - Index: 5 + Item: Rotten_Fish + Rate: 10 + - Index: 6 + Item: Lusty_Iron + Rate: 10 + - Index: 7 + Item: Monster_Juice + Rate: 10 + - Index: 8 + Item: Sweet_Milk + Rate: 10 + - Index: 9 + Item: Well_Dried_Bone + Rate: 10 + - Index: 10 + Item: Singing_Flower + Rate: 10 + - Index: 11 + Item: Dew_Laden_Moss + Rate: 10 + - Index: 12 + Item: Deadly_Noxious_Herb + Rate: 10 + - Index: 13 + Item: Fatty_Chubby_Earthworm + Rate: 10 + - Index: 14 + Item: Baked_Yam + Rate: 10 + - Index: 15 + Item: Tropical_Banana + Rate: 10 + - Index: 16 + Item: Horror_Of_Tribe + Rate: 10 + - Index: 17 + Item: No_Recipient + Rate: 10 + - Index: 18 + Item: Old_Broom + Rate: 10 + - Index: 19 + Item: Silver_Knife_Of_Chaste + Rate: 10 + - Index: 20 + Item: Armlet_Of_Obedience + Rate: 10 + - Index: 21 + Item: Shining_Stone + Rate: 10 + - Index: 22 + Item: Contracts_In_Shadow + Rate: 10 + - Index: 23 + Item: Book_Of_Devil + Rate: 10 + - Index: 24 + Item: Heart_Of_Her + Rate: 10 + - Index: 25 + Item: Prohibition_Red_Candle + Rate: 10 + - Index: 26 + Item: Sway_Apron + Rate: 10 + - Index: 27 + Item: Skull_Helm + Rate: 10 + - Index: 28 + Item: Monster_Oxygen_Mask + Rate: 10 + - Index: 29 + Item: Transparent_Headgear + Rate: 10 + - Index: 30 + Item: Pacifier + Rate: 10 + - Index: 31 + Item: Wig + Rate: 10 + - Index: 32 + Item: Queen's_Hair_Ornament + Rate: 10 + - Index: 33 + Item: Silk_Ribbon + Rate: 10 + - Index: 34 + Item: Punisher + Rate: 10 + - Index: 35 + Item: Wild_Flower + Rate: 10 + - Index: 36 + Item: Battered_Pot + Rate: 10 + - Index: 37 + Item: Stellar_Hairpin + Rate: 10 + - Index: 38 + Item: Tiny_Egg_Shell + Rate: 10 + - Index: 39 + Item: Backpack + Rate: 10 + - Index: 40 + Item: Rocker_Glasses + Rate: 10 + - Index: 41 + Item: Green_Lace + Rate: 10 + - Index: 42 + Item: Golden_Bell + Rate: 10 + - Index: 43 + Item: Bark_Shorts + Rate: 10 + - Index: 44 + Item: Monkey_Circlet + Rate: 10 + - Index: 45 + Item: Red_Muffler + Rate: 10 + - Index: 46 + Item: Sword_Of_Grave_Keeper + Rate: 10 + - Index: 47 + Item: Very_Red_Juice + Rate: 10 + - Index: 48 + Item: Delicious_Shaved_Ice + Rate: 10 + - Index: 49 + Item: Fit_Pipe + Rate: 10 + - Index: 50 + Item: Gril's_Naivety + Rate: 10 + - Index: 51 + Item: Boy's_Naivety + Rate: 10 + - Index: 52 + Item: Flaming_Ice + Rate: 10 + - Index: 53 + Item: Tantanmen + Rate: 10 + - Index: 54 + Item: Skull_Of_Vagabond + Rate: 10 + - Index: 55 + Item: Sap_Jelly + Rate: 10 + - Index: 56 + Item: Airship_Part + Rate: 10 + - Index: 57 + Item: Little_Dall_Needle + Rate: 10 + - Index: 58 + Item: Very_Soft_Plant + Rate: 10 + - Index: 59 + Item: Elixir_Bandage + Rate: 10 + - Index: 60 + Item: Dew_Of_Old_Tree + Rate: 10 + - Index: 61 Item: Foul_Rotten_Meat - Rate: 10000 + Rate: 10 + - Index: 62 + Item: Hell_Contract + Rate: 10 + - Index: 63 + Item: Luxury_Whisky_Bottle + Rate: 10 - SubGroup: 3 List: - Index: 0 Item: Unripe_Apple - Rate: 159 + Rate: 10 - Index: 1 Item: Orange_Juice - Rate: 159 + Rate: 10 - Index: 2 Item: Bitter_Herb - Rate: 159 + Rate: 10 - Index: 3 Item: Rainbow_Carrot - Rate: 159 + Rate: 10 - Index: 4 Item: Earthworm_The_Dude - Rate: 159 + Rate: 10 - Index: 5 Item: Rotten_Fish - Rate: 159 + Rate: 10 - Index: 6 Item: Lusty_Iron - Rate: 159 + Rate: 10 - Index: 7 Item: Monster_Juice - Rate: 159 + Rate: 10 - Index: 8 Item: Sweet_Milk - Rate: 159 + Rate: 10 - Index: 9 Item: Well_Dried_Bone - Rate: 159 + Rate: 10 - Index: 10 Item: Singing_Flower - Rate: 159 + Rate: 10 - Index: 11 Item: Dew_Laden_Moss - Rate: 159 + Rate: 10 - Index: 12 Item: Deadly_Noxious_Herb - Rate: 159 + Rate: 10 - Index: 13 Item: Fatty_Chubby_Earthworm - Rate: 159 + Rate: 10 - Index: 14 Item: Baked_Yam - Rate: 159 + Rate: 10 - Index: 15 Item: Tropical_Banana - Rate: 159 + Rate: 10 - Index: 16 Item: Horror_Of_Tribe - Rate: 159 + Rate: 10 - Index: 17 Item: No_Recipient - Rate: 159 + Rate: 10 - Index: 18 Item: Old_Broom - Rate: 159 + Rate: 10 - Index: 19 Item: Silver_Knife_Of_Chaste - Rate: 159 + Rate: 10 - Index: 20 Item: Armlet_Of_Obedience - Rate: 159 + Rate: 10 - Index: 21 Item: Shining_Stone - Rate: 159 + Rate: 10 - Index: 22 Item: Contracts_In_Shadow - Rate: 159 + Rate: 10 - Index: 23 Item: Book_Of_Devil - Rate: 159 + Rate: 10 - Index: 24 Item: Heart_Of_Her - Rate: 159 + Rate: 10 - Index: 25 Item: Prohibition_Red_Candle - Rate: 159 + Rate: 10 - Index: 26 Item: Sway_Apron - Rate: 159 + Rate: 10 - Index: 27 Item: Skull_Helm - Rate: 159 + Rate: 10 - Index: 28 Item: Monster_Oxygen_Mask - Rate: 159 + Rate: 10 - Index: 29 Item: Transparent_Headgear - Rate: 159 + Rate: 10 - Index: 30 Item: Pacifier - Rate: 159 + Rate: 10 - Index: 31 Item: Wig - Rate: 159 + Rate: 10 - Index: 32 Item: Queen's_Hair_Ornament - Rate: 159 + Rate: 10 - Index: 33 Item: Silk_Ribbon - Rate: 159 + Rate: 10 - Index: 34 Item: Punisher - Rate: 159 + Rate: 10 - Index: 35 Item: Wild_Flower - Rate: 159 + Rate: 10 - Index: 36 Item: Battered_Pot - Rate: 159 + Rate: 10 - Index: 37 Item: Stellar_Hairpin - Rate: 159 + Rate: 10 - Index: 38 Item: Tiny_Egg_Shell - Rate: 159 + Rate: 10 - Index: 39 Item: Backpack - Rate: 159 + Rate: 10 - Index: 40 Item: Rocker_Glasses - Rate: 159 + Rate: 10 - Index: 41 Item: Green_Lace - Rate: 159 + Rate: 10 - Index: 42 Item: Golden_Bell - Rate: 159 + Rate: 10 - Index: 43 Item: Bark_Shorts - Rate: 159 + Rate: 10 - Index: 44 Item: Monkey_Circlet - Rate: 159 + Rate: 10 - Index: 45 Item: Red_Muffler - Rate: 159 + Rate: 10 - Index: 46 Item: Sword_Of_Grave_Keeper - Rate: 159 + Rate: 10 - Index: 47 - Item: Very_Soft_Plant - Rate: 159 - - Index: 48 Item: Very_Red_Juice - Rate: 159 - - Index: 49 + Rate: 10 + - Index: 48 Item: Delicious_Shaved_Ice - Rate: 159 - - Index: 50 + Rate: 10 + - Index: 49 Item: Fit_Pipe - Rate: 159 - - Index: 51 - Item: Luxury_Whisky_Bottle - Rate: 159 - - Index: 52 + Rate: 10 + - Index: 50 Item: Gril's_Naivety - Rate: 159 - - Index: 53 - Item: Hell_Contract - Rate: 159 - - Index: 54 + Rate: 10 + - Index: 51 Item: Boy's_Naivety - Rate: 159 - - Index: 55 + Rate: 10 + - Index: 52 Item: Flaming_Ice - Rate: 159 - - Index: 56 + Rate: 10 + - Index: 53 Item: Tantanmen - Rate: 159 - - Index: 57 + Rate: 10 + - Index: 54 Item: Skull_Of_Vagabond - Rate: 159 - - Index: 58 + Rate: 10 + - Index: 55 Item: Sap_Jelly - Rate: 159 - - Index: 59 + Rate: 10 + - Index: 56 Item: Airship_Part - Rate: 159 - - Index: 60 + Rate: 10 + - Index: 57 Item: Little_Dall_Needle - Rate: 159 - - Index: 61 + Rate: 10 + - Index: 58 + Item: Very_Soft_Plant + Rate: 10 + - Index: 59 Item: Elixir_Bandage - Rate: 159 - - Index: 62 + Rate: 10 + - Index: 60 Item: Dew_Of_Old_Tree - Rate: 159 + Rate: 10 + - Index: 61 + Item: Luxury_Whisky_Bottle + Rate: 10 + - Index: 62 + Item: Hell_Contract + Rate: 10 + - Index: 63 + Item: Luxury_Whisky_Bottle + Rate: 10 - Group: GOLDPCBANG_MILEAGEBOX SubGroups: - SubGroup: 1 List: - Index: 0 Item: C_Over_Protector - Rate: 980 + Rate: 98 - Index: 1 Item: C_Evil_Druid_Hat_Black - Rate: 980 + Rate: 98 - Index: 2 Item: C_Cons_Of_Water - Rate: 10 + Rate: 1 - Index: 3 Item: C_Two_Tone_Beret - Rate: 980 + Rate: 98 - Index: 4 Item: C_Bloody_Wing - Rate: 30 + Rate: 3 - Index: 5 Item: C_BlueAngeling_Wing - Rate: 30 + Rate: 3 - Index: 6 Item: C_Wings_Of_Raphael - Rate: 30 + Rate: 3 - Index: 7 Item: C_Underlamp - Rate: 980 + Rate: 98 - Index: 8 Item: C_Piamette_Hood_Red - Rate: 990 + Rate: 99 - Index: 9 Item: C_Piamette_BowTie_Red - Rate: 990 + Rate: 99 - Index: 10 Item: C_White_Rabbit - Rate: 980 + Rate: 98 - Index: 11 Item: C_False_Ears - Rate: 980 + Rate: 98 - Index: 12 Item: C_SeraphimCoronet - Rate: 980 + Rate: 98 - Index: 13 Item: C_Variant_Veil - Rate: 980 + Rate: 98 - Index: 14 Item: C_Cons_Of_Fire - Rate: 10 + Rate: 1 - Index: 15 Item: C_ResonateTaego - Rate: 30 + Rate: 3 - Index: 16 Item: C_SnackParty - Rate: 30 + Rate: 3 - Index: 17 Item: C_Cons_Of_Wind - Rate: 10 + Rate: 1 - Group: SKILL_SHADOW_CUBE SubGroups: - SubGroup: 1 List: - Index: 0 Item: S_Sonic_Armor - Rate: 13 + Rate: 15 - Index: 1 - Item: S_Sonic_Armor - Rate: 72 + Item: S_Sonic_Shield + Rate: 7 - Index: 2 - Item: S_Sonic_Shield - Rate: 6 + Item: S_Sonic_Shoes + Rate: 15 - Index: 3 - Item: S_Sonic_Shield - Rate: 33 + Item: S_Ignition_Weapon + Rate: 7 - Index: 4 - Item: S_Sonic_Shoes - Rate: 13 + Item: S_Ignition_Pendant + Rate: 15 - Index: 5 - Item: S_Sonic_Shoes - Rate: 72 + Item: S_Ignition_Earing + Rate: 15 - Index: 6 - Item: S_Ignition_Weapon - Rate: 6 + Item: S_W_Breath_Armor + Rate: 15 - Index: 7 - Item: S_Ignition_Weapon - Rate: 33 + Item: S_W_Breath_Shield + Rate: 7 - Index: 8 - Item: S_Ignition_Pendant - Rate: 13 + Item: S_W_Breath_Shoes + Rate: 15 - Index: 9 - Item: S_Ignition_Pendant - Rate: 72 + Item: S_F_Breath_Weapon + Rate: 7 - Index: 10 - Item: S_Ignition_Earing - Rate: 13 + Item: S_F_Breath_Pendant + Rate: 15 - Index: 11 - Item: S_Ignition_Earing - Rate: 72 + Item: S_F_Breath_Earing + Rate: 15 - Index: 12 - Item: S_W_Breath_Armor - Rate: 13 + Item: S_Cluster_Armor + Rate: 15 - Index: 13 - Item: S_W_Breath_Armor - Rate: 72 + Item: S_Cluster_Shield + Rate: 7 - Index: 14 - Item: S_W_Breath_Shield - Rate: 6 + Item: S_Cluster_Shoes + Rate: 15 - Index: 15 - Item: S_W_Breath_Shield - Rate: 33 + Item: S_Aimed_Weapon + Rate: 7 - Index: 16 - Item: S_W_Breath_Shoes - Rate: 13 + Item: S_Aimed_Pendant + Rate: 15 - Index: 17 - Item: S_W_Breath_Shoes - Rate: 72 + Item: S_Aimed_Earing + Rate: 15 - Index: 18 - Item: S_F_Breath_Weapon - Rate: 6 + Item: S_Arrow_Armor + Rate: 15 - Index: 19 - Item: S_F_Breath_Weapon - Rate: 33 + Item: S_Arrow_Shield + Rate: 7 - Index: 20 - Item: S_F_Breath_Pendant - Rate: 13 + Item: S_Arrow_Shoes + Rate: 15 - Index: 21 - Item: S_F_Breath_Pendant - Rate: 72 + Item: S_Shooting_Weapon + Rate: 7 - Index: 22 - Item: S_F_Breath_Earing - Rate: 13 + Item: S_Shooting_Pendant + Rate: 15 - Index: 23 - Item: S_F_Breath_Earing - Rate: 72 + Item: S_Shooting_Earing + Rate: 15 - Index: 24 - Item: S_Cluster_Armor - Rate: 13 + Item: S_Tornado_Armor + Rate: 15 - Index: 25 - Item: S_Cluster_Armor - Rate: 72 + Item: S_Tornado_Shield + Rate: 7 - Index: 26 - Item: S_Cluster_Shield - Rate: 6 + Item: S_Tornado_Shoes + Rate: 15 - Index: 27 - Item: S_Cluster_Shield - Rate: 33 + Item: S_Boomerang_Weapon + Rate: 7 - Index: 28 - Item: S_Cluster_Shoes - Rate: 13 + Item: S_Boomerang_Pendant + Rate: 15 - Index: 29 - Item: S_Cluster_Shoes - Rate: 72 + Item: S_Boomerang_Earing + Rate: 15 - Index: 30 - Item: S_Aimed_Weapon - Rate: 6 + Item: S_Vulcan_Armor + Rate: 15 - Index: 31 - Item: S_Aimed_Weapon - Rate: 33 + Item: S_Vulcan_Shield + Rate: 7 - Index: 32 - Item: S_Aimed_Pendant - Rate: 13 + Item: S_Vulcan_Shoes + Rate: 15 - Index: 33 - Item: S_Aimed_Pendant - Rate: 72 + Item: S_Arms_Weapon + Rate: 7 - Index: 34 - Item: S_Aimed_Earing - Rate: 13 + Item: S_Arms_Pendant + Rate: 15 - Index: 35 - Item: S_Aimed_Earing - Rate: 72 + Item: S_Arms_Earing + Rate: 15 - Index: 36 - Item: S_Arrow_Armor - Rate: 13 + Item: S_Rampage_Armor + Rate: 15 - Index: 37 - Item: S_Arrow_Armor - Rate: 72 + Item: S_Rampage_Shield + Rate: 7 - Index: 38 - Item: S_Arrow_Shield - Rate: 6 + Item: S_Rampage_Shoes + Rate: 15 - Index: 39 - Item: S_Arrow_Shield - Rate: 33 + Item: S_Skynetblow_Weapon + Rate: 7 - Index: 40 - Item: S_Arrow_Shoes - Rate: 13 + Item: S_Skynetblow_Pendant + Rate: 15 - Index: 41 - Item: S_Arrow_Shoes - Rate: 72 + Item: S_Skynetblow_Earing + Rate: 15 - Index: 42 - Item: S_Shooting_Weapon - Rate: 6 + Item: S_Knucklearrow_Armor + Rate: 15 - Index: 43 - Item: S_Shooting_Weapon - Rate: 33 + Item: S_Knucklearrow_Shield + Rate: 7 - Index: 44 - Item: S_Shooting_Pendant - Rate: 13 + Item: S_Knucklearrow_Shoes + Rate: 15 - Index: 45 - Item: S_Shooting_Pendant - Rate: 72 + Item: S_TigerCannon_Weapon + Rate: 7 - Index: 46 - Item: S_Shooting_Earing - Rate: 13 + Item: S_Tigercannon_Pendant + Rate: 15 - Index: 47 - Item: S_Shooting_Earing - Rate: 72 + Item: S_Tigercannon_Earing + Rate: 15 - Index: 48 - Item: S_Tornado_Armor - Rate: 13 + Item: S_Duplelight_Armor + Rate: 15 - Index: 49 - Item: S_Tornado_Armor - Rate: 72 + Item: S_Duplelight_Shield + Rate: 7 - Index: 50 - Item: S_Tornado_Shield - Rate: 6 + Item: S_Duplelight_Shoes + Rate: 15 - Index: 51 - Item: S_Tornado_Shield - Rate: 33 + Item: S_Adoramus_Weapon + Rate: 7 - Index: 52 - Item: S_Tornado_Shoes - Rate: 13 + Item: S_Adoramus_Pendant + Rate: 15 - Index: 53 - Item: S_Tornado_Shoes - Rate: 72 + Item: S_Adoramus_Earing + Rate: 15 - Index: 54 - Item: S_Boomerang_Weapon - Rate: 6 + Item: S_Judex_Armor + Rate: 15 - Index: 55 - Item: S_Boomerang_Weapon - Rate: 33 + Item: S_Judex_Shield + Rate: 7 - Index: 56 - Item: S_Boomerang_Pendant - Rate: 13 + Item: S_Judex_Shoes + Rate: 15 - Index: 57 - Item: S_Boomerang_Pendant - Rate: 72 + Item: S_Magnus_Weapon + Rate: 7 - Index: 58 - Item: S_Boomerang_Earing - Rate: 13 + Item: S_Magnus_Pendant + Rate: 15 - Index: 59 - Item: S_Boomerang_Earing - Rate: 72 + Item: S_Magnus_Earing + Rate: 15 - Index: 60 - Item: S_Vulcan_Armor - Rate: 13 + Item: S_Rainstorm_Armor + Rate: 15 - Index: 61 - Item: S_Vulcan_Armor - Rate: 72 + Item: S_Rainstorm_Shield + Rate: 7 - Index: 62 - Item: S_Vulcan_Shield - Rate: 6 + Item: S_Rainstorm_Shoes + Rate: 15 - Index: 63 - Item: S_Vulcan_Shield - Rate: 33 + Item: S_Arrowvulcan_Weapon + Rate: 7 - Index: 64 - Item: S_Vulcan_Shoes - Rate: 13 + Item: S_Arrowvulcan_Pendant + Rate: 15 - Index: 65 - Item: S_Vulcan_Shoes - Rate: 72 + Item: S_Arrowvulcan_Earing + Rate: 15 - Index: 66 - Item: S_Arms_Weapon - Rate: 6 + Item: S_Metalic_Armor + Rate: 15 - Index: 67 - Item: S_Arms_Weapon - Rate: 33 + Item: S_Metalic_Shield + Rate: 7 - Index: 68 - Item: S_Arms_Pendant - Rate: 13 + Item: S_Metalic_Shoes + Rate: 15 - Index: 69 - Item: S_Arms_Pendant - Rate: 72 + Item: S_Reverberation_Weapon + Rate: 7 - Index: 70 - Item: S_Arms_Earing - Rate: 13 + Item: S_Reverberation_Pendant + Rate: 15 - Index: 71 - Item: S_Arms_Earing - Rate: 72 + Item: S_Reverberation_Earing + Rate: 15 - Index: 72 - Item: S_Rampage_Armor - Rate: 13 + Item: S_Triangle_Armor + Rate: 15 - Index: 73 - Item: S_Rampage_Armor - Rate: 72 + Item: S_Triangle_Shield + Rate: 7 - Index: 74 - Item: S_Rampage_Shield - Rate: 6 + Item: S_Triangle_Shoes + Rate: 15 - Index: 75 - Item: S_Rampage_Shield - Rate: 33 + Item: S_Shadowspell_Weapon + Rate: 7 - Index: 76 - Item: S_Rampage_Shoes - Rate: 13 + Item: S_Shadowspell_Pendant + Rate: 15 - Index: 77 - Item: S_Rampage_Shoes - Rate: 72 + Item: S_Shadowspell_Earing + Rate: 15 - Index: 78 - Item: S_Skynetblow_Weapon - Rate: 6 + Item: S_Menace_Armor + Rate: 15 - Index: 79 - Item: S_Skynetblow_Weapon - Rate: 33 + Item: S_Menace_Shield + Rate: 7 - Index: 80 - Item: S_Skynetblow_Pendant - Rate: 13 + Item: S_Menace_Shoes + Rate: 15 - Index: 81 - Item: S_Skynetblow_Pendant - Rate: 72 + Item: S_Paint_Weapon + Rate: 7 - Index: 82 - Item: S_Skynetblow_Earing - Rate: 13 + Item: S_Paint_Pendant + Rate: 15 - Index: 83 - Item: S_Skynetblow_Earing - Rate: 72 + Item: S_Paint_Earing + Rate: 15 - Index: 84 - Item: S_Knucklearrow_Armor - Rate: 13 + Item: S_Rolling_Armor + Rate: 15 - Index: 85 - Item: S_Knucklearrow_Armor - Rate: 72 + Item: S_Rolling_Shield + Rate: 7 - Index: 86 - Item: S_Knucklearrow_Shield - Rate: 6 + Item: S_Rolling_Shoes + Rate: 15 - Index: 87 - Item: S_Knucklearrow_Shield - Rate: 33 + Item: S_Katar_Weapon + Rate: 7 - Index: 88 - Item: S_Knucklearrow_Shoes - Rate: 13 + Item: S_Katar_Pendant + Rate: 15 - Index: 89 - Item: S_Knucklearrow_Shoes - Rate: 72 + Item: S_Katar_Earing + Rate: 15 - Index: 90 - Item: S_TigerCannon_Weapon - Rate: 6 + Item: S_Slash_Armor + Rate: 15 - Index: 91 - Item: S_TigerCannon_Weapon - Rate: 33 + Item: S_Slash_Shield + Rate: 7 - Index: 92 - Item: S_Tigercannon_Pendant - Rate: 13 + Item: S_Slash_Shoes + Rate: 15 - Index: 93 - Item: S_Tigercannon_Pendant - Rate: 72 + Item: S_Ripper_Weapon + Rate: 7 - Index: 94 - Item: S_Tigercannon_Earing - Rate: 13 + Item: S_Ripper_Pendant + Rate: 15 - Index: 95 - Item: S_Tigercannon_Earing - Rate: 72 + Item: S_Ripper_Earing + Rate: 15 - Index: 96 - Item: S_Duplelight_Armor - Rate: 13 + Item: S_Dust_Armor + Rate: 15 - Index: 97 - Item: S_Duplelight_Armor - Rate: 72 + Item: S_Dust_Shield + Rate: 7 - Index: 98 - Item: S_Duplelight_Shield - Rate: 6 + Item: S_Dust_Shoes + Rate: 15 - Index: 99 - Item: S_Duplelight_Shield - Rate: 33 + Item: S_Grave_Weapon + Rate: 7 - Index: 100 - Item: S_Duplelight_Shoes - Rate: 13 + Item: S_Grave_Pendant + Rate: 15 - Index: 101 - Item: S_Duplelight_Shoes - Rate: 72 + Item: S_Grave_Earing + Rate: 15 - Index: 102 - Item: S_Adoramus_Weapon - Rate: 6 + Item: S_Psychic_Armor + Rate: 15 - Index: 103 - Item: S_Adoramus_Weapon - Rate: 33 + Item: S_Psychic_Shield + Rate: 7 - Index: 104 - Item: S_Adoramus_Pendant - Rate: 13 + Item: S_Psychic_Shoes + Rate: 15 - Index: 105 - Item: S_Adoramus_Pendant - Rate: 72 + Item: S_Varetyr_Weapon + Rate: 7 - Index: 106 - Item: S_Adoramus_Earing - Rate: 13 + Item: S_Varetyr_Pendant + Rate: 15 - Index: 107 - Item: S_Adoramus_Earing - Rate: 72 + Item: S_Varetyr_Earing + Rate: 15 - Index: 108 - Item: S_Judex_Armor - Rate: 13 + Item: S_Jack_Armor + Rate: 15 - Index: 109 - Item: S_Judex_Armor - Rate: 72 + Item: S_Jack_Shield + Rate: 7 - Index: 110 - Item: S_Judex_Shield - Rate: 6 + Item: S_Jack_Shoes + Rate: 15 - Index: 111 - Item: S_Judex_Shield - Rate: 33 + Item: S_Strain_Weapon + Rate: 7 - Index: 112 - Item: S_Judex_Shoes - Rate: 13 + Item: S_Strain_Pendant + Rate: 15 - Index: 113 - Item: S_Judex_Shoes - Rate: 72 + Item: S_Strain_Earing + Rate: 15 - Index: 114 - Item: S_Magnus_Weapon - Rate: 6 + Item: S_Crimson_Armor + Rate: 15 - Index: 115 - Item: S_Magnus_Weapon - Rate: 33 + Item: S_Crimson_Shield + Rate: 7 - Index: 116 - Item: S_Magnus_Pendant - Rate: 13 + Item: S_Crimson_Shoes + Rate: 15 - Index: 117 - Item: S_Magnus_Pendant - Rate: 72 + Item: S_Chain_Weapon + Rate: 7 - Index: 118 - Item: S_Magnus_Earing - Rate: 13 + Item: S_Chain_Pendant + Rate: 15 - Index: 119 - Item: S_Magnus_Earing - Rate: 72 + Item: S_Chain_Earing + Rate: 15 - Index: 120 - Item: S_Rainstorm_Armor - Rate: 13 + Item: S_Cart_Tornado_Armor + Rate: 15 - Index: 121 - Item: S_Rainstorm_Armor - Rate: 72 + Item: S_Cart_Tornado_Shield + Rate: 7 - Index: 122 - Item: S_Rainstorm_Shield - Rate: 6 + Item: S_Cart_Tornado_Shoes + Rate: 15 - Index: 123 - Item: S_Rainstorm_Shield - Rate: 33 + Item: S_Cannon_Cart_Weapon + Rate: 7 - Index: 124 - Item: S_Rainstorm_Shoes - Rate: 13 + Item: S_Cannon_Cart_Pendant + Rate: 15 - Index: 125 - Item: S_Rainstorm_Shoes - Rate: 72 + Item: S_Cannon_Cart_Earing + Rate: 15 - Index: 126 - Item: S_Arrowvulcan_Weapon - Rate: 6 + Item: S_Spore_Bomb_Armor + Rate: 15 - Index: 127 - Item: S_Arrowvulcan_Weapon - Rate: 33 + Item: S_Spore_Bomb_Shield + Rate: 7 - Index: 128 - Item: S_Arrowvulcan_Pendant - Rate: 13 + Item: S_Spore_Bomb_Shoes + Rate: 15 - Index: 129 - Item: S_Arrowvulcan_Pendant - Rate: 72 + Item: S_Crazy_Weapon + Rate: 7 - Index: 130 - Item: S_Arrowvulcan_Earing - Rate: 13 + Item: S_Crazy_Pendant + Rate: 15 - Index: 131 - Item: S_Arrowvulcan_Earing - Rate: 72 + Item: S_Crazy_Earing + Rate: 15 - Index: 132 - Item: S_Metalic_Armor - Rate: 13 + Item: S_Brand_Armor + Rate: 15 - Index: 133 - Item: S_Metalic_Armor - Rate: 72 + Item: S_Brand_Shield + Rate: 7 - Index: 134 - Item: S_Metalic_Shield - Rate: 6 + Item: S_Brand_Shoes + Rate: 15 - Index: 135 - Item: S_Metalic_Shield - Rate: 33 + Item: S_Chain_Press_Weapon + Rate: 7 - Index: 136 - Item: S_Metalic_Shoes - Rate: 13 + Item: S_Chain_Press_Pendant + Rate: 15 - Index: 137 - Item: S_Metalic_Shoes - Rate: 72 + Item: S_Chain_Press_Earing + Rate: 15 - Index: 138 - Item: S_Reverberation_Weapon - Rate: 6 + Item: S_Banish_Cannon_Armor + Rate: 15 - Index: 139 - Item: S_Reverberation_Weapon - Rate: 33 + Item: S_Banish_Cannon_Shield + Rate: 7 - Index: 140 - Item: S_Reverberation_Pendant - Rate: 13 + Item: S_Banish_Cannon_Shoes + Rate: 15 - Index: 141 - Item: S_Reverberation_Pendant - Rate: 72 + Item: S_Genesis_Weapon + Rate: 7 - Index: 142 - Item: S_Reverberation_Earing - Rate: 13 + Item: S_Genesis_Pendant + Rate: 15 - Index: 143 - Item: S_Reverberation_Earing - Rate: 72 - - Index: 144 - Item: S_Jack_Armor - Rate: 13 - - Index: 145 - Item: S_Jack_Armor - Rate: 71 - - Index: 146 - Item: S_Jack_Shield - Rate: 6 - - Index: 147 - Item: S_Jack_Shield - Rate: 33 - - Index: 148 - Item: S_Jack_Shoes - Rate: 13 - - Index: 149 - Item: S_Jack_Shoes - Rate: 71 - - Index: 150 - Item: S_Strain_Weapon - Rate: 6 - - Index: 151 - Item: S_Strain_Weapon - Rate: 33 - - Index: 152 - Item: S_Strain_Pendant - Rate: 13 - - Index: 153 - Item: S_Strain_Pendant - Rate: 71 - - Index: 154 - Item: S_Strain_Earing - Rate: 13 - - Index: 155 - Item: S_Strain_Earing - Rate: 71 - - Index: 156 - Item: S_Crimson_Armor - Rate: 13 - - Index: 157 - Item: S_Crimson_Armor - Rate: 71 - - Index: 158 - Item: S_Crimson_Shield - Rate: 6 - - Index: 159 - Item: S_Crimson_Shield - Rate: 33 - - Index: 160 - Item: S_Crimson_Shoes - Rate: 13 - - Index: 161 - Item: S_Crimson_Shoes - Rate: 71 - - Index: 162 - Item: S_Chain_Weapon - Rate: 6 - - Index: 163 - Item: S_Chain_Weapon - Rate: 33 - - Index: 164 - Item: S_Chain_Pendant - Rate: 13 - - Index: 165 - Item: S_Chain_Pendant - Rate: 71 - - Index: 166 - Item: S_Chain_Earing - Rate: 13 - - Index: 167 - Item: S_Chain_Earing - Rate: 71 - - Index: 168 - Item: S_Triangle_Armor - Rate: 13 - - Index: 169 - Item: S_Triangle_Armor - Rate: 72 - - Index: 170 - Item: S_Triangle_Shield - Rate: 6 - - Index: 171 - Item: S_Triangle_Shield - Rate: 33 - - Index: 172 - Item: S_Triangle_Shoes - Rate: 13 - - Index: 173 - Item: S_Triangle_Shoes - Rate: 72 - - Index: 174 - Item: S_Shadowspell_Weapon - Rate: 6 - - Index: 175 - Item: S_Shadowspell_Weapon - Rate: 33 - - Index: 176 - Item: S_Shadowspell_Pendant - Rate: 13 - - Index: 177 - Item: S_Shadowspell_Pendant - Rate: 72 - - Index: 178 - Item: S_Shadowspell_Earing - Rate: 13 - - Index: 179 - Item: S_Shadowspell_Earing - Rate: 72 - - Index: 180 - Item: S_Menace_Armor - Rate: 13 - - Index: 181 - Item: S_Menace_Armor - Rate: 72 - - Index: 182 - Item: S_Menace_Shield - Rate: 6 - - Index: 183 - Item: S_Menace_Shield - Rate: 33 - - Index: 184 - Item: S_Menace_Shoes - Rate: 13 - - Index: 185 - Item: S_Menace_Shoes - Rate: 72 - - Index: 186 - Item: S_Paint_Weapon - Rate: 6 - - Index: 187 - Item: S_Paint_Weapon - Rate: 33 - - Index: 188 - Item: S_Paint_Pendant - Rate: 13 - - Index: 189 - Item: S_Paint_Pendant - Rate: 72 - - Index: 190 - Item: S_Paint_Earing - Rate: 13 - - Index: 191 - Item: S_Paint_Earing - Rate: 72 - - Index: 192 - Item: S_Rolling_Armor - Rate: 13 - - Index: 193 - Item: S_Rolling_Armor - Rate: 72 - - Index: 194 - Item: S_Rolling_Shield - Rate: 6 - - Index: 195 - Item: S_Rolling_Shield - Rate: 33 - - Index: 196 - Item: S_Rolling_Shoes - Rate: 13 - - Index: 197 - Item: S_Rolling_Shoes - Rate: 72 - - Index: 198 - Item: S_Katar_Weapon - Rate: 6 - - Index: 199 - Item: S_Katar_Weapon - Rate: 33 - - Index: 200 - Item: S_Katar_Pendant - Rate: 13 - - Index: 201 - Item: S_Katar_Pendant - Rate: 72 - - Index: 202 - Item: S_Katar_Earing - Rate: 13 - - Index: 203 - Item: S_Katar_Earing - Rate: 72 - - Index: 204 - Item: S_Slash_Armor - Rate: 13 - - Index: 205 - Item: S_Slash_Armor - Rate: 72 - - Index: 206 - Item: S_Slash_Shield - Rate: 6 - - Index: 207 - Item: S_Slash_Shield - Rate: 33 - - Index: 208 - Item: S_Slash_Shoes - Rate: 13 - - Index: 209 - Item: S_Slash_Shoes - Rate: 72 - - Index: 210 - Item: S_Ripper_Weapon - Rate: 6 - - Index: 211 - Item: S_Ripper_Weapon - Rate: 33 - - Index: 212 - Item: S_Ripper_Pendant - Rate: 13 - - Index: 213 - Item: S_Ripper_Pendant - Rate: 72 - - Index: 214 - Item: S_Ripper_Earing - Rate: 13 - - Index: 215 - Item: S_Ripper_Earing - Rate: 72 - - Index: 216 - Item: S_Dust_Armor - Rate: 13 - - Index: 217 - Item: S_Dust_Armor - Rate: 71 - - Index: 218 - Item: S_Dust_Shield - Rate: 6 - - Index: 219 - Item: S_Dust_Shield - Rate: 33 - - Index: 220 - Item: S_Dust_Shoes - Rate: 13 - - Index: 221 - Item: S_Dust_Shoes - Rate: 71 - - Index: 222 - Item: S_Grave_Weapon - Rate: 6 - - Index: 223 - Item: S_Grave_Weapon - Rate: 33 - - Index: 224 - Item: S_Grave_Pendant - Rate: 13 - - Index: 225 - Item: S_Grave_Pendant - Rate: 71 - - Index: 226 - Item: S_Grave_Earing - Rate: 13 - - Index: 227 - Item: S_Grave_Earing - Rate: 71 - - Index: 228 - Item: S_Psychic_Armor - Rate: 13 - - Index: 229 - Item: S_Psychic_Armor - Rate: 71 - - Index: 230 - Item: S_Psychic_Shield - Rate: 6 - - Index: 231 - Item: S_Psychic_Shield - Rate: 33 - - Index: 232 - Item: S_Psychic_Shoes - Rate: 13 - - Index: 233 - Item: S_Psychic_Shoes - Rate: 71 - - Index: 234 - Item: S_Varetyr_Weapon - Rate: 6 - - Index: 235 - Item: S_Varetyr_Weapon - Rate: 33 - - Index: 236 - Item: S_Varetyr_Pendant - Rate: 13 - - Index: 237 - Item: S_Varetyr_Pendant - Rate: 71 - - Index: 238 - Item: S_Varetyr_Earing - Rate: 13 - - Index: 239 - Item: S_Varetyr_Earing - Rate: 71 - - Index: 240 - Item: S_Cart_Tornado_Armor - Rate: 13 - - Index: 241 - Item: S_Cart_Tornado_Armor - Rate: 71 - - Index: 242 - Item: S_Cart_Tornado_Shield - Rate: 6 - - Index: 243 - Item: S_Cart_Tornado_Shield - Rate: 33 - - Index: 244 - Item: S_Cart_Tornado_Shoes - Rate: 13 - - Index: 245 - Item: S_Cart_Tornado_Shoes - Rate: 71 - - Index: 246 - Item: S_Cannon_Cart_Weapon - Rate: 6 - - Index: 247 - Item: S_Cannon_Cart_Weapon - Rate: 33 - - Index: 248 - Item: S_Cannon_Cart_Pendant - Rate: 13 - - Index: 249 - Item: S_Cannon_Cart_Pendant - Rate: 71 - - Index: 250 - Item: S_Cannon_Cart_Earing - Rate: 13 - - Index: 251 - Item: S_Cannon_Cart_Earing - Rate: 71 - - Index: 252 - Item: S_Spore_Bomb_Armor - Rate: 13 - - Index: 253 - Item: S_Spore_Bomb_Armor - Rate: 71 - - Index: 254 - Item: S_Spore_Bomb_Shield - Rate: 6 - - Index: 255 - Item: S_Spore_Bomb_Shield - Rate: 33 - - Index: 256 - Item: S_Spore_Bomb_Shoes - Rate: 13 - - Index: 257 - Item: S_Spore_Bomb_Shoes - Rate: 71 - - Index: 258 - Item: S_Crazy_Weapon - Rate: 6 - - Index: 259 - Item: S_Crazy_Weapon - Rate: 33 - - Index: 260 - Item: S_Crazy_Pendant - Rate: 13 - - Index: 261 - Item: S_Crazy_Pendant - Rate: 71 - - Index: 262 - Item: S_Crazy_Earing - Rate: 13 - - Index: 263 - Item: S_Crazy_Earing - Rate: 71 - - Index: 264 - Item: S_Brand_Armor - Rate: 13 - - Index: 265 - Item: S_Brand_Armor - Rate: 71 - - Index: 266 - Item: S_Brand_Shield - Rate: 6 - - Index: 267 - Item: S_Brand_Shield - Rate: 33 - - Index: 268 - Item: S_Brand_Shoes - Rate: 13 - - Index: 269 - Item: S_Brand_Shoes - Rate: 71 - - Index: 270 - Item: S_Chain_Press_Weapon - Rate: 6 - - Index: 271 - Item: S_Chain_Press_Weapon - Rate: 33 - - Index: 272 - Item: S_Chain_Press_Pendant - Rate: 13 - - Index: 273 - Item: S_Chain_Press_Pendant - Rate: 71 - - Index: 274 - Item: S_Chain_Press_Earing - Rate: 13 - - Index: 275 - Item: S_Chain_Press_Earing - Rate: 71 - - Index: 276 - Item: S_Banish_Cannon_Armor - Rate: 13 - - Index: 277 - Item: S_Banish_Cannon_Armor - Rate: 71 - - Index: 278 - Item: S_Banish_Cannon_Shield - Rate: 6 - - Index: 279 - Item: S_Banish_Cannon_Shield - Rate: 33 - - Index: 280 - Item: S_Banish_Cannon_Shoes - Rate: 13 - - Index: 281 - Item: S_Banish_Cannon_Shoes - Rate: 71 - - Index: 282 - Item: S_Genesis_Weapon - Rate: 6 - - Index: 283 - Item: S_Genesis_Weapon - Rate: 33 - - Index: 284 - Item: S_Genesis_Pendant - Rate: 13 - - Index: 285 - Item: S_Genesis_Pendant - Rate: 71 - - Index: 286 Item: S_Genesis_Earing - Rate: 13 - - Index: 287 - Item: S_Genesis_Earing - Rate: 71 + Rate: 15 - Group: SHADOWDECON_ORE_BOX SubGroups: - SubGroup: 1 List: - Index: 0 Item: Shadowdecon_Ore - Rate: 10000 + Rate: 10 Amount: 3 + - Index: 1 + Item: Shadowdecon_Ore + Rate: 10 + Amount: 4 + - Index: 2 + Item: Shadowdecon_Ore + Rate: 10 + Amount: 5 + - Index: 3 + Item: Shadowdecon_Ore + Rate: 10 + Amount: 6 + - Index: 4 + Item: Shadowdecon_Ore + Rate: 10 + Amount: 7 + - Index: 5 + Item: Shadowdecon_Ore + Rate: 10 + Amount: 8 + - Index: 6 + Item: Shadowdecon_Ore + Rate: 10 + Amount: 9 + - Index: 7 + Item: Shadowdecon_Ore + Rate: 10 + Amount: 10 - Group: ZELUNIUM_ORE_BOX SubGroups: - SubGroup: 1 List: - Index: 0 Item: Zelunium_Ore - Rate: 10000 + Rate: 10 Amount: 3 + - Index: 1 + Item: Zelunium_Ore + Rate: 10 + Amount: 4 + - Index: 2 + Item: Zelunium_Ore + Rate: 10 + Amount: 5 + - Index: 3 + Item: Zelunium_Ore + Rate: 10 + Amount: 6 + - Index: 4 + Item: Zelunium_Ore + Rate: 10 + Amount: 7 + - Index: 5 + Item: Zelunium_Ore + Rate: 10 + Amount: 8 + - Index: 6 + Item: Zelunium_Ore + Rate: 10 + Amount: 9 + - Index: 7 + Item: Zelunium_Ore + Rate: 10 + Amount: 10 - Group: GSTAR2019BOX SubGroups: - SubGroup: 0 @@ -62088,252 +66454,247 @@ Body: - SubGroup: 1 List: - Index: 0 - Item: C_Exotic_Bob_L_LB - Rate: 1250 - - Index: 1 - Item: C_Exotic_Bob_L_YL - Rate: 1250 - - Index: 2 - Item: C_Exotic_Bob_L_WH - Rate: 1250 - - Index: 3 - Item: C_Exotic_Bob_L_LPP - Rate: 1250 - - Index: 4 - Item: C_Exotic_Bob_R_PK - Rate: 1250 - - Index: 5 - Item: C_Exotic_Bob_R_BG - Rate: 1250 - - Index: 6 - Item: C_Exotic_Bob_R_JBL - Rate: 1250 - - Index: 7 Item: C_Exotic_Bob_R_BW - Rate: 1250 + Rate: 10 + - Index: 1 + Item: C_Exotic_Bob_R_JBL + Rate: 10 + - Index: 2 + Item: C_Exotic_Bob_R_BG + Rate: 10 + - Index: 3 + Item: C_Exotic_Bob_R_PK + Rate: 10 + - Index: 4 + Item: C_Exotic_Bob_L_LPP + Rate: 10 + - Index: 5 + Item: C_Exotic_Bob_L_WH + Rate: 10 + - Index: 6 + Item: C_Exotic_Bob_L_YL + Rate: 10 + - Index: 7 + Item: C_Exotic_Bob_L_LB + Rate: 10 - Group: RUNEKNIGHT_S_CUBE SubGroups: - SubGroup: 1 List: - Index: 0 Item: S_Sonic_Armor - Rate: 1014 + Rate: 15 - Index: 1 Item: S_Sonic_Shield - Rate: 473 + Rate: 7 - Index: 2 Item: S_Sonic_Shoes - Rate: 1014 + Rate: 15 - Index: 3 Item: S_Ignition_Weapon - Rate: 473 + Rate: 7 - Index: 4 Item: S_Ignition_Pendant - Rate: 1014 + Rate: 15 - Index: 5 Item: S_Ignition_Earing - Rate: 1014 + Rate: 15 - Index: 6 Item: S_W_Breath_Armor - Rate: 1014 + Rate: 15 - Index: 7 Item: S_W_Breath_Shield - Rate: 473 + Rate: 7 - Index: 8 Item: S_W_Breath_Shoes - Rate: 1014 + Rate: 15 - Index: 9 Item: S_F_Breath_Weapon - Rate: 473 + Rate: 7 - Index: 10 Item: S_F_Breath_Pendant - Rate: 1014 + Rate: 15 - Index: 11 Item: S_F_Breath_Earing - Rate: 1014 + Rate: 15 - Group: GUILLOTINECROSS_S_CUBE SubGroups: - SubGroup: 1 List: - Index: 0 Item: S_Rolling_Armor - Rate: 1014 + Rate: 15 - Index: 1 Item: S_Rolling_Shield - Rate: 473 + Rate: 7 - Index: 2 Item: S_Rolling_Shoes - Rate: 1014 + Rate: 15 - Index: 3 Item: S_Katar_Weapon - Rate: 473 + Rate: 7 - Index: 4 Item: S_Katar_Pendant - Rate: 1014 + Rate: 15 - Index: 5 Item: S_Katar_Earing - Rate: 1014 + Rate: 15 - Index: 6 Item: S_Slash_Armor - Rate: 1014 + Rate: 15 - Index: 7 Item: S_Slash_Shield - Rate: 473 + Rate: 7 - Index: 8 Item: S_Slash_Shoes - Rate: 1014 + Rate: 15 - Index: 9 Item: S_Ripper_Weapon - Rate: 473 + Rate: 7 - Index: 10 Item: S_Ripper_Pendant - Rate: 1014 + Rate: 15 - Index: 11 Item: S_Ripper_Earing - Rate: 1014 + Rate: 15 - Group: ARCHBISHOP_S_CUBE SubGroups: - SubGroup: 1 List: - Index: 0 Item: S_Duplelight_Armor - Rate: 1014 + Rate: 15 - Index: 1 Item: S_Duplelight_Shield - Rate: 473 + Rate: 7 - Index: 2 Item: S_Duplelight_Shoes - Rate: 1014 + Rate: 15 - Index: 3 Item: S_Adoramus_Weapon - Rate: 473 + Rate: 7 - Index: 4 Item: S_Adoramus_Pendant - Rate: 1014 + Rate: 15 - Index: 5 Item: S_Adoramus_Earing - Rate: 1014 + Rate: 15 - Index: 6 Item: S_Judex_Armor - Rate: 1014 + Rate: 15 - Index: 7 Item: S_Judex_Shield - Rate: 473 + Rate: 7 - Index: 8 Item: S_Judex_Shoes - Rate: 1014 + Rate: 15 - Index: 9 Item: S_Magnus_Weapon - Rate: 473 + Rate: 7 - Index: 10 Item: S_Magnus_Pendant - Rate: 1014 + Rate: 15 - Index: 11 Item: S_Magnus_Earing - Rate: 1014 + Rate: 15 - Group: SURA_S_CUBE SubGroups: - SubGroup: 1 List: - Index: 0 Item: S_Rampage_Armor - Rate: 1014 + Rate: 15 - Index: 1 Item: S_Rampage_Shield - Rate: 473 + Rate: 7 - Index: 2 Item: S_Rampage_Shoes - Rate: 1014 + Rate: 15 - Index: 3 Item: S_Skynetblow_Weapon - Rate: 473 + Rate: 7 - Index: 4 Item: S_Skynetblow_Pendant - Rate: 1014 + Rate: 15 - Index: 5 Item: S_Skynetblow_Earing - Rate: 1014 + Rate: 15 - Index: 6 Item: S_Knucklearrow_Armor - Rate: 1014 + Rate: 15 - Index: 7 Item: S_Knucklearrow_Shield - Rate: 473 + Rate: 7 - Index: 8 Item: S_Knucklearrow_Shoes - Rate: 1014 + Rate: 15 - Index: 9 Item: S_TigerCannon_Weapon - Rate: 473 + Rate: 7 - Index: 10 Item: S_Tigercannon_Pendant - Rate: 1014 + Rate: 15 - Index: 11 Item: S_Tigercannon_Earing - Rate: 1014 + Rate: 15 - Group: 2019_CHRISMAS_PRESENT SubGroups: - SubGroup: 0 List: - Index: 0 - Item: E_Mysterious_Water - Amount: 20 - - Index: 1 - Item: E_Med_Life_Potion - Amount: 20 - - Index: 2 - Item: E_Small_Life_Potion - Amount: 20 - - Index: 3 - Item: Battle_Manual100 - Amount: 5 - - Index: 4 - Item: Comp_Small_Mana_Potion - Amount: 20 - - Index: 5 - Item: Comp_Power_Booster - Amount: 10 - - Index: 6 Item: Comp_Almighty Amount: 10 + - Index: 1 + Item: Comp_Power_Booster + Amount: 10 + - Index: 2 + Item: E_Infinity_Drink + Amount: 10 + - Index: 3 + Item: Comp_Small_Mana_Potion + Amount: 20 + - Index: 4 + Item: E_Mysterious_Water + Amount: 20 + - Index: 5 + Item: E_Small_Life_Potion + Amount: 20 + - Index: 6 + Item: E_Med_Life_Potion + Amount: 20 - Index: 7 Item: E_Red_Booster Amount: 20 - Index: 8 - Item: E_Infinity_Drink - Amount: 10 + Item: Battle_Manual100 + Amount: 5 - Index: 9 Item: C_ShineSantaPoringE + Duration: 1440 - Group: BOOSTER_PACK_190 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: E_Life_Potion_Pack - Amount: 3 + Item: Comp_Almighty + Amount: 5 - Index: 1 - Item: E_DEF_Scroll_Box - Amount: 3 + Item: Comp_Power_Booster + Amount: 5 - Index: 2 - Item: Battle_Manual100 - Amount: 2 + Item: E_Infinity_Drink + Amount: 5 - Index: 3 - Item: Comp_Small_Mana_Potion - Amount: 60 + Item: Booster_B_M_2 + Amount: 3 - Index: 4 - Item: World_Tour_Ticket - Amount: 10 + Item: Booster_Coin + Amount: 94 - Index: 5 - Item: E_Red_Booster - Amount: 60 + Item: World_Tour_Ticket + Amount: 20 - Index: 6 Item: Booster_Pack_200 - - Index: 7 - Item: Exp_Up_4 - Amount: 5 - - Index: 8 - Item: Booster_Coin - Amount: 48 - Group: BOOSTER_PACK_200 SubGroups: - SubGroup: 0 @@ -62346,751 +66707,681 @@ Body: Amount: 3 - Index: 2 Item: Comp_Small_Mana_Potion - Amount: 60 + Amount: 40 - Index: 3 - Item: Comp_Power_Booster - Amount: 10 + Item: E_Wing_Of_Fly_3Day_Box - Index: 4 - Item: Comp_Almighty - Amount: 10 + Item: Boarding_Halter_Box30_Z - Index: 5 Item: E_Red_Booster - Amount: 60 + Amount: 20 - Index: 6 - Item: E_Infinity_Drink - Amount: 10 + Item: Booster_B_M_2 + Amount: 3 - Index: 7 - Item: 2020_Goal_Gift_Box - - Index: 8 - Item: Booster_Pack_215 - - Index: 9 Item: Booster_Coin - Amount: 52 + Amount: 100 + - Index: 8 + Item: World_Tour_Ticket + Amount: 30 + - Index: 9 + Item: Booster_Pack_210 - Group: 2020_GOAL_GIFT_BOX SubGroups: - SubGroup: 1 List: - Index: 0 - Item: C_Mech_Feather_Hairband - Rate: 2500 - - Index: 1 - Item: C_Isabella_Brown_Ear - Rate: 2500 - - Index: 2 - Item: C_Drops_Muffler - Rate: 2500 - - Index: 3 - Item: C_Fairy_Long_CB - Rate: 1000 - - Index: 4 - Item: C_Long_Ribbon - Rate: 1000 - - Index: 5 - Item: C_Wing_Of_Angel_Move_GD + Item: C_Seraphim_Wing_TW Rate: 500 + - Index: 1 + Item: C_Long_Wave_BD + Rate: 1000 + - Index: 2 + Item: C_Long_Wave_SV + Rate: 1000 + - Index: 3 + Item: C_Love_Guard + Rate: 2500 + - Index: 4 + Item: C_Leopard_Ear_Hat + Rate: 2500 + - Index: 5 + Item: C_Misty_Ears + Rate: 2500 - Group: RANGER_S_CUBE SubGroups: - SubGroup: 1 List: - Index: 0 Item: S_Cluster_Armor - Rate: 1014 + Rate: 15 - Index: 1 Item: S_Cluster_Shield - Rate: 473 + Rate: 7 - Index: 2 Item: S_Cluster_Shoes - Rate: 1014 + Rate: 15 - Index: 3 Item: S_Aimed_Weapon - Rate: 473 + Rate: 7 - Index: 4 Item: S_Aimed_Pendant - Rate: 1014 + Rate: 15 - Index: 5 Item: S_Aimed_Earing - Rate: 1014 + Rate: 15 - Index: 6 Item: S_Arrow_Armor - Rate: 1014 + Rate: 15 - Index: 7 Item: S_Arrow_Shield - Rate: 473 + Rate: 7 - Index: 8 Item: S_Arrow_Shoes - Rate: 1014 + Rate: 15 - Index: 9 Item: S_Shooting_Weapon - Rate: 473 + Rate: 7 - Index: 10 Item: S_Shooting_Pendant - Rate: 1014 + Rate: 15 - Index: 11 Item: S_Shooting_Earing - Rate: 1014 + Rate: 15 - Group: WARLOCK_S_CUBE SubGroups: - SubGroup: 1 List: - Index: 0 Item: S_Jack_Armor - Rate: 1014 + Rate: 15 - Index: 1 Item: S_Jack_Shield - Rate: 473 + Rate: 7 - Index: 2 Item: S_Jack_Shoes - Rate: 1014 + Rate: 15 - Index: 3 Item: S_Strain_Weapon - Rate: 473 + Rate: 7 - Index: 4 Item: S_Strain_Pendant - Rate: 1014 + Rate: 15 - Index: 5 Item: S_Strain_Earing - Rate: 1014 + Rate: 15 - Index: 6 Item: S_Crimson_Armor - Rate: 1014 + Rate: 15 - Index: 7 Item: S_Crimson_Shield - Rate: 473 + Rate: 7 - Index: 8 Item: S_Crimson_Shoes - Rate: 1014 + Rate: 15 - Index: 9 Item: S_Chain_Weapon - Rate: 473 + Rate: 7 - Index: 10 Item: S_Chain_Pendant - Rate: 1014 + Rate: 15 - Index: 11 Item: S_Chain_Earing - Rate: 1014 + Rate: 15 - Group: SORCERER_S_CUBE SubGroups: - SubGroup: 1 List: - Index: 0 Item: S_Dust_Armor - Rate: 1014 + Rate: 15 - Index: 1 Item: S_Dust_Shield - Rate: 473 + Rate: 7 - Index: 2 Item: S_Dust_Shoes - Rate: 1014 + Rate: 15 - Index: 3 Item: S_Grave_Weapon - Rate: 473 + Rate: 7 - Index: 4 Item: S_Grave_Pendant - Rate: 1014 + Rate: 15 - Index: 5 Item: S_Grave_Earing - Rate: 1014 + Rate: 15 - Index: 6 Item: S_Psychic_Armor - Rate: 1014 + Rate: 15 - Index: 7 Item: S_Psychic_Shield - Rate: 473 + Rate: 7 - Index: 8 Item: S_Psychic_Shoes - Rate: 1014 + Rate: 15 - Index: 9 Item: S_Varetyr_Weapon - Rate: 473 + Rate: 7 - Index: 10 Item: S_Varetyr_Pendant - Rate: 1014 + Rate: 15 - Index: 11 Item: S_Varetyr_Earing - Rate: 1014 + Rate: 15 - Group: WANDERMINS_S_CUBE SubGroups: - SubGroup: 1 List: - Index: 0 Item: S_Rainstorm_Armor - Rate: 1014 + Rate: 15 - Index: 1 Item: S_Rainstorm_Shield - Rate: 473 + Rate: 7 - Index: 2 Item: S_Rainstorm_Shoes - Rate: 1014 + Rate: 15 - Index: 3 Item: S_Arrowvulcan_Weapon - Rate: 473 + Rate: 7 - Index: 4 Item: S_Arrowvulcan_Pendant - Rate: 1014 + Rate: 15 - Index: 5 Item: S_Arrowvulcan_Earing - Rate: 1014 + Rate: 15 - Index: 6 Item: S_Metalic_Armor - Rate: 1014 + Rate: 15 - Index: 7 Item: S_Metalic_Shield - Rate: 473 + Rate: 7 - Index: 8 Item: S_Metalic_Shoes - Rate: 1014 + Rate: 15 - Index: 9 Item: S_Reverberation_Weapon - Rate: 473 + Rate: 7 - Index: 10 Item: S_Reverberation_Pendant - Rate: 1014 + Rate: 15 - Index: 11 Item: S_Reverberation_Earing - Rate: 1014 + Rate: 15 - Group: ROYALGUARD_S_CUBE SubGroups: - SubGroup: 1 List: - Index: 0 Item: S_Brand_Armor - Rate: 1014 + Rate: 15 - Index: 1 Item: S_Brand_Shield - Rate: 473 + Rate: 7 - Index: 2 Item: S_Brand_Shoes - Rate: 1014 + Rate: 15 - Index: 3 Item: S_Chain_Press_Weapon - Rate: 473 + Rate: 7 - Index: 4 Item: S_Chain_Press_Pendant - Rate: 1014 + Rate: 15 - Index: 5 Item: S_Chain_Press_Earing - Rate: 1014 + Rate: 15 - Index: 6 Item: S_Banish_Cannon_Armor - Rate: 1014 + Rate: 15 - Index: 7 Item: S_Banish_Cannon_Shield - Rate: 473 + Rate: 7 - Index: 8 Item: S_Banish_Cannon_Shoes - Rate: 1014 + Rate: 15 - Index: 9 Item: S_Genesis_Weapon - Rate: 473 + Rate: 7 - Index: 10 Item: S_Genesis_Pendant - Rate: 1014 + Rate: 15 - Index: 11 Item: S_Genesis_Earing - Rate: 1014 + Rate: 15 - Group: SHADOWCHASER_S_CUBE SubGroups: - SubGroup: 1 List: - Index: 0 Item: S_Triangle_Armor - Rate: 1014 + Rate: 15 - Index: 1 Item: S_Triangle_Shield - Rate: 473 + Rate: 7 - Index: 2 Item: S_Triangle_Shoes - Rate: 1014 + Rate: 15 - Index: 3 Item: S_Shadowspell_Weapon - Rate: 473 + Rate: 7 - Index: 4 Item: S_Shadowspell_Pendant - Rate: 1014 + Rate: 15 - Index: 5 Item: S_Shadowspell_Earing - Rate: 1014 + Rate: 15 - Index: 6 Item: S_Menace_Armor - Rate: 1014 + Rate: 15 - Index: 7 Item: S_Menace_Shield - Rate: 473 + Rate: 7 - Index: 8 Item: S_Menace_Shoes - Rate: 1014 + Rate: 15 - Index: 9 Item: S_Paint_Weapon - Rate: 473 + Rate: 7 - Index: 10 Item: S_Paint_Pendant - Rate: 1014 + Rate: 15 - Index: 11 Item: S_Paint_Earing - Rate: 1014 + Rate: 15 - Group: MECHANIC_S_CUBE SubGroups: - SubGroup: 1 List: - Index: 0 Item: S_Tornado_Armor - Rate: 1014 + Rate: 15 - Index: 1 Item: S_Tornado_Shield - Rate: 473 + Rate: 7 - Index: 2 Item: S_Tornado_Shoes - Rate: 1014 + Rate: 15 - Index: 3 Item: S_Boomerang_Weapon - Rate: 473 + Rate: 7 - Index: 4 Item: S_Boomerang_Pendant - Rate: 1014 + Rate: 15 - Index: 5 Item: S_Boomerang_Earing - Rate: 1014 + Rate: 15 - Index: 6 Item: S_Vulcan_Armor - Rate: 1014 + Rate: 15 - Index: 7 Item: S_Vulcan_Shield - Rate: 473 + Rate: 7 - Index: 8 Item: S_Vulcan_Shoes - Rate: 1014 + Rate: 15 - Index: 9 Item: S_Arms_Weapon - Rate: 473 + Rate: 7 - Index: 10 Item: S_Arms_Pendant - Rate: 1014 + Rate: 15 - Index: 11 Item: S_Arms_Earing - Rate: 1014 + Rate: 15 - Group: GENETIC_S_CUBE SubGroups: - SubGroup: 1 List: - Index: 0 Item: S_Cart_Tornado_Armor - Rate: 1014 + Rate: 15 - Index: 1 Item: S_Cart_Tornado_Shield - Rate: 473 + Rate: 7 - Index: 2 Item: S_Cart_Tornado_Shoes - Rate: 1014 + Rate: 15 - Index: 3 Item: S_Cannon_Cart_Weapon - Rate: 473 + Rate: 7 - Index: 4 Item: S_Cannon_Cart_Pendant - Rate: 1014 + Rate: 15 - Index: 5 Item: S_Cannon_Cart_Earing - Rate: 1014 + Rate: 15 - Index: 6 Item: S_Spore_Bomb_Armor - Rate: 1014 + Rate: 15 - Index: 7 Item: S_Spore_Bomb_Shield - Rate: 473 + Rate: 7 - Index: 8 Item: S_Spore_Bomb_Shoes - Rate: 1014 + Rate: 15 - Index: 9 Item: S_Crazy_Weapon - Rate: 473 + Rate: 7 - Index: 10 Item: S_Crazy_Pendant - Rate: 1014 + Rate: 15 - Index: 11 Item: S_Crazy_Earing - Rate: 1014 + Rate: 15 - Group: SIGNON_PRIN_WAVE_BOX SubGroups: - SubGroup: 1 List: - Index: 0 Item: C_Signon_Princ_Wave_BU - Rate: 1250 + Rate: 3 - Index: 1 Item: C_Signon_Princ_Wave_RD - Rate: 1250 + Rate: 3 - Index: 2 Item: C_Signon_Princ_Wave_YL - Rate: 1250 + Rate: 3 - Index: 3 Item: C_Signon_Princ_Wave_GN - Rate: 1250 + Rate: 3 - Index: 4 Item: C_Signon_Princ_Wave_BL - Rate: 1250 + Rate: 3 - Index: 5 Item: C_Signon_Princ_Wave_WH - Rate: 1250 + Rate: 3 - Index: 6 - Item: C_Signon_Princ_Wave_OM - Rate: 1250 - - Index: 7 Item: C_Signon_Princ_Wave_PP - Rate: 1250 + Rate: 3 + - Index: 7 + Item: C_Signon_Princ_Wave_OM + Rate: 3 - Group: HERO_WEAPON_CUBE SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Oriental_Sword_Cube + Item: Barb_Wire_K_Cube Rate: 10 - Index: 1 - Item: Oriental_Sword_Cube - Rate: 386 + Item: Trumpet_Shell_K_Cube + Rate: 10 - Index: 2 - Item: Dragonic_Slayer_Cube + Item: Narcis_Bow_Cube Rate: 10 - Index: 3 - Item: Dragonic_Slayer_Cube - Rate: 386 + Item: Slate_Sword_Cube + Rate: 10 - Index: 4 - Item: Shiver_Katar_K_Cube + Item: Sword_Of_Bluefire_Cube Rate: 10 - Index: 5 - Item: Shiver_Katar_K_Cube - Rate: 386 + Item: Fatalist_Cube + Rate: 10 - Index: 6 - Item: Blade_Katar_Cube + Item: Magic_Sword_Cube Rate: 10 - Index: 7 - Item: Blade_Katar_Cube - Rate: 386 + Item: Meteor_Striker_Cube + Rate: 10 - Index: 8 - Item: Sword_Of_Bluefire_Cube + Item: Avenger_Cube Rate: 10 - Index: 9 - Item: Sword_Of_Bluefire_Cube - Rate: 386 + Item: Freezing_Rod_Cube + Rate: 10 - Index: 10 - Item: Slate_Sword_Cube + Item: Shadow_Staff_K_Cube Rate: 10 - Index: 11 - Item: Slate_Sword_Cube - Rate: 386 + Item: Scalet_Dragon_L_Cube + Rate: 10 - Index: 12 - Item: Narcis_Bow_Cube + Item: Royal_Bow_K_Cube Rate: 10 - Index: 13 - Item: Narcis_Bow_Cube - Rate: 386 + Item: Saint_Hall_Cube + Rate: 10 - Index: 14 - Item: Trumpet_Shell_K_Cube + Item: Demon_Hunt_Bible_Cube Rate: 10 - Index: 15 - Item: Trumpet_Shell_K_Cube - Rate: 386 + Item: Blue_Crystal_Staff_Cube + Rate: 10 - Index: 16 - Item: Barb_Wire_K_Cube + Item: Iron_Staff_Cube Rate: 10 - Index: 17 - Item: Barb_Wire_K_Cube - Rate: 386 + Item: Light_Blade_Cube + Rate: 10 - Index: 18 - Item: Avenger_Cube + Item: Undine_Spear_K_Cube Rate: 10 - Index: 19 - Item: Avenger_Cube - Rate: 386 + Item: Ray_Knuckle_Cube + Rate: 10 - Index: 20 - Item: Meteor_Striker_Cube + Item: Iron_Nail_K_Cube Rate: 10 - Index: 21 - Item: Meteor_Striker_Cube - Rate: 386 + Item: Oriental_Sword_Cube + Rate: 10 - Index: 22 - Item: Magic_Sword_Cube + Item: Dragonic_Slayer_Cube Rate: 10 - Index: 23 - Item: Magic_Sword_Cube - Rate: 386 + Item: Shiver_Katar_K_Cube + Rate: 10 - Index: 24 - Item: Fatalist_Cube + Item: Blade_Katar_Cube Rate: 10 - Index: 25 - Item: Fatalist_Cube - Rate: 386 - - Index: 26 - Item: Royal_Bow_K_Cube - Rate: 10 - - Index: 27 - Item: Royal_Bow_K_Cube - Rate: 386 - - Index: 28 - Item: Scalet_Dragon_L_Cube - Rate: 10 - - Index: 29 - Item: Scalet_Dragon_L_Cube - Rate: 386 - - Index: 30 - Item: Shadow_Staff_K_Cube - Rate: 10 - - Index: 31 - Item: Shadow_Staff_K_Cube - Rate: 386 - - Index: 32 - Item: Freezing_Rod_Cube - Rate: 10 - - Index: 33 - Item: Freezing_Rod_Cube - Rate: 386 - - Index: 34 - Item: Iron_Nail_K_Cube - Rate: 10 - - Index: 35 - Item: Iron_Nail_K_Cube - Rate: 386 - - Index: 36 - Item: Ray_Knuckle_Cube - Rate: 10 - - Index: 37 - Item: Ray_Knuckle_Cube - Rate: 386 - - Index: 38 - Item: Undine_Spear_K_Cube - Rate: 10 - - Index: 39 - Item: Undine_Spear_K_Cube - Rate: 386 - - Index: 40 - Item: Light_Blade_Cube - Rate: 10 - - Index: 41 - Item: Light_Blade_Cube - Rate: 386 - - Index: 42 - Item: Iron_Staff_Cube - Rate: 10 - - Index: 43 - Item: Iron_Staff_Cube - Rate: 386 - - Index: 44 - Item: Blue_Crystal_Staff_Cube - Rate: 10 - - Index: 45 - Item: Blue_Crystal_Staff_Cube - Rate: 386 - - Index: 46 - Item: Demon_Hunt_Bible_Cube - Rate: 10 - - Index: 47 - Item: Demon_Hunt_Bible_Cube - Rate: 386 - - Index: 48 - Item: Saint_Hall_Cube - Rate: 10 - - Index: 49 - Item: Saint_Hall_Cube - Rate: 386 - - Index: 50 Item: MeawFoxtail_Cube Rate: 10 - - Index: 51 + - Index: 26 Item: Fog_Dew_Sword_Cube Rate: 10 - - Index: 52 + - Index: 27 Item: Humma_Clear_Cube Rate: 10 - - Index: 53 - Item: OneSkyOneSun_Cube - Rate: 10 - - Index: 54 - Item: SoulWeight_Cube - Rate: 10 - - Index: 55 + - Index: 28 Item: Crimson_Rose_Cube Rate: 10 - - Index: 56 + - Index: 29 Item: Master_Soul_Rifle_Cube Rate: 10 - - Index: 57 + - Index: 30 Item: Golden_L_Launcher_Cube Rate: 10 - - Index: 58 + - Index: 31 Item: The_Black_Gatling_Cube Rate: 10 - - Index: 59 + - Index: 32 Item: Demon_S_Shot_Cube Rate: 10 + - Index: 33 + Item: OneSkyOneSun_Cube + Rate: 10 + - Index: 34 + Item: SoulWeight_Cube + Rate: 10 + - Index: 35 + Item: Freedom_Stick_Cube + Rate: 10 + - Index: 36 + Item: Blessed_Knife_Cube + Rate: 10 - Group: NEW_S_WEAPON_CUBE SubGroups: - SubGroup: 1 List: - Index: 0 - Item: S2_Spiritual_Weapon - Rate: 1111 - - Index: 1 Item: S2_Force_Ex_Weapon - Rate: 1111 - - Index: 2 + Rate: 10 + - Index: 1 Item: S2_Spirit_M_E_Weapon - Rate: 1111 + Rate: 10 + - Index: 2 + Item: S2_Spiritual_Weapon + Rate: 10 - Index: 3 Item: S_Blitz_Weapon - Rate: 1111 + Rate: 10 - Index: 4 Item: S_Tension_Weapon - Rate: 1111 + Rate: 10 - Index: 5 Item: S_Elegant_Weapon - Rate: 1111 + Rate: 10 - Index: 6 Item: S_MortalBlow_Weapon - Rate: 1111 + Rate: 10 - Index: 7 Item: Sentimental_Weapone_S - Rate: 1111 + Rate: 10 - Index: 8 Item: Enchanting_Weapone_S - Rate: 1111 + Rate: 10 - Group: NEW_S_SHIELD_CUBE SubGroups: - SubGroup: 1 List: - Index: 0 Item: S2_Spell_Flow_Shield - Rate: 1667 + Rate: 10 - Index: 1 Item: S_Sigrun_Shield - Rate: 1667 + Rate: 10 - Index: 2 Item: S_Critical_Shield - Rate: 1667 + Rate: 10 - Index: 3 Item: S_Tempest_Shield - Rate: 1667 + Rate: 10 - Index: 4 Item: S_Healing_Shield - Rate: 1667 + Rate: 10 - Index: 5 Item: S_Penetration_Shield - Rate: 1667 + Rate: 10 - Group: NEW_S_ARMOR_CUBE SubGroups: - SubGroup: 1 List: - Index: 0 Item: S2_Malicious_Armor - Rate: 667 + Rate: 10 - Index: 1 Item: S_Sigrun_Armor - Rate: 667 + Rate: 10 - Index: 2 Item: S2_Caster_Armor - Rate: 667 + Rate: 10 - Index: 3 Item: S2_Reload_Armor - Rate: 667 + Rate: 10 - Index: 4 Item: S_Blitz_Armor - Rate: 667 + Rate: 10 - Index: 5 Item: S_M_ExeHoly_Armor - Rate: 667 + Rate: 10 - Index: 6 Item: S_M_ExoCorrupt_Armor - Rate: 667 + Rate: 10 - Index: 7 Item: S_M_DragonVib_Armor - Rate: 667 + Rate: 10 - Index: 8 Item: S_M_SciHunting_Armor - Rate: 667 + Rate: 10 - Index: 9 Item: S_M_FishInsect_Armor - Rate: 667 + Rate: 10 - Index: 10 Item: S_ExeHoly_Armor - Rate: 667 + Rate: 10 - Index: 11 Item: S_ExoCorrupt_Armor - Rate: 667 + Rate: 10 - Index: 12 Item: S_DragonVib_Armor - Rate: 667 + Rate: 10 - Index: 13 Item: S_SciHunting_Armor - Rate: 667 + Rate: 10 - Index: 14 Item: S_FishInsect_Armor - Rate: 667 + Rate: 10 - Group: NEW_S_SHOES_CUBE SubGroups: - SubGroup: 1 List: - Index: 0 Item: S2_Hasty_Shoes - Rate: 2000 + Rate: 10 - Index: 1 Item: S_Critical_Shoes - Rate: 2000 + Rate: 10 - Index: 2 Item: S_Tempest_Shoes - Rate: 2000 + Rate: 10 - Index: 3 - Item: S_Healing_Shoes - Rate: 2000 - - Index: 4 Item: S_Penetration_Shoes - Rate: 2000 + Rate: 10 + - Index: 4 + Item: S_Healing_Shoes + Rate: 10 - Group: NEW_S_EARRING_CUBE SubGroups: - SubGroup: 1 List: - Index: 0 Item: S2_Gemstone_Earring - Rate: 1429 + Rate: 10 - Index: 1 Item: S_Tension_Earring - Rate: 1429 + Rate: 10 - Index: 2 Item: S_Elegant_Earring - Rate: 1429 + Rate: 10 - Index: 3 Item: S_Restore_Earring - Rate: 1429 + Rate: 10 - Index: 4 Item: S_MortalBlow_Earring - Rate: 1429 + Rate: 10 - Index: 5 Item: Sentimental_Earring_S - Rate: 1429 + Rate: 10 - Index: 6 Item: Enchanting_Earring_S - Rate: 1429 + Rate: 10 - Group: NEW_S_PENDANT_CUBE SubGroups: - SubGroup: 1 List: - Index: 0 Item: S2_Bearers_Pendent - Rate: 1429 + Rate: 10 - Index: 1 Item: S_Tension_Pendent - Rate: 1429 + Rate: 10 - Index: 2 Item: S_Elegant_Pendent - Rate: 1429 + Rate: 10 - Index: 3 Item: S_Restore_Pendent - Rate: 1429 + Rate: 10 - Index: 4 Item: S_MortalBlow_Pendent - Rate: 1429 + Rate: 10 - Index: 5 Item: Sentimental_Pendant_S - Rate: 1429 + Rate: 10 - Index: 6 Item: Enchanting_Pendant_S - Rate: 1429 + Rate: 10 - Group: MD_AIRBOAT_REWARD SubGroups: - SubGroup: 1 @@ -63121,797 +67412,849 @@ Body: - SubGroup: 1 List: - Index: 0 - Item: Clock_Casket_RD - Rate: 1429 - - Index: 1 Item: Ignis_CapK - Rate: 1429 - - Index: 2 + Rate: 1 + - Index: 1 Item: Phantom_Cap - Rate: 1429 - - Index: 3 + Rate: 1 + - Index: 2 Item: Stripe_Hat - Rate: 1429 + Rate: 1 + - Index: 3 + Item: Clock_Casket_RD + Rate: 1 - Index: 4 Item: Large_Sorcerer_Crown - Rate: 1429 + Rate: 1 - Index: 5 Item: Scorpio_Diadem_K - Rate: 1429 + Rate: 1 - Index: 6 Item: Sagittarius_DiademK - Rate: 1429 + Rate: 1 - Group: FAMOUS_HAT_BOX SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Heart_Wing_Hairband - Rate: 625 - - Index: 1 Item: New_Wave_Sunglasses - Rate: 625 + Rate: 3 + - Index: 1 + Item: CD_In_MouthK + Rate: 3 - Index: 2 Item: Magical_Booster_K - Rate: 625 + Rate: 3 - Index: 3 - Item: Spell_Circuit - Rate: 625 + Item: Heart_Wing_Hairband + Rate: 3 - Index: 4 - Item: General_Helmet_ - Rate: 625 - - Index: 5 Item: FaceWorm_Breath - Rate: 625 - - Index: 6 - Item: Classical_Fhat - Rate: 625 - - Index: 7 - Item: Dog_Officer - Rate: 625 - - Index: 8 - Item: Amistr_Beret - Rate: 625 - - Index: 9 + Rate: 3 + - Index: 5 Item: Celine_Brooch_K - Rate: 625 - - Index: 10 + Rate: 3 + - Index: 6 Item: Victory_Wing_Ear - Rate: 625 - - Index: 11 - Item: Dolor_HatK - Rate: 625 - - Index: 12 - Item: CD_In_MouthK - Rate: 625 - - Index: 13 - Item: Tha_Maero_MaskK - Rate: 625 - - Index: 14 - Item: Tha_Despero_MaskK - Rate: 625 - - Index: 15 + Rate: 3 + - Index: 7 Item: Thanatos_Mal_MaskK - Rate: 625 + Rate: 3 + - Index: 8 + Item: Tha_Despero_MaskK + Rate: 3 + - Index: 9 + Item: Tha_Maero_MaskK + Rate: 3 + - Index: 10 + Item: Dolor_HatK + Rate: 3 + - Index: 11 + Item: Dog_Officer + Rate: 3 + - Index: 12 + Item: Spell_Circuit + Rate: 3 + - Index: 13 + Item: General_Helmet_ + Rate: 3 + - Index: 14 + Item: Classical_Fhat + Rate: 3 + - Index: 15 + Item: Amistr_Beret + Rate: 3 - Group: POENETENTIA_BOX1 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Poenetentia_Aegis - - Index: 1 Item: Poenitentia_Gladius + - Index: 1 + Item: Poenetentia_Aegis - Group: POENETENTIA_BOX2 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Poenetentia_Aegis - - Index: 1 Item: Poenitentia_Hasta + - Index: 1 + Item: Poenetentia_Aegis - Group: EX_SKILL_SHADOW_CUBE SubGroups: - SubGroup: 1 List: - Index: 0 Item: S_Tail_Dragon_Weapon - Rate: 95 + Rate: 7 - Index: 1 Item: S_Tail_Dragon_Shield - Rate: 203 + Rate: 15 - Index: 2 Item: S_Tail_Dragon_Armor - Rate: 203 + Rate: 15 - Index: 3 Item: S_Flare_Dance_Earing - Rate: 95 + Rate: 7 - Index: 4 Item: S_Flare_Dance_Pendant - Rate: 203 + Rate: 15 - Index: 5 Item: S_Flare_Dance_Shoes - Rate: 203 + Rate: 15 - Index: 6 Item: S_God_Hammer_Weapon - Rate: 95 + Rate: 7 - Index: 7 Item: S_God_Hammer_Shield - Rate: 203 + Rate: 15 - Index: 8 Item: S_God_Hammer_Armor - Rate: 203 + Rate: 15 - Index: 9 Item: S_Shatter_Buster_Earing - Rate: 95 + Rate: 7 - Index: 10 Item: S_Shatter_B_Pendant - Rate: 203 + Rate: 15 - Index: 11 Item: S_Shatter_Buster_Shoes - Rate: 203 + Rate: 15 - Index: 12 Item: S_Trip_Weapon - Rate: 95 + Rate: 7 - Index: 13 Item: S_Trip_Shield - Rate: 203 + Rate: 15 - Index: 14 Item: S_Trip_Armor - Rate: 203 + Rate: 15 - Index: 15 Item: S_Super_Magic_Shield - Rate: 95 + Rate: 7 - Index: 16 Item: S_Super_Magic_Armor - Rate: 203 + Rate: 15 - Index: 17 Item: S_Super_Magic_Shoes - Rate: 203 + Rate: 15 - Index: 18 Item: S_Super_Power_Weapon - Rate: 95 + Rate: 7 - Index: 19 Item: S_Super_Power_Pendant - Rate: 203 + Rate: 15 - Index: 20 Item: S_Super_Power_Earing - Rate: 203 + Rate: 15 - Index: 21 Item: S_Kunai_Weapon - Rate: 95 + Rate: 7 - Index: 22 Item: S_Kunai_Shield - Rate: 203 + Rate: 15 - Index: 23 Item: S_Kunai_Armor - Rate: 203 + Rate: 15 - Index: 24 Item: S_Syuriken_Earing - Rate: 95 + Rate: 7 - Index: 25 Item: S_Syuriken_Pendant - Rate: 203 + Rate: 15 - Index: 26 Item: S_Syuriken_Shoes - Rate: 203 + Rate: 15 - Index: 27 Item: S_Kamaenraku_Weapon - Rate: 95 + Rate: 7 - Index: 28 Item: S_Kamaenraku_Shield - Rate: 203 + Rate: 15 - Index: 29 Item: S_Kamaenraku_Armor - Rate: 203 + Rate: 15 - Index: 30 Item: S_Huusouka_Earing - Rate: 95 + Rate: 7 - Index: 31 Item: S_Huusouka_Pendant - Rate: 203 + Rate: 15 - Index: 32 Item: S_Huusouka_Shoes - Rate: 203 + Rate: 15 - Index: 33 Item: S_Pickyrush_Weapon - Rate: 95 + Rate: 7 - Index: 34 Item: S_Pickyrush_Shield - Rate: 203 + Rate: 15 - Index: 35 Item: S_Pickyrush_Armor - Rate: 203 + Rate: 15 - Index: 36 Item: S_SavageRabbit_Earing - Rate: 95 + Rate: 7 - Index: 37 Item: S_SavageRabbit_Pendant - Rate: 203 + Rate: 15 - Index: 38 Item: S_SavageRabbit_Shoes - Rate: 203 + Rate: 15 - Index: 39 Item: S_Catnip_Weapon - Rate: 95 + Rate: 7 - Index: 40 Item: S_Catnip_Shield - Rate: 203 + Rate: 15 - Index: 41 Item: S_Catnip_Armor - Rate: 203 + Rate: 15 - Index: 42 Item: S_Silvervine_Earing - Rate: 95 + Rate: 7 - Index: 43 Item: S_Silvervine_Pendant - Rate: 203 + Rate: 15 - Index: 44 Item: S_Silvervine_Shoes - Rate: 203 + Rate: 15 - Index: 45 Item: S_Sunshine_Weapon - Rate: 95 + Rate: 7 - Index: 46 Item: S_Sunshine_Shield - Rate: 203 + Rate: 15 - Index: 47 Item: S_Sunshine_Armor - Rate: 203 + Rate: 15 - Index: 48 Item: S_Moonlight_Earring - Rate: 95 + Rate: 7 - Index: 49 Item: S_Moonlight_Pendant - Rate: 203 + Rate: 15 - Index: 50 Item: S_Moonlight_Shoes - Rate: 203 + Rate: 15 - Index: 51 Item: S_Stardust_Weapon - Rate: 95 + Rate: 7 - Index: 52 Item: S_Stardust_Shield - Rate: 203 + Rate: 15 - Index: 53 Item: S_Stardust_Armor - Rate: 203 + Rate: 15 - Index: 54 Item: S_S_Weapon - Rate: 95 + Rate: 7 - Index: 55 Item: S_S_Shield - Rate: 203 + Rate: 15 - Index: 56 Item: S_S_Armor - Rate: 203 + Rate: 15 - Index: 57 Item: S_Evilcurse_Earring - Rate: 95 + Rate: 7 - Index: 58 Item: S_Evilcurse_Pendant - Rate: 203 + Rate: 15 - Index: 59 Item: S_Evilcurse_Shoes - Rate: 203 + Rate: 15 - Group: CACHUA_COSTUME_BOX SubGroups: - SubGroup: 1 List: - Index: 0 - Item: C_Over_Protector - Rate: 550 - - Index: 1 - Item: C_Evil_Druid_Hat_Black - Rate: 550 - - Index: 2 Item: C_Cons_Of_Water Rate: 1 + - Index: 1 + Item: C_Cons_Of_Fire + Rate: 1 + - Index: 2 + Item: C_Cons_Of_Wind + Rate: 1 - Index: 3 - Item: C_Two_Tone_Beret - Rate: 550 + Item: Cons_Of_Earth + Rate: 1 - Index: 4 - Item: C_Bloody_Wing - Rate: 12 + Item: C_Cons_Of_Darkness + Rate: 5 - Index: 5 Item: C_BlueAngeling_Wing Rate: 12 - Index: 6 - Item: C_Wings_Of_Raguel + Item: C_Bloody_Wing Rate: 12 - Index: 7 - Item: C_Wings_Of_Raphael - Rate: 12 - - Index: 8 - Item: C_Underlamp - Rate: 550 - - Index: 9 - Item: C_Piamette_Hood_Red - Rate: 550 - - Index: 10 - Item: C_Piamette_BowTie_Red - Rate: 550 - - Index: 11 - Item: C_War_Princess_Ribbon - Rate: 899 - - Index: 12 - Item: C_White_Rabbit - Rate: 550 - - Index: 13 - Item: C_False_Ears - Rate: 550 - - Index: 14 - Item: C_SeraphimCoronet - Rate: 550 - - Index: 15 - Item: C_Greater_Dracul_Horn - Rate: 550 - - Index: 16 - Item: C_Variant_Veil - Rate: 550 - - Index: 17 - Item: C_Jitterbug_Cap - Rate: 550 - - Index: 18 - Item: C_Orange_Rabbit - Rate: 550 - - Index: 19 - Item: C_Cons_Of_Fire - Rate: 1 - - Index: 20 Item: C_ResonateTaego Rate: 12 - - Index: 21 - Item: C_Miracle_Plant + - Index: 8 + Item: C_Wings_Of_Raphael Rate: 12 - - Index: 22 + - Index: 9 Item: C_SnackParty Rate: 12 - - Index: 23 + - Index: 10 + Item: C_Wings_Of_Raguel + Rate: 12 + - Index: 11 + Item: C_Miracle_Plant + Rate: 12 + - Index: 12 Item: C_Wings_Of_Lucifer Rate: 30 - - Index: 24 - Item: C_Cons_Of_Wind - Rate: 1 - - Index: 25 - Item: C_Palace_Guard_Cap - Rate: 899 - - Index: 26 - Item: Cons_Of_Earth - Rate: 1 - - Index: 27 + - Index: 13 Item: C_Blanc_Neige_Prince Rate: 30 + - Index: 14 + Item: C_Blink_Eyes_Golden + Rate: 30 + - Index: 15 + Item: C_Evil_Druid_Hat_Black + Rate: 550 + - Index: 16 + Item: C_Piamette_Hood_Red + Rate: 550 + - Index: 17 + Item: C_Piamette_BowTie_Red + Rate: 550 + - Index: 18 + Item: C_White_Rabbit + Rate: 550 + - Index: 19 + Item: C_Variant_Veil + Rate: 550 + - Index: 20 + Item: C_Two_Tone_Beret + Rate: 550 + - Index: 21 + Item: C_SeraphimCoronet + Rate: 550 + - Index: 22 + Item: C_Over_Protector + Rate: 550 + - Index: 23 + Item: C_False_Ears + Rate: 550 + - Index: 24 + Item: C_Underlamp + Rate: 550 + - Index: 25 + Item: C_Jitterbug_Cap + Rate: 550 + - Index: 26 + Item: C_Greater_Dracul_Horn + Rate: 550 + - Index: 27 + Item: C_Orange_Rabbit + Rate: 550 - Index: 28 - Item: C_PGstone_Knit_Hat_BW - Rate: 899 + Item: C_Palace_Guard_Cap + Rate: 889 - Index: 29 - Item: C_Cons_Of_Darkness - Rate: 5 + Item: C_PGstone_Knit_Hat_BW + Rate: 889 + - Index: 30 + Item: C_War_Princess_Ribbon + Rate: 889 - Group: KR_B_SPECIAL03 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: E_Mysterious_Water - Amount: 19 + Item: Comp_Battle_Bubble + Amount: 5 - Index: 1 - Item: E_Med_Life_Potion - Amount: 19 - - Index: 2 - Item: E_Small_Life_Potion - Amount: 19 - - Index: 3 - Item: Comp_Small_Mana_Potion - Amount: 19 - - Index: 4 - Item: Comp_M_DEFScroll - Amount: 19 - - Index: 5 - Item: Comp_Power_Booster - Amount: 19 - - Index: 6 - Item: Comp_Almighty - Amount: 19 - - Index: 7 Item: E_Infinity_Drink - Amount: 19 + Amount: 10 - Group: BIOWEAPON_HELM_BOX SubGroups: - SubGroup: 1 List: - Index: 0 Item: BioWeapon_Helm_RK - Rate: 833 + Rate: 1 - Index: 1 Item: BioWeapon_Helm_LG - Rate: 833 + Rate: 1 - Index: 2 Item: BioWeapon_Helm_WL - Rate: 833 + Rate: 1 - Index: 3 Item: BioWeapon_Helm_SO - Rate: 833 + Rate: 1 - Index: 4 Item: BioWeapon_Helm_NC - Rate: 833 + Rate: 1 - Index: 5 Item: BioWeapon_Helm_GN - Rate: 833 + Rate: 1 - Index: 6 Item: BioWeapon_Helm_RA - Rate: 833 + Rate: 1 - Index: 7 Item: BioWeapon_Helm_WM - Rate: 833 + Rate: 1 - Index: 8 Item: BioWeapon_Helm_AB - Rate: 833 + Rate: 1 - Index: 9 Item: BioWeapon_Helm_SR - Rate: 833 + Rate: 1 - Index: 10 Item: BioWeapon_Helm_SC - Rate: 833 + Rate: 1 - Index: 11 Item: BioWeapon_Helm_GC - Rate: 833 + Rate: 1 - Group: TREE_OF_SPROUT_BOX SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Tree_Of_Sprout_STR - Rate: 1667 - - Index: 1 Item: Tree_Of_Sprout_DEX - Rate: 1667 + Rate: 10 + - Index: 1 + Item: Tree_Of_Sprout_STR + Rate: 10 - Index: 2 Item: Tree_Of_Sprout_AGI - Rate: 1667 + Rate: 10 - Index: 3 Item: Tree_Of_Sprout_LUK - Rate: 1667 + Rate: 10 - Index: 4 Item: Tree_Of_Sprout_VIT - Rate: 1667 + Rate: 10 - Index: 5 Item: Tree_Of_Sprout_INT - Rate: 1667 + Rate: 10 - Group: SPECIAL_COSTUME_BOX SubGroups: - SubGroup: 1 List: - Index: 0 Item: C_Over_Protector - Rate: 500 + Rate: 5 - Index: 1 Item: C_Evil_Druid_Hat_Black - Rate: 400 + Rate: 4 - Index: 2 Item: C_Cons_Of_Water - Rate: 100 + Rate: 1 - Index: 3 Item: C_Two_Tone_Beret - Rate: 500 + Rate: 5 - Index: 4 Item: C_Bloody_Wing - Rate: 200 + Rate: 2 - Index: 5 Item: C_BlueAngeling_Wing - Rate: 200 + Rate: 2 - Index: 6 Item: C_Wings_Of_Raguel - Rate: 200 + Rate: 2 - Index: 7 Item: C_Wings_Of_Raphael - Rate: 200 + Rate: 2 - Index: 8 Item: C_Underlamp - Rate: 500 + Rate: 5 - Index: 9 Item: C_Piamette_Hood_Red - Rate: 400 + Rate: 4 - Index: 10 Item: C_Piamette_BowTie_Red - Rate: 400 + Rate: 4 - Index: 11 Item: C_War_Princess_Ribbon - Rate: 500 + Rate: 5 - Index: 12 Item: C_White_Rabbit - Rate: 400 + Rate: 4 - Index: 13 Item: C_False_Ears - Rate: 500 + Rate: 5 - Index: 14 Item: C_SeraphimCoronet - Rate: 500 + Rate: 5 - Index: 15 Item: C_Greater_Dracul_Horn - Rate: 500 + Rate: 5 - Index: 16 Item: C_Variant_Veil - Rate: 400 + Rate: 4 - Index: 17 Item: C_Jitterbug_Cap - Rate: 500 + Rate: 5 - Index: 18 Item: C_Orange_Rabbit - Rate: 500 + Rate: 5 - Index: 19 Item: C_Cons_Of_Fire - Rate: 100 + Rate: 1 - Index: 20 Item: C_ResonateTaego - Rate: 200 + Rate: 2 - Index: 21 Item: C_Miracle_Plant - Rate: 200 + Rate: 2 - Index: 22 Item: C_SnackParty - Rate: 200 + Rate: 2 - Index: 23 Item: C_Wings_Of_Lucifer - Rate: 200 + Rate: 2 - Index: 24 Item: C_Cons_Of_Wind - Rate: 100 + Rate: 1 - Index: 25 Item: C_Palace_Guard_Cap - Rate: 500 + Rate: 5 - Index: 26 Item: Cons_Of_Earth - Rate: 100 + Rate: 1 - Index: 27 Item: C_Blanc_Neige_Prince - Rate: 400 + Rate: 4 - Index: 28 Item: C_PGstone_Knit_Hat_BW - Rate: 500 + Rate: 5 - Index: 29 Item: C_Cons_Of_Darkness - Rate: 100 + Rate: 1 - Group: SPECIAL_COSTUME_BOX_ SubGroups: - SubGroup: 1 List: - Index: 0 Item: C_Cons_Of_Water - Rate: 714 + Rate: 1 - Index: 1 Item: C_Bloody_Wing - Rate: 714 + Rate: 1 - Index: 2 Item: C_BlueAngeling_Wing - Rate: 714 + Rate: 1 - Index: 3 Item: C_Wings_Of_Raguel - Rate: 714 + Rate: 1 - Index: 4 Item: C_Wings_Of_Raphael - Rate: 714 + Rate: 1 - Index: 5 Item: C_Cons_Of_Fire - Rate: 714 + Rate: 1 - Index: 6 Item: C_ResonateTaego - Rate: 714 + Rate: 1 - Index: 7 Item: C_Miracle_Plant - Rate: 714 + Rate: 1 - Index: 8 Item: C_SnackParty - Rate: 714 + Rate: 1 - Index: 9 Item: C_Wings_Of_Lucifer - Rate: 714 + Rate: 1 - Index: 10 Item: C_Cons_Of_Wind - Rate: 714 + Rate: 1 - Index: 11 Item: Cons_Of_Earth - Rate: 714 + Rate: 1 - Index: 12 Item: C_Blanc_Neige_Prince - Rate: 714 + Rate: 1 - Index: 13 Item: C_Cons_Of_Darkness - Rate: 714 + Rate: 1 - Group: RAG_INVEN_BOX SubGroups: - SubGroup: 0 List: - Index: 0 - Item: E_Mysterious_Water - Amount: 30 + Item: E_Blessing_10_Scroll + Amount: 50 - Index: 1 - Item: E_Med_Life_Potion - Amount: 30 + Item: E_Inc_Agi_10_Scroll + Amount: 50 - Index: 2 Item: E_Small_Life_Potion Amount: 30 - Index: 3 - Item: E_Blessing_10_Scroll - Amount: 50 + Item: E_Med_Life_Potion + Amount: 30 - Index: 4 - Item: E_Inc_Agi_10_Scroll - Amount: 50 + Item: E_Mysterious_Water + Amount: 30 - Index: 5 Item: Comp_Small_Mana_Potion Amount: 30 - Index: 6 - Item: Comp_Power_Booster - Amount: 10 - - Index: 7 Item: Comp_Almighty Amount: 10 + - Index: 7 + Item: Comp_Power_Booster + Amount: 10 - Index: 8 - Item: World_Tour_Ticket - Amount: 30 - - Index: 9 Item: E_Infinity_Drink Amount: 10 + - Index: 9 + Item: World_Tour_Ticket + Amount: 30 - Group: THANATOS_PENDANT_BOX SubGroups: - SubGroup: 0 List: - Index: 0 - Item: PendantStoneForWork - - Index: 1 Item: Thanatos_Pendant + - Index: 1 + Item: PendantStoneForWork - Group: LAPINE_DDUKDDAKBOX3 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: EnchantStone_Recipe - Rate: 3500 + Item: Shadow_Mix_Recipe2 + Rate: 25 - Index: 1 - Item: EventItem_Recipe - Rate: 1250 + Item: EnchantStone_Recipe + Rate: 25 - Index: 2 Item: PetEgg_Recipe - Rate: 1250 + Rate: 10 - Index: 3 Item: Nyang_Costume_Recipe - Rate: 1250 + Rate: 10 - Index: 4 - Item: JobShadow_Mix_Weapon + Item: EventItem_Recipe Rate: 10 - Index: 5 - Item: JobShadow_Mix_Armor - Rate: 10 + Item: Automatic_Module_Mix + Rate: 6 - Index: 6 - Item: JobShadow_Mix_Shoes - Rate: 10 - - Index: 7 - Item: JobShadow_Mix_Shield - Rate: 10 - - Index: 8 - Item: JobShadow_Mix_Pendant - Rate: 10 - - Index: 9 - Item: JobShadow_Mix_Earing - Rate: 10 - - Index: 10 - Item: StatusShadow_Mix - Rate: 10 - - Index: 11 - Item: GemstoneShadow_Mix - Rate: 10 - - Index: 12 - Item: BearersShadow_Mix - Rate: 10 - - Index: 13 - Item: ComposeShadow_Mix - Rate: 10 - - Index: 14 - Item: RaceShadow_Mix - Rate: 10 - - Index: 15 - Item: StabilityShadow_Mix - Rate: 10 - - Index: 16 - Item: InfinityShadow_Mix - Rate: 10 - - Index: 17 - Item: PhysicalMagical_Mix - Rate: 10 - - Index: 18 - Item: ImmunedAthena_Mix - Rate: 10 - - Index: 19 - Item: HardChamption_Mix - Rate: 10 - - Index: 20 - Item: KingbirdAncient_Mix - Rate: 10 - - Index: 21 - Item: CriticalHit_Mix - Rate: 10 - - Index: 22 - Item: PerfectSize_Mix - Rate: 10 - - Index: 23 - Item: MagicPiercing_Mix - Rate: 10 - - Index: 24 - Item: Piercing_Mix - Rate: 10 - - Index: 25 - Item: Hasty_Mix - Rate: 10 - - Index: 26 - Item: FullPeneShadow_Mix - Rate: 10 - - Index: 27 - Item: FullTempShadow_Mix - Rate: 10 - - Index: 28 Item: Illusion_Module_Mix - Rate: 1590 - - Index: 29 + Rate: 14 + - Index: 7 + Item: EnchantStone_Recipe + Rate: 3500 + - Index: 8 + Item: PetEgg_Recipe + Rate: 1250 + - Index: 9 + Item: Nyang_Costume_Recipe + Rate: 1250 + - Index: 10 + Item: EventItem_Recipe + Rate: 1250 + - Index: 11 Item: Automatic_Module_Mix Rate: 850 + - Index: 12 + Item: Illusion_Module_Mix + Rate: 1540 + - Index: 13 + Item: StatusShadow_Mix + Rate: 10 + Announced: true + - Index: 14 + Item: StabilityShadow_Mix + Rate: 10 + Announced: true + - Index: 15 + Item: GemstoneShadow_Mix + Rate: 10 + Announced: true + - Index: 16 + Item: RaceShadow_Mix + Rate: 10 + Announced: true + - Index: 17 + Item: BearersShadow_Mix + Rate: 10 + Announced: true + - Index: 18 + Item: ComposeShadow_Mix + Rate: 10 + Announced: true + - Index: 19 + Item: JobShadow_Mix_Weapon + Rate: 10 + Announced: true + - Index: 20 + Item: JobShadow_Mix_Armor + Rate: 10 + Announced: true + - Index: 21 + Item: JobShadow_Mix_Shoes + Rate: 10 + Announced: true + - Index: 22 + Item: JobShadow_Mix_Shield + Rate: 10 + Announced: true + - Index: 23 + Item: JobShadow_Mix_Pendant + Rate: 10 + Announced: true + - Index: 24 + Item: JobShadow_Mix_Earing + Rate: 10 + Announced: true + - Index: 25 + Item: CriticalHit_Mix + Rate: 10 + Announced: true + - Index: 26 + Item: PhysicalMagical_Mix + Rate: 10 + Announced: true + - Index: 27 + Item: HardChamption_Mix + Rate: 10 + Announced: true + - Index: 28 + Item: ImmunedAthena_Mix + Rate: 10 + Announced: true + - Index: 29 + Item: KingbirdAncient_Mix + Rate: 10 + Announced: true - Index: 30 + Item: Hasty_Mix + Rate: 10 + Announced: true + - Index: 31 + Item: PerfectSize_Mix + Rate: 10 + Announced: true + - Index: 32 + Item: MagicPiercing_Mix + Rate: 10 + Announced: true + - Index: 33 + Item: Piercing_Mix + Rate: 10 + Announced: true + - Index: 34 + Item: InfinityShadow_Mix + Rate: 10 + Announced: true + - Index: 35 + Item: FullPeneShadow_Mix + Rate: 10 + Announced: true + - Index: 36 + Item: FullTempShadow_Mix + Rate: 10 + Announced: true + - Index: 37 Item: True_GemShadow_Mix Rate: 10 - - Index: 31 + Announced: true + - Index: 38 Item: Mammoth_Mix Rate: 10 - - Index: 32 + Announced: true + - Index: 39 Item: EXPShadow_Mix Rate: 10 - - Index: 33 + Announced: true + - Index: 40 Item: AbsorbShadow_Mix Rate: 10 - - Index: 34 + Announced: true + - Index: 41 Item: MajorAutoSpell_Mix Rate: 10 - - Index: 35 + Announced: true + - Index: 42 Item: MagicalShadow_Mix Rate: 10 - - Index: 36 + Announced: true + - Index: 43 Item: PhysicalShadow_Mix Rate: 10 - - SubGroup: 2 - List: - - Index: 0 - Item: Shadow_Mix_Recipe2 - Rate: 10000 + Announced: true + - Index: 44 + Item: ReloadShadow_Mix + Rate: 10 + Announced: true + - Index: 45 + Item: SpellCasterShadow_Mix + Rate: 10 + Announced: true + - Index: 46 + Item: R_BearersShadow_Mix + Rate: 10 + Announced: true + - Index: 47 + Item: M_BlitzShadow_Mix + Rate: 10 + Announced: true + - Index: 48 + Item: EXPShadow_Mix2 + Rate: 10 + Announced: true - Group: AUCTION_PROMOTION SubGroups: - SubGroup: 0 List: - Index: 0 - Item: E_Mysterious_Water - Amount: 30 + Item: E_Blessing_10_Scroll + Amount: 50 - Index: 1 - Item: E_Med_Life_Potion - Amount: 30 + Item: E_Inc_Agi_10_Scroll + Amount: 50 - Index: 2 Item: E_Small_Life_Potion Amount: 30 - Index: 3 - Item: E_Blessing_10_Scroll - Amount: 50 + Item: E_Med_Life_Potion + Amount: 30 - Index: 4 - Item: E_Inc_Agi_10_Scroll - Amount: 50 + Item: E_Mysterious_Water + Amount: 30 - Index: 5 - Item: Comp_Small_Mana_Potion + Item: Comp_Almighty Amount: 20 - Index: 6 Item: Comp_Power_Booster Amount: 20 - Index: 7 - Item: Comp_Almighty + Item: E_Infinity_Drink Amount: 20 - Index: 8 - Item: World_Tour_Ticket + Item: Comp_Small_Mana_Potion Amount: 20 - Index: 9 - Item: E_Infinity_Drink + Item: World_Tour_Ticket Amount: 20 - Group: BLUE_PRINTS_SCROLL SubGroups: @@ -63919,2473 +68262,3093 @@ Body: List: - Index: 0 Item: Conse_F_T_Sword - Rate: 385 + Rate: 10 - Index: 1 Item: Conse_F_Lance - Rate: 385 + Rate: 10 - Index: 2 Item: Conse_F_G_Sword - Rate: 385 + Rate: 10 - Index: 3 Item: Conse_F_G_Spear - Rate: 385 + Rate: 10 - Index: 4 Item: Conse_F_Axe - Rate: 385 + Rate: 10 - Index: 5 Item: Conse_F_Mace - Rate: 385 + Rate: 10 - Index: 6 Item: Conse_F_Lapier - Rate: 385 + Rate: 10 - Index: 7 Item: Conse_F_Hall - Rate: 385 + Rate: 10 - Index: 8 Item: Conse_F_Cakram - Rate: 385 + Rate: 10 - Index: 9 Item: Conse_F_Katar - Rate: 385 + Rate: 10 - Index: 10 Item: Conse_F_Dagger - Rate: 385 + Rate: 10 - Index: 11 Item: Conse_F_C_Bow - Rate: 385 + Rate: 10 - Index: 12 Item: Conse_F_T_Staff - Rate: 385 + Rate: 10 - Index: 13 Item: Conse_F_Rod - Rate: 385 + Rate: 10 - Index: 14 Item: Conse_F_M_Book - Rate: 385 + Rate: 10 - Index: 15 Item: Conse_F_P_Book - Rate: 385 + Rate: 10 - Index: 16 Item: Conse_F_Bible - Rate: 385 + Rate: 10 - Index: 17 Item: Conse_F_Wand - Rate: 385 + Rate: 10 - Index: 18 Item: Conse_F_Knuckle - Rate: 385 + Rate: 10 - Index: 19 Item: Conse_F_Claw - Rate: 385 + Rate: 10 - Index: 20 Item: Conse_F_Ballista - Rate: 385 + Rate: 10 - Index: 21 Item: Conse_F_A_Bow - Rate: 385 + Rate: 10 - Index: 22 Item: Conse_F_Violin - Rate: 385 + Rate: 10 - Index: 23 Item: Conse_F_C_Rope - Rate: 385 + Rate: 10 - Index: 24 Item: Conse_F_Harp - Rate: 385 + Rate: 10 - Index: 25 Item: Conse_F_Ribbon - Rate: 385 + Rate: 10 + - SubGroup: 2 + List: + - Index: 0 + Item: Conse_F_T_Sword + Rate: 10 + - Index: 1 + Item: Conse_F_Lance + Rate: 10 + - Index: 2 + Item: Conse_F_G_Sword + Rate: 10 + - Index: 3 + Item: Conse_F_G_Spear + Rate: 10 + - Index: 4 + Item: Conse_F_Axe + Rate: 10 + - Index: 5 + Item: Conse_F_Mace + Rate: 10 + - Index: 6 + Item: Conse_F_Lapier + Rate: 10 + - Index: 7 + Item: Conse_F_Hall + Rate: 10 + - Index: 8 + Item: Conse_F_Cakram + Rate: 10 + - Index: 9 + Item: Conse_F_Katar + Rate: 10 + - Index: 10 + Item: Conse_F_Dagger + Rate: 10 + - Index: 11 + Item: Conse_F_C_Bow + Rate: 10 + - Index: 12 + Item: Conse_F_T_Staff + Rate: 10 + - Index: 13 + Item: Conse_F_Rod + Rate: 10 + - Index: 14 + Item: Conse_F_M_Book + Rate: 10 + - Index: 15 + Item: Conse_F_P_Book + Rate: 10 + - Index: 16 + Item: Conse_F_Bible + Rate: 10 + - Index: 17 + Item: Conse_F_Wand + Rate: 10 + - Index: 18 + Item: Conse_F_Knuckle + Rate: 10 + - Index: 19 + Item: Conse_F_Claw + Rate: 10 + - Index: 20 + Item: Conse_F_Ballista + Rate: 10 + - Index: 21 + Item: Conse_F_A_Bow + Rate: 10 + - Index: 22 + Item: Conse_F_Violin + Rate: 10 + - Index: 23 + Item: Conse_F_C_Rope + Rate: 10 + - Index: 24 + Item: Conse_F_Harp + Rate: 10 + - Index: 25 + Item: Conse_F_Ribbon + Rate: 10 + - SubGroup: 3 + List: + - Index: 0 + Item: Conse_F_T_Sword + Rate: 10 + - Index: 1 + Item: Conse_F_Lance + Rate: 10 + - Index: 2 + Item: Conse_F_G_Sword + Rate: 10 + - Index: 3 + Item: Conse_F_G_Spear + Rate: 10 + - Index: 4 + Item: Conse_F_Axe + Rate: 10 + - Index: 5 + Item: Conse_F_Mace + Rate: 10 + - Index: 6 + Item: Conse_F_Lapier + Rate: 10 + - Index: 7 + Item: Conse_F_Hall + Rate: 10 + - Index: 8 + Item: Conse_F_Cakram + Rate: 10 + - Index: 9 + Item: Conse_F_Katar + Rate: 10 + - Index: 10 + Item: Conse_F_Dagger + Rate: 10 + - Index: 11 + Item: Conse_F_C_Bow + Rate: 10 + - Index: 12 + Item: Conse_F_T_Staff + Rate: 10 + - Index: 13 + Item: Conse_F_Rod + Rate: 10 + - Index: 14 + Item: Conse_F_M_Book + Rate: 10 + - Index: 15 + Item: Conse_F_P_Book + Rate: 10 + - Index: 16 + Item: Conse_F_Bible + Rate: 10 + - Index: 17 + Item: Conse_F_Wand + Rate: 10 + - Index: 18 + Item: Conse_F_Knuckle + Rate: 10 + - Index: 19 + Item: Conse_F_Claw + Rate: 10 + - Index: 20 + Item: Conse_F_Ballista + Rate: 10 + - Index: 21 + Item: Conse_F_A_Bow + Rate: 10 + - Index: 22 + Item: Conse_F_Violin + Rate: 10 + - Index: 23 + Item: Conse_F_C_Rope + Rate: 10 + - Index: 24 + Item: Conse_F_Harp + Rate: 10 + - Index: 25 + Item: Conse_F_Ribbon + Rate: 10 + - SubGroup: 4 + List: + - Index: 0 + Item: Conse_F_Humma + Rate: 10 + - Index: 1 + Item: Conse_F_C_Humma + Rate: 10 + - Index: 2 + Item: Conse_F_Revolver + Rate: 10 + - Index: 3 + Item: Conse_F_Rifle + Rate: 10 + - Index: 4 + Item: Conse_F_Gatling + Rate: 10 + - Index: 5 + Item: Conse_F_Launcher + Rate: 10 + - Index: 6 + Item: Conse_F_Shotgun + Rate: 10 + - Index: 7 + Item: Conse_F_Moon_B + Rate: 10 + - Index: 8 + Item: Conse_F_Star_B + Rate: 10 + - Index: 9 + Item: Conse_F_S_Stick + Rate: 10 + - Index: 10 + Item: Conse_F_D_Wand + Rate: 10 + - Index: 11 + Item: Conse_F_F_Wand + Rate: 10 + - Index: 12 + Item: Conse_F_F_model + Rate: 10 - Group: MATERIAL_SHADOW_CUBEII SubGroups: - SubGroup: 1 List: - Index: 0 - Item: S_Spiritual_Weapon - Rate: 115 - - Index: 1 - Item: S_Spiritual_Earring - Rate: 115 - - Index: 2 - Item: S_Spiritual_Pendent - Rate: 115 - - Index: 3 - Item: S_Malicious_Armor - Rate: 115 - - Index: 4 - Item: S_Malicious_Shoes - Rate: 115 - - Index: 5 - Item: S_Malicious_Shield - Rate: 115 - - Index: 6 - Item: S_Gemstone_Armor - Rate: 115 - - Index: 7 - Item: S_Gemstone_Shoes - Rate: 115 - - Index: 8 - Item: S_Gemstone_Shield - Rate: 115 - - Index: 9 - Item: S_Gemstone_Weapon - Rate: 115 - - Index: 10 - Item: S_Gemstone_Earring - Rate: 115 - - Index: 11 - Item: S_Gemstone_Pendent - Rate: 115 - - Index: 12 Item: S_Infinity_Earring - Rate: 115 - - Index: 13 + Rate: 10 + - Index: 1 Item: S_Infinity_Pendant - Rate: 115 - - Index: 14 - Item: S_Executioner_Weapon - Rate: 115 - - Index: 15 - Item: S_Exorcist_Weapon - Rate: 115 - - Index: 16 - Item: S_Hunting_Weapon - Rate: 115 - - Index: 17 - Item: S_Insect_Net_Weapon - Rate: 115 - - Index: 18 - Item: S_Fishing_Weapon - Rate: 115 - - Index: 19 - Item: S_Dragon_Killer_Weapon - Rate: 115 - - Index: 20 - Item: S_Corrupt_Weapon - Rate: 115 - - Index: 21 - Item: S_Vibration_Weapon - Rate: 115 - - Index: 22 - Item: S_Holy_Water_Weapon - Rate: 115 - - Index: 23 - Item: S_Scissors_Weapon - Rate: 115 - - Index: 24 - Item: S_Penetration_Earring - Rate: 115 - - Index: 25 - Item: S_Penetration_Pendent - Rate: 115 - - Index: 26 - Item: S_Tempest_Earring - Rate: 115 - - Index: 27 - Item: S_Tempest_Pendent - Rate: 115 - - Index: 28 - Item: S_M_Executioner_Weapon - Rate: 115 - - Index: 29 - Item: S_M_Exorcist_Weapon - Rate: 115 - - Index: 30 - Item: S_M_Hunting_Weapon - Rate: 115 - - Index: 31 - Item: S_M_Insect_Net_Weapon - Rate: 115 - - Index: 32 - Item: S_M_Fishing_Weapon - Rate: 115 - - Index: 33 - Item: S_M_Dragon_K_Weapon - Rate: 115 - - Index: 34 - Item: S_M_Corrupt_Weapon - Rate: 115 - - Index: 35 - Item: S_M_Vibration_Weapon - Rate: 115 - - Index: 36 - Item: S_M_Holy_Water_Weapon - Rate: 115 - - Index: 37 - Item: S_M_Scissors_Weapon - Rate: 115 - - Index: 38 - Item: S_Expert_Shoes - Rate: 115 - - Index: 39 - Item: S_Expert_Shield - Rate: 115 - - Index: 40 - Item: S_Beginner_Shoes - Rate: 115 - - Index: 41 - Item: S_Beginner_Shield - Rate: 115 - - Index: 42 - Item: S_Rookie_Shoes - Rate: 115 - - Index: 43 - Item: S_Rookie_Shield - Rate: 115 - - Index: 44 - Item: S_Advanced_Shoes - Rate: 115 - - Index: 45 - Item: S_Advanced_Shield - Rate: 115 - - Index: 46 - Item: S2_Gemstone_Earring - Rate: 115 - - Index: 47 - Item: S2_Spiritual_Weapon - Rate: 115 - - Index: 48 - Item: S2_Malicious_Armor - Rate: 115 - - Index: 49 - Item: S2_Force_Ex_Weapon - Rate: 115 - - Index: 50 - Item: S2_Spirit_M_E_Weapon - Rate: 115 - - Index: 51 - Item: S2_Gemstone_Weapon - Rate: 115 - - Index: 52 - Item: S2_Gemstone_Shield - Rate: 115 - - Index: 53 - Item: S_Tempest_Shield - Rate: 115 - - Index: 54 - Item: S_Tempest_Shoes - Rate: 115 - - Index: 55 - Item: S_M_ExeHoly_Armor - Rate: 115 - - Index: 56 - Item: S_M_ExoCorrupt_Armor - Rate: 115 - - Index: 57 - Item: S_M_DragonVib_Armor - Rate: 115 - - Index: 58 - Item: S_M_SciHunting_Armor - Rate: 115 - - Index: 59 - Item: S_M_FishInsect_Armor - Rate: 115 - - Index: 60 + Rate: 10 + - Index: 2 Item: S_Penetration_Shoes - Rate: 115 - - Index: 61 + Rate: 10 + - Index: 3 Item: S_Penetration_Shield - Rate: 115 - - Index: 62 + Rate: 10 + - Index: 4 Item: S_ExeHoly_Armor - Rate: 115 - - Index: 63 + Rate: 10 + - Index: 5 Item: S_ExoCorrupt_Armor - Rate: 115 - - Index: 64 + Rate: 10 + - Index: 6 Item: S_DragonVib_Armor - Rate: 115 - - Index: 65 + Rate: 10 + - Index: 7 Item: S_SciHunting_Armor - Rate: 115 - - Index: 66 + Rate: 10 + - Index: 8 Item: S_FishInsect_Armor - Rate: 115 - - Index: 67 - Item: S_Tempest_Weapon - Rate: 115 - - Index: 68 - Item: S_Tempest_Armor - Rate: 115 - - Index: 69 - Item: S_M_Exo_Co_Weapon - Rate: 115 - - Index: 70 - Item: S_M_Viv_Dr_Weapon - Rate: 115 - - Index: 71 - Item: S_M_Sci_Hu_Weapon - Rate: 115 - - Index: 72 - Item: S_M_Fis_In_Weapon - Rate: 115 - - Index: 73 - Item: S_M_Exe_Ho_Weapon - Rate: 115 - - Index: 74 + Rate: 10 + - Index: 9 + Item: S_Penetration_Earring + Rate: 10 + - Index: 10 + Item: S_Penetration_Pendent + Rate: 10 + - Index: 11 + Item: S_Executioner_Weapon + Rate: 10 + - Index: 12 + Item: S_Exorcist_Weapon + Rate: 10 + - Index: 13 + Item: S_Hunting_Weapon + Rate: 10 + - Index: 14 + Item: S_Insect_Net_Weapon + Rate: 10 + - Index: 15 + Item: S_Fishing_Weapon + Rate: 10 + - Index: 16 + Item: S_Dragon_Killer_Weapon + Rate: 10 + - Index: 17 + Item: S_Corrupt_Weapon + Rate: 10 + - Index: 18 + Item: S_Vibration_Weapon + Rate: 10 + - Index: 19 + Item: S_Holy_Water_Weapon + Rate: 10 + - Index: 20 + Item: S_Scissors_Weapon + Rate: 10 + - Index: 21 + Item: S2_Force_Ex_Weapon + Rate: 10 + - Index: 22 Item: S_Penetration_Weapon - Rate: 115 - - Index: 75 + Rate: 10 + - Index: 23 Item: S_Penetration_Armor - Rate: 115 - - Index: 76 + Rate: 10 + - Index: 24 Item: S_Exe_Ho_Weapon - Rate: 115 - - Index: 77 + Rate: 10 + - Index: 25 Item: S_Fis_In_Weapon - Rate: 115 - - Index: 78 + Rate: 10 + - Index: 26 Item: S_Sci_Hu_Weapon - Rate: 115 - - Index: 79 + Rate: 10 + - Index: 27 Item: S_Viv_Dr_Weapon - Rate: 115 - - Index: 80 + Rate: 10 + - Index: 28 Item: S_Exo_Co_Weapon - Rate: 115 - - Index: 81 + Rate: 10 + - Index: 29 + Item: S_Tempest_Shoes + Rate: 10 + - Index: 30 + Item: S_Tempest_Shield + Rate: 10 + - Index: 31 + Item: S_M_ExeHoly_Armor + Rate: 10 + - Index: 32 + Item: S_M_ExoCorrupt_Armor + Rate: 10 + - Index: 33 + Item: S_M_DragonVib_Armor + Rate: 10 + - Index: 34 + Item: S_M_SciHunting_Armor + Rate: 10 + - Index: 35 + Item: S_M_FishInsect_Armor + Rate: 10 + - Index: 36 + Item: S_Tempest_Earring + Rate: 10 + - Index: 37 + Item: S_Tempest_Pendent + Rate: 10 + - Index: 38 + Item: S_M_Executioner_Weapon + Rate: 10 + - Index: 39 + Item: S_M_Exorcist_Weapon + Rate: 10 + - Index: 40 + Item: S_M_Hunting_Weapon + Rate: 10 + - Index: 41 + Item: S_M_Insect_Net_Weapon + Rate: 10 + - Index: 42 + Item: S_M_Fishing_Weapon + Rate: 10 + - Index: 43 + Item: S_M_Dragon_K_Weapon + Rate: 10 + - Index: 44 + Item: S_M_Corrupt_Weapon + Rate: 10 + - Index: 45 + Item: S_M_Vibration_Weapon + Rate: 10 + - Index: 46 + Item: S_M_Holy_Water_Weapon + Rate: 10 + - Index: 47 + Item: S_M_Scissors_Weapon + Rate: 10 + - Index: 48 + Item: S2_Spirit_M_E_Weapon + Rate: 10 + - Index: 49 + Item: S_Tempest_Weapon + Rate: 10 + - Index: 50 + Item: S_Tempest_Armor + Rate: 10 + - Index: 51 + Item: S_M_Exe_Ho_Weapon + Rate: 10 + - Index: 52 + Item: S_M_Fis_In_Weapon + Rate: 10 + - Index: 53 + Item: S_M_Sci_Hu_Weapon + Rate: 10 + - Index: 54 + Item: S_M_Viv_Dr_Weapon + Rate: 10 + - Index: 55 + Item: S_M_Exo_Co_Weapon + Rate: 10 + - Index: 56 + Item: S_Gemstone_Shoes + Rate: 10 + - Index: 57 + Item: S_Gemstone_Shield + Rate: 10 + - Index: 58 + Item: S_Gemstone_Weapon + Rate: 10 + - Index: 59 + Item: S_Gemstone_Earring + Rate: 10 + - Index: 60 + Item: S_Gemstone_Pendent + Rate: 10 + - Index: 61 + Item: S_Gemstone_Armor + Rate: 10 + - Index: 62 + Item: S2_Gemstone_Weapon + Rate: 10 + - Index: 63 + Item: S2_Gemstone_Shield + Rate: 10 + - Index: 64 + Item: S2_Gemstone_Earring + Rate: 10 + - Index: 65 Item: S_Mammoth_Armor - Rate: 115 - - Index: 82 + Rate: 10 + - Index: 66 Item: S_Mammoth_Shoes - Rate: 115 - - Index: 83 + Rate: 10 + - Index: 67 Item: S_Mammoth_Pendant - Rate: 115 - - Index: 84 + Rate: 10 + - Index: 68 Item: S_Mammoth_Earring - Rate: 115 - - Index: 85 + Rate: 10 + - Index: 69 Item: S_Mammoth_Weapon - Rate: 115 - - Index: 86 + Rate: 10 + - Index: 70 Item: S_Mammoth_Shield - Rate: 115 + Rate: 10 + - Index: 71 + Item: S_Beginner_Shoes + Rate: 10 + - Index: 72 + Item: S_Beginner_Shield + Rate: 10 + - Index: 73 + Item: S_Rookie_Shoes + Rate: 10 + - Index: 74 + Item: S_Rookie_Shield + Rate: 10 + - Index: 75 + Item: S_Advanced_Shoes + Rate: 10 + - Index: 76 + Item: S_Advanced_Shield + Rate: 10 + - Index: 77 + Item: S_Expert_Shoes + Rate: 10 + - Index: 78 + Item: S_Expert_Shield + Rate: 10 + - Index: 79 + Item: S_Spiritual_Weapon + Rate: 10 + - Index: 80 + Item: S_Spiritual_Earring + Rate: 10 + - Index: 81 + Item: S_Spiritual_Pendent + Rate: 10 + - Index: 82 + Item: S2_Spiritual_Weapon + Rate: 10 + - Index: 83 + Item: S_Malicious_Armor + Rate: 10 + - Index: 84 + Item: S_Malicious_Shoes + Rate: 10 + - Index: 85 + Item: S_Malicious_Shield + Rate: 10 + - Index: 86 + Item: S2_Malicious_Armor + Rate: 10 + - SubGroup: 2 + List: + - Index: 0 + Item: S_Infinity_Earring + Rate: 10 + - Index: 1 + Item: S_Infinity_Pendant + Rate: 10 + - Index: 2 + Item: S_Penetration_Shoes + Rate: 10 + - Index: 3 + Item: S_Penetration_Shield + Rate: 10 + - Index: 4 + Item: S_ExeHoly_Armor + Rate: 10 + - Index: 5 + Item: S_ExoCorrupt_Armor + Rate: 10 + - Index: 6 + Item: S_DragonVib_Armor + Rate: 10 + - Index: 7 + Item: S_SciHunting_Armor + Rate: 10 + - Index: 8 + Item: S_FishInsect_Armor + Rate: 10 + - Index: 9 + Item: S_Penetration_Earring + Rate: 10 + - Index: 10 + Item: S_Penetration_Pendent + Rate: 10 + - Index: 11 + Item: S_Executioner_Weapon + Rate: 10 + - Index: 12 + Item: S_Exorcist_Weapon + Rate: 10 + - Index: 13 + Item: S_Hunting_Weapon + Rate: 10 + - Index: 14 + Item: S_Insect_Net_Weapon + Rate: 10 + - Index: 15 + Item: S_Fishing_Weapon + Rate: 10 + - Index: 16 + Item: S_Dragon_Killer_Weapon + Rate: 10 + - Index: 17 + Item: S_Corrupt_Weapon + Rate: 10 + - Index: 18 + Item: S_Vibration_Weapon + Rate: 10 + - Index: 19 + Item: S_Holy_Water_Weapon + Rate: 10 + - Index: 20 + Item: S_Scissors_Weapon + Rate: 10 + - Index: 21 + Item: S2_Force_Ex_Weapon + Rate: 10 + - Index: 22 + Item: S_Penetration_Weapon + Rate: 10 + - Index: 23 + Item: S_Penetration_Armor + Rate: 10 + - Index: 24 + Item: S_Exe_Ho_Weapon + Rate: 10 + - Index: 25 + Item: S_Fis_In_Weapon + Rate: 10 + - Index: 26 + Item: S_Sci_Hu_Weapon + Rate: 10 + - Index: 27 + Item: S_Viv_Dr_Weapon + Rate: 10 + - Index: 28 + Item: S_Exo_Co_Weapon + Rate: 10 + - Index: 29 + Item: S_Tempest_Shoes + Rate: 10 + - Index: 30 + Item: S_Tempest_Shield + Rate: 10 + - Index: 31 + Item: S_M_ExeHoly_Armor + Rate: 10 + - Index: 32 + Item: S_M_ExoCorrupt_Armor + Rate: 10 + - Index: 33 + Item: S_M_DragonVib_Armor + Rate: 10 + - Index: 34 + Item: S_M_SciHunting_Armor + Rate: 10 + - Index: 35 + Item: S_M_FishInsect_Armor + Rate: 10 + - Index: 36 + Item: S_Tempest_Earring + Rate: 10 + - Index: 37 + Item: S_Tempest_Pendent + Rate: 10 + - Index: 38 + Item: S_M_Executioner_Weapon + Rate: 10 + - Index: 39 + Item: S_M_Exorcist_Weapon + Rate: 10 + - Index: 40 + Item: S_M_Hunting_Weapon + Rate: 10 + - Index: 41 + Item: S_M_Insect_Net_Weapon + Rate: 10 + - Index: 42 + Item: S_M_Fishing_Weapon + Rate: 10 + - Index: 43 + Item: S_M_Dragon_K_Weapon + Rate: 10 + - Index: 44 + Item: S_M_Corrupt_Weapon + Rate: 10 + - Index: 45 + Item: S_M_Vibration_Weapon + Rate: 10 + - Index: 46 + Item: S_M_Holy_Water_Weapon + Rate: 10 + - Index: 47 + Item: S_M_Scissors_Weapon + Rate: 10 + - Index: 48 + Item: S2_Spirit_M_E_Weapon + Rate: 10 + - Index: 49 + Item: S_Tempest_Weapon + Rate: 10 + - Index: 50 + Item: S_Tempest_Armor + Rate: 10 + - Index: 51 + Item: S_M_Exe_Ho_Weapon + Rate: 10 + - Index: 52 + Item: S_M_Fis_In_Weapon + Rate: 10 + - Index: 53 + Item: S_M_Sci_Hu_Weapon + Rate: 10 + - Index: 54 + Item: S_M_Viv_Dr_Weapon + Rate: 10 + - Index: 55 + Item: S_M_Exo_Co_Weapon + Rate: 10 + - Index: 56 + Item: S_Gemstone_Shoes + Rate: 10 + - Index: 57 + Item: S_Gemstone_Shield + Rate: 10 + - Index: 58 + Item: S_Gemstone_Weapon + Rate: 10 + - Index: 59 + Item: S_Gemstone_Earring + Rate: 10 + - Index: 60 + Item: S_Gemstone_Pendent + Rate: 10 + - Index: 61 + Item: S_Gemstone_Armor + Rate: 10 + - Index: 62 + Item: S2_Gemstone_Weapon + Rate: 10 + - Index: 63 + Item: S2_Gemstone_Shield + Rate: 10 + - Index: 64 + Item: S2_Gemstone_Earring + Rate: 10 + - Index: 65 + Item: S_Mammoth_Armor + Rate: 10 + - Index: 66 + Item: S_Mammoth_Shoes + Rate: 10 + - Index: 67 + Item: S_Mammoth_Pendant + Rate: 10 + - Index: 68 + Item: S_Mammoth_Earring + Rate: 10 + - Index: 69 + Item: S_Mammoth_Weapon + Rate: 10 + - Index: 70 + Item: S_Mammoth_Shield + Rate: 10 + - Index: 71 + Item: S_Beginner_Shoes + Rate: 10 + - Index: 72 + Item: S_Beginner_Shield + Rate: 10 + - Index: 73 + Item: S_Rookie_Shoes + Rate: 10 + - Index: 74 + Item: S_Rookie_Shield + Rate: 10 + - Index: 75 + Item: S_Advanced_Shoes + Rate: 10 + - Index: 76 + Item: S_Advanced_Shield + Rate: 10 + - Index: 77 + Item: S_Expert_Shoes + Rate: 10 + - Index: 78 + Item: S_Expert_Shield + Rate: 10 + - Index: 79 + Item: S_Spiritual_Weapon + Rate: 10 + - Index: 80 + Item: S_Spiritual_Earring + Rate: 10 + - Index: 81 + Item: S_Spiritual_Pendent + Rate: 10 + - Index: 82 + Item: S2_Spiritual_Weapon + Rate: 10 + - Index: 83 + Item: S_Malicious_Armor + Rate: 10 + - Index: 84 + Item: S_Malicious_Shoes + Rate: 10 + - Index: 85 + Item: S_Malicious_Shield + Rate: 10 + - Index: 86 + Item: S2_Malicious_Armor + Rate: 10 - Group: ANCIENT_HERO_WILL SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Ancient_Hero_Bravery - Rate: 4500 - - Index: 1 Item: Ancient_Hero_Wisdom - Rate: 4500 + Rate: 45 + - Index: 1 + Item: Ancient_Hero_Bravery + Rate: 45 - Index: 2 - Item: Great_Hero_Bravery - Rate: 500 - - Index: 3 Item: Great_Hero_Wisdom - Rate: 500 + Rate: 5 + - Index: 3 + Item: Great_Hero_Bravery + Rate: 5 - Group: MAMMOTH_SHADOW_BOX SubGroups: - SubGroup: 1 List: - Index: 0 Item: S_Mammoth_Armor - Rate: 1667 + Rate: 1 - Index: 1 - Item: S_Mammoth_Shoes - Rate: 1667 - - Index: 2 - Item: S_Mammoth_Pendant - Rate: 1667 - - Index: 3 - Item: S_Mammoth_Earring - Rate: 1667 - - Index: 4 - Item: S_Mammoth_Weapon - Rate: 1667 - - Index: 5 Item: S_Mammoth_Shield - Rate: 1667 + Rate: 1 + - Index: 2 + Item: S_Mammoth_Weapon + Rate: 1 + - Index: 3 + Item: S_Mammoth_Shoes + Rate: 1 + - Index: 4 + Item: S_Mammoth_Earring + Rate: 1 + - Index: 5 + Item: S_Mammoth_Pendant + Rate: 1 - Group: SHADOW_R_M_BOX SubGroups: - SubGroup: 1 List: - Index: 0 Item: Class_Sha_R_M_Melee - Rate: 2500 + Rate: 3 - Index: 1 Item: Class_Sha_R_M_Magic - Rate: 2500 + Rate: 3 - Index: 2 Item: Skill_Sha_R_M_Melee - Rate: 2500 + Rate: 3 - Index: 3 Item: Skill_Sha_R_M_Magic - Rate: 2500 + Rate: 3 - Group: ALL_SHADOW_CUBE SubGroups: - SubGroup: 1 List: - Index: 0 - Item: S_CriticalHit_Armor - Rate: 2 - - Index: 1 Item: S_Physical_Earring - Rate: 17 - - Index: 2 + Rate: 10 + - Index: 1 Item: S_Physical_Weapon - Rate: 17 - - Index: 3 + Rate: 10 + - Index: 2 Item: S_Physical_Pendant - Rate: 17 - - Index: 4 + Rate: 10 + - Index: 3 Item: S_Magical_Earring - Rate: 17 - - Index: 5 + Rate: 10 + - Index: 4 Item: S_Magical_Weapon - Rate: 17 - - Index: 6 + Rate: 10 + - Index: 5 Item: S_Magical_Pendant - Rate: 17 - - Index: 7 + Rate: 10 + - Index: 6 Item: S_Breezy_Armor - Rate: 17 - - Index: 8 + Rate: 10 + - Index: 7 Item: S_Champion_Shoes - Rate: 17 - - Index: 9 + Rate: 10 + - Index: 8 Item: S_Athena_Shield - Rate: 17 - - Index: 10 + Rate: 10 + - Index: 9 Item: S_Immune_Armor - Rate: 17 - - Index: 11 + Rate: 10 + - Index: 10 Item: S_Hard_Armor - Rate: 17 - - Index: 12 + Rate: 10 + - Index: 11 Item: S_Ancient_Armor - Rate: 17 - - Index: 13 + Rate: 10 + - Index: 12 Item: S_Critical_Armor - Rate: 17 - - Index: 14 + Rate: 10 + - Index: 13 Item: S_Kingbird_Weapon - Rate: 17 - - Index: 15 + Rate: 10 + - Index: 14 Item: S_Cri_Hit_Weapon - Rate: 17 - - Index: 16 + Rate: 10 + - Index: 15 Item: S_Healing_Weapon - Rate: 17 - - Index: 17 + Rate: 10 + - Index: 16 Item: S_Lucky_Weapon - Rate: 17 - - Index: 18 + Rate: 10 + - Index: 17 Item: S_Power_Earring - Rate: 17 - - Index: 19 + Rate: 10 + - Index: 18 Item: S_Int_Pendant - Rate: 17 - - Index: 20 + Rate: 10 + - Index: 19 Item: S_Dexterous_Armor - Rate: 17 - - Index: 21 + Rate: 10 + - Index: 20 Item: S_Vital_Shoes - Rate: 17 - - Index: 22 + Rate: 10 + - Index: 21 Item: S_Athletic_Shield - Rate: 17 - - Index: 23 + Rate: 10 + - Index: 22 Item: S_Lucky_Armor - Rate: 17 - - Index: 24 + Rate: 10 + - Index: 23 Item: S_Power_Pendant - Rate: 17 - - Index: 25 + Rate: 10 + - Index: 24 Item: S_Int_Earring - Rate: 17 - - Index: 26 + Rate: 10 + - Index: 25 Item: S_Dexterous_Weapon - Rate: 17 - - Index: 27 + Rate: 10 + - Index: 26 Item: S_Vital_Shield - Rate: 17 - - Index: 28 + Rate: 10 + - Index: 27 Item: S_Athletic_Shoes - Rate: 17 - - Index: 29 + Rate: 10 + - Index: 28 Item: S_Resist_Spell_Pendant - Rate: 17 - - Index: 30 + Rate: 10 + - Index: 29 Item: S_Rapid_Pendant - Rate: 17 - - Index: 31 + Rate: 10 + - Index: 30 Item: S_Caster_Pendant - Rate: 17 - - Index: 32 + Rate: 10 + - Index: 31 Item: S_Hard_Earring - Rate: 17 - - Index: 33 + Rate: 10 + - Index: 32 Item: S_Wise_Earring - Rate: 17 - - Index: 34 + Rate: 10 + - Index: 33 Item: S_Athena_Earring - Rate: 17 - - Index: 35 + Rate: 10 + - Index: 34 Item: S_Cranial_Shield - Rate: 17 - - Index: 36 + Rate: 10 + - Index: 35 Item: S_Safeguard_Shield - Rate: 17 - - Index: 37 + Rate: 10 + - Index: 36 Item: S_Brutal_Shield - Rate: 17 - - Index: 38 + Rate: 10 + - Index: 37 Item: S_Gargantua_Shield - Rate: 17 - - Index: 39 + Rate: 10 + - Index: 38 Item: S_Homers_Shield - Rate: 17 - - Index: 40 + Rate: 10 + - Index: 39 Item: S_Dragoon_Shield - Rate: 17 - - Index: 41 + Rate: 10 + - Index: 40 Item: S_Satanic_Shield - Rate: 17 - - Index: 42 + Rate: 10 + - Index: 41 Item: S_Flameguard_Shield - Rate: 17 - - Index: 43 + Rate: 10 + - Index: 42 Item: S_Requiem_Shield - Rate: 17 - - Index: 44 + Rate: 10 + - Index: 43 Item: S_Cadi_Shield - Rate: 17 - - Index: 45 + Rate: 10 + - Index: 44 Item: S_Bloody_Shoes - Rate: 17 - - Index: 46 + Rate: 10 + - Index: 45 Item: S_Liberation_Shoes - Rate: 17 - - Index: 47 + Rate: 10 + - Index: 46 Item: S_Chemical_Shoes - Rate: 17 - - Index: 48 + Rate: 10 + - Index: 47 Item: S_Clamorous_Shoes - Rate: 17 - - Index: 49 + Rate: 10 + - Index: 48 Item: S_Insecticide_Shoes - Rate: 17 - - Index: 50 + Rate: 10 + - Index: 49 Item: S_Fisher_Shoes - Rate: 17 - - Index: 51 + Rate: 10 + - Index: 50 Item: S_Seraphim_Shoes - Rate: 17 - - Index: 52 + Rate: 10 + - Index: 51 Item: S_Beholder_Shoes - Rate: 17 - - Index: 53 + Rate: 10 + - Index: 52 Item: S_Divine_Shoes - Rate: 17 - - Index: 54 + Rate: 10 + - Index: 53 Item: S_Dragoon_Shoes - Rate: 17 - - Index: 55 + Rate: 10 + - Index: 54 Item: S_Big_Armor - Rate: 17 - - Index: 56 + Rate: 10 + - Index: 55 Item: S_Medium_Armor - Rate: 17 - - Index: 57 + Rate: 10 + - Index: 56 Item: S_Small_Armor - Rate: 17 - - Index: 58 + Rate: 10 + - Index: 57 Item: S_Big_Weapon - Rate: 17 - - Index: 59 + Rate: 10 + - Index: 58 Item: S_Medium_Weapon - Rate: 17 - - Index: 60 + Rate: 10 + - Index: 59 Item: S_Small_Weapon - Rate: 17 - - Index: 61 + Rate: 10 + - Index: 60 Item: S_Spiritual_Weapon - Rate: 17 - - Index: 62 + Rate: 10 + - Index: 61 Item: S_Spiritual_Earring - Rate: 17 - - Index: 63 + Rate: 10 + - Index: 62 Item: S_Spiritual_Pendent - Rate: 17 - - Index: 64 + Rate: 10 + - Index: 63 Item: S_Malicious_Armor - Rate: 17 - - Index: 65 + Rate: 10 + - Index: 64 Item: S_Malicious_Shoes - Rate: 17 - - Index: 66 + Rate: 10 + - Index: 65 Item: S_Malicious_Shield - Rate: 17 - - Index: 67 + Rate: 10 + - Index: 66 Item: S_Gemstone_Armor - Rate: 17 - - Index: 68 + Rate: 10 + - Index: 67 Item: S_Gemstone_Shoes - Rate: 17 - - Index: 69 + Rate: 10 + - Index: 68 Item: S_Gemstone_Shield - Rate: 17 - - Index: 70 + Rate: 10 + - Index: 69 Item: S_Gemstone_Weapon - Rate: 17 - - Index: 71 + Rate: 10 + - Index: 70 Item: S_Gemstone_Earring - Rate: 17 - - Index: 72 + Rate: 10 + - Index: 71 Item: S_Gemstone_Pendent - Rate: 17 - - Index: 73 + Rate: 10 + - Index: 72 Item: S_Stability_Shield - Rate: 17 - - Index: 74 + Rate: 10 + - Index: 73 Item: S_Plasterer's_Armor - Rate: 17 - - Index: 75 + Rate: 10 + - Index: 74 Item: S_Plasterer's_Shoes - Rate: 17 - - Index: 76 + Rate: 10 + - Index: 75 Item: S_Insomniac_Armor - Rate: 17 - - Index: 77 + Rate: 10 + - Index: 76 Item: S_Insomniac_Shoes - Rate: 17 - - Index: 78 + Rate: 10 + - Index: 77 Item: S_Peerless_Armor - Rate: 17 - - Index: 79 + Rate: 10 + - Index: 78 Item: S_Peerless_Shoes - Rate: 17 - - Index: 80 + Rate: 10 + - Index: 79 Item: S_Adurate_Armor - Rate: 17 - - Index: 81 + Rate: 10 + - Index: 80 Item: S_Adurate_Shoes - Rate: 17 - - Index: 82 + Rate: 10 + - Index: 81 Item: Unfreez_Weapon_S - Rate: 17 - - Index: 83 + Rate: 10 + - Index: 82 Item: Unfreeze_Earing_S - Rate: 17 - - Index: 84 + Rate: 10 + - Index: 83 Item: Unfreeze_Pendent_S - Rate: 17 - - Index: 85 + Rate: 10 + - Index: 84 Item: Vitality_Earing_S - Rate: 17 - - Index: 86 + Rate: 10 + - Index: 85 Item: Vitality_Pendant_S - Rate: 17 - - Index: 87 + Rate: 10 + - Index: 86 Item: S_Neutral_Weapon - Rate: 17 - - Index: 88 + Rate: 10 + - Index: 87 Item: S_Neutral_Earring - Rate: 17 - - Index: 89 + Rate: 10 + - Index: 88 Item: S_Neutral_Pendent - Rate: 17 - - Index: 90 + Rate: 10 + - Index: 89 Item: S_Curse_Lift_Earring - Rate: 17 - - Index: 91 + Rate: 10 + - Index: 90 Item: S_Curse_Lift_Pendent - Rate: 17 - - Index: 92 + Rate: 10 + - Index: 91 Item: S_Caster_earring - Rate: 17 - - Index: 93 + Rate: 10 + - Index: 92 Item: S_Caster_Weapon - Rate: 17 - - Index: 94 + Rate: 10 + - Index: 93 Item: S_Spell_Flow_Shoes - Rate: 17 - - Index: 95 + Rate: 10 + - Index: 94 Item: S_Spell_Flow_Armor - Rate: 17 - - Index: 96 + Rate: 10 + - Index: 95 Item: S_Spell_Flow_Shield - Rate: 17 - - Index: 97 + Rate: 10 + - Index: 96 Item: S_Greed_Armor - Rate: 17 - - Index: 98 + Rate: 10 + - Index: 97 Item: S_Greed_Shoes - Rate: 17 - - Index: 99 + Rate: 10 + - Index: 98 Item: S_Greed_Shield - Rate: 17 - - Index: 100 + Rate: 10 + - Index: 99 Item: S_Greed_Weapon - Rate: 17 - - Index: 101 + Rate: 10 + - Index: 100 Item: S_Greed_Earring - Rate: 17 - - Index: 102 + Rate: 10 + - Index: 101 Item: S_Greed_Pendant - Rate: 17 - - Index: 103 + Rate: 10 + - Index: 102 Item: S_Heal_Armor - Rate: 17 - - Index: 104 + Rate: 10 + - Index: 103 Item: S_Heal_Shoes - Rate: 17 - - Index: 105 + Rate: 10 + - Index: 104 Item: S_Heal_Shield - Rate: 17 - - Index: 106 + Rate: 10 + - Index: 105 Item: S_Heal_Weapon - Rate: 17 - - Index: 107 + Rate: 10 + - Index: 106 Item: S_Heal_Earring - Rate: 17 - - Index: 108 + Rate: 10 + - Index: 107 Item: S_Heal_Pendant - Rate: 17 - - Index: 109 + Rate: 10 + - Index: 108 Item: S_Hiding_Armor - Rate: 17 - - Index: 110 + Rate: 10 + - Index: 109 Item: S_Hiding_Shoes - Rate: 17 - - Index: 111 + Rate: 10 + - Index: 110 Item: S_Hiding_Shield - Rate: 17 - - Index: 112 + Rate: 10 + - Index: 111 Item: S_Hiding_Weapon - Rate: 17 - - Index: 113 + Rate: 10 + - Index: 112 Item: S_Hiding_Earring - Rate: 17 - - Index: 114 + Rate: 10 + - Index: 113 Item: S_Hiding_Pendant - Rate: 17 - - Index: 115 + Rate: 10 + - Index: 114 Item: S_Cloaking_Armor - Rate: 17 - - Index: 116 + Rate: 10 + - Index: 115 Item: S_Cloaking_Shoes - Rate: 17 - - Index: 117 + Rate: 10 + - Index: 116 Item: S_Cloaking_Shield - Rate: 17 - - Index: 118 + Rate: 10 + - Index: 117 Item: S_Cloaking_Weapon - Rate: 17 - - Index: 119 + Rate: 10 + - Index: 118 Item: S_Cloaking_Earring - Rate: 17 - - Index: 120 + Rate: 10 + - Index: 119 Item: S_Cloaking_Pendant - Rate: 17 - - Index: 121 + Rate: 10 + - Index: 120 Item: S_Teleport_Armor - Rate: 17 - - Index: 122 + Rate: 10 + - Index: 121 Item: S_Teleport_Shoes - Rate: 17 - - Index: 123 + Rate: 10 + - Index: 122 Item: S_Teleport_Shield - Rate: 17 - - Index: 124 + Rate: 10 + - Index: 123 Item: S_Teleport_Weapon - Rate: 17 - - Index: 125 + Rate: 10 + - Index: 124 Item: S_Teleport_Earring - Rate: 17 - - Index: 126 + Rate: 10 + - Index: 125 Item: S_Teleport_Pendant - Rate: 17 - - Index: 127 + Rate: 10 + - Index: 126 Item: S_Steal_Armor - Rate: 17 - - Index: 128 + Rate: 10 + - Index: 127 Item: S_Steal_Shoes - Rate: 17 - - Index: 129 + Rate: 10 + - Index: 128 Item: S_Steal_Shield - Rate: 17 - - Index: 130 + Rate: 10 + - Index: 129 Item: S_Steal_Weapon - Rate: 17 - - Index: 131 + Rate: 10 + - Index: 130 Item: S_Steal_Earring - Rate: 17 - - Index: 132 + Rate: 10 + - Index: 131 Item: S_Steal_Pendant - Rate: 17 - - Index: 133 + Rate: 10 + - Index: 132 Item: S_Infinity_Earring - Rate: 17 - - Index: 134 + Rate: 10 + - Index: 133 Item: S_Infinity_Pendant - Rate: 17 - - Index: 135 + Rate: 10 + - Index: 134 Item: S_Solid_Weapon - Rate: 17 - - Index: 136 + Rate: 10 + - Index: 135 Item: S_Solid_Earring - Rate: 17 - - Index: 137 + Rate: 10 + - Index: 136 Item: S_Immortal_Armor - Rate: 17 - - Index: 138 + Rate: 10 + - Index: 137 Item: S_Immortal_Pendant - Rate: 17 - - Index: 139 + Rate: 10 + - Index: 138 Item: S_Executioner_Weapon - Rate: 17 - - Index: 140 + Rate: 10 + - Index: 139 Item: S_Exorcist_Weapon - Rate: 17 - - Index: 141 + Rate: 10 + - Index: 140 Item: S_Hunting_Weapon - Rate: 17 - - Index: 142 + Rate: 10 + - Index: 141 Item: S_Insect_Net_Weapon - Rate: 17 - - Index: 143 + Rate: 10 + - Index: 142 Item: S_Fishing_Weapon - Rate: 17 - - Index: 144 + Rate: 10 + - Index: 143 Item: S_Dragon_Killer_Weapon - Rate: 17 - - Index: 145 + Rate: 10 + - Index: 144 Item: S_Corrupt_Weapon - Rate: 17 - - Index: 146 + Rate: 10 + - Index: 145 Item: S_Vibration_Weapon - Rate: 17 - - Index: 147 + Rate: 10 + - Index: 146 Item: S_Holy_Water_Weapon - Rate: 17 - - Index: 148 + Rate: 10 + - Index: 147 Item: S_Scissors_Weapon - Rate: 17 - - Index: 149 + Rate: 10 + - Index: 148 Item: S_Penetration_Earring - Rate: 17 - - Index: 150 + Rate: 10 + - Index: 149 Item: S_Penetration_Pendent - Rate: 17 - - Index: 151 + Rate: 10 + - Index: 150 Item: S_Tempest_Earring - Rate: 17 - - Index: 152 + Rate: 10 + - Index: 151 Item: S_Tempest_Pendent - Rate: 17 - - Index: 153 + Rate: 10 + - Index: 152 Item: S_M_Executioner_Weapon - Rate: 17 - - Index: 154 + Rate: 10 + - Index: 153 Item: S_M_Exorcist_Weapon - Rate: 17 - - Index: 155 + Rate: 10 + - Index: 154 Item: S_M_Hunting_Weapon - Rate: 17 - - Index: 156 + Rate: 10 + - Index: 155 Item: S_M_Insect_Net_Weapon - Rate: 17 - - Index: 157 + Rate: 10 + - Index: 156 Item: S_M_Fishing_Weapon - Rate: 17 - - Index: 158 + Rate: 10 + - Index: 157 Item: S_M_Dragon_K_Weapon - Rate: 17 - - Index: 159 + Rate: 10 + - Index: 158 Item: S_M_Corrupt_Weapon - Rate: 17 - - Index: 160 + Rate: 10 + - Index: 159 Item: S_M_Vibration_Weapon - Rate: 17 - - Index: 161 + Rate: 10 + - Index: 160 Item: S_M_Holy_Water_Weapon - Rate: 17 - - Index: 162 + Rate: 10 + - Index: 161 Item: S_M_Scissors_Weapon - Rate: 17 - - Index: 163 + Rate: 10 + - Index: 162 Item: S_Bearers_Armor - Rate: 17 - - Index: 164 + Rate: 10 + - Index: 163 Item: S_Bearers_Shoes - Rate: 17 - - Index: 165 + Rate: 10 + - Index: 164 Item: S_Bearers_Shield - Rate: 17 - - Index: 166 + Rate: 10 + - Index: 165 Item: S_Bearers_Weapon - Rate: 17 - - Index: 167 + Rate: 10 + - Index: 166 Item: S_Bearers_Earring - Rate: 17 - - Index: 168 + Rate: 10 + - Index: 167 Item: S_Bearers_Pendent - Rate: 17 - - Index: 169 + Rate: 10 + - Index: 168 Item: S_Basis_Armor - Rate: 17 - - Index: 170 + Rate: 10 + - Index: 169 Item: S_Hallowed_Armor - Rate: 17 - - Index: 171 + Rate: 10 + - Index: 170 Item: S_Saharic_Armor - Rate: 17 - - Index: 172 + Rate: 10 + - Index: 171 Item: S_Underneath_Armor - Rate: 17 - - Index: 173 + Rate: 10 + - Index: 172 Item: S_Flam_Armor - Rate: 17 - - Index: 174 + Rate: 10 + - Index: 173 Item: S_Windy_Armor - Rate: 17 - - Index: 175 + Rate: 10 + - Index: 174 Item: S_Envenom_Armor - Rate: 17 - - Index: 176 + Rate: 10 + - Index: 175 Item: S_Damned_Armor - Rate: 17 - - Index: 177 + Rate: 10 + - Index: 176 Item: S_Geist_Armor - Rate: 17 - - Index: 178 + Rate: 10 + - Index: 177 Item: S_Divine_Armor - Rate: 17 - - Index: 179 + Rate: 10 + - Index: 178 Item: S_Hasty_Shoes - Rate: 17 - - Index: 180 + Rate: 10 + - Index: 179 Item: S_Hasty_Armor - Rate: 17 - - Index: 181 + Rate: 10 + - Index: 180 Item: S_Basis_Shield - Rate: 17 - - Index: 182 + Rate: 10 + - Index: 181 Item: S_Hallowed_Shield - Rate: 17 - - Index: 183 + Rate: 10 + - Index: 182 Item: S_Saharic_Shield - Rate: 17 - - Index: 184 + Rate: 10 + - Index: 183 Item: S_Underneath_Shield - Rate: 17 - - Index: 185 + Rate: 10 + - Index: 184 Item: S_Flam_Shield - Rate: 17 - - Index: 186 + Rate: 10 + - Index: 185 Item: S_Windy_Shield - Rate: 17 - - Index: 187 + Rate: 10 + - Index: 186 Item: S_Envenom_Shield - Rate: 17 - - Index: 188 + Rate: 10 + - Index: 187 Item: S_Damned_Shield - Rate: 17 - - Index: 189 + Rate: 10 + - Index: 188 Item: S_Geist_Shield - Rate: 17 - - Index: 190 + Rate: 10 + - Index: 189 Item: S_Divine_Shield - Rate: 17 - - Index: 191 + Rate: 10 + - Index: 190 Item: S_Expert_Shoes - Rate: 17 - - Index: 192 + Rate: 10 + - Index: 191 Item: S_Expert_Shield - Rate: 17 - - Index: 193 + Rate: 10 + - Index: 192 Item: S_Beginner_Shoes - Rate: 17 - - Index: 194 + Rate: 10 + - Index: 193 Item: S_Beginner_Shield - Rate: 17 - - Index: 195 + Rate: 10 + - Index: 194 Item: S_Rookie_Shoes - Rate: 17 - - Index: 196 + Rate: 10 + - Index: 195 Item: S_Rookie_Shield - Rate: 17 - - Index: 197 + Rate: 10 + - Index: 196 Item: S_Advanced_Shoes - Rate: 17 - - Index: 198 + Rate: 10 + - Index: 197 Item: S_Advanced_Shield - Rate: 17 - - Index: 199 + Rate: 10 + - Index: 198 Item: S_Attack_Armor - Rate: 17 - - Index: 200 + Rate: 10 + - Index: 199 Item: S_Blitz_Earring - Rate: 17 - - Index: 201 + Rate: 10 + - Index: 200 Item: S_Blitz_Pendent - Rate: 17 - - Index: 202 + Rate: 10 + - Index: 201 Item: S_ColdBolt_Armor - Rate: 17 - - Index: 203 + Rate: 10 + - Index: 202 Item: S_FireBolt_Armor - Rate: 17 - - Index: 204 + Rate: 10 + - Index: 203 Item: S_LightingBolt_Armor - Rate: 17 - - Index: 205 + Rate: 10 + - Index: 204 Item: S_EarthSpike_Armor - Rate: 17 - - Index: 206 + Rate: 10 + - Index: 205 Item: S_Enhance_Force_Weapon - Rate: 17 - - Index: 207 + Rate: 10 + - Index: 206 Item: S_Force_Weapon - Rate: 17 - - Index: 208 + Rate: 10 + - Index: 207 Item: S_Force_Earring - Rate: 17 - - Index: 209 + Rate: 10 + - Index: 208 Item: S_Force_Pendant - Rate: 17 - - Index: 210 + Rate: 10 + - Index: 209 Item: S_Enhance_Spirit_Weapon - Rate: 17 - - Index: 211 + Rate: 10 + - Index: 210 Item: S_Spirit_Weapon - Rate: 17 - - Index: 212 + Rate: 10 + - Index: 211 Item: S_Spirit_Earring - Rate: 17 - - Index: 213 + Rate: 10 + - Index: 212 Item: S_Spirit_Pendant - Rate: 17 - - Index: 214 + Rate: 10 + - Index: 213 Item: S_Blitz_Shoes - Rate: 17 - - Index: 215 + Rate: 10 + - Index: 214 Item: S_Blitz_Shield - Rate: 17 - - Index: 216 + Rate: 10 + - Index: 215 Item: S_Exceed_Weapon - Rate: 17 - - Index: 217 + Rate: 10 + - Index: 216 Item: S_Titan_Earring - Rate: 17 - - Index: 218 + Rate: 10 + - Index: 217 Item: S_Titan_Pendant - Rate: 17 - - Index: 219 + Rate: 10 + - Index: 218 Item: S_Boned_Earring - Rate: 17 - - Index: 220 + Rate: 10 + - Index: 219 Item: S_Boned_Pendant - Rate: 17 - - Index: 221 + Rate: 10 + - Index: 220 Item: S_Gigantic_Earring - Rate: 17 - - Index: 222 + Rate: 10 + - Index: 221 Item: S_Gigantic_Pendant - Rate: 17 - - Index: 223 + Rate: 10 + - Index: 222 Item: S_Caster_Shoes - Rate: 17 - - Index: 224 + Rate: 10 + - Index: 223 Item: S_Caster_Shield - Rate: 17 - - Index: 225 + Rate: 10 + - Index: 224 Item: S_Caster_Armor - Rate: 17 - - Index: 226 + Rate: 10 + - Index: 225 Item: S_Reload_Shoes - Rate: 17 - - Index: 227 + Rate: 10 + - Index: 226 Item: S_Reload_Shield - Rate: 17 - - Index: 228 + Rate: 10 + - Index: 227 Item: S_Reload_Armor - Rate: 17 - - Index: 229 + Rate: 10 + - Index: 228 Item: S_Swordman_earring - Rate: 17 - - Index: 230 + Rate: 10 + - Index: 229 Item: S_Merchant_earring - Rate: 17 - - Index: 231 + Rate: 10 + - Index: 230 Item: S_Acolyte_earring - Rate: 17 - - Index: 232 + Rate: 10 + - Index: 231 Item: S_Magician_earring - Rate: 17 - - Index: 233 + Rate: 10 + - Index: 232 Item: S_Swordman_Pendant - Rate: 17 - - Index: 234 + Rate: 10 + - Index: 233 Item: S_Merchant_Pendant - Rate: 17 - - Index: 235 + Rate: 10 + - Index: 234 Item: S_Acolyte_Pendant - Rate: 17 - - Index: 236 + Rate: 10 + - Index: 235 Item: S_Thief_Pendant - Rate: 17 - - Index: 237 + Rate: 10 + - Index: 236 Item: S_Magician_Pendant - Rate: 17 - - Index: 238 + Rate: 10 + - Index: 237 Item: S_Archer_Pendant - Rate: 17 - - Index: 239 + Rate: 10 + - Index: 238 Item: S_Knight_Shoes - Rate: 17 - - Index: 240 + Rate: 10 + - Index: 239 Item: S_Crusader_Shoes - Rate: 17 - - Index: 241 + Rate: 10 + - Index: 240 Item: S_Blacksmith_Shoes - Rate: 17 - - Index: 242 + Rate: 10 + - Index: 241 Item: S_Alchemist_Shoes - Rate: 17 - - Index: 243 + Rate: 10 + - Index: 242 Item: S_Priest_Shoes - Rate: 17 - - Index: 244 + Rate: 10 + - Index: 243 Item: S_Monk_Shoes - Rate: 17 - - Index: 245 + Rate: 10 + - Index: 244 Item: S_Assassin_Shoes - Rate: 17 - - Index: 246 + Rate: 10 + - Index: 245 Item: S_Rogue_Shoes - Rate: 17 - - Index: 247 + Rate: 10 + - Index: 246 Item: S_Wizard_Shoes - Rate: 17 - - Index: 248 + Rate: 10 + - Index: 247 Item: S_Sage_Shoes - Rate: 17 - - Index: 249 + Rate: 10 + - Index: 248 Item: S_Hunter_Shoes - Rate: 17 - - Index: 250 + Rate: 10 + - Index: 249 Item: S_Bard_Shoes - Rate: 17 - - Index: 251 + Rate: 10 + - Index: 250 Item: S_Dancer_Shoes - Rate: 17 - - Index: 252 + Rate: 10 + - Index: 251 Item: S_Knight_Armor - Rate: 17 - - Index: 253 + Rate: 10 + - Index: 252 Item: S_Crusader_Armor - Rate: 17 - - Index: 254 + Rate: 10 + - Index: 253 Item: S_Blacksmith_Armor - Rate: 17 - - Index: 255 + Rate: 10 + - Index: 254 Item: S_Alchemist_Armor - Rate: 17 - - Index: 256 + Rate: 10 + - Index: 255 Item: S_Priest_Armor - Rate: 17 - - Index: 257 + Rate: 10 + - Index: 256 Item: S_Monk_Armor - Rate: 17 - - Index: 258 + Rate: 10 + - Index: 257 Item: S_Assassin_Armor - Rate: 17 - - Index: 259 + Rate: 10 + - Index: 258 Item: S_Rogue_Armor - Rate: 17 - - Index: 260 + Rate: 10 + - Index: 259 Item: S_Wizard_Armor - Rate: 17 - - Index: 261 + Rate: 10 + - Index: 260 Item: S_Sage_Armor - Rate: 17 - - Index: 262 + Rate: 10 + - Index: 261 Item: S_Hunter_Armor - Rate: 17 - - Index: 263 + Rate: 10 + - Index: 262 Item: S_Bard_Armor - Rate: 17 - - Index: 264 + Rate: 10 + - Index: 263 Item: S_Dancer_Armor - Rate: 17 - - Index: 265 + Rate: 10 + - Index: 264 Item: S_SuperNovice_Weapon - Rate: 17 - - Index: 266 + Rate: 10 + - Index: 265 Item: S_Gunslinger_Weapon - Rate: 17 - - Index: 267 + Rate: 10 + - Index: 266 Item: S_Taekwon_Weapon - Rate: 17 - - Index: 268 + Rate: 10 + - Index: 267 Item: S_Ninja_Weapon - Rate: 17 - - Index: 269 + Rate: 10 + - Index: 268 Item: S_DoramMagical_Weapon - Rate: 17 - - Index: 270 + Rate: 10 + - Index: 269 Item: S_DoramPhysical_Weapon - Rate: 17 - - Index: 271 + Rate: 10 + - Index: 270 Item: S_Runeknight_Weapon - Rate: 17 - - Index: 272 + Rate: 10 + - Index: 271 Item: S_Royalguard_Weapon - Rate: 17 - - Index: 273 + Rate: 10 + - Index: 272 Item: S_Mechanic_weapon - Rate: 17 - - Index: 274 + Rate: 10 + - Index: 273 Item: S_Genetic_Weapon - Rate: 17 - - Index: 275 + Rate: 10 + - Index: 274 Item: S_Archbishop_Weapon - Rate: 17 - - Index: 276 + Rate: 10 + - Index: 275 Item: S_Sura_weapon - Rate: 17 - - Index: 277 + Rate: 10 + - Index: 276 Item: S_Guillotine_Weapon - Rate: 17 - - Index: 278 + Rate: 10 + - Index: 277 Item: S_Shadowchaser_Weapon - Rate: 17 - - Index: 279 + Rate: 10 + - Index: 278 Item: S_Warlock_Weapon - Rate: 17 - - Index: 280 + Rate: 10 + - Index: 279 Item: S_Sorcerer_Weapon - Rate: 17 - - Index: 281 + Rate: 10 + - Index: 280 Item: S_Ranger_Weapon - Rate: 17 - - Index: 282 + Rate: 10 + - Index: 281 Item: S_Minstrel_Weapon - Rate: 17 - - Index: 283 + Rate: 10 + - Index: 282 Item: S_Wanderer_Weapon - Rate: 17 - - Index: 284 + Rate: 10 + - Index: 283 Item: S_Runeknight_Shield - Rate: 17 - - Index: 285 + Rate: 10 + - Index: 284 Item: S_Royalguard_Shield - Rate: 17 - - Index: 286 + Rate: 10 + - Index: 285 Item: S_Mechanic_Shield - Rate: 17 - - Index: 287 + Rate: 10 + - Index: 286 Item: S_Genetic_Shield - Rate: 17 - - Index: 288 + Rate: 10 + - Index: 287 Item: S_Archbishop_Shield - Rate: 17 - - Index: 289 + Rate: 10 + - Index: 288 Item: S_Sura_Shield - Rate: 17 - - Index: 290 + Rate: 10 + - Index: 289 Item: S_Guillotine_Shield - Rate: 17 - - Index: 291 + Rate: 10 + - Index: 290 Item: S_Shadowchaser_Shield - Rate: 17 - - Index: 292 + Rate: 10 + - Index: 291 Item: S_Warlock_Shield - Rate: 17 - - Index: 293 + Rate: 10 + - Index: 292 Item: S_Sorcerer_Shield - Rate: 17 - - Index: 294 + Rate: 10 + - Index: 293 Item: S_Ranger_Shield - Rate: 17 - - Index: 295 + Rate: 10 + - Index: 294 Item: S_Minstrel_Shield - Rate: 17 - - Index: 296 + Rate: 10 + - Index: 295 Item: S_Wanderer_Shield - Rate: 17 - - Index: 297 + Rate: 10 + - Index: 296 Item: S_Ninja_Shield - Rate: 17 - - Index: 298 + Rate: 10 + - Index: 297 Item: S_Taekwon_Shield - Rate: 17 - - Index: 299 + Rate: 10 + - Index: 298 Item: S_DoramPhysical_Shield - Rate: 17 - - Index: 300 + Rate: 10 + - Index: 299 Item: S_DoramMagical_Shield - Rate: 17 - - Index: 301 + Rate: 10 + - Index: 300 Item: S_SuperNovice_Shield - Rate: 17 - - Index: 302 + Rate: 10 + - Index: 301 Item: S_Gunslinger_Shield - Rate: 17 + Rate: 10 + - Index: 302 + Item: S_Thief_earring + Rate: 10 - Index: 303 - Item: S2_Hasty_Shoes - Rate: 5 + Item: S_Archer_earring + Rate: 10 - Index: 304 - Item: S2_Bearers_Pendent - Rate: 5 + Item: S2_Hasty_Shoes + Rate: 3 - Index: 305 - Item: S2_Gemstone_Earring - Rate: 5 + Item: S2_Bearers_Pendent + Rate: 3 - Index: 306 - Item: S2_Spell_Flow_Shield - Rate: 5 + Item: S2_Gemstone_Earring + Rate: 3 - Index: 307 - Item: S2_Spiritual_Weapon - Rate: 5 + Item: S2_Spell_Flow_Shield + Rate: 3 - Index: 308 - Item: S2_Malicious_Armor - Rate: 5 + Item: S2_Spiritual_Weapon + Rate: 3 - Index: 309 - Item: S_Sigrun_Armor - Rate: 5 + Item: S2_Malicious_Armor + Rate: 3 - Index: 310 - Item: S_Sigrun_Shield - Rate: 5 + Item: S_Sigrun_Armor + Rate: 3 - Index: 311 - Item: S2_Force_Ex_Weapon - Rate: 5 + Item: S_Sigrun_Shield + Rate: 3 - Index: 312 - Item: S2_Spirit_M_E_Weapon - Rate: 5 + Item: S2_Force_Ex_Weapon + Rate: 3 - Index: 313 - Item: S2_Caster_Armor - Rate: 5 + Item: S2_Spirit_M_E_Weapon + Rate: 3 - Index: 314 - Item: S2_Reload_Armor - Rate: 5 + Item: S2_Caster_Armor + Rate: 3 - Index: 315 - Item: S_Critical_Shield - Rate: 17 + Item: S2_Reload_Armor + Rate: 3 - Index: 316 - Item: S_Critical_Shoes - Rate: 17 + Item: S_Critical_Shield + Rate: 10 - Index: 317 - Item: S_MagicCompose_Armor - Rate: 2 + Item: S_Critical_Shoes + Rate: 10 - Index: 318 - Item: S2_Gemstone_Weapon - Rate: 2 + Item: S_MagicCompose_Armor + Rate: 1 + Announced: true - Index: 319 - Item: S2_Gemstone_Shield - Rate: 2 + Item: S2_Gemstone_Weapon + Rate: 1 + Announced: true - Index: 320 - Item: S2_Bearers_Armor - Rate: 2 + Item: S2_Gemstone_Shield + Rate: 1 + Announced: true - Index: 321 - Item: S2_Bearers_Shoes - Rate: 2 + Item: S2_Bearers_Armor + Rate: 1 + Announced: true - Index: 322 - Item: S_AllMighty_Earring - Rate: 2 + Item: S2_Bearers_Shoes + Rate: 1 + Announced: true - Index: 323 - Item: S_AllMighty_Pendant - Rate: 2 + Item: S_AllMighty_Earring + Rate: 1 + Announced: true - Index: 324 - Item: S_AllRace_Shoes - Rate: 2 + Item: S_AllMighty_Pendant + Rate: 1 + Announced: true - Index: 325 - Item: S_AllRace_Shield - Rate: 2 - - Index: 326 - Item: S_Blitz_Weapon - Rate: 17 - - Index: 327 - Item: S_Blitz_Armor - Rate: 17 - - Index: 328 Item: S_Tempest_Shield - Rate: 5 - - Index: 329 + Rate: 3 + - Index: 326 Item: S_Tempest_Shoes - Rate: 5 - - Index: 330 + Rate: 3 + - Index: 327 Item: S_M_ExeHoly_Armor - Rate: 5 - - Index: 331 + Rate: 3 + - Index: 328 Item: S_M_ExoCorrupt_Armor - Rate: 5 - - Index: 332 + Rate: 3 + - Index: 329 Item: S_M_DragonVib_Armor - Rate: 5 - - Index: 333 + Rate: 3 + - Index: 330 Item: S_M_SciHunting_Armor - Rate: 5 - - Index: 334 + Rate: 3 + - Index: 331 Item: S_M_FishInsect_Armor - Rate: 5 - - Index: 335 + Rate: 3 + - Index: 332 Item: S2_Plasterer's_Armor - Rate: 2 - - Index: 336 + Rate: 1 + Announced: true + - Index: 333 Item: S2_Insomniac_Shoes - Rate: 2 - - Index: 337 + Rate: 1 + Announced: true + - Index: 334 Item: S2_Peerless_Armor - Rate: 2 - - Index: 338 + Rate: 1 + Announced: true + - Index: 335 Item: S2_Adurate_Shoes - Rate: 2 - - Index: 339 + Rate: 1 + Announced: true + - Index: 336 Item: Unfreez_Weapon_S2 - Rate: 2 - - Index: 340 + Rate: 1 + Announced: true + - Index: 337 Item: Vitality_Earing_S2 - Rate: 2 - - Index: 341 + Rate: 1 + Announced: true + - Index: 338 Item: S2_Neutral_Weapon - Rate: 2 - - Index: 342 + Rate: 1 + Announced: true + - Index: 339 Item: S2_Curse_Lift_Pendent - Rate: 2 - - Index: 343 + Rate: 1 + Announced: true + - Index: 340 Item: S_Tension_Weapon - Rate: 17 - - Index: 344 + Rate: 10 + - Index: 341 Item: S_Tension_Earring - Rate: 17 - - Index: 345 + Rate: 10 + - Index: 342 Item: S_Tension_Pendent - Rate: 17 - - Index: 346 + Rate: 10 + - Index: 343 Item: S_Elegant_Weapon - Rate: 17 - - Index: 347 + Rate: 10 + - Index: 344 Item: S_Elegant_Earring - Rate: 17 - - Index: 348 + Rate: 10 + - Index: 345 Item: S_Elegant_Pendent - Rate: 17 - - Index: 349 + Rate: 10 + - Index: 346 Item: S_Healing_Shield - Rate: 17 - - Index: 350 + Rate: 10 + - Index: 347 Item: S_Healing_Shoes - Rate: 17 - - Index: 351 + Rate: 10 + - Index: 348 Item: S_Restore_Earring - Rate: 17 - - Index: 352 + Rate: 10 + - Index: 349 Item: S_Restore_Pendent - Rate: 17 - - Index: 353 + Rate: 10 + - Index: 350 Item: S_MortalBlow_Weapon - Rate: 17 - - Index: 354 + Rate: 10 + - Index: 351 Item: S_MortalBlow_Earring - Rate: 17 - - Index: 355 + Rate: 10 + - Index: 352 Item: S_MortalBlow_Pendent - Rate: 17 - - Index: 356 + Rate: 10 + - Index: 353 Item: S_Penetration_Shoes - Rate: 5 - - Index: 357 + Rate: 3 + - Index: 354 Item: S_Penetration_Shield - Rate: 5 - - Index: 358 + Rate: 3 + - Index: 355 Item: S_ExeHoly_Armor - Rate: 5 - - Index: 359 + Rate: 3 + - Index: 356 Item: S_ExoCorrupt_Armor - Rate: 5 - - Index: 360 + Rate: 3 + - Index: 357 Item: S_DragonVib_Armor - Rate: 5 - - Index: 361 + Rate: 3 + - Index: 358 Item: S_SciHunting_Armor - Rate: 5 - - Index: 362 + Rate: 3 + - Index: 359 Item: S_FishInsect_Armor - Rate: 5 - - Index: 363 + Rate: 3 + - Index: 360 Item: Sentimental_Weapone_S - Rate: 17 - - Index: 364 + Rate: 10 + - Index: 361 Item: Sentimental_Earring_S - Rate: 17 - - Index: 365 + Rate: 10 + - Index: 362 Item: Sentimental_Pendant_S - Rate: 17 - - Index: 366 + Rate: 10 + - Index: 363 Item: Enchanting_Weapone_S - Rate: 17 - - Index: 367 + Rate: 10 + - Index: 364 Item: Enchanting_Earring_S - Rate: 17 - - Index: 368 + Rate: 10 + - Index: 365 Item: Enchanting_Pendant_S - Rate: 17 - - Index: 369 + Rate: 10 + - Index: 366 Item: S_Infinity_Weapon - Rate: 2 - - Index: 370 + Rate: 1 + Announced: true + - Index: 367 Item: S_Physical_Shoes - Rate: 2 - - Index: 371 + Rate: 1 + Announced: true + - Index: 368 Item: S_Physical_Shield - Rate: 2 - - Index: 372 + Rate: 1 + Announced: true + - Index: 369 Item: S_Physical_Armor - Rate: 2 - - Index: 373 + Rate: 1 + Announced: true + - Index: 370 Item: S_Magical_Shoes - Rate: 2 - - Index: 374 + Rate: 1 + Announced: true + - Index: 371 Item: S_Magical_Shield - Rate: 2 - - Index: 375 + Rate: 1 + Announced: true + - Index: 372 Item: S_Magical_Armor - Rate: 2 - - Index: 376 + Rate: 1 + Announced: true + - Index: 373 Item: S_ImmunedAthena_Shield - Rate: 2 - - Index: 377 + Rate: 1 + Announced: true + - Index: 374 Item: S_HardChamption_Shoes - Rate: 2 - - Index: 378 + Rate: 1 + Announced: true + - Index: 375 Item: S_KingbirdAncient_Armor - Rate: 2 - - Index: 379 + Rate: 1 + Announced: true + - Index: 376 + Item: S_CriticalHit_Armor + Rate: 1 + Announced: true + - Index: 377 Item: S_Rebellion_Armor - Rate: 17 - - Index: 380 + Rate: 10 + - Index: 378 Item: S_Kagerou_Armor - Rate: 17 - - Index: 381 + Rate: 10 + - Index: 379 Item: S_Oboro_Armor - Rate: 17 - - Index: 382 + Rate: 10 + - Index: 380 Item: S_Rebellion_Shoes - Rate: 17 - - Index: 383 + Rate: 10 + - Index: 381 Item: S_Kagerou_Shoes - Rate: 17 - - Index: 384 + Rate: 10 + - Index: 382 Item: S_Oboro_Shoes - Rate: 17 - - Index: 385 + Rate: 10 + - Index: 383 Item: S_DoramPhysical_Armor - Rate: 17 - - Index: 386 + Rate: 10 + - Index: 384 Item: S_DoramPhysical_Shoes - Rate: 17 - - Index: 387 + Rate: 10 + - Index: 385 Item: S_DoramMagical_Armor - Rate: 17 - - Index: 388 + Rate: 10 + - Index: 386 Item: S_DoramMagical_Shoes - Rate: 17 - - Index: 389 + Rate: 10 + - Index: 387 Item: S_Star_Emperor_Armor - Rate: 17 - - Index: 390 + Rate: 10 + - Index: 388 Item: S_Star_Emperor_Shoes - Rate: 17 - - Index: 391 + Rate: 10 + - Index: 389 Item: S_Soul_Reaper_Armor - Rate: 17 - - Index: 392 + Rate: 10 + - Index: 390 Item: S_Soul_Reaper_Shoes - Rate: 17 - - Index: 393 + Rate: 10 + - Index: 391 Item: S_Tempest_Weapon - Rate: 17 - - Index: 394 + Rate: 10 + - Index: 392 Item: S_Tempest_Armor - Rate: 17 - - Index: 395 + Rate: 10 + - Index: 393 Item: S_PerfectSize_Weapon - Rate: 2 - - Index: 396 + Rate: 1 + Announced: true + - Index: 394 Item: S_PerfectSize_Armor - Rate: 2 - - Index: 397 + Rate: 1 + Announced: true + - Index: 395 Item: S_M_Exo_Co_Weapon - Rate: 2 - - Index: 398 + Rate: 1 + Announced: true + - Index: 396 Item: S_M_Viv_Dr_Weapon - Rate: 2 - - Index: 399 + Rate: 1 + Announced: true + - Index: 397 Item: S_M_Sci_Hu_Weapon - Rate: 2 - - Index: 400 + Rate: 1 + Announced: true + - Index: 398 Item: S_M_Fis_In_Weapon - Rate: 2 - - Index: 401 + Rate: 1 + Announced: true + - Index: 399 Item: S_M_Exe_Ho_Weapon - Rate: 2 - - Index: 402 + Rate: 1 + Announced: true + - Index: 400 Item: S_Penetration_Weapon - Rate: 17 - - Index: 403 + Rate: 10 + - Index: 401 Item: S_Penetration_Armor - Rate: 17 - - Index: 404 + Rate: 10 + - Index: 402 Item: S_Exe_Ho_Weapon - Rate: 2 - - Index: 405 + Rate: 1 + Announced: true + - Index: 403 Item: S_Fis_In_Weapon - Rate: 2 - - Index: 406 + Rate: 1 + Announced: true + - Index: 404 Item: S_Sci_Hu_Weapon - Rate: 2 - - Index: 407 + Rate: 1 + Announced: true + - Index: 405 Item: S_Viv_Dr_Weapon - Rate: 2 - - Index: 408 + Rate: 1 + Announced: true + - Index: 406 Item: S_Exo_Co_Weapon - Rate: 2 - - Index: 409 + Rate: 1 + Announced: true + - Index: 407 Item: S_Hasty_Weapon - Rate: 2 - - Index: 410 + Rate: 1 + Announced: true + - Index: 408 Item: S_Sonic_Armor - Rate: 17 - - Index: 411 + Rate: 10 + - Index: 409 Item: S_Sonic_Shield - Rate: 17 - - Index: 412 + Rate: 10 + - Index: 410 Item: S_Sonic_Shoes - Rate: 17 - - Index: 413 + Rate: 10 + - Index: 411 Item: S_Ignition_Weapon - Rate: 17 - - Index: 414 + Rate: 10 + - Index: 412 Item: S_Ignition_Pendant - Rate: 17 - - Index: 415 + Rate: 10 + - Index: 413 Item: S_Ignition_Earing - Rate: 17 - - Index: 416 + Rate: 10 + - Index: 414 Item: S_W_Breath_Armor - Rate: 17 - - Index: 417 + Rate: 10 + - Index: 415 Item: S_W_Breath_Shield - Rate: 17 - - Index: 418 + Rate: 10 + - Index: 416 Item: S_W_Breath_Shoes - Rate: 17 - - Index: 419 + Rate: 10 + - Index: 417 Item: S_F_Breath_Weapon - Rate: 17 - - Index: 420 + Rate: 10 + - Index: 418 Item: S_F_Breath_Pendant - Rate: 17 - - Index: 421 + Rate: 10 + - Index: 419 Item: S_F_Breath_Earing - Rate: 17 - - Index: 422 + Rate: 10 + - Index: 420 Item: S_Cluster_Armor - Rate: 17 - - Index: 423 + Rate: 10 + - Index: 421 Item: S_Cluster_Shield - Rate: 17 - - Index: 424 + Rate: 10 + - Index: 422 Item: S_Cluster_Shoes - Rate: 17 - - Index: 425 + Rate: 10 + - Index: 423 Item: S_Aimed_Weapon - Rate: 17 - - Index: 426 + Rate: 10 + - Index: 424 Item: S_Aimed_Pendant - Rate: 17 - - Index: 427 + Rate: 10 + - Index: 425 Item: S_Aimed_Earing - Rate: 17 - - Index: 428 + Rate: 10 + - Index: 426 Item: S_Arrow_Armor - Rate: 17 - - Index: 429 + Rate: 10 + - Index: 427 Item: S_Arrow_Shield - Rate: 17 - - Index: 430 + Rate: 10 + - Index: 428 Item: S_Arrow_Shoes - Rate: 17 - - Index: 431 + Rate: 10 + - Index: 429 Item: S_Shooting_Weapon - Rate: 17 - - Index: 432 + Rate: 10 + - Index: 430 Item: S_Shooting_Pendant - Rate: 17 - - Index: 433 + Rate: 10 + - Index: 431 Item: S_Shooting_Earing - Rate: 17 - - Index: 434 + Rate: 10 + - Index: 432 Item: S_Tornado_Armor - Rate: 17 - - Index: 435 + Rate: 10 + - Index: 433 Item: S_Tornado_Shield - Rate: 17 - - Index: 436 + Rate: 10 + - Index: 434 Item: S_Tornado_Shoes - Rate: 17 - - Index: 437 + Rate: 10 + - Index: 435 Item: S_Boomerang_Weapon - Rate: 17 - - Index: 438 + Rate: 10 + - Index: 436 Item: S_Boomerang_Pendant - Rate: 17 - - Index: 439 + Rate: 10 + - Index: 437 Item: S_Boomerang_Earing - Rate: 17 - - Index: 440 + Rate: 10 + - Index: 438 Item: S_Vulcan_Armor - Rate: 17 - - Index: 441 + Rate: 10 + - Index: 439 Item: S_Vulcan_Shield - Rate: 17 - - Index: 442 + Rate: 10 + - Index: 440 Item: S_Vulcan_Shoes - Rate: 17 - - Index: 443 + Rate: 10 + - Index: 441 Item: S_Arms_Weapon - Rate: 17 - - Index: 444 + Rate: 10 + - Index: 442 Item: S_Arms_Pendant - Rate: 17 - - Index: 445 + Rate: 10 + - Index: 443 Item: S_Arms_Earing - Rate: 17 - - Index: 446 + Rate: 10 + - Index: 444 Item: S_Rampage_Armor - Rate: 17 - - Index: 447 + Rate: 10 + - Index: 445 Item: S_Rampage_Shield - Rate: 17 - - Index: 448 + Rate: 10 + - Index: 446 Item: S_Rampage_Shoes - Rate: 17 - - Index: 449 + Rate: 10 + - Index: 447 Item: S_Skynetblow_Weapon - Rate: 17 - - Index: 450 + Rate: 10 + - Index: 448 Item: S_Skynetblow_Pendant - Rate: 17 - - Index: 451 + Rate: 10 + - Index: 449 Item: S_Skynetblow_Earing - Rate: 17 - - Index: 452 + Rate: 10 + - Index: 450 Item: S_Knucklearrow_Armor - Rate: 17 - - Index: 453 + Rate: 10 + - Index: 451 Item: S_Knucklearrow_Shield - Rate: 17 - - Index: 454 + Rate: 10 + - Index: 452 Item: S_Knucklearrow_Shoes - Rate: 17 - - Index: 455 + Rate: 10 + - Index: 453 Item: S_TigerCannon_Weapon - Rate: 17 - - Index: 456 + Rate: 10 + - Index: 454 Item: S_Tigercannon_Pendant - Rate: 17 - - Index: 457 + Rate: 10 + - Index: 455 Item: S_Tigercannon_Earing - Rate: 17 - - Index: 458 + Rate: 10 + - Index: 456 Item: S_Duplelight_Armor - Rate: 17 - - Index: 459 + Rate: 10 + - Index: 457 Item: S_Duplelight_Shield - Rate: 17 - - Index: 460 + Rate: 10 + - Index: 458 Item: S_Duplelight_Shoes - Rate: 17 - - Index: 461 + Rate: 10 + - Index: 459 Item: S_Adoramus_Weapon - Rate: 17 - - Index: 462 + Rate: 10 + - Index: 460 Item: S_Adoramus_Pendant - Rate: 17 - - Index: 463 + Rate: 10 + - Index: 461 Item: S_Adoramus_Earing - Rate: 17 - - Index: 464 + Rate: 10 + - Index: 462 Item: S_Judex_Armor - Rate: 17 - - Index: 465 + Rate: 10 + - Index: 463 Item: S_Judex_Shield - Rate: 17 - - Index: 466 + Rate: 10 + - Index: 464 Item: S_Judex_Shoes - Rate: 17 - - Index: 467 + Rate: 10 + - Index: 465 Item: S_Magnus_Weapon - Rate: 17 - - Index: 468 + Rate: 10 + - Index: 466 Item: S_Magnus_Pendant - Rate: 17 - - Index: 469 + Rate: 10 + - Index: 467 Item: S_Magnus_Earing - Rate: 17 - - Index: 470 + Rate: 10 + - Index: 468 Item: S_Rainstorm_Armor - Rate: 17 - - Index: 471 + Rate: 10 + - Index: 469 Item: S_Rainstorm_Shield - Rate: 17 - - Index: 472 + Rate: 10 + - Index: 470 Item: S_Rainstorm_Shoes - Rate: 17 - - Index: 473 + Rate: 10 + - Index: 471 Item: S_Arrowvulcan_Weapon - Rate: 17 - - Index: 474 + Rate: 10 + - Index: 472 Item: S_Arrowvulcan_Pendant - Rate: 17 - - Index: 475 + Rate: 10 + - Index: 473 Item: S_Arrowvulcan_Earing - Rate: 17 - - Index: 476 + Rate: 10 + - Index: 474 Item: S_Metalic_Armor - Rate: 17 - - Index: 477 + Rate: 10 + - Index: 475 Item: S_Metalic_Shield - Rate: 17 - - Index: 478 + Rate: 10 + - Index: 476 Item: S_Metalic_Shoes - Rate: 17 - - Index: 479 + Rate: 10 + - Index: 477 Item: S_Reverberation_Weapon - Rate: 17 - - Index: 480 + Rate: 10 + - Index: 478 Item: S_Reverberation_Pendant - Rate: 17 - - Index: 481 + Rate: 10 + - Index: 479 Item: S_Reverberation_Earing - Rate: 17 - - Index: 482 - Item: S_Jack_Armor - Rate: 17 - - Index: 483 - Item: S_Jack_Shield - Rate: 17 - - Index: 484 - Item: S_Jack_Shoes - Rate: 17 - - Index: 485 - Item: S_Strain_Weapon - Rate: 17 - - Index: 486 - Item: S_Strain_Pendant - Rate: 17 - - Index: 487 - Item: S_Strain_Earing - Rate: 17 - - Index: 488 - Item: S_Crimson_Armor - Rate: 17 - - Index: 489 - Item: S_Crimson_Shield - Rate: 17 - - Index: 490 - Item: S_Crimson_Shoes - Rate: 17 - - Index: 491 - Item: S_Chain_Weapon - Rate: 17 - - Index: 492 - Item: S_Chain_Pendant - Rate: 17 - - Index: 493 - Item: S_Chain_Earing - Rate: 17 - - Index: 494 + Rate: 10 + - Index: 480 Item: S_Triangle_Armor - Rate: 17 - - Index: 495 + Rate: 10 + - Index: 481 Item: S_Triangle_Shield - Rate: 17 - - Index: 496 + Rate: 10 + - Index: 482 Item: S_Triangle_Shoes - Rate: 17 - - Index: 497 + Rate: 10 + - Index: 483 Item: S_Shadowspell_Weapon - Rate: 17 - - Index: 498 + Rate: 10 + - Index: 484 Item: S_Shadowspell_Pendant - Rate: 17 - - Index: 499 + Rate: 10 + - Index: 485 Item: S_Shadowspell_Earing - Rate: 17 - - Index: 500 + Rate: 10 + - Index: 486 Item: S_Menace_Armor - Rate: 17 - - Index: 501 + Rate: 10 + - Index: 487 Item: S_Menace_Shield - Rate: 17 - - Index: 502 + Rate: 10 + - Index: 488 Item: S_Menace_Shoes - Rate: 17 - - Index: 503 + Rate: 10 + - Index: 489 Item: S_Paint_Weapon - Rate: 17 - - Index: 504 + Rate: 10 + - Index: 490 Item: S_Paint_Pendant - Rate: 17 - - Index: 505 + Rate: 10 + - Index: 491 Item: S_Paint_Earing - Rate: 17 - - Index: 506 + Rate: 10 + - Index: 492 Item: S_Rolling_Armor - Rate: 17 - - Index: 507 + Rate: 10 + - Index: 493 Item: S_Rolling_Shield - Rate: 17 - - Index: 508 + Rate: 10 + - Index: 494 Item: S_Rolling_Shoes - Rate: 17 - - Index: 509 + Rate: 10 + - Index: 495 Item: S_Katar_Weapon - Rate: 17 - - Index: 510 + Rate: 10 + - Index: 496 Item: S_Katar_Pendant - Rate: 17 - - Index: 511 + Rate: 10 + - Index: 497 Item: S_Katar_Earing - Rate: 17 - - Index: 512 + Rate: 10 + - Index: 498 Item: S_Slash_Armor - Rate: 17 - - Index: 513 + Rate: 10 + - Index: 499 Item: S_Slash_Shield - Rate: 17 - - Index: 514 + Rate: 10 + - Index: 500 Item: S_Slash_Shoes - Rate: 17 - - Index: 515 + Rate: 10 + - Index: 501 Item: S_Ripper_Weapon - Rate: 17 - - Index: 516 + Rate: 10 + - Index: 502 Item: S_Ripper_Pendant - Rate: 17 - - Index: 517 + Rate: 10 + - Index: 503 Item: S_Ripper_Earing - Rate: 17 - - Index: 518 + Rate: 10 + - Index: 504 Item: S_Dust_Armor - Rate: 17 - - Index: 519 + Rate: 10 + - Index: 505 Item: S_Dust_Shield - Rate: 17 - - Index: 520 + Rate: 10 + - Index: 506 Item: S_Dust_Shoes - Rate: 17 - - Index: 521 + Rate: 10 + - Index: 507 Item: S_Grave_Weapon - Rate: 17 - - Index: 522 + Rate: 10 + - Index: 508 Item: S_Grave_Pendant - Rate: 17 - - Index: 523 + Rate: 10 + - Index: 509 Item: S_Grave_Earing - Rate: 17 - - Index: 524 + Rate: 10 + - Index: 510 Item: S_Psychic_Armor - Rate: 17 - - Index: 525 + Rate: 10 + - Index: 511 Item: S_Psychic_Shield - Rate: 17 - - Index: 526 + Rate: 10 + - Index: 512 Item: S_Psychic_Shoes - Rate: 17 - - Index: 527 + Rate: 10 + - Index: 513 Item: S_Varetyr_Weapon - Rate: 17 - - Index: 528 + Rate: 10 + - Index: 514 Item: S_Varetyr_Pendant - Rate: 17 - - Index: 529 + Rate: 10 + - Index: 515 Item: S_Varetyr_Earing - Rate: 17 - - Index: 530 + Rate: 10 + - Index: 516 + Item: S_Jack_Armor + Rate: 10 + - Index: 517 + Item: S_Jack_Shield + Rate: 10 + - Index: 518 + Item: S_Jack_Shoes + Rate: 10 + - Index: 519 + Item: S_Strain_Weapon + Rate: 10 + - Index: 520 + Item: S_Strain_Pendant + Rate: 10 + - Index: 521 + Item: S_Strain_Earing + Rate: 10 + - Index: 522 + Item: S_Crimson_Armor + Rate: 10 + - Index: 523 + Item: S_Crimson_Shield + Rate: 10 + - Index: 524 + Item: S_Crimson_Shoes + Rate: 10 + - Index: 525 + Item: S_Chain_Weapon + Rate: 10 + - Index: 526 + Item: S_Chain_Pendant + Rate: 10 + - Index: 527 + Item: S_Chain_Earing + Rate: 10 + - Index: 528 Item: S_Cart_Tornado_Armor - Rate: 17 - - Index: 531 + Rate: 10 + - Index: 529 Item: S_Cart_Tornado_Shield - Rate: 17 - - Index: 532 + Rate: 10 + - Index: 530 Item: S_Cart_Tornado_Shoes - Rate: 17 - - Index: 533 + Rate: 10 + - Index: 531 Item: S_Cannon_Cart_Weapon - Rate: 17 - - Index: 534 + Rate: 10 + - Index: 532 Item: S_Cannon_Cart_Pendant - Rate: 17 - - Index: 535 + Rate: 10 + - Index: 533 Item: S_Cannon_Cart_Earing - Rate: 17 - - Index: 536 + Rate: 10 + - Index: 534 Item: S_Spore_Bomb_Armor - Rate: 17 - - Index: 537 + Rate: 10 + - Index: 535 Item: S_Spore_Bomb_Shield - Rate: 17 - - Index: 538 + Rate: 10 + - Index: 536 Item: S_Spore_Bomb_Shoes - Rate: 17 - - Index: 539 + Rate: 10 + - Index: 537 Item: S_Crazy_Weapon - Rate: 17 - - Index: 540 + Rate: 10 + - Index: 538 Item: S_Crazy_Pendant - Rate: 17 - - Index: 541 + Rate: 10 + - Index: 539 Item: S_Crazy_Earing - Rate: 17 - - Index: 542 + Rate: 10 + - Index: 540 Item: S_Brand_Armor - Rate: 17 - - Index: 543 + Rate: 10 + - Index: 541 Item: S_Brand_Shield - Rate: 17 - - Index: 544 + Rate: 10 + - Index: 542 Item: S_Brand_Shoes - Rate: 17 - - Index: 545 + Rate: 10 + - Index: 543 Item: S_Chain_Press_Weapon - Rate: 17 - - Index: 546 + Rate: 10 + - Index: 544 Item: S_Chain_Press_Pendant - Rate: 17 - - Index: 547 + Rate: 10 + - Index: 545 Item: S_Chain_Press_Earing - Rate: 17 - - Index: 548 + Rate: 10 + - Index: 546 Item: S_Banish_Cannon_Armor - Rate: 17 - - Index: 549 + Rate: 10 + - Index: 547 Item: S_Banish_Cannon_Shield - Rate: 17 - - Index: 550 + Rate: 10 + - Index: 548 Item: S_Banish_Cannon_Shoes - Rate: 17 - - Index: 551 + Rate: 10 + - Index: 549 Item: S_Genesis_Weapon - Rate: 17 - - Index: 552 + Rate: 10 + - Index: 550 Item: S_Genesis_Pendant - Rate: 17 - - Index: 553 + Rate: 10 + - Index: 551 Item: S_Genesis_Earing - Rate: 17 - - Index: 554 + Rate: 10 + - Index: 552 Item: S_Tail_Dragon_Weapon - Rate: 17 - - Index: 555 + Rate: 10 + - Index: 553 Item: S_Tail_Dragon_Shield - Rate: 17 - - Index: 556 + Rate: 10 + - Index: 554 Item: S_Tail_Dragon_Armor - Rate: 17 - - Index: 557 + Rate: 10 + - Index: 555 Item: S_Flare_Dance_Earing - Rate: 17 - - Index: 558 + Rate: 10 + - Index: 556 Item: S_Flare_Dance_Pendant - Rate: 17 - - Index: 559 + Rate: 10 + - Index: 557 Item: S_Flare_Dance_Shoes - Rate: 17 - - Index: 560 + Rate: 10 + - Index: 558 Item: S_God_Hammer_Weapon - Rate: 17 - - Index: 561 + Rate: 10 + - Index: 559 Item: S_God_Hammer_Shield - Rate: 17 - - Index: 562 + Rate: 10 + - Index: 560 Item: S_God_Hammer_Armor - Rate: 17 - - Index: 563 + Rate: 10 + - Index: 561 Item: S_Shatter_Buster_Earing - Rate: 17 - - Index: 564 + Rate: 10 + - Index: 562 Item: S_Shatter_B_Pendant - Rate: 17 - - Index: 565 + Rate: 10 + - Index: 563 Item: S_Shatter_Buster_Shoes - Rate: 17 - - Index: 566 + Rate: 10 + - Index: 564 Item: S_Trip_Weapon - Rate: 17 - - Index: 567 + Rate: 10 + - Index: 565 Item: S_Trip_Shield - Rate: 17 - - Index: 568 + Rate: 10 + - Index: 566 Item: S_Trip_Armor - Rate: 17 - - Index: 569 + Rate: 10 + - Index: 567 Item: S_Super_Magic_Shield - Rate: 17 - - Index: 570 + Rate: 10 + - Index: 568 Item: S_Super_Magic_Armor - Rate: 17 - - Index: 571 + Rate: 10 + - Index: 569 Item: S_Super_Magic_Shoes - Rate: 17 - - Index: 572 + Rate: 10 + - Index: 570 Item: S_Super_Power_Weapon - Rate: 17 - - Index: 573 + Rate: 10 + - Index: 571 Item: S_Super_Power_Pendant - Rate: 17 - - Index: 574 + Rate: 10 + - Index: 572 Item: S_Super_Power_Earing - Rate: 17 - - Index: 575 + Rate: 10 + - Index: 573 Item: S_Kunai_Weapon - Rate: 17 - - Index: 576 + Rate: 10 + - Index: 574 Item: S_Kunai_Shield - Rate: 17 - - Index: 577 + Rate: 10 + - Index: 575 Item: S_Kunai_Armor - Rate: 17 - - Index: 578 + Rate: 10 + - Index: 576 Item: S_Syuriken_Earing - Rate: 17 - - Index: 579 + Rate: 10 + - Index: 577 Item: S_Syuriken_Pendant - Rate: 17 - - Index: 580 + Rate: 10 + - Index: 578 Item: S_Syuriken_Shoes - Rate: 17 - - Index: 581 + Rate: 10 + - Index: 579 Item: S_Kamaenraku_Weapon - Rate: 17 - - Index: 582 + Rate: 10 + - Index: 580 Item: S_Kamaenraku_Shield - Rate: 17 - - Index: 583 + Rate: 10 + - Index: 581 Item: S_Kamaenraku_Armor - Rate: 17 - - Index: 584 + Rate: 10 + - Index: 582 Item: S_Huusouka_Earing - Rate: 17 - - Index: 585 + Rate: 10 + - Index: 583 Item: S_Huusouka_Pendant - Rate: 17 - - Index: 586 + Rate: 10 + - Index: 584 Item: S_Huusouka_Shoes - Rate: 17 - - Index: 587 + Rate: 10 + - Index: 585 Item: S_Pickyrush_Weapon - Rate: 17 - - Index: 588 + Rate: 10 + - Index: 586 Item: S_Pickyrush_Shield - Rate: 17 - - Index: 589 + Rate: 10 + - Index: 587 Item: S_Pickyrush_Armor - Rate: 17 - - Index: 590 + Rate: 10 + - Index: 588 Item: S_SavageRabbit_Earing - Rate: 17 - - Index: 591 + Rate: 10 + - Index: 589 Item: S_SavageRabbit_Pendant - Rate: 17 - - Index: 592 + Rate: 10 + - Index: 590 Item: S_SavageRabbit_Shoes - Rate: 17 - - Index: 593 + Rate: 10 + - Index: 591 Item: S_Catnip_Weapon - Rate: 17 - - Index: 594 + Rate: 10 + - Index: 592 Item: S_Catnip_Shield - Rate: 17 - - Index: 595 + Rate: 10 + - Index: 593 Item: S_Catnip_Armor - Rate: 17 - - Index: 596 + Rate: 10 + - Index: 594 Item: S_Silvervine_Earing - Rate: 17 - - Index: 597 + Rate: 10 + - Index: 595 Item: S_Silvervine_Pendant - Rate: 17 - - Index: 598 + Rate: 10 + - Index: 596 Item: S_Silvervine_Shoes - Rate: 17 - - Index: 599 + Rate: 10 + - Index: 597 Item: S_Sunshine_Weapon - Rate: 17 - - Index: 600 + Rate: 10 + - Index: 598 Item: S_Sunshine_Shield - Rate: 17 - - Index: 601 + Rate: 10 + - Index: 599 Item: S_Sunshine_Armor - Rate: 17 - - Index: 602 + Rate: 10 + - Index: 600 Item: S_Moonlight_Earring - Rate: 17 - - Index: 603 + Rate: 10 + - Index: 601 Item: S_Moonlight_Pendant - Rate: 17 - - Index: 604 + Rate: 10 + - Index: 602 Item: S_Moonlight_Shoes - Rate: 17 - - Index: 605 + Rate: 10 + - Index: 603 Item: S_Stardust_Weapon - Rate: 17 - - Index: 606 + Rate: 10 + - Index: 604 Item: S_Stardust_Shield - Rate: 17 - - Index: 607 + Rate: 10 + - Index: 605 Item: S_Stardust_Armor - Rate: 17 - - Index: 608 + Rate: 10 + - Index: 606 Item: S_S_Weapon - Rate: 17 - - Index: 609 + Rate: 10 + - Index: 607 Item: S_S_Shield - Rate: 17 - - Index: 610 + Rate: 10 + - Index: 608 Item: S_S_Armor - Rate: 17 - - Index: 611 + Rate: 10 + - Index: 609 Item: S_Evilcurse_Earring - Rate: 17 - - Index: 612 + Rate: 10 + - Index: 610 Item: S_Evilcurse_Pendant - Rate: 17 - - Index: 613 + Rate: 10 + - Index: 611 Item: S_Evilcurse_Shoes - Rate: 17 - - Index: 614 - Item: S_FullPene_Earring - Rate: 2 - - Index: 615 - Item: S_FullPene_Pendant - Rate: 2 - - Index: 616 - Item: S_FullPene_Armor - Rate: 2 - - Index: 617 + Rate: 10 + - Index: 612 Item: S_FullPene_Shoes - Rate: 2 + Rate: 1 + Announced: true + - Index: 613 + Item: S_FullPene_Armor + Rate: 1 + Announced: true + - Index: 614 + Item: S_FullPene_Pendant + Rate: 1 + Announced: true + - Index: 615 + Item: S_FullPene_Earring + Rate: 1 + Announced: true + - Index: 616 + Item: S_AllRace_Shoes + Rate: 1 + Announced: true + - Index: 617 + Item: S_AllRace_Shield + Rate: 1 + Announced: true - Index: 618 - Item: S_FullTemp_Earring - Rate: 2 + Item: S_Blitz_Weapon + Rate: 10 - Index: 619 - Item: S_FullTemp_Shoes - Rate: 2 + Item: S_Blitz_Armor + Rate: 10 - Index: 620 - Item: S_FullTemp_Armor - Rate: 2 + Item: S_FullTemp_Earring + Rate: 1 + Announced: true - Index: 621 Item: S_FullTemp_Pendant - Rate: 2 + Rate: 1 + Announced: true - Index: 622 - Item: S_Mammoth_Armor - Rate: 17 + Item: S_FullTemp_Armor + Rate: 1 + Announced: true - Index: 623 - Item: S_Mammoth_Shoes - Rate: 17 + Item: S_FullTemp_Shoes + Rate: 1 + Announced: true - Index: 624 - Item: S_Mammoth_Pendant - Rate: 17 + Item: S_Mammoth_Armor + Rate: 10 - Index: 625 - Item: S_Mammoth_Earring - Rate: 17 + Item: S_Mammoth_Shoes + Rate: 10 - Index: 626 - Item: S_Mammoth_Weapon - Rate: 17 + Item: S_Mammoth_Pendant + Rate: 10 - Index: 627 - Item: S_Mammoth_Shield - Rate: 17 + Item: S_Mammoth_Earring + Rate: 10 - Index: 628 - Item: S_TrueGem_Armor - Rate: 2 + Item: S_Mammoth_Weapon + Rate: 10 - Index: 629 - Item: S_TrueGem_Shoes - Rate: 2 + Item: S_Mammoth_Shield + Rate: 10 - Index: 630 - Item: S_TrueGem_Earring - Rate: 2 + Item: S_TrueGem_Armor + Rate: 1 + Announced: true - Index: 631 - Item: S_TrueGem_Pendant - Rate: 2 + Item: S_TrueGem_Shoes + Rate: 1 + Announced: true - Index: 632 - Item: S_M_Mammoth_Armor - Rate: 2 + Item: S_TrueGem_Earring + Rate: 1 + Announced: true - Index: 633 - Item: S_M_Mammoth_Shoes - Rate: 2 + Item: S_TrueGem_Pendant + Rate: 1 + Announced: true - Index: 634 - Item: S_M_Mammoth_Earring - Rate: 2 + Item: S_M_Mammoth_Armor + Rate: 1 + Announced: true - Index: 635 - Item: S_M_Mammoth_Pendant - Rate: 2 + Item: S_M_Mammoth_Shoes + Rate: 1 + Announced: true - Index: 636 - Item: S_EXP_Shield - Rate: 2 + Item: S_M_Mammoth_Earring + Rate: 1 + Announced: true - Index: 637 - Item: S_Absorb_Shield - Rate: 2 + Item: S_M_Mammoth_Pendant + Rate: 1 + Announced: true - Index: 638 - Item: S_Absorb_Weapon - Rate: 2 + Item: S_EXP_Shield + Rate: 1 + Announced: true - Index: 639 - Item: S_AutoSpell_Shield - Rate: 17 + Item: S_Absorb_Shield + Rate: 1 + Announced: true - Index: 640 - Item: S_AutoSpell_Armor - Rate: 17 + Item: S_Absorb_Weapon + Rate: 1 + Announced: true - Index: 641 - Item: S_AutoSpell_Shoes - Rate: 17 + Item: S_AutoSpell_Shield + Rate: 10 - Index: 642 - Item: S_AutoSpell_Weapon - Rate: 17 + Item: S_AutoSpell_Armor + Rate: 10 - Index: 643 - Item: S_AutoSpell_Pendant - Rate: 17 + Item: S_AutoSpell_Shoes + Rate: 10 - Index: 644 - Item: S_AutoSpell_Earring - Rate: 17 + Item: S_AutoSpell_Weapon + Rate: 10 - Index: 645 - Item: S_M_AutoSpell_Armor - Rate: 2 + Item: S_AutoSpell_Pendant + Rate: 10 - Index: 646 - Item: S_M_AutoSpell_Shoes - Rate: 2 + Item: S_AutoSpell_Earring + Rate: 10 - Index: 647 - Item: S_M_AutoSpell_Earring - Rate: 2 + Item: S_M_AutoSpell_Armor + Rate: 1 + Announced: true - Index: 648 - Item: S_M_AutoSpell_Pendant - Rate: 2 + Item: S_M_AutoSpell_Shoes + Rate: 1 + Announced: true - Index: 649 - Item: S_Hasty_Shield - Rate: 2 + Item: S_M_AutoSpell_Earring + Rate: 1 + Announced: true - Index: 650 - Item: S_Infinity_Shield - Rate: 2 + Item: S_M_AutoSpell_Pendant + Rate: 1 + Announced: true - Index: 651 - Item: S_Durable_Weapon - Rate: 2 + Item: S_Hasty_Shield + Rate: 1 + Announced: true - Index: 652 - Item: S_Durable_Shield - Rate: 2 + Item: S_Infinity_Shield + Rate: 1 + Announced: true - Index: 653 - Item: S_Clever_Weapon - Rate: 2 + Item: S_Durable_Weapon + Rate: 1 + Announced: true - Index: 654 - Item: S_Clever_Shield - Rate: 2 + Item: S_Durable_Shield + Rate: 1 + Announced: true - Index: 655 - Item: S_CriticalHit_Weapon - Rate: 2 + Item: S_Clever_Weapon + Rate: 1 + Announced: true - Index: 656 - Item: S_KingbirdAnc_Weapon - Rate: 2 + Item: S_Clever_Shield + Rate: 1 + Announced: true - Index: 657 - Item: S_Thief_earring - Rate: 17 + Item: S_CriticalHit_Weapon + Rate: 1 + Announced: true - Index: 658 - Item: S_Archer_earring - Rate: 17 + Item: S_KingbirdAnc_Weapon + Rate: 1 + Announced: true + - Index: 659 + Item: S_P_Power_Weapon + Rate: 10 + - Index: 660 + Item: S_P_Power_Shield + Rate: 10 + - Index: 661 + Item: S_M_Spell_Weapon + Rate: 10 + - Index: 662 + Item: S_M_Spell_Shield + Rate: 10 + - Index: 663 + Item: S_Concentration_Weapon + Rate: 10 + - Index: 664 + Item: S_Concentration_Shield + Rate: 10 + - Index: 665 + Item: S_Wisdom_Weapon + Rate: 10 + - Index: 666 + Item: S_Wisdom_Shield + Rate: 10 + - Index: 667 + Item: S_Stamina_Weapon + Rate: 10 + - Index: 668 + Item: S_Stamina_Shield + Rate: 10 + - Index: 669 + Item: S_Creative_Weapon + Rate: 10 + - Index: 670 + Item: S_Creative_Shield + Rate: 10 + - Index: 671 + Item: S_S_Reload_Shield + Rate: 1 + Announced: true + - Index: 672 + Item: S_SpellCaster_Armor + Rate: 1 + Announced: true + - Index: 673 + Item: S_SpellCaster_Shoes + Rate: 1 + Announced: true + - Index: 674 + Item: S_SpellCaster_Earring + Rate: 1 + Announced: true + - Index: 675 + Item: S_SpellCaster_Pendant + Rate: 1 + Announced: true + - Index: 676 + Item: S_R_Bearers_Shoes + Rate: 1 + Announced: true + - Index: 677 + Item: S_R_Bearers_Armor + Rate: 1 + Announced: true + - Index: 678 + Item: S_R_Bearers_Pendant + Rate: 1 + Announced: true + - Index: 679 + Item: S_R_Bearers_Earring + Rate: 1 + Announced: true + - Index: 680 + Item: S_Mega_Blitz_Shield + Rate: 1 + Announced: true + - Index: 681 + Item: S_Mega_Blitz_Weapon + Rate: 1 + Announced: true + - Index: 682 + Item: S_EXP_Weapon + Rate: 1 + Announced: true - Group: FLUFFY_SEMI_LONG_BOX SubGroups: - SubGroup: 1 List: - Index: 0 Item: C_Fluffy_Semi_Long - Rate: 1111 + Rate: 1 - Index: 1 - Item: C_Fluffy_Semi_Long_LB - Rate: 1111 - - Index: 2 - Item: C_Fluffy_Semi_Long_CB - Rate: 1111 - - Index: 3 - Item: C_Fluffy_Semi_Long_YL - Rate: 1111 - - Index: 4 - Item: C_Fluffy_Semi_Long_BG - Rate: 1111 - - Index: 5 - Item: C_Fluffy_Semi_Long_JBL - Rate: 1111 - - Index: 6 - Item: C_Fluffy_Semi_Long_WH - Rate: 1111 - - Index: 7 - Item: C_Fluffy_Semi_Long_OM - Rate: 1111 - - Index: 8 Item: C_Fluffy_Semi_Long_LPP - Rate: 1111 + Rate: 1 + - Index: 2 + Item: C_Fluffy_Semi_Long_OM + Rate: 1 + - Index: 3 + Item: C_Fluffy_Semi_Long_WH + Rate: 1 + - Index: 4 + Item: C_Fluffy_Semi_Long_JBL + Rate: 1 + - Index: 5 + Item: C_Fluffy_Semi_Long_BG + Rate: 1 + - Index: 6 + Item: C_Fluffy_Semi_Long_YL + Rate: 1 + - Index: 7 + Item: C_Fluffy_Semi_Long_CB + Rate: 1 + - Index: 8 + Item: C_Fluffy_Semi_Long_LB + Rate: 1 - Group: BOOSTER_PACK_215 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: E_Life_Potion_Pack - Amount: 3 - - Index: 1 - Item: E_DEF_Scroll_Box - Amount: 3 - - Index: 2 - Item: Comp_Small_Mana_Potion - Amount: 60 - - Index: 3 - Item: Comp_Power_Booster - Amount: 10 - - Index: 4 Item: Comp_Almighty Amount: 10 - - Index: 5 - Item: E_Red_Booster - Amount: 60 - - Index: 6 + - Index: 1 + Item: Comp_Power_Booster + Amount: 10 + - Index: 2 Item: E_Infinity_Drink Amount: 10 + - Index: 3 + Item: E_Life_Potion_Pack + Amount: 3 + - Index: 4 + Item: E_DEF_Scroll_Box + Amount: 3 + - Index: 5 + Item: Comp_Small_Mana_Potion + Amount: 60 + - Index: 6 + Item: E_Red_Booster + Amount: 60 - Index: 7 - Item: Booster_Pack_230 - - Index: 8 Item: Booster_Coin Amount: 56 + - Index: 8 + Item: Booster_Pack_230 + - Index: 9 + Item: Battle_Manual100 + Amount: 2 - Group: BOOSTER_PACK_230 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: E_Life_Potion_Pack + Item: Comp_Almighty Amount: 5 - Index: 1 - Item: E_DEF_Scroll_Box + Item: Comp_Power_Booster Amount: 5 - Index: 2 - Item: Comp_Small_Mana_Potion - Amount: 100 - - Index: 3 - Item: Comp_Power_Booster - Amount: 20 - - Index: 4 - Item: Comp_Almighty - Amount: 20 - - Index: 5 - Item: E_Red_Booster - Amount: 100 - - Index: 6 Item: E_Infinity_Drink - Amount: 20 - - Index: 7 - Item: 2020_Goal_Gift_Box - - Index: 8 + Amount: 5 + - Index: 3 + Item: Booster_B_M_2 + Amount: 3 + - Index: 4 + Item: Lv_Up_T_230 + Amount: 3 + - Index: 5 Item: Booster_Coin - Amount: 60 + Amount: 130 + - Index: 6 + Item: World_Tour_Ticket + Amount: 30 + - Index: 7 + Item: Booster_Pack_240 - Group: ANGELPORINGJEWEL_BOX SubGroups: - SubGroup: 0 @@ -66407,223 +71370,249 @@ Body: - SubGroup: 1 List: - Index: 0 - Item: Up_Dragonic_Slayer - Rate: 286 + Item: Up_Royal_Bow_K + Rate: 1 - Index: 1 - Item: Up_Sword_Of_Bluefire - Rate: 286 + Item: Up_Narcis_Bow + Rate: 1 - Index: 2 - Item: Up_Slate_Sword - Rate: 286 + Item: Up_Shadow_Staff_K + Rate: 1 - Index: 3 - Item: Up_Light_Blade - Rate: 286 + Item: Up_Iron_Nail_K + Rate: 1 - Index: 4 Item: Up_Magic_Sword - Rate: 286 + Rate: 1 - Index: 5 - Item: Up_Fatalist - Rate: 286 + Item: Up_Sword_Of_Bluefire + Rate: 1 - Index: 6 - Item: Up_Fog_Dew_Sword - Rate: 286 + Item: Up_Avenger + Rate: 1 - Index: 7 - Item: Up_Undine_Spear_K - Rate: 286 + Item: Up_Iron_Staff + Rate: 1 - Index: 8 - Item: Up_OneSkyOneSun - Rate: 286 + Item: Up_Oriental_Sword + Rate: 1 - Index: 9 - Item: Up_Demon_Hunting_Bible - Rate: 286 + Item: Up_Undine_Spear_K + Rate: 1 - Index: 10 - Item: Up_Shadow_Staff_K - Rate: 286 + Item: Up_Demon_Hunting_Bible + Rate: 1 - Index: 11 - Item: Up_Freezing_Rod - Rate: 286 + Item: Up_Shiver_Katar_K + Rate: 1 - Index: 12 - Item: Up_MeawFoxtail - Rate: 286 + Item: Up_OneSkyOneSun + Rate: 1 - Index: 13 Item: Up_SoulWeight - Rate: 286 + Rate: 1 - Index: 14 - Item: Up_Iron_Nail_K - Rate: 286 + Item: Up_MeawFoxtail + Rate: 1 - Index: 15 - Item: Up_Ray_Knuckle - Rate: 286 - - Index: 16 - Item: Up_Trumpet_Shell_K - Rate: 286 - - Index: 17 - Item: Up_Barb_Wire_K - Rate: 286 - - Index: 18 - Item: Up_Meteor_Striker - Rate: 286 - - Index: 19 - Item: Up_Saint_Hall - Rate: 286 - - Index: 20 - Item: Up_Oriental_Sword - Rate: 286 - - Index: 21 - Item: Up_Shiver_Katar_K - Rate: 286 - - Index: 22 - Item: Up_Blade_Katar - Rate: 286 - - Index: 23 - Item: Up_Avenger - Rate: 286 - - Index: 24 - Item: Up_Iron_Staff - Rate: 286 - - Index: 25 - Item: Up_Blue_Crystal_Staff - Rate: 286 - - Index: 26 - Item: Up_Humma_Clear - Rate: 286 - - Index: 27 - Item: Up_Narcis_Bow - Rate: 286 - - Index: 28 - Item: Up_Royal_Bow_K - Rate: 286 - - Index: 29 - Item: Up_Scalet_Dragon_L_Bow - Rate: 286 - - Index: 30 Item: Up_Crimson_Rose - Rate: 286 - - Index: 31 + Rate: 1 + - Index: 16 Item: Up_Master_Soul_Rifle - Rate: 286 - - Index: 32 + Rate: 1 + - Index: 17 Item: Up_Demon_S_Shot - Rate: 286 - - Index: 33 - Item: Up_The_Black_Gatling - Rate: 286 - - Index: 34 + Rate: 1 + - Index: 18 Item: Up_Golden_L_Launcher - Rate: 286 + Rate: 1 + - Index: 19 + Item: Up_The_Black_Gatling + Rate: 1 + - Index: 20 + Item: Up_Fog_Dew_Sword + Rate: 1 + - Index: 21 + Item: Up_Humma_Clear + Rate: 1 + - Index: 22 + Item: Up_Dragonic_Slayer + Rate: 1 + - Index: 23 + Item: Up_Light_Blade + Rate: 1 + - Index: 24 + Item: Up_Slate_Sword + Rate: 1 + - Index: 25 + Item: Up_Trumpet_Shell_K + Rate: 1 + - Index: 26 + Item: Up_Barb_Wire_K + Rate: 1 + - Index: 27 + Item: Up_Meteor_Striker + Rate: 1 + - Index: 28 + Item: Up_Saint_Hall + Rate: 1 + - Index: 29 + Item: Up_Ray_Knuckle + Rate: 1 + - Index: 30 + Item: Up_Blade_Katar + Rate: 1 + - Index: 31 + Item: Up_Fatalist + Rate: 1 + - Index: 32 + Item: Up_Scalet_Dragon_L_Bow + Rate: 1 + - Index: 33 + Item: Up_Blue_Crystal_Staff + Rate: 1 + - Index: 34 + Item: Up_Freezing_Rod + Rate: 1 + - Index: 35 + Item: Up_Freedom_Stick + Rate: 1 + - Index: 36 + Item: Up_Blessed_Knife + Rate: 1 - Group: HIGH_REFINE_GUARANTEE SubGroups: - SubGroup: 1 List: - Index: 0 Item: Guarantee_Weapon_11Up - Rate: 3000 + Rate: 30 + Announced: true - Index: 1 - Item: Guarantee_Armor_11Up - Rate: 3000 - - Index: 2 Item: Guarantee_Weapon_12Up - Rate: 1400 - - Index: 3 - Item: Guarantee_Armor_12Up - Rate: 1400 - - Index: 4 + Rate: 14 + Announced: true + - Index: 2 Item: Guarantee_Weapon_13Up - Rate: 600 + Rate: 6 + Announced: true + - Index: 3 + Item: Guarantee_Armor_11Up + Rate: 30 + Announced: true + - Index: 4 + Item: Guarantee_Armor_12Up + Rate: 14 + Announced: true - Index: 5 Item: Guarantee_Armor_13Up - Rate: 600 + Rate: 6 + Announced: true - Group: REFINE_GUARANTEE SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Guarantee_Weapon_9Up - Rate: 909 + Item: Guarantee_Weapon_7Up + Rate: 25 - Index: 1 Item: Guarantee_Weapon_8Up - Rate: 1364 + Rate: 15 - Index: 2 - Item: Guarantee_Weapon_7Up - Rate: 2273 + Item: Guarantee_Weapon_9Up + Rate: 10 + Announced: true - Index: 3 - Item: Guarantee_Armor_9Up - Rate: 909 - - Index: 4 - Item: Guarantee_Armor_8Up - Rate: 1364 - - Index: 5 - Item: Guarantee_Armor_7Up - Rate: 2273 - - Index: 6 Item: Guarantee_Weapon_10Up - Rate: 455 + Rate: 5 + Announced: true + - Index: 4 + Item: Guarantee_Armor_7Up + Rate: 25 + - Index: 5 + Item: Guarantee_Armor_8Up + Rate: 15 + - Index: 6 + Item: Guarantee_Armor_9Up + Rate: 10 + Announced: true - Index: 7 Item: Guarantee_Armor_10Up - Rate: 455 + Rate: 5 + Announced: true - Group: SPECIAL_REFINE_CUBE SubGroups: - SubGroup: 1 List: - Index: 0 Item: Temporal_Refine_Cube - Rate: 1111 + Rate: 5 + Announced: true - Index: 1 Item: Geffen_Refine_Cube - Rate: 1111 + Rate: 5 + Announced: true - Index: 2 - Item: Old_Refine_Cube - Rate: 1111 + Item: Circlet_Refine_Cube + Rate: 5 + Announced: true - Index: 3 Item: OS_Weapon_Refine_Cube - Rate: 1111 + Rate: 5 + Announced: true - Index: 4 Item: Racecap_Refine_Cube - Rate: 1111 + Rate: 5 + Announced: true - Index: 5 - Item: Auto_Armor_Refine_Cube - Rate: 1111 + Item: Old_Refine_Cube + Rate: 5 + Announced: true - Index: 6 - Item: Bio_Weapon_Refine_Cube - Rate: 1111 + Item: Auto_Armor_Refine_Cube + Rate: 5 + Announced: true - Index: 7 - Item: Circlet_Refine_Cube - Rate: 1111 + Item: Bio_Weapon_Refine_Cube + Rate: 5 + Announced: true - Index: 8 Item: Bio_Helm_Refine_Cube - Rate: 1111 + Rate: 5 + Announced: true - Group: AUTOSPELL_SHADOW_BOX SubGroups: - SubGroup: 1 List: - Index: 0 - Item: S_AutoSpell_Shield - Rate: 1667 - - Index: 1 Item: S_AutoSpell_Armor - Rate: 1667 + Rate: 1 + - Index: 1 + Item: S_AutoSpell_Shield + Rate: 1 - Index: 2 - Item: S_AutoSpell_Shoes - Rate: 1667 - - Index: 3 Item: S_AutoSpell_Weapon - Rate: 1667 + Rate: 1 + - Index: 3 + Item: S_AutoSpell_Shoes + Rate: 1 - Index: 4 - Item: S_AutoSpell_Pendant - Rate: 1667 - - Index: 5 Item: S_AutoSpell_Earring - Rate: 1667 + Rate: 1 + - Index: 5 + Item: S_AutoSpell_Pendant + Rate: 1 - Group: BROADCASTBOX_ SubGroups: - SubGroup: 0 List: - Index: 0 - Item: E_Life_Potion_Pack - - Index: 1 - Item: E_DEF_Scroll_Box - - Index: 2 Item: Battle_Manual100 + Duration: 10080 + - Index: 1 + Item: E_Life_Potion_Pack + - Index: 2 + Item: E_DEF_Scroll_Box - Index: 3 Item: World_Tour_Ticket Amount: 20 @@ -66632,509 +71621,522 @@ Body: - SubGroup: 1 List: - Index: 0 - Item: ATKStone_Middle - Rate: 100 + Item: Melee_Stone_Robe_D + Rate: 7 + Announced: true - Index: 1 - Item: MATKStone_Middle - Rate: 100 + Item: Magic_Stone_Robe_D + Rate: 7 + Announced: true - Index: 2 - Item: ASPDStone_Robe - Rate: 30 + Item: DoubleAttack_Stone + Rate: 15 + Announced: true - Index: 3 - Item: ATKStone_Top - Rate: 100 + Item: Critical_Stone_Robe + Rate: 15 + Announced: true - Index: 4 - Item: MATKStone_Top - Rate: 100 + Item: CastingStone_Robe + Rate: 15 + Announced: true - Index: 5 - Item: HPdrainStone_Robe - Rate: 30 + Item: CastStone_Robe_D + Rate: 20 + Announced: true - Index: 6 Item: SPdrainStone_Robe Rate: 40 + Announced: true - Index: 7 - Item: HPdrainStone_Top - Rate: 30 - - Index: 8 Item: SPdrainStone_Top Rate: 40 - - Index: 9 - Item: EXPStone_Bottom - Rate: 100 - - Index: 10 - Item: ATKStone_Bottom - Rate: 100 - - Index: 11 - Item: MATKStone_Bottom - Rate: 100 - - Index: 12 - Item: Critical_Stone - Rate: 100 - - Index: 13 - Item: Range_Stone - Rate: 100 - - Index: 14 - Item: Greed_Stone - Rate: 40 - - Index: 15 - Item: CastingStone_Robe - Rate: 15 - - Index: 16 - Item: ASPDStone_Top - Rate: 30 - - Index: 17 - Item: ReloadStone_Top - Rate: 100 - - Index: 18 - Item: ReloadStone_Middle - Rate: 100 - - Index: 19 - Item: ReloadStone_Bottom - Rate: 100 - - Index: 20 - Item: ElectricEffect_Middle - Rate: 30 - - Index: 21 - Item: GreenFloor_Bottom - Rate: 100 - - Index: 22 - Item: EXPStone_Middle - Rate: 100 - - Index: 23 - Item: MinorCastingStone_Robe - Rate: 30 - - Index: 24 - Item: EXPStone_Top - Rate: 100 - - Index: 25 - Item: CastingStone_Top - Rate: 100 - - Index: 26 - Item: CastingStone_Middle - Rate: 100 - - Index: 27 - Item: CastingStone_Bottom - Rate: 100 - - Index: 28 - Item: BlueAuraEffect_Middle - Rate: 100 - - Index: 29 - Item: PinkGlowEffect_Middle - Rate: 100 - - Index: 30 - Item: ShrinkEffect_Bottom - Rate: 40 - - Index: 31 - Item: ExplodingEffect_Middle - Rate: 100 - - Index: 32 - Item: WaterFieldEffect_Bottom - Rate: 30 - - Index: 33 - Item: DoubleAttack_Stone - Rate: 15 - - Index: 34 - Item: Critical_Stone_Robe - Rate: 15 - - Index: 35 - Item: Critical_Stone_Top - Rate: 100 - - Index: 36 - Item: Critical_Stone_Bottom - Rate: 100 - - Index: 37 + Announced: true + - Index: 8 Item: CastStone_Robe Rate: 40 - - Index: 38 - Item: SuraStone_Top - Rate: 63 - - Index: 39 - Item: SuraStone_Middle - Rate: 63 - - Index: 40 - Item: SuraStone_Bottom - Rate: 63 - - Index: 41 - Item: SuraStone_Robe - Rate: 30 - - Index: 42 - Item: RangerStone_Top - Rate: 63 - - Index: 43 - Item: RangerStone_Middle - Rate: 63 - - Index: 44 - Item: RangerStone_Bottom - Rate: 63 - - Index: 45 - Item: RangerStone_Robe - Rate: 30 - - Index: 46 - Item: SorcererStone_Top - Rate: 63 - - Index: 47 - Item: SorcererStone_Middle - Rate: 63 - - Index: 48 - Item: SorcererStone_Bottom - Rate: 63 - - Index: 49 - Item: SorcererStone_Robe - Rate: 30 - - Index: 50 - Item: RuneknightStone_Top - Rate: 63 - - Index: 51 - Item: RuneknightStone_Middle - Rate: 63 - - Index: 52 - Item: RuneknightStone_Bottom - Rate: 63 - - Index: 53 - Item: RuneknightStone_Robe - Rate: 30 - - Index: 54 - Item: GeneticStone_Robe - Rate: 30 - - Index: 55 - Item: GeneticStone_Top - Rate: 63 - - Index: 56 - Item: GeneticStone_Middle - Rate: 63 - - Index: 57 - Item: GeneticStone_Bottom - Rate: 63 - - Index: 58 - Item: WarlockStone_Top - Rate: 63 - - Index: 59 - Item: WarlockStone_Middle - Rate: 63 - - Index: 60 - Item: WarlockStone_Bottom - Rate: 63 - - Index: 61 - Item: WarlockStone_Robe - Rate: 30 - - Index: 62 - Item: ShadowchaserStone_Top - Rate: 63 - - Index: 63 - Item: ShadowchaseStone_Middle - Rate: 63 - - Index: 64 - Item: ShadowchaseStone_Bottom - Rate: 63 - - Index: 65 - Item: ShadowchaserStone_Robe - Rate: 30 - - Index: 66 - Item: MechanicStone_Top - Rate: 63 - - Index: 67 - Item: MechanicStone_Middle - Rate: 63 - - Index: 68 - Item: MechanicStone_Bottom - Rate: 63 - - Index: 69 - Item: MechanicStone_Robe - Rate: 30 - - Index: 70 - Item: WanderMinstrelStone_Top - Rate: 63 - - Index: 71 - Item: WanderMinstStone_Middle - Rate: 63 - - Index: 72 - Item: WanderMinstStone_Bottom - Rate: 63 - - Index: 73 - Item: WanderMinstreStone_Robe - Rate: 30 - - Index: 74 - Item: HighpriestStone_Top - Rate: 63 - - Index: 75 - Item: HighpriestStone_Middle - Rate: 63 - - Index: 76 - Item: HighpriestStone_Bottom - Rate: 63 - - Index: 77 - Item: ArchbishopStone_Robe - Rate: 30 - - Index: 78 - Item: PaladinStone_Top - Rate: 63 - - Index: 79 - Item: PaladinStone_Middle - Rate: 63 - - Index: 80 - Item: PaladinStone_Bottom - Rate: 63 - - Index: 81 - Item: RoyalguardStone_Robe - Rate: 30 - - Index: 82 - Item: AssacrossStone_Top - Rate: 63 - - Index: 83 - Item: AssacrossStone_Middle - Rate: 63 - - Index: 84 - Item: AssacrossStone_Bottom - Rate: 63 - - Index: 85 - Item: GuillcrossStone_Robe - Rate: 30 - - Index: 86 - Item: SuraStone_Robe2 - Rate: 30 - - Index: 87 - Item: SuraStone_Bottom2 - Rate: 63 - - Index: 88 - Item: SuraStone_Middle2 - Rate: 63 - - Index: 89 - Item: SuraStone_Top2 - Rate: 63 - - Index: 90 - Item: SorcererStone_Robe2 - Rate: 30 - - Index: 91 - Item: SorcererStone_Bottom2 - Rate: 63 - - Index: 92 - Item: SorcererStone_Middle2 - Rate: 63 - - Index: 93 - Item: SorcererStone_Top2 - Rate: 63 - - Index: 94 - Item: ShadowchaserStone_Robe2 - Rate: 30 - - Index: 95 - Item: ShadowchasStone_Bottom2 - Rate: 63 - - Index: 96 - Item: ShadowchasStone_Middle2 - Rate: 63 - - Index: 97 - Item: ShadowchaserStone_Top2 - Rate: 63 - - Index: 98 - Item: SoulreaperStone_Robe - Rate: 30 - - Index: 99 - Item: SoullinkerStone_Top - Rate: 63 - - Index: 100 - Item: SoullinkerStone_Middle - Rate: 63 - - Index: 101 - Item: SoullinkerStone_Bottom - Rate: 63 - - Index: 102 - Item: GladiatorStone_Top - Rate: 63 - - Index: 103 - Item: GladiatorStone_Middle - Rate: 63 - - Index: 104 - Item: GladiatorStone_Bottom - Rate: 63 - - Index: 105 - Item: StaremperorStone_Robe - Rate: 30 - - Index: 106 - Item: NinjaStone_Top - Rate: 63 - - Index: 107 - Item: NinjaStone_Middle - Rate: 63 - - Index: 108 - Item: NinjaStone_Bottom - Rate: 63 - - Index: 109 - Item: KagerouStone_Robe - Rate: 30 - - Index: 110 - Item: OboroStone_Robe - Rate: 30 - - Index: 111 - Item: GunslingerStone_Top - Rate: 63 - - Index: 112 - Item: GunslingerStone_Middle - Rate: 63 - - Index: 113 - Item: GunslingerStone_Bottom - Rate: 63 - - Index: 114 - Item: RebellionStone_Robe - Rate: 30 - - Index: 115 - Item: DoramStone_Top - Rate: 63 - - Index: 116 - Item: DoramStone_Middle - Rate: 63 - - Index: 117 - Item: DoramStone_Bottom - Rate: 63 - - Index: 118 - Item: DoramStone_Robe - Rate: 30 - - Index: 119 - Item: RangerStone_Top2 - Rate: 63 - - Index: 120 - Item: RangerStone_Middle2 - Rate: 63 - - Index: 121 - Item: RangerStone_Bottom2 - Rate: 63 - - Index: 122 - Item: RangerStone_Robe2 - Rate: 30 - - Index: 123 - Item: MechanicStone_Top2 - Rate: 63 - - Index: 124 - Item: MechanicStone_Middle2 - Rate: 63 - - Index: 125 - Item: MechanicStone_Bottom2 - Rate: 63 - - Index: 126 - Item: MechanicStone_Robe2 - Rate: 30 - - Index: 127 - Item: HighpriestStone_Top2 - Rate: 63 - - Index: 128 - Item: HighpriestStone_Middle2 - Rate: 63 - - Index: 129 - Item: HighpriestStone_Bottom2 - Rate: 63 - - Index: 130 - Item: ArchbishopStone_Robe2 - Rate: 30 - - Index: 131 - Item: WarlockStone_Robe2 - Rate: 30 - - Index: 132 - Item: WarlockStone_Top2 - Rate: 63 - - Index: 133 - Item: WarlockStone_Middle2 - Rate: 63 - - Index: 134 - Item: WarlockStone_Bottom2 - Rate: 63 - - Index: 135 - Item: RoyalguardStone_Robe2 - Rate: 30 - - Index: 136 - Item: PaladinStone_Top2 - Rate: 63 - - Index: 137 - Item: PaladinStone_Middle2 - Rate: 63 - - Index: 138 - Item: PaladinStone_Bottom2 - Rate: 63 - - Index: 139 - Item: GuillcrossStone_Robe2 - Rate: 30 - - Index: 140 - Item: AssacrossStone_Top2 - Rate: 63 - - Index: 141 - Item: AssacrossStone_Middle2 - Rate: 63 - - Index: 142 - Item: AssacrossStone_Bottom2 - Rate: 63 - - Index: 143 - Item: RuneknightStone_Robe2 - Rate: 30 - - Index: 144 - Item: RuneknightStone_Top2 - Rate: 63 - - Index: 145 - Item: RuneknightStone_Middle2 - Rate: 63 - - Index: 146 - Item: RuneknightStone_Bottom2 - Rate: 63 - - Index: 147 - Item: GeneticStone_Robe2 - Rate: 30 - - Index: 148 - Item: GeneticStone_Top2 - Rate: 63 - - Index: 149 - Item: GeneticStone_Middle2 - Rate: 63 - - Index: 150 - Item: GeneticStone_Bottom2 - Rate: 63 - - Index: 151 - Item: WanderMinsStone_Robe2 - Rate: 30 - - Index: 152 - Item: WanderMinsStone_Top2 - Rate: 63 - - Index: 153 - Item: WanderMinsStone_Middle2 - Rate: 63 - - Index: 154 - Item: WanderMinsStone_Bottom2 - Rate: 63 - - Index: 155 - Item: Range_Stone_Top - Rate: 100 - - Index: 156 - Item: Range_Stone_Bottom - Rate: 100 - - Index: 157 - Item: Melee_Stone_Top - Rate: 100 - - Index: 158 - Item: Melee_Stone_Middle - Rate: 100 - - Index: 159 - Item: Melee_Stone_Bottom - Rate: 100 - - Index: 160 + Announced: true + - Index: 9 + Item: ShrinkEffect_Bottom + Rate: 40 + Announced: true + - Index: 10 + Item: Greed_Stone + Rate: 40 + Announced: true + - Index: 11 Item: ASPDStone_Robe_D Rate: 15 - - Index: 161 - Item: CastStone_Robe_D - Rate: 20 - - Index: 162 - Item: Melee_Stone_Robe_D - Rate: 7 - - Index: 163 + Announced: true + - Index: 12 Item: HPdrainStone_Robe_D Rate: 15 - - Index: 164 - Item: Magic_Stone_Robe_D - Rate: 7 - - Index: 165 + Announced: true + - Index: 13 + Item: HPdrainStone_Robe + Rate: 30 + - Index: 14 + Item: HPdrainStone_Top + Rate: 30 + - Index: 15 + Item: ASPDStone_Top + Rate: 30 + - Index: 16 + Item: ASPDStone_Robe + Rate: 30 + - Index: 17 + Item: MinorCastingStone_Robe + Rate: 30 + - Index: 18 + Item: SuraStone_Robe + Rate: 30 + - Index: 19 + Item: RangerStone_Robe + Rate: 30 + - Index: 20 + Item: SorcererStone_Robe + Rate: 30 + - Index: 21 + Item: RuneknightStone_Robe + Rate: 30 + - Index: 22 + Item: GeneticStone_Robe + Rate: 30 + - Index: 23 + Item: WarlockStone_Robe + Rate: 30 + - Index: 24 + Item: ShadowchaserStone_Robe + Rate: 30 + - Index: 25 + Item: MechanicStone_Robe + Rate: 30 + - Index: 26 + Item: WanderMinstreStone_Robe + Rate: 30 + - Index: 27 + Item: ArchbishopStone_Robe + Rate: 30 + - Index: 28 + Item: RoyalguardStone_Robe + Rate: 30 + - Index: 29 + Item: GuillcrossStone_Robe + Rate: 30 + - Index: 30 + Item: SuraStone_Robe2 + Rate: 30 + - Index: 31 + Item: SorcererStone_Robe2 + Rate: 30 + - Index: 32 + Item: ShadowchaserStone_Robe2 + Rate: 30 + - Index: 33 + Item: WaterFieldEffect_Bottom + Rate: 30 + - Index: 34 + Item: ElectricEffect_Middle + Rate: 30 + - Index: 35 + Item: SoulreaperStone_Robe + Rate: 30 + - Index: 36 + Item: StaremperorStone_Robe + Rate: 30 + - Index: 37 + Item: KagerouStone_Robe + Rate: 30 + - Index: 38 + Item: OboroStone_Robe + Rate: 30 + - Index: 39 + Item: RebellionStone_Robe + Rate: 30 + - Index: 40 + Item: DoramStone_Robe + Rate: 30 + - Index: 41 + Item: RangerStone_Robe2 + Rate: 30 + - Index: 42 + Item: MechanicStone_Robe2 + Rate: 30 + - Index: 43 + Item: ArchbishopStone_Robe2 + Rate: 30 + - Index: 44 + Item: WarlockStone_Robe2 + Rate: 30 + - Index: 45 + Item: RoyalguardStone_Robe2 + Rate: 30 + - Index: 46 + Item: GuillcrossStone_Robe2 + Rate: 30 + - Index: 47 + Item: RuneknightStone_Robe2 + Rate: 30 + - Index: 48 + Item: GeneticStone_Robe2 + Rate: 30 + - Index: 49 + Item: WanderMinsStone_Robe2 + Rate: 30 + - Index: 50 + Item: Range_Stone + Rate: 100 + - Index: 51 + Item: EXPStone_Middle + Rate: 100 + - Index: 52 + Item: EXPStone_Bottom + Rate: 100 + - Index: 53 + Item: EXPStone_Top + Rate: 100 + - Index: 54 + Item: CastingStone_Bottom + Rate: 100 + - Index: 55 + Item: CastingStone_Middle + Rate: 100 + - Index: 56 + Item: CastingStone_Top + Rate: 100 + - Index: 57 + Item: ATKStone_Top + Rate: 100 + - Index: 58 + Item: ATKStone_Middle + Rate: 100 + - Index: 59 + Item: ATKStone_Bottom + Rate: 100 + - Index: 60 + Item: MATKStone_Top + Rate: 100 + - Index: 61 + Item: MATKStone_Middle + Rate: 100 + - Index: 62 + Item: MATKStone_Bottom + Rate: 100 + - Index: 63 + Item: Critical_Stone + Rate: 100 + - Index: 64 + Item: Critical_Stone_Top + Rate: 100 + - Index: 65 + Item: Critical_Stone_Bottom + Rate: 100 + - Index: 66 + Item: PinkGlowEffect_Middle + Rate: 100 + - Index: 67 + Item: BlueAuraEffect_Middle + Rate: 100 + - Index: 68 + Item: GreenFloor_Bottom + Rate: 100 + - Index: 69 + Item: ExplodingEffect_Middle + Rate: 100 + - Index: 70 + Item: ReloadStone_Top + Rate: 100 + - Index: 71 + Item: ReloadStone_Middle + Rate: 100 + - Index: 72 + Item: ReloadStone_Bottom + Rate: 100 + - Index: 73 + Item: Range_Stone_Top + Rate: 100 + - Index: 74 + Item: Range_Stone_Bottom + Rate: 100 + - Index: 75 + Item: Melee_Stone_Top + Rate: 100 + - Index: 76 + Item: Melee_Stone_Middle + Rate: 100 + - Index: 77 + Item: Melee_Stone_Bottom + Rate: 100 + - Index: 78 Item: Magic_Stone_Top Rate: 100 - - Index: 166 + - Index: 79 Item: Magic_Stone_Middle Rate: 100 - - Index: 167 + - Index: 80 Item: Magic_Stone_Bottom Rate: 100 + - Index: 81 + Item: SuraStone_Top + Rate: 63 + - Index: 82 + Item: SuraStone_Middle + Rate: 63 + - Index: 83 + Item: SuraStone_Bottom + Rate: 63 + - Index: 84 + Item: RangerStone_Top + Rate: 63 + - Index: 85 + Item: RangerStone_Middle + Rate: 63 + - Index: 86 + Item: RangerStone_Bottom + Rate: 63 + - Index: 87 + Item: SorcererStone_Top + Rate: 63 + - Index: 88 + Item: SorcererStone_Middle + Rate: 63 + - Index: 89 + Item: SorcererStone_Bottom + Rate: 63 + - Index: 90 + Item: RuneknightStone_Top + Rate: 63 + - Index: 91 + Item: RuneknightStone_Middle + Rate: 63 + - Index: 92 + Item: RuneknightStone_Bottom + Rate: 63 + - Index: 93 + Item: GeneticStone_Top + Rate: 63 + - Index: 94 + Item: GeneticStone_Middle + Rate: 63 + - Index: 95 + Item: GeneticStone_Bottom + Rate: 63 + - Index: 96 + Item: WarlockStone_Top + Rate: 63 + - Index: 97 + Item: WarlockStone_Middle + Rate: 63 + - Index: 98 + Item: WarlockStone_Bottom + Rate: 63 + - Index: 99 + Item: ShadowchaserStone_Top + Rate: 63 + - Index: 100 + Item: ShadowchaseStone_Middle + Rate: 63 + - Index: 101 + Item: ShadowchaseStone_Bottom + Rate: 63 + - Index: 102 + Item: MechanicStone_Top + Rate: 63 + - Index: 103 + Item: MechanicStone_Middle + Rate: 63 + - Index: 104 + Item: MechanicStone_Bottom + Rate: 63 + - Index: 105 + Item: WanderMinstrelStone_Top + Rate: 63 + - Index: 106 + Item: WanderMinstStone_Middle + Rate: 63 + - Index: 107 + Item: WanderMinstStone_Bottom + Rate: 63 + - Index: 108 + Item: HighpriestStone_Top + Rate: 63 + - Index: 109 + Item: HighpriestStone_Middle + Rate: 63 + - Index: 110 + Item: HighpriestStone_Bottom + Rate: 63 + - Index: 111 + Item: PaladinStone_Top + Rate: 63 + - Index: 112 + Item: PaladinStone_Middle + Rate: 63 + - Index: 113 + Item: PaladinStone_Bottom + Rate: 63 + - Index: 114 + Item: AssacrossStone_Top + Rate: 63 + - Index: 115 + Item: AssacrossStone_Middle + Rate: 63 + - Index: 116 + Item: AssacrossStone_Bottom + Rate: 63 + - Index: 117 + Item: SuraStone_Top2 + Rate: 63 + - Index: 118 + Item: SuraStone_Middle2 + Rate: 63 + - Index: 119 + Item: SuraStone_Bottom2 + Rate: 63 + - Index: 120 + Item: SorcererStone_Top2 + Rate: 63 + - Index: 121 + Item: SorcererStone_Middle2 + Rate: 63 + - Index: 122 + Item: SorcererStone_Bottom2 + Rate: 63 + - Index: 123 + Item: ShadowchaserStone_Top2 + Rate: 63 + - Index: 124 + Item: ShadowchasStone_Middle2 + Rate: 63 + - Index: 125 + Item: ShadowchasStone_Bottom2 + Rate: 63 + - Index: 126 + Item: SoullinkerStone_Top + Rate: 63 + - Index: 127 + Item: SoullinkerStone_Middle + Rate: 63 + - Index: 128 + Item: SoullinkerStone_Bottom + Rate: 63 + - Index: 129 + Item: GladiatorStone_Top + Rate: 63 + - Index: 130 + Item: GladiatorStone_Middle + Rate: 63 + - Index: 131 + Item: GladiatorStone_Bottom + Rate: 63 + - Index: 132 + Item: NinjaStone_Top + Rate: 63 + - Index: 133 + Item: NinjaStone_Middle + Rate: 63 + - Index: 134 + Item: NinjaStone_Bottom + Rate: 63 + - Index: 135 + Item: GunslingerStone_Top + Rate: 63 + - Index: 136 + Item: GunslingerStone_Middle + Rate: 63 + - Index: 137 + Item: GunslingerStone_Bottom + Rate: 63 + - Index: 138 + Item: DoramStone_Top + Rate: 63 + - Index: 139 + Item: DoramStone_Middle + Rate: 63 + - Index: 140 + Item: DoramStone_Bottom + Rate: 63 + - Index: 141 + Item: RangerStone_Top2 + Rate: 63 + - Index: 142 + Item: RangerStone_Middle2 + Rate: 63 + - Index: 143 + Item: RangerStone_Bottom2 + Rate: 63 + - Index: 144 + Item: MechanicStone_Top2 + Rate: 63 + - Index: 145 + Item: MechanicStone_Middle2 + Rate: 63 + - Index: 146 + Item: MechanicStone_Bottom2 + Rate: 63 + - Index: 147 + Item: HighpriestStone_Top2 + Rate: 63 + - Index: 148 + Item: HighpriestStone_Middle2 + Rate: 63 + - Index: 149 + Item: HighpriestStone_Bottom2 + Rate: 63 + - Index: 150 + Item: WarlockStone_Top2 + Rate: 63 + - Index: 151 + Item: WarlockStone_Middle2 + Rate: 63 + - Index: 152 + Item: WarlockStone_Bottom2 + Rate: 63 + - Index: 153 + Item: PaladinStone_Top2 + Rate: 63 + - Index: 154 + Item: PaladinStone_Middle2 + Rate: 63 + - Index: 155 + Item: PaladinStone_Bottom2 + Rate: 63 + - Index: 156 + Item: AssacrossStone_Top2 + Rate: 63 + - Index: 157 + Item: AssacrossStone_Middle2 + Rate: 63 + - Index: 158 + Item: AssacrossStone_Bottom2 + Rate: 63 + - Index: 159 + Item: RuneknightStone_Top2 + Rate: 63 + - Index: 160 + Item: RuneknightStone_Middle2 + Rate: 63 + - Index: 161 + Item: RuneknightStone_Bottom2 + Rate: 63 + - Index: 162 + Item: GeneticStone_Top2 + Rate: 63 + - Index: 163 + Item: GeneticStone_Middle2 + Rate: 63 + - Index: 164 + Item: GeneticStone_Bottom2 + Rate: 63 + - Index: 165 + Item: WanderMinsStone_Top2 + Rate: 63 + - Index: 166 + Item: WanderMinsStone_Middle2 + Rate: 63 + - Index: 167 + Item: WanderMinsStone_Bottom2 + Rate: 63 - Group: C_GIANT_FLY_1DAY_BOX__ SubGroups: - SubGroup: 0 @@ -67149,47 +72151,48 @@ Body: - Index: 0 Item: C_Wing_Of_Fly Duration: 4320 + UniqueId: true - Group: PHYMAG_SHADOW_BOX SubGroups: - SubGroup: 1 List: - Index: 0 Item: S_Physical_Earring - Rate: 1667 + Rate: 1 - Index: 1 Item: S_Physical_Weapon - Rate: 1667 + Rate: 1 - Index: 2 Item: S_Physical_Pendant - Rate: 1667 + Rate: 1 - Index: 3 Item: S_Magical_Earring - Rate: 1667 + Rate: 1 - Index: 4 Item: S_Magical_Weapon - Rate: 1667 + Rate: 1 - Index: 5 Item: S_Magical_Pendant - Rate: 1667 + Rate: 1 - Group: S_DUAL_STONE_BOX SubGroups: - SubGroup: 1 List: - Index: 0 - Item: ASPDStone_Robe_D - Rate: 3600 - - Index: 1 - Item: CastStone_Robe_D - Rate: 1800 - - Index: 2 Item: Melee_Stone_Robe_D - Rate: 500 - - Index: 3 - Item: HPdrainStone_Robe_D - Rate: 3600 - - Index: 4 + Rate: 5 + - Index: 1 Item: Magic_Stone_Robe_D - Rate: 500 + Rate: 5 + - Index: 2 + Item: CastStone_Robe_D + Rate: 18 + - Index: 3 + Item: ASPDStone_Robe_D + Rate: 36 + - Index: 4 + Item: HPdrainStone_Robe_D + Rate: 36 - Group: S_COSTUME_BOX SubGroups: - SubGroup: 0 @@ -67197,53 +72200,53 @@ Body: - Index: 0 Item: C_Forest_Guide - Index: 1 - Item: C_Demons_Familiar_K - - Index: 2 Item: C_L_Knitting_Low_Twin_W - - Index: 3 + - Index: 2 Item: C_Scepter + - Index: 3 + Item: C_Demons_Familiar_K - Group: GM_LOST_BAGPACK SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Blacksmith_Blessing - Rate: 120 + Item: Exotic_Bob_Box + Rate: 1 - Index: 1 - Item: Yggdrasil_Seed_Box_ - Rate: 1700 + Item: Blacksmith_Blessing + Rate: 12 - Index: 2 Item: Shadow_Refine_Hammer - Rate: 120 + Rate: 12 - Index: 3 - Item: E_Wing_Of_Fly_3Day_Box - Rate: 1700 + Item: Lapine_DdukddakBox3 + Rate: 25 - Index: 4 - Item: World_Tour_Ticket - Rate: 1700 - Amount: 10 - - Index: 5 - Item: Shadowdecon_Ore - Rate: 1700 - Amount: 20 - - Index: 6 - Item: Shadowdecon - Rate: 500 + Item: Zelunium + Rate: 50 Amount: 3 - - Index: 7 + - Index: 5 + Item: Shadowdecon + Rate: 50 + Amount: 3 + - Index: 6 Item: Zelunium_Ore - Rate: 1700 + Rate: 170 + Amount: 20 + - Index: 7 + Item: Shadowdecon_Ore + Rate: 170 Amount: 20 - Index: 8 - Item: Zelunium - Rate: 500 - Amount: 3 + Item: E_Wing_Of_Fly_3Day_Box + Rate: 170 - Index: 9 - Item: GM_Lost_Bagpack - Rate: 10 + Item: Yggdrasil_Seed_Box_ + Rate: 170 - Index: 10 - Item: GM_Lost_Bagpack - Rate: 250 + Item: World_Tour_Ticket + Rate: 170 + Amount: 10 - Group: E_POTION_BOX SubGroups: - SubGroup: 0 @@ -67269,74 +72272,80 @@ Body: - SubGroup: 1 List: - Index: 0 - Item: Blacksmith_Blessing - Rate: 15 + Item: Comp_Small_Mana_Potion + Rate: 250 - Index: 1 - Item: Harvest_Cookie - Rate: 2670 - Amount: 10 + Item: C_Autumnal_Flavor + Rate: 100 - Index: 2 - Item: E_Med_Life_Potion - Rate: 250 - Amount: 2 + Item: C_Harvest_Festa_Hat + Rate: 100 - Index: 3 - Item: E_Small_Life_Potion - Rate: 300 - Amount: 2 + Item: C_Turkey_Hat + Rate: 100 - Index: 4 - Item: Korea_Rice_Cake_B - Rate: 1100 - Amount: 5 + Item: C_Sweet_Potato_In_Mouth + Rate: 100 - Index: 5 - Item: Sesame_Pastry_B - Rate: 1100 - Amount: 2 - - Index: 6 - Item: Honey_Pastry_B - Rate: 1100 - Amount: 2 - - Index: 7 - Item: BraisedShortRibs - Rate: 200 - - Index: 8 - Item: BraisedSpareribs - Rate: 200 - - Index: 9 - Item: Grilled_Turkey - Rate: 950 - Amount: 3 - - Index: 10 - Item: Comp_Power_Booster - Rate: 250 - Amount: 2 - - Index: 11 Item: Comp_Almighty Rate: 250 Amount: 2 - - Index: 12 - Item: K_Secret_Key - Rate: 15 - - Index: 13 - Item: Shadowdecon_Ore - Rate: 500 - - Index: 14 + - Index: 6 + Item: Comp_Power_Booster + Rate: 250 + Amount: 2 + - Index: 7 Item: Shadowdecon Rate: 150 - - Index: 15 - Item: Zelunium_Ore - Rate: 500 - - Index: 16 + - Index: 8 Item: Zelunium Rate: 150 + - Index: 9 + Item: E_Med_Life_Potion + Rate: 250 + Amount: 2 + - Index: 10 + Item: E_Small_Life_Potion + Rate: 300 + Amount: 2 + - Index: 11 + Item: Grilled_Turkey + Rate: 950 + Amount: 3 + - Index: 12 + Item: BraisedSpareribs + Rate: 200 + - Index: 13 + Item: BraisedShortRibs + Rate: 200 + - Index: 14 + Item: Korea_Rice_Cake_B + Rate: 1100 + Amount: 5 + - Index: 15 + Item: Sesame_Pastry_B + Rate: 1100 + Amount: 2 + - Index: 16 + Item: Honey_Pastry_B + Rate: 1100 + Amount: 2 - Index: 17 - Item: C_Harvest_Festa_Hat - Rate: 100 + Item: Shadowdecon_Ore + Rate: 500 - Index: 18 - Item: C_Autumnal_Flavor - Rate: 100 + Item: Zelunium_Ore + Rate: 500 - Index: 19 - Item: C_Turkey_Hat + Item: Harvest_Cookie + Rate: 2249 + Amount: 10 + - Index: 20 + Item: Lobster_Hat Rate: 100 + - Index: 21 + Item: Refine_Guarantee + Rate: 1 - Group: S_IGNITION_CUBE SubGroups: - SubGroup: 0 @@ -67344,29 +72353,31 @@ Body: - Index: 0 Item: S_Ignition_Weapon - Index: 1 - Item: S_Ignition_Pendant - - Index: 2 Item: S_Ignition_Earing + - Index: 2 + Item: S_Ignition_Pendant - Group: LI_HD_ORIDECON_BOX2 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Blacksmith_Blessing - Amount: 3 - - Index: 1 Item: LI_HD_Oridecon Amount: 30 + UniqueId: true + - Index: 1 + Item: Blacksmith_Blessing + Amount: 3 - Group: LI_HD_ELUNIUM_BOX2 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Blacksmith_Blessing - Amount: 3 - - Index: 1 Item: LI_HD_Elunium Amount: 30 + UniqueId: true + - Index: 1 + Item: Blacksmith_Blessing + Amount: 3 - Group: LI_HD_BRADIUMBOX2 SubGroups: - SubGroup: 0 @@ -67382,11 +72393,12 @@ Body: - SubGroup: 0 List: - Index: 0 - Item: Blacksmith_Blessing - Amount: 3 - - Index: 1 Item: LI_HD_Carnium Amount: 30 + UniqueId: true + - Index: 1 + Item: Blacksmith_Blessing + Amount: 3 - Group: LI_NYANGVINE_BOX100 SubGroups: - SubGroup: 0 @@ -67402,8 +72414,8 @@ Body: - SubGroup: 0 List: - Index: 0 - Item: Mysterious_Water - Amount: 100 + Item: Small_Mana_Potion + Amount: 50 - Index: 1 Item: Small_Life_Potion Amount: 100 @@ -67411,8 +72423,8 @@ Body: Item: Med_Life_Potion Amount: 100 - Index: 3 - Item: Small_Mana_Potion - Amount: 50 + Item: Mysterious_Water + Amount: 100 - Index: 4 Item: K_Secret_Key Amount: 13 @@ -67431,14 +72443,14 @@ Body: Item: Nyangvine_Fruit Amount: 100 - Index: 1 - Item: Mysterious_Water - Amount: 200 - - Index: 2 Item: Small_Life_Potion Amount: 200 - - Index: 3 + - Index: 2 Item: Med_Life_Potion Amount: 200 + - Index: 3 + Item: Mysterious_Water + Amount: 200 - Group: STONE_COIN_PACKAGEIII SubGroups: - SubGroup: 0 @@ -67447,14 +72459,14 @@ Body: Item: Nyangvine_Fruit Amount: 200 - Index: 1 - Item: Small_Mana_Potion - Amount: 50 + Item: Infinity_Drink + Amount: 100 - Index: 2 Item: M_DEFScroll Amount: 300 - Index: 3 - Item: Infinity_Drink - Amount: 100 + Item: Small_Mana_Potion + Amount: 50 - Group: A_HD_ELUNIUM_BOX SubGroups: - SubGroup: 0 @@ -67462,9 +72474,11 @@ Body: - Index: 0 Item: HD_Elunium Amount: 26 + UniqueId: true - Index: 1 Item: Mental_Potion Amount: 6 + UniqueId: true - Index: 2 Item: K_Secret_Key Amount: 11 @@ -67475,9 +72489,11 @@ Body: - Index: 0 Item: HD_Oridecon Amount: 26 + UniqueId: true - Index: 1 Item: Mental_Potion Amount: 6 + UniqueId: true - Index: 2 Item: K_Secret_Key Amount: 11 @@ -67488,9 +72504,11 @@ Body: - Index: 0 Item: HD_Carnium Amount: 26 + UniqueId: true - Index: 1 Item: Mental_Potion Amount: 6 + UniqueId: true - Index: 2 Item: K_Secret_Key Amount: 11 @@ -67501,9 +72519,11 @@ Body: - Index: 0 Item: HD_Bradium Amount: 26 + UniqueId: true - Index: 1 Item: Mental_Potion Amount: 6 + UniqueId: true - Index: 2 Item: K_Secret_Key Amount: 11 @@ -67514,6 +72534,7 @@ Body: - Index: 0 Item: Battle_Manual Amount: 40 + UniqueId: true - Index: 1 Item: Battle_Manual100 Amount: 5 @@ -67538,14 +72559,14 @@ Body: Item: Nyangvine_Fruit Amount: 100 - Index: 1 - Item: Mysterious_Water - Amount: 200 - - Index: 2 Item: Small_Life_Potion Amount: 200 - - Index: 3 + - Index: 2 Item: Med_Life_Potion Amount: 200 + - Index: 3 + Item: Mysterious_Water + Amount: 200 - Index: 4 Item: K_Secret_Key Amount: 22 @@ -67557,14 +72578,14 @@ Body: Item: Nyangvine_Fruit Amount: 200 - Index: 1 - Item: Small_Mana_Potion - Amount: 50 + Item: Infinity_Drink + Amount: 100 - Index: 2 Item: M_DEFScroll Amount: 300 - Index: 3 - Item: Infinity_Drink - Amount: 100 + Item: Small_Mana_Potion + Amount: 50 - Index: 4 Item: K_Secret_Key Amount: 44 @@ -67575,6 +72596,7 @@ Body: - Index: 0 Item: LI_HD_Oridecon Amount: 30 + UniqueId: true - Index: 1 Item: Shadow_Refine_Hammer Amount: 3 @@ -67585,6 +72607,7 @@ Body: - Index: 0 Item: LI_HD_Elunium Amount: 30 + UniqueId: true - Index: 1 Item: Shadow_Refine_Hammer Amount: 3 @@ -67603,17 +72626,19 @@ Body: - SubGroup: 0 List: - Index: 0 - Item: Blacksmith_Blessing - Amount: 10 + Item: Enriched_Oridecon + Amount: 100 + UniqueId: true - Index: 1 Item: Enriched_Elunium Amount: 100 + UniqueId: true - Index: 2 - Item: Enriched_Oridecon - Amount: 100 - - Index: 3 Item: K_Secret_Key Amount: 20 + - Index: 3 + Item: Blacksmith_Blessing + Amount: 10 - Group: LI_A_HD_ELUNIUM_BOX SubGroups: - SubGroup: 0 @@ -67621,15 +72646,17 @@ Body: - Index: 0 Item: HD_Elunium Amount: 52 + UniqueId: true - Index: 1 - Item: Blacksmith_Blessing - Amount: 10 - - Index: 2 Item: Mental_Potion Amount: 12 - - Index: 3 + UniqueId: true + - Index: 2 Item: K_Secret_Key Amount: 20 + - Index: 3 + Item: Blacksmith_Blessing + Amount: 10 - Group: LI_A_HD_ORIDECON_BOX SubGroups: - SubGroup: 0 @@ -67637,15 +72664,17 @@ Body: - Index: 0 Item: HD_Oridecon Amount: 52 + UniqueId: true - Index: 1 - Item: Blacksmith_Blessing - Amount: 10 - - Index: 2 Item: Mental_Potion Amount: 12 - - Index: 3 + UniqueId: true + - Index: 2 Item: K_Secret_Key Amount: 20 + - Index: 3 + Item: Blacksmith_Blessing + Amount: 10 - Group: LI_A_HD_CARNIUM_BOX SubGroups: - SubGroup: 0 @@ -67653,15 +72682,17 @@ Body: - Index: 0 Item: HD_Carnium Amount: 52 + UniqueId: true - Index: 1 - Item: Blacksmith_Blessing - Amount: 10 - - Index: 2 Item: Mental_Potion Amount: 12 - - Index: 3 + UniqueId: true + - Index: 2 Item: K_Secret_Key Amount: 20 + - Index: 3 + Item: Blacksmith_Blessing + Amount: 10 - Group: LI_A_HD_BRADIUM_BOX SubGroups: - SubGroup: 0 @@ -67669,15 +72700,17 @@ Body: - Index: 0 Item: HD_Bradium Amount: 52 + UniqueId: true - Index: 1 - Item: Blacksmith_Blessing - Amount: 10 - - Index: 2 Item: Mental_Potion Amount: 12 - - Index: 3 + UniqueId: true + - Index: 2 Item: K_Secret_Key Amount: 20 + - Index: 3 + Item: Blacksmith_Blessing + Amount: 10 - Group: THANOS_UPGRADE_PACKAGE SubGroups: - SubGroup: 0 @@ -67698,23 +72731,23 @@ Body: - SubGroup: 0 List: - Index: 0 - Item: Nyangvine_Fruit - Amount: 100 - - Index: 1 - Item: Mysterious_Water - Amount: 200 - - Index: 2 - Item: Small_Life_Potion - Amount: 200 - - Index: 3 - Item: Med_Life_Potion - Amount: 200 - - Index: 4 Item: Small_Mana_Potion Amount: 175 - - Index: 5 + - Index: 1 Item: M_DEFScroll Amount: 300 + - Index: 2 + Item: Mysterious_Water + Amount: 200 + - Index: 3 + Item: Small_Life_Potion + Amount: 200 + - Index: 4 + Item: Med_Life_Potion + Amount: 200 + - Index: 5 + Item: Nyangvine_Fruit + Amount: 100 - Index: 6 Item: Hero_Weapon_Up_Box_1 - Group: HERO_UP_PACKAGE_2 @@ -67722,23 +72755,23 @@ Body: - SubGroup: 0 List: - Index: 0 - Item: Nyangvine_Fruit - Amount: 100 - - Index: 1 - Item: Mysterious_Water - Amount: 200 - - Index: 2 - Item: Small_Life_Potion - Amount: 200 - - Index: 3 - Item: Med_Life_Potion - Amount: 200 - - Index: 4 Item: Small_Mana_Potion Amount: 175 - - Index: 5 + - Index: 1 Item: M_DEFScroll Amount: 300 + - Index: 2 + Item: Mysterious_Water + Amount: 200 + - Index: 3 + Item: Small_Life_Potion + Amount: 200 + - Index: 4 + Item: Med_Life_Potion + Amount: 200 + - Index: 5 + Item: Nyangvine_Fruit + Amount: 100 - Index: 6 Item: Hero_Weapon_Up_Box_2 - Group: HERO_HAMMER_PACKAGE_1 @@ -67746,20 +72779,20 @@ Body: - SubGroup: 0 List: - Index: 0 - Item: Mysterious_Water - Amount: 200 - - Index: 1 - Item: Small_Life_Potion - Amount: 200 - - Index: 2 - Item: Med_Life_Potion - Amount: 200 - - Index: 3 Item: Small_Mana_Potion Amount: 50 - - Index: 4 + - Index: 1 Item: M_DEFScroll Amount: 300 + - Index: 2 + Item: Mysterious_Water + Amount: 200 + - Index: 3 + Item: Small_Life_Potion + Amount: 200 + - Index: 4 + Item: Med_Life_Potion + Amount: 200 - Index: 5 Item: Hero_Weapon_Hammer_1 - Group: HERO_HAMMER_PACKAGE_2 @@ -67767,20 +72800,20 @@ Body: - SubGroup: 0 List: - Index: 0 - Item: Mysterious_Water - Amount: 200 - - Index: 1 - Item: Small_Life_Potion - Amount: 200 - - Index: 2 - Item: Med_Life_Potion - Amount: 200 - - Index: 3 Item: Small_Mana_Potion Amount: 50 - - Index: 4 + - Index: 1 Item: M_DEFScroll Amount: 300 + - Index: 2 + Item: Mysterious_Water + Amount: 200 + - Index: 3 + Item: Small_Life_Potion + Amount: 200 + - Index: 4 + Item: Med_Life_Potion + Amount: 200 - Index: 5 Item: Hero_Weapon_Hammer_2 - Group: HERO_UP_PACKAGE_3 @@ -67788,23 +72821,23 @@ Body: - SubGroup: 0 List: - Index: 0 - Item: Nyangvine_Fruit - Amount: 100 - - Index: 1 - Item: Mysterious_Water - Amount: 200 - - Index: 2 - Item: Small_Life_Potion - Amount: 200 - - Index: 3 - Item: Med_Life_Potion - Amount: 200 - - Index: 4 Item: Small_Mana_Potion Amount: 175 - - Index: 5 + - Index: 1 Item: M_DEFScroll Amount: 300 + - Index: 2 + Item: Mysterious_Water + Amount: 200 + - Index: 3 + Item: Small_Life_Potion + Amount: 200 + - Index: 4 + Item: Med_Life_Potion + Amount: 200 + - Index: 5 + Item: Nyangvine_Fruit + Amount: 100 - Index: 6 Item: Hero_Weapon_Up_Box_3 - Group: HERO_HAMMER_PACKAGE_3 @@ -67812,20 +72845,20 @@ Body: - SubGroup: 0 List: - Index: 0 - Item: Mysterious_Water - Amount: 200 - - Index: 1 - Item: Small_Life_Potion - Amount: 200 - - Index: 2 - Item: Med_Life_Potion - Amount: 200 - - Index: 3 Item: Small_Mana_Potion Amount: 50 - - Index: 4 + - Index: 1 Item: M_DEFScroll Amount: 300 + - Index: 2 + Item: Mysterious_Water + Amount: 200 + - Index: 3 + Item: Small_Life_Potion + Amount: 200 + - Index: 4 + Item: Med_Life_Potion + Amount: 200 - Index: 5 Item: Hero_Weapon_Hammer_3 - Group: EXP_DROP_UP_BOX @@ -67839,20 +72872,20 @@ Body: - SubGroup: 0 List: - Index: 0 - Item: Mysterious_Water - Amount: 200 - - Index: 1 - Item: Small_Life_Potion - Amount: 200 - - Index: 2 - Item: Med_Life_Potion - Amount: 200 - - Index: 3 Item: Small_Mana_Potion Amount: 50 - - Index: 4 + - Index: 1 Item: M_DEFScroll Amount: 300 + - Index: 2 + Item: Mysterious_Water + Amount: 200 + - Index: 3 + Item: Small_Life_Potion + Amount: 200 + - Index: 4 + Item: Med_Life_Potion + Amount: 200 - Index: 5 Item: Hero_Weapon_Hammer_4 - Group: HERO_UP_PACKAGE_4 @@ -67860,23 +72893,23 @@ Body: - SubGroup: 0 List: - Index: 0 - Item: Nyangvine_Fruit - Amount: 100 - - Index: 1 - Item: Mysterious_Water - Amount: 200 - - Index: 2 - Item: Small_Life_Potion - Amount: 200 - - Index: 3 - Item: Med_Life_Potion - Amount: 200 - - Index: 4 Item: Small_Mana_Potion Amount: 175 - - Index: 5 + - Index: 1 Item: M_DEFScroll Amount: 300 + - Index: 2 + Item: Mysterious_Water + Amount: 200 + - Index: 3 + Item: Small_Life_Potion + Amount: 200 + - Index: 4 + Item: Med_Life_Potion + Amount: 200 + - Index: 5 + Item: Nyangvine_Fruit + Amount: 100 - Index: 6 Item: Hero_Weapon_Up_Box_4 - Group: LI_NYANGVINE_STONE_BOX2 @@ -67894,23 +72927,23 @@ Body: - SubGroup: 0 List: - Index: 0 - Item: Nyangvine_Fruit - Amount: 100 - - Index: 1 - Item: Mysterious_Water - Amount: 200 - - Index: 2 - Item: Small_Life_Potion - Amount: 200 - - Index: 3 - Item: Med_Life_Potion - Amount: 200 - - Index: 4 Item: Small_Mana_Potion Amount: 175 - - Index: 5 + - Index: 1 Item: M_DEFScroll Amount: 300 + - Index: 2 + Item: Mysterious_Water + Amount: 200 + - Index: 3 + Item: Small_Life_Potion + Amount: 200 + - Index: 4 + Item: Med_Life_Potion + Amount: 200 + - Index: 5 + Item: Nyangvine_Fruit + Amount: 100 - Index: 6 Item: Hero_Weapon_Up_Box_5 - Group: COSTUMEMILEAGE_PACKAGE1 @@ -67950,10 +72983,10 @@ Body: Item: Evt_Cos_Coin Amount: 50 - Index: 2 - Item: Enchant_Stone_Box23 + Item: Enchant_Stone_Box24 Amount: 10 - Index: 3 - Item: Enchant_Stone_Box24 + Item: Enchant_Stone_Box23 Amount: 10 - Group: MINUS_STATUS_BOX SubGroups: @@ -67992,11 +73025,11 @@ Body: - SubGroup: 0 List: - Index: 0 - Item: S_W_Breath_Armor - - Index: 1 Item: S_W_Breath_Shield - - Index: 2 + - Index: 1 Item: S_W_Breath_Shoes + - Index: 2 + Item: S_W_Breath_Armor - Group: S_F_BREATH_CUBE SubGroups: - SubGroup: 0 @@ -68004,19 +73037,19 @@ Body: - Index: 0 Item: S_F_Breath_Weapon - Index: 1 - Item: S_F_Breath_Pendant - - Index: 2 Item: S_F_Breath_Earing + - Index: 2 + Item: S_F_Breath_Pendant - Group: S_SONIC_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Sonic_Armor - - Index: 1 Item: S_Sonic_Shield - - Index: 2 + - Index: 1 Item: S_Sonic_Shoes + - Index: 2 + Item: S_Sonic_Armor - Group: S_STRAIN_CUBE SubGroups: - SubGroup: 0 @@ -68024,19 +73057,19 @@ Body: - Index: 0 Item: S_Strain_Weapon - Index: 1 - Item: S_Strain_Pendant - - Index: 2 Item: S_Strain_Earing + - Index: 2 + Item: S_Strain_Pendant - Group: S_JACK_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Jack_Armor - - Index: 1 Item: S_Jack_Shield - - Index: 2 + - Index: 1 Item: S_Jack_Shoes + - Index: 2 + Item: S_Jack_Armor - Group: S_CHAIN_CUBE SubGroups: - SubGroup: 0 @@ -68044,29 +73077,29 @@ Body: - Index: 0 Item: S_Chain_Weapon - Index: 1 - Item: S_Chain_Pendant - - Index: 2 Item: S_Chain_Earing + - Index: 2 + Item: S_Chain_Pendant - Group: S_CRIMSON_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Crimson_Armor + Item: S_Crimson_Shoes - Index: 1 Item: S_Crimson_Shield - Index: 2 - Item: S_Crimson_Shoes + Item: S_Crimson_Armor - Group: S_VULCAN_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Vulcan_Armor - - Index: 1 Item: S_Vulcan_Shield - - Index: 2 + - Index: 1 Item: S_Vulcan_Shoes + - Index: 2 + Item: S_Vulcan_Armor - Group: S_BOOMERANG_CUBE SubGroups: - SubGroup: 0 @@ -68074,9 +73107,9 @@ Body: - Index: 0 Item: S_Boomerang_Weapon - Index: 1 - Item: S_Boomerang_Pendant - - Index: 2 Item: S_Boomerang_Earing + - Index: 2 + Item: S_Boomerang_Pendant - Group: S_ARMS_CUBE SubGroups: - SubGroup: 0 @@ -68084,29 +73117,29 @@ Body: - Index: 0 Item: S_Arms_Weapon - Index: 1 - Item: S_Arms_Pendant - - Index: 2 Item: S_Arms_Earing + - Index: 2 + Item: S_Arms_Pendant - Group: S_TORNADO_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Tornado_Armor - - Index: 1 Item: S_Tornado_Shield - - Index: 2 + - Index: 1 Item: S_Tornado_Shoes + - Index: 2 + Item: S_Tornado_Armor - Group: S_DUPLELIGHT_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Duplelight_Armor - - Index: 1 Item: S_Duplelight_Shield - - Index: 2 + - Index: 1 Item: S_Duplelight_Shoes + - Index: 2 + Item: S_Duplelight_Armor - Group: S_MAGNUS_CUBE SubGroups: - SubGroup: 0 @@ -68114,9 +73147,9 @@ Body: - Index: 0 Item: S_Magnus_Weapon - Index: 1 - Item: S_Magnus_Pendant - - Index: 2 Item: S_Magnus_Earing + - Index: 2 + Item: S_Magnus_Pendant - Group: S_ADORAMUS_CUBE SubGroups: - SubGroup: 0 @@ -68124,29 +73157,29 @@ Body: - Index: 0 Item: S_Adoramus_Weapon - Index: 1 - Item: S_Adoramus_Pendant - - Index: 2 Item: S_Adoramus_Earing + - Index: 2 + Item: S_Adoramus_Pendant - Group: S_JUDEX_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Judex_Armor - - Index: 1 Item: S_Judex_Shield - - Index: 2 + - Index: 1 Item: S_Judex_Shoes + - Index: 2 + Item: S_Judex_Armor - Group: S_ROLLING_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Rolling_Armor - - Index: 1 Item: S_Rolling_Shield - - Index: 2 + - Index: 1 Item: S_Rolling_Shoes + - Index: 2 + Item: S_Rolling_Armor - Group: S_RIPPER_CUBE SubGroups: - SubGroup: 0 @@ -68154,29 +73187,29 @@ Body: - Index: 0 Item: S_Ripper_Weapon - Index: 1 - Item: S_Ripper_Pendant - - Index: 2 Item: S_Ripper_Earing + - Index: 2 + Item: S_Ripper_Pendant - Group: S_SLASH_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Slash_Armor - - Index: 1 Item: S_Slash_Shield - - Index: 2 + - Index: 1 Item: S_Slash_Shoes + - Index: 2 + Item: S_Slash_Armor - Group: S_KATAR_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Slash_Armor + Item: S_Katar_Weapon - Index: 1 - Item: S_Slash_Shield + Item: S_Katar_Earing - Index: 2 - Item: S_Slash_Shoes + Item: S_Katar_Pendant - Group: S_SHOOTING_CUBE SubGroups: - SubGroup: 0 @@ -68184,19 +73217,19 @@ Body: - Index: 0 Item: S_Shooting_Weapon - Index: 1 - Item: S_Shooting_Pendant - - Index: 2 Item: S_Shooting_Earing + - Index: 2 + Item: S_Shooting_Pendant - Group: S_ARROW_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Arrow_Armor - - Index: 1 Item: S_Arrow_Shield - - Index: 2 + - Index: 1 Item: S_Arrow_Shoes + - Index: 2 + Item: S_Arrow_Armor - Group: S_AIMED_CUBE SubGroups: - SubGroup: 0 @@ -68204,39 +73237,39 @@ Body: - Index: 0 Item: S_Aimed_Weapon - Index: 1 - Item: S_Aimed_Pendant - - Index: 2 Item: S_Aimed_Earing + - Index: 2 + Item: S_Aimed_Pendant - Group: S_CLUSTER_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Aimed_Weapon + Item: S_Cluster_Shield - Index: 1 - Item: S_Aimed_Pendant + Item: S_Cluster_Shoes - Index: 2 - Item: S_Aimed_Earing + Item: S_Cluster_Armor - Group: S_BANISH_CANNON_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Banish_Cannon_Armor - - Index: 1 Item: S_Banish_Cannon_Shield - - Index: 2 + - Index: 1 Item: S_Banish_Cannon_Shoes + - Index: 2 + Item: S_Banish_Cannon_Armor - Group: S_BRAND_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Brand_Armor - - Index: 1 Item: S_Brand_Shield - - Index: 2 + - Index: 1 Item: S_Brand_Shoes + - Index: 2 + Item: S_Brand_Armor - Group: S_GENESIS_CUBE SubGroups: - SubGroup: 0 @@ -68244,9 +73277,9 @@ Body: - Index: 0 Item: S_Genesis_Weapon - Index: 1 - Item: S_Genesis_Pendant - - Index: 2 Item: S_Genesis_Earing + - Index: 2 + Item: S_Genesis_Pendant - Group: S_CHAIN_PRESS_CUBE SubGroups: - SubGroup: 0 @@ -68254,9 +73287,9 @@ Body: - Index: 0 Item: S_Chain_Press_Weapon - Index: 1 - Item: S_Chain_Press_Pendant - - Index: 2 Item: S_Chain_Press_Earing + - Index: 2 + Item: S_Chain_Press_Pendant - Group: S_GRAVE_CUBE SubGroups: - SubGroup: 0 @@ -68264,19 +73297,19 @@ Body: - Index: 0 Item: S_Grave_Weapon - Index: 1 - Item: S_Grave_Pendant - - Index: 2 Item: S_Grave_Earing + - Index: 2 + Item: S_Grave_Pendant - Group: S_DUST_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Dust_Armor - - Index: 1 Item: S_Dust_Shield - - Index: 2 + - Index: 1 Item: S_Dust_Shoes + - Index: 2 + Item: S_Dust_Armor - Group: S_VARETYR_CUBE SubGroups: - SubGroup: 0 @@ -68284,29 +73317,29 @@ Body: - Index: 0 Item: S_Varetyr_Weapon - Index: 1 - Item: S_Varetyr_Pendant - - Index: 2 Item: S_Varetyr_Earing + - Index: 2 + Item: S_Varetyr_Pendant - Group: S_PSYCHIC_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Psychic_Armor - - Index: 1 Item: S_Psychic_Shield - - Index: 2 + - Index: 1 Item: S_Psychic_Shoes + - Index: 2 + Item: S_Psychic_Armor - Group: S_SPORE_BOMB_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Spore_Bomb_Armor - - Index: 1 Item: S_Spore_Bomb_Shield - - Index: 2 + - Index: 1 Item: S_Spore_Bomb_Shoes + - Index: 2 + Item: S_Spore_Bomb_Armor - Group: S_CANNON_CART_CUBE SubGroups: - SubGroup: 0 @@ -68314,9 +73347,9 @@ Body: - Index: 0 Item: S_Cannon_Cart_Weapon - Index: 1 - Item: S_Cannon_Cart_Pendant - - Index: 2 Item: S_Cannon_Cart_Earing + - Index: 2 + Item: S_Cannon_Cart_Pendant - Group: S_CRAZY_CUBE SubGroups: - SubGroup: 0 @@ -68324,29 +73357,29 @@ Body: - Index: 0 Item: S_Crazy_Weapon - Index: 1 - Item: S_Crazy_Pendant - - Index: 2 Item: S_Crazy_Earing + - Index: 2 + Item: S_Crazy_Pendant - Group: S_CART_TORNADO_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Cart_Tornado_Armor - - Index: 1 Item: S_Cart_Tornado_Shield - - Index: 2 + - Index: 1 Item: S_Cart_Tornado_Shoes + - Index: 2 + Item: S_Cart_Tornado_Armor - Group: S_KNUCKLEARROW_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Knucklearrow_Armor - - Index: 1 Item: S_Knucklearrow_Shield - - Index: 2 + - Index: 1 Item: S_Knucklearrow_Shoes + - Index: 2 + Item: S_Knucklearrow_Armor - Group: S_SKYNETBLOW_CUBE SubGroups: - SubGroup: 0 @@ -68354,19 +73387,19 @@ Body: - Index: 0 Item: S_Skynetblow_Weapon - Index: 1 - Item: S_Skynetblow_Pendant - - Index: 2 Item: S_Skynetblow_Earing + - Index: 2 + Item: S_Skynetblow_Pendant - Group: S_RAMPAGE_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Rampage_Armor - - Index: 1 Item: S_Rampage_Shield - - Index: 2 + - Index: 1 Item: S_Rampage_Shoes + - Index: 2 + Item: S_Rampage_Armor - Group: S_TIGERCANNON_CUBE SubGroups: - SubGroup: 0 @@ -68374,19 +73407,19 @@ Body: - Index: 0 Item: S_TigerCannon_Weapon - Index: 1 - Item: S_Tigercannon_Pendant - - Index: 2 Item: S_Tigercannon_Earing + - Index: 2 + Item: S_Tigercannon_Pendant - Group: S_MENACE_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Menace_Armor - - Index: 1 Item: S_Menace_Shield - - Index: 2 + - Index: 1 Item: S_Menace_Shoes + - Index: 2 + Item: S_Menace_Armor - Group: S_SHADOWSPELL_CUBE SubGroups: - SubGroup: 0 @@ -68394,19 +73427,19 @@ Body: - Index: 0 Item: S_Shadowspell_Weapon - Index: 1 - Item: S_Shadowspell_Pendant - - Index: 2 Item: S_Shadowspell_Earing + - Index: 2 + Item: S_Shadowspell_Pendant - Group: S_TRIANGLE_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Triangle_Armor - - Index: 1 Item: S_Triangle_Shield - - Index: 2 + - Index: 1 Item: S_Triangle_Shoes + - Index: 2 + Item: S_Triangle_Armor - Group: S_PAINT_CUBE SubGroups: - SubGroup: 0 @@ -68414,29 +73447,29 @@ Body: - Index: 0 Item: S_Paint_Weapon - Index: 1 - Item: S_Paint_Pendant - - Index: 2 Item: S_Paint_Earing + - Index: 2 + Item: S_Paint_Pendant - Group: S_RAINSTORM_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Rainstorm_Armor - - Index: 1 Item: S_Rainstorm_Shield - - Index: 2 + - Index: 1 Item: S_Rainstorm_Shoes + - Index: 2 + Item: S_Rainstorm_Armor - Group: S_METALIC_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Metalic_Armor - - Index: 1 Item: S_Metalic_Shield - - Index: 2 + - Index: 1 Item: S_Metalic_Shoes + - Index: 2 + Item: S_Metalic_Armor - Group: S_ARROWVULCAN_CUBE SubGroups: - SubGroup: 0 @@ -68444,9 +73477,9 @@ Body: - Index: 0 Item: S_Arrowvulcan_Weapon - Index: 1 - Item: S_Arrowvulcan_Pendant - - Index: 2 Item: S_Arrowvulcan_Earing + - Index: 2 + Item: S_Arrowvulcan_Pendant - Group: S_REVERBERATION_CUBE SubGroups: - SubGroup: 0 @@ -68454,149 +73487,149 @@ Body: - Index: 0 Item: S_Reverberation_Weapon - Index: 1 - Item: S_Reverberation_Pendant - - Index: 2 Item: S_Reverberation_Earing + - Index: 2 + Item: S_Reverberation_Pendant - Group: S_MOONLIGHT_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Moonlight_Earring - - Index: 1 - Item: S_Moonlight_Pendant - - Index: 2 Item: S_Moonlight_Shoes + - Index: 1 + Item: S_Moonlight_Earring + - Index: 2 + Item: S_Moonlight_Pendant - Group: S_SUNSHINE_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Sunshine_Weapon - - Index: 1 Item: S_Sunshine_Shield - - Index: 2 + - Index: 1 Item: S_Sunshine_Armor + - Index: 2 + Item: S_Sunshine_Weapon - Group: S_STARDUST_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Stardust_Weapon - - Index: 1 Item: S_Stardust_Shield - - Index: 2 + - Index: 1 Item: S_Stardust_Armor + - Index: 2 + Item: S_Stardust_Weapon - Group: S_S_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_S_Weapon - - Index: 1 Item: S_S_Shield - - Index: 2 + - Index: 1 Item: S_S_Armor + - Index: 2 + Item: S_S_Weapon - Group: S_EVILCURSE_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Evilcurse_Earring - - Index: 1 - Item: S_Evilcurse_Pendant - - Index: 2 Item: S_Evilcurse_Shoes + - Index: 1 + Item: S_Evilcurse_Earring + - Index: 2 + Item: S_Evilcurse_Pendant - Group: S_SYURIKEN_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Syuriken_Earing - - Index: 1 - Item: S_Syuriken_Pendant - - Index: 2 Item: S_Syuriken_Shoes + - Index: 1 + Item: S_Syuriken_Earing + - Index: 2 + Item: S_Syuriken_Pendant - Group: S_KUNAI_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Kunai_Weapon - - Index: 1 Item: S_Kunai_Shield - - Index: 2 + - Index: 1 Item: S_Kunai_Armor + - Index: 2 + Item: S_Kunai_Weapon - Group: S_HUUSOUKA_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Huusouka_Earing - - Index: 1 - Item: S_Huusouka_Pendant - - Index: 2 Item: S_Huusouka_Shoes + - Index: 1 + Item: S_Huusouka_Earing + - Index: 2 + Item: S_Huusouka_Pendant - Group: S_KAMAENRAKU_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Kamaenraku_Weapon - - Index: 1 Item: S_Kamaenraku_Shield - - Index: 2 + - Index: 1 Item: S_Kamaenraku_Armor + - Index: 2 + Item: S_Kamaenraku_Weapon - Group: S_GOD_HAMMER_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_God_Hammer_Weapon - - Index: 1 Item: S_God_Hammer_Shield - - Index: 2 + - Index: 1 Item: S_God_Hammer_Armor + - Index: 2 + Item: S_God_Hammer_Weapon - Group: S_SHATTER_BUSTER_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Shatter_Buster_Earing - - Index: 1 - Item: S_Shatter_B_Pendant - - Index: 2 Item: S_Shatter_Buster_Shoes + - Index: 1 + Item: S_Shatter_Buster_Earing + - Index: 2 + Item: S_Shatter_B_Pendant - Group: S_TAIL_DRAGON_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Tail_Dragon_Weapon - - Index: 1 Item: S_Tail_Dragon_Shield - - Index: 2 + - Index: 1 Item: S_Tail_Dragon_Armor + - Index: 2 + Item: S_Tail_Dragon_Weapon - Group: S_TRIP_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Trip_Weapon - - Index: 1 Item: S_Trip_Shield - - Index: 2 + - Index: 1 Item: S_Trip_Armor + - Index: 2 + Item: S_Trip_Weapon - Group: S_FLARE_DANCE_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Flare_Dance_Earing - - Index: 1 - Item: S_Flare_Dance_Pendant - - Index: 2 Item: S_Flare_Dance_Shoes + - Index: 1 + Item: S_Flare_Dance_Earing + - Index: 2 + Item: S_Flare_Dance_Pendant - Group: S_SUPER_MAGIC_CUBE SubGroups: - SubGroup: 0 @@ -68604,9 +73637,9 @@ Body: - Index: 0 Item: S_Super_Magic_Shield - Index: 1 - Item: S_Super_Magic_Armor - - Index: 2 Item: S_Super_Magic_Shoes + - Index: 2 + Item: S_Super_Magic_Armor - Group: S_SUPER_POWER_CUBE SubGroups: - SubGroup: 0 @@ -68614,49 +73647,49 @@ Body: - Index: 0 Item: S_Super_Power_Weapon - Index: 1 - Item: S_Super_Power_Pendant - - Index: 2 Item: S_Super_Power_Earing + - Index: 2 + Item: S_Super_Power_Pendant - Group: S_SILVERVINE_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Silvervine_Earing - - Index: 1 - Item: S_Silvervine_Pendant - - Index: 2 Item: S_Silvervine_Shoes + - Index: 1 + Item: S_Silvervine_Earing + - Index: 2 + Item: S_Silvervine_Pendant - Group: S_CATNIP_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Catnip_Weapon - - Index: 1 Item: S_Catnip_Shield - - Index: 2 + - Index: 1 Item: S_Catnip_Armor + - Index: 2 + Item: S_Catnip_Weapon - Group: S_SAVAGERABBIT_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_SavageRabbit_Earing - - Index: 1 - Item: S_SavageRabbit_Pendant - - Index: 2 Item: S_SavageRabbit_Shoes + - Index: 1 + Item: S_SavageRabbit_Earing + - Index: 2 + Item: S_SavageRabbit_Pendant - Group: S_PICKYRUSH_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Pickyrush_Weapon - - Index: 1 Item: S_Pickyrush_Shield - - Index: 2 + - Index: 1 Item: S_Pickyrush_Armor + - Index: 2 + Item: S_Pickyrush_Weapon - Group: S_RUNEKNIGHT_CUBE SubGroups: - SubGroup: 0 @@ -68670,9 +73703,9 @@ Body: - Index: 3 Item: S_Knight_Armor - Index: 4 - Item: S_Runeknight_Weapon - - Index: 5 Item: S_Runeknight_Shield + - Index: 5 + Item: S_Runeknight_Weapon - Group: S_ROYALGUARD_CUBE SubGroups: - SubGroup: 0 @@ -68686,9 +73719,9 @@ Body: - Index: 3 Item: S_Crusader_Armor - Index: 4 - Item: S_Royalguard_Weapon - - Index: 5 Item: S_Royalguard_Shield + - Index: 5 + Item: S_Royalguard_Weapon - Group: S_WARLOCK_CUBE SubGroups: - SubGroup: 0 @@ -68702,9 +73735,9 @@ Body: - Index: 3 Item: S_Wizard_Armor - Index: 4 - Item: S_Warlock_Weapon - - Index: 5 Item: S_Warlock_Shield + - Index: 5 + Item: S_Warlock_Weapon - Group: S_SORCERER_CUBE SubGroups: - SubGroup: 0 @@ -68718,9 +73751,9 @@ Body: - Index: 3 Item: S_Sage_Armor - Index: 4 - Item: S_Sorcerer_Weapon - - Index: 5 Item: S_Sorcerer_Shield + - Index: 5 + Item: S_Sorcerer_Weapon - Group: S_MECHANIC_CUBE SubGroups: - SubGroup: 0 @@ -68734,9 +73767,9 @@ Body: - Index: 3 Item: S_Blacksmith_Armor - Index: 4 - Item: S_Mechanic_weapon - - Index: 5 Item: S_Mechanic_Shield + - Index: 5 + Item: S_Mechanic_weapon - Group: S_GENERIC_CUBE SubGroups: - SubGroup: 0 @@ -68750,9 +73783,9 @@ Body: - Index: 3 Item: S_Alchemist_Armor - Index: 4 - Item: S_Genetic_Weapon - - Index: 5 Item: S_Genetic_Shield + - Index: 5 + Item: S_Genetic_Weapon - Group: S_ARCHBISHOP_CUBE SubGroups: - SubGroup: 0 @@ -68766,9 +73799,9 @@ Body: - Index: 3 Item: S_Priest_Armor - Index: 4 - Item: S_Archbishop_Weapon - - Index: 5 Item: S_Archbishop_Shield + - Index: 5 + Item: S_Archbishop_Weapon - Group: S_SURA_CUBE SubGroups: - SubGroup: 0 @@ -68782,205 +73815,205 @@ Body: - Index: 3 Item: S_Monk_Armor - Index: 4 - Item: S_Sura_weapon - - Index: 5 Item: S_Sura_Shield + - Index: 5 + Item: S_Sura_weapon - Group: S_GUILLOTINECROSS_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Thief_Pendant + Item: S_Thief_earring - Index: 1 - Item: S_Assassin_Shoes + Item: S_Thief_Pendant - Index: 2 - Item: S_Assassin_Armor + Item: S_Assassin_Shoes - Index: 3 - Item: S_Guillotine_Weapon + Item: S_Assassin_Armor - Index: 4 Item: S_Guillotine_Shield - Index: 5 - Item: S_Thief_earring + Item: S_Guillotine_Weapon - Group: S_SHADOWCHASER_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Thief_Pendant + Item: S_Thief_earring - Index: 1 - Item: S_Rogue_Shoes + Item: S_Thief_Pendant - Index: 2 - Item: S_Rogue_Armor + Item: S_Rogue_Shoes - Index: 3 - Item: S_Shadowchaser_Weapon + Item: S_Rogue_Armor - Index: 4 Item: S_Shadowchaser_Shield - Index: 5 - Item: S_Thief_earring + Item: S_Shadowchaser_Weapon - Group: S_RANGER_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Archer_Pendant + Item: S_Archer_earring - Index: 1 - Item: S_Hunter_Shoes + Item: S_Archer_Pendant - Index: 2 - Item: S_Hunter_Armor + Item: S_Hunter_Shoes - Index: 3 - Item: S_Ranger_Weapon + Item: S_Hunter_Armor - Index: 4 Item: S_Ranger_Shield - Index: 5 - Item: S_Archer_earring + Item: S_Ranger_Weapon - Group: S_WANDERER_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Archer_Pendant + Item: S_Archer_earring - Index: 1 - Item: S_Dancer_Shoes + Item: S_Archer_Pendant - Index: 2 - Item: S_Dancer_Armor + Item: S_Dancer_Shoes - Index: 3 - Item: S_Wanderer_Weapon + Item: S_Dancer_Armor - Index: 4 Item: S_Wanderer_Shield - Index: 5 - Item: S_Archer_earring + Item: S_Wanderer_Weapon - Group: S_MINSTREL_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Archer_Pendant + Item: S_Archer_earring - Index: 1 - Item: S_Bard_Shoes + Item: S_Archer_Pendant - Index: 2 - Item: S_Bard_Armor + Item: S_Bard_Shoes - Index: 3 - Item: S_Minstrel_Weapon + Item: S_Bard_Armor - Index: 4 Item: S_Minstrel_Shield - Index: 5 - Item: S_Archer_earring + Item: S_Minstrel_Weapon - Group: S_STAR_EMPEROR_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Taekwon_Weapon - - Index: 1 Item: S_Taekwon_Shield + - Index: 1 + Item: S_Taekwon_Weapon - Index: 2 - Item: S_Star_Emperor_Armor - - Index: 3 Item: S_Star_Emperor_Shoes + - Index: 3 + Item: S_Star_Emperor_Armor - Group: S_SOUL_REAPER_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Taekwon_Weapon - - Index: 1 Item: S_Taekwon_Shield + - Index: 1 + Item: S_Taekwon_Weapon - Index: 2 - Item: S_Soul_Reaper_Armor - - Index: 3 Item: S_Soul_Reaper_Shoes + - Index: 3 + Item: S_Soul_Reaper_Armor - Group: S_KAGEROU_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Ninja_Weapon - - Index: 1 Item: S_Ninja_Shield + - Index: 1 + Item: S_Ninja_Weapon - Index: 2 - Item: S_Kagerou_Armor - - Index: 3 Item: S_Kagerou_Shoes + - Index: 3 + Item: S_Kagerou_Armor - Group: S_OBORO_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Ninja_Weapon - - Index: 1 Item: S_Ninja_Shield + - Index: 1 + Item: S_Ninja_Weapon - Index: 2 - Item: S_Oboro_Armor - - Index: 3 Item: S_Oboro_Shoes + - Index: 3 + Item: S_Oboro_Armor - Group: S_REBELLION_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Gunslinger_Weapon - - Index: 1 Item: S_Gunslinger_Shield + - Index: 1 + Item: S_Gunslinger_Weapon - Index: 2 - Item: S_Rebellion_Armor - - Index: 3 Item: S_Rebellion_Shoes + - Index: 3 + Item: S_Rebellion_Armor - Group: S_SUPERNOVICE_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_SuperNovice_Weapon - - Index: 1 Item: S_SuperNovice_Shield + - Index: 1 + Item: S_SuperNovice_Weapon - Group: S_DORAM_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_DoramMagical_Weapon - - Index: 1 - Item: S_DoramPhysical_Weapon - - Index: 2 - Item: S_DoramPhysical_Shield - - Index: 3 Item: S_DoramMagical_Shield + - Index: 1 + Item: S_DoramMagical_Shoes + - Index: 2 + Item: S_DoramMagical_Armor + - Index: 3 + Item: S_DoramMagical_Weapon - Index: 4 - Item: S_DoramPhysical_Armor + Item: S_DoramPhysical_Shield - Index: 5 Item: S_DoramPhysical_Shoes - Index: 6 - Item: S_DoramMagical_Armor + Item: S_DoramPhysical_Armor - Index: 7 - Item: S_DoramMagical_Shoes + Item: S_DoramPhysical_Weapon - Group: S_MAMMOTH_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Mammoth_Armor + Item: S_Mammoth_Shield - Index: 1 Item: S_Mammoth_Shoes - Index: 2 - Item: S_Mammoth_Pendant + Item: S_Mammoth_Armor - Index: 3 - Item: S_Mammoth_Earring - - Index: 4 Item: S_Mammoth_Weapon + - Index: 4 + Item: S_Mammoth_Earring - Index: 5 - Item: S_Mammoth_Shield + Item: S_Mammoth_Pendant - Group: S_GEMSTONE_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Gemstone_Armor - - Index: 1 Item: S_Gemstone_Shoes + - Index: 1 + Item: S_Gemstone_Armor - Index: 2 - Item: S_Gemstone_Shield - - Index: 3 Item: S_Gemstone_Weapon + - Index: 3 + Item: S_Gemstone_Shield - Index: 4 Item: S_Gemstone_Earring - Index: 5 @@ -68990,73 +74023,73 @@ Body: - SubGroup: 0 List: - Index: 0 - Item: S_Penetration_Earring + Item: S_Viv_Dr_Weapon - Index: 1 - Item: S_Penetration_Pendent + Item: S_Exo_Co_Weapon - Index: 2 - Item: S_Exe_Ho_Weapon + Item: S_Sci_Hu_Weapon - Index: 3 Item: S_Fis_In_Weapon - Index: 4 - Item: S_Sci_Hu_Weapon + Item: S_Exe_Ho_Weapon - Index: 5 - Item: S_Viv_Dr_Weapon + Item: S_Penetration_Earring - Index: 6 - Item: S_Exo_Co_Weapon + Item: S_Penetration_Pendent - Group: S_PENE2_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Penetration_Shoes - - Index: 1 - Item: S_Penetration_Shield - - Index: 2 - Item: S_ExeHoly_Armor - - Index: 3 - Item: S_ExoCorrupt_Armor - - Index: 4 Item: S_DragonVib_Armor - - Index: 5 + - Index: 1 + Item: S_ExoCorrupt_Armor + - Index: 2 Item: S_SciHunting_Armor - - Index: 6 + - Index: 3 Item: S_FishInsect_Armor + - Index: 4 + Item: S_ExeHoly_Armor + - Index: 5 + Item: S_Penetration_Shoes + - Index: 6 + Item: S_Penetration_Shield - Group: S_TEMP1_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Tempest_Earring - - Index: 1 - Item: S_Tempest_Pendent - - Index: 2 Item: S_M_Exo_Co_Weapon - - Index: 3 + - Index: 1 Item: S_M_Viv_Dr_Weapon - - Index: 4 + - Index: 2 Item: S_M_Sci_Hu_Weapon - - Index: 5 + - Index: 3 Item: S_M_Fis_In_Weapon - - Index: 6 + - Index: 4 Item: S_M_Exe_Ho_Weapon + - Index: 5 + Item: S_Tempest_Earring + - Index: 6 + Item: S_Tempest_Pendent - Group: S_TEMP2_CUBE SubGroups: - SubGroup: 0 List: - Index: 0 - Item: S_Tempest_Shield - - Index: 1 - Item: S_Tempest_Shoes - - Index: 2 - Item: S_M_ExeHoly_Armor - - Index: 3 Item: S_M_ExoCorrupt_Armor - - Index: 4 + - Index: 1 Item: S_M_DragonVib_Armor - - Index: 5 + - Index: 2 Item: S_M_SciHunting_Armor - - Index: 6 + - Index: 3 Item: S_M_FishInsect_Armor + - Index: 4 + Item: S_M_ExeHoly_Armor + - Index: 5 + Item: S_Tempest_Shoes + - Index: 6 + Item: S_Tempest_Shield - Group: BLACKSMITH_BLESS_BOX_3 SubGroups: - SubGroup: 0 @@ -69447,654 +74480,802 @@ Body: List: - Index: 0 Item: Range_Stone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 1 Item: Melee_Stone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 2 Item: Magic_Stone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 3 Item: SmatkStone_Robe - Rate: 10 + Rate: 1 + Announced: true - Index: 4 Item: M_PATKStone_Robe - Rate: 10 + Rate: 1 + Announced: true - Index: 5 Item: R_PATKStone_Robe - Rate: 10 + Rate: 1 + Announced: true - Index: 6 Item: ReloadStone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 7 Item: CriticalStone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 8 Item: Critical_Stone_Robe - Rate: 20 + Rate: 2 + Announced: true - Index: 9 Item: CastStone_Robe_D - Rate: 40 + Rate: 4 + Announced: true - Index: 10 Item: CastStone_Robe - Rate: 80 + Rate: 8 + Announced: true - Index: 11 Item: KagerouStone_Top3 - Rate: 30 + Rate: 3 + Announced: true - Index: 12 Item: KagerouStone_Middle3 - Rate: 30 + Rate: 3 + Announced: true - Index: 13 Item: KagerouStone_Bottom3 - Rate: 30 + Rate: 3 + Announced: true - Index: 14 Item: OboroStone_Top3 - Rate: 30 + Rate: 3 + Announced: true - Index: 15 Item: OboroStone_Middle3 - Rate: 30 + Rate: 3 + Announced: true - Index: 16 Item: OboroStone_Bottom3 - Rate: 30 + Rate: 3 + Announced: true - Index: 17 Item: DoramStone_Top3 - Rate: 30 + Rate: 3 + Announced: true - Index: 18 Item: DoramStone_Middle3 - Rate: 30 + Rate: 3 + Announced: true - Index: 19 Item: DoramStone_Bottom3 - Rate: 30 + Rate: 3 + Announced: true - Index: 20 Item: StarStone_Top3 - Rate: 30 + Rate: 3 + Announced: true - Index: 21 Item: StarStone_Middle3 - Rate: 30 + Rate: 3 + Announced: true - Index: 22 Item: StarStone_Bottom3 - Rate: 30 + Rate: 3 + Announced: true - Index: 23 Item: RebelStone_Top3 - Rate: 30 + Rate: 3 + Announced: true - Index: 24 Item: RebelStone_Middle3 - Rate: 30 + Rate: 3 + Announced: true - Index: 25 Item: RebelStone_Bottom3 - Rate: 30 + Rate: 3 + Announced: true - Index: 26 Item: ReaperStone_Top3 - Rate: 30 + Rate: 3 + Announced: true - Index: 27 Item: ReaperStone_Middle3 - Rate: 30 + Rate: 3 + Announced: true - Index: 28 Item: ReaperStone_Bottom3 - Rate: 30 + Rate: 3 + Announced: true - Index: 29 Item: SuraStone_Top3 - Rate: 30 + Rate: 3 + Announced: true - Index: 30 Item: SuraStone_Middle3 - Rate: 30 + Rate: 3 + Announced: true - Index: 31 Item: SuraStone_Bottom3 - Rate: 30 + Rate: 3 + Announced: true - Index: 32 Item: MechanicStone_Top3 - Rate: 30 + Rate: 3 + Announced: true - Index: 33 Item: MechanicStone_Middle3 - Rate: 30 + Rate: 3 + Announced: true - Index: 34 Item: MechanicStone_Bottom3 - Rate: 30 + Rate: 3 + Announced: true - Index: 35 Item: GuillcrossStone_Top3 - Rate: 30 + Rate: 3 + Announced: true - Index: 36 Item: GuillcrossStone_Middle3 - Rate: 30 + Rate: 3 + Announced: true - Index: 37 Item: GuillcrossStone_Bottom3 - Rate: 30 + Rate: 3 + Announced: true - Index: 38 Item: ArchbishopStone_Top3 - Rate: 30 + Rate: 3 + Announced: true - Index: 39 Item: ArchbishopStone_Middle3 - Rate: 30 + Rate: 3 + Announced: true - Index: 40 Item: ArchbishopStone_Bottom3 - Rate: 30 + Rate: 3 + Announced: true - Index: 41 Item: RangerStone_Top3 - Rate: 30 + Rate: 3 + Announced: true - Index: 42 Item: RangerStone_Middle3 - Rate: 30 + Rate: 3 + Announced: true - Index: 43 Item: RangerStone_Bottom3 - Rate: 30 + Rate: 3 + Announced: true - Index: 44 Item: ShadowchasStone_Top3 - Rate: 30 + Rate: 3 + Announced: true - Index: 45 Item: ShadowchasStone_Middle3 - Rate: 30 + Rate: 3 + Announced: true - Index: 46 Item: ShadowchasStone_Bottom3 - Rate: 30 + Rate: 3 + Announced: true - Index: 47 Item: WanderMinsStone_Top3 - Rate: 30 + Rate: 3 + Announced: true - Index: 48 Item: WanderMinsStone_Middle3 - Rate: 30 + Rate: 3 + Announced: true - Index: 49 Item: WanderMinsStone_Bottom3 - Rate: 30 + Rate: 3 + Announced: true - Index: 50 Item: GeneticStone_Top3 - Rate: 30 + Rate: 3 + Announced: true - Index: 51 Item: GeneticStone_Middle3 - Rate: 30 + Rate: 3 + Announced: true - Index: 52 Item: GeneticStone_Bottom3 - Rate: 30 + Rate: 3 + Announced: true - Index: 53 Item: SorcererStone_Top3 - Rate: 30 + Rate: 3 + Announced: true - Index: 54 Item: SorcererStone_Middle3 - Rate: 30 + Rate: 3 + Announced: true - Index: 55 Item: SorcererStone_Bottom3 - Rate: 30 + Rate: 3 + Announced: true - Index: 56 Item: RuneknightStone_Top3 - Rate: 30 + Rate: 3 + Announced: true - Index: 57 Item: RuneknightStone_Middle3 - Rate: 30 + Rate: 3 + Announced: true - Index: 58 Item: RuneknightStone_Bottom3 - Rate: 30 + Rate: 3 + Announced: true - Index: 59 Item: WarlockStone_Top3 - Rate: 30 + Rate: 3 + Announced: true - Index: 60 Item: WarlockStone_Middle3 - Rate: 30 + Rate: 3 + Announced: true - Index: 61 Item: WarlockStone_Bottom3 - Rate: 30 + Rate: 3 + Announced: true - Index: 62 Item: RoyalguardStone_Top3 - Rate: 30 + Rate: 3 + Announced: true - Index: 63 Item: RoyalguardStone_Middle3 - Rate: 30 + Rate: 3 + Announced: true - Index: 64 Item: RoyalguardStone_Bottom3 - Rate: 30 + Rate: 3 + Announced: true - Index: 65 Item: Stone_Robe_Box - Rate: 180 + Rate: 18 - Index: 66 Item: Stone_Robe2_Box - Rate: 180 + Rate: 18 - Index: 67 Item: Magic_Stone_Top - Rate: 200 + Rate: 20 - Index: 68 Item: Magic_Stone_Middle - Rate: 200 + Rate: 20 - Index: 69 Item: Magic_Stone_Bottom - Rate: 200 + Rate: 20 - Index: 70 Item: Range_Stone_Top - Rate: 200 + Rate: 20 - Index: 71 Item: Range_Stone - Rate: 200 + Rate: 20 - Index: 72 Item: Range_Stone_Bottom - Rate: 200 + Rate: 20 - Index: 73 Item: Melee_Stone_Top - Rate: 200 + Rate: 20 - Index: 74 Item: Melee_Stone_Middle - Rate: 200 + Rate: 20 - Index: 75 Item: Melee_Stone_Bottom - Rate: 200 + Rate: 20 - Index: 76 Item: ReloadStone_Top - Rate: 200 + Rate: 20 - Index: 77 Item: ReloadStone_Middle - Rate: 200 + Rate: 20 - Index: 78 Item: ReloadStone_Bottom - Rate: 200 + Rate: 20 - Index: 79 Item: EXPStone_Middle - Rate: 200 + Rate: 20 - Index: 80 Item: EXPStone_Bottom - Rate: 200 + Rate: 20 - Index: 81 Item: EXPStone_Top - Rate: 200 + Rate: 20 - Index: 82 Item: Stone_Top_Box - Rate: 400 + Rate: 40 - Index: 83 Item: Stone_Top2_Box - Rate: 400 + Rate: 40 - Index: 84 Item: Stone_Middle_Box - Rate: 400 + Rate: 40 - Index: 85 Item: Stone_Middle2_Box - Rate: 400 + Rate: 40 - Index: 86 Item: Stone_Bottom_Box - Rate: 400 + Rate: 40 - Index: 87 Item: Stone_Bottom2_Box - Rate: 400 + Rate: 40 - Index: 88 Item: CastingStone_Top - Rate: 400 + Rate: 40 - Index: 89 Item: CastingStone_Middle - Rate: 400 + Rate: 40 - Index: 90 Item: CastingStone_Bottom - Rate: 400 + Rate: 40 - Index: 91 Item: Critical_Stone - Rate: 400 + Rate: 40 - Index: 92 Item: Critical_Stone_Top - Rate: 400 + Rate: 40 - Index: 93 Item: Critical_Stone_Bottom - Rate: 400 + Rate: 40 - Group: ENCHANT_STONE_BOX31 SubGroups: - SubGroup: 1 List: - Index: 0 Item: Range_Stone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 1 Item: Melee_Stone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 2 Item: Magic_Stone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 3 Item: SmatkStone_Robe - Rate: 10 + Rate: 1 + Announced: true - Index: 4 Item: M_PATKStone_Robe - Rate: 10 + Rate: 1 + Announced: true - Index: 5 Item: R_PATKStone_Robe - Rate: 10 + Rate: 1 + Announced: true - Index: 6 Item: ShinkiroStone_Robe - Rate: 10 + Rate: 1 + Announced: true - Index: 7 Item: ShiranuiStone_Robe - Rate: 10 + Rate: 1 + Announced: true - Index: 8 Item: ShaCrossStone_Robe - Rate: 10 + Rate: 1 + Announced: true - Index: 9 Item: CardinalStone_Robe - Rate: 10 + Rate: 1 + Announced: true - Index: 10 Item: ReloadStone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 11 Item: CriticalStone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 12 Item: Critical_Stone_Robe - Rate: 20 + Rate: 2 + Announced: true - Index: 13 Item: CastStone_Robe_D - Rate: 40 + Rate: 4 + Announced: true - Index: 14 Item: CastStone_Robe - Rate: 80 + Rate: 8 + Announced: true - Index: 15 Item: KagerouStone_Top3 - Rate: 80 + Rate: 8 + Announced: true - Index: 16 Item: KagerouStone_Middle3 - Rate: 80 + Rate: 8 + Announced: true - Index: 17 Item: KagerouStone_Bottom3 - Rate: 80 + Rate: 8 + Announced: true - Index: 18 Item: OboroStone_Top3 - Rate: 80 + Rate: 8 + Announced: true - Index: 19 Item: OboroStone_Middle3 - Rate: 80 + Rate: 8 + Announced: true - Index: 20 Item: OboroStone_Bottom3 - Rate: 80 + Rate: 8 + Announced: true - Index: 21 Item: GuillcrossStone_Top3 - Rate: 80 + Rate: 8 + Announced: true - Index: 22 Item: GuillcrossStone_Middle3 - Rate: 80 + Rate: 8 + Announced: true - Index: 23 Item: GuillcrossStone_Bottom3 - Rate: 80 + Rate: 8 + Announced: true - Index: 24 Item: ArchbishopStone_Top3 - Rate: 80 + Rate: 8 + Announced: true - Index: 25 Item: ArchbishopStone_Middle3 - Rate: 80 + Rate: 8 + Announced: true - Index: 26 Item: ArchbishopStone_Bottom3 - Rate: 80 + Rate: 8 + Announced: true - Index: 27 Item: SuNoviceStone_Top - Rate: 150 + Rate: 15 + Announced: true - Index: 28 Item: SuNoviceStone_Middle - Rate: 150 + Rate: 15 + Announced: true - Index: 29 Item: SuNoviceStone_Bottom - Rate: 150 + Rate: 15 + Announced: true - Index: 30 Item: SuNoviceStone_Robe - Rate: 150 + Rate: 15 + Announced: true - Index: 31 Item: Stone_Robe_Box - Rate: 190 + Rate: 19 - Index: 32 - Item: aegis_102333 - Rate: 190 + Item: Stone_Robe3_Box + Rate: 19 - Index: 33 Item: Magic_Stone_Top - Rate: 200 + Rate: 20 - Index: 34 Item: Magic_Stone_Middle - Rate: 200 + Rate: 20 - Index: 35 Item: Magic_Stone_Bottom - Rate: 200 + Rate: 20 - Index: 36 Item: Range_Stone_Top - Rate: 200 + Rate: 20 - Index: 37 Item: Range_Stone - Rate: 200 + Rate: 20 - Index: 38 Item: Range_Stone_Bottom - Rate: 200 + Rate: 20 - Index: 39 Item: Melee_Stone_Top - Rate: 200 + Rate: 20 - Index: 40 Item: Melee_Stone_Middle - Rate: 200 + Rate: 20 - Index: 41 Item: Melee_Stone_Bottom - Rate: 200 + Rate: 20 - Index: 42 Item: ReloadStone_Top - Rate: 200 + Rate: 20 - Index: 43 Item: ReloadStone_Middle - Rate: 200 + Rate: 20 - Index: 44 Item: ReloadStone_Bottom - Rate: 200 + Rate: 20 - Index: 45 Item: EXPStone_Middle - Rate: 200 + Rate: 20 - Index: 46 Item: EXPStone_Bottom - Rate: 200 + Rate: 20 - Index: 47 Item: EXPStone_Top - Rate: 200 + Rate: 20 - Index: 48 Item: Stone_Top_Box - Rate: 400 + Rate: 40 - Index: 49 Item: Stone_Top2_Box - Rate: 400 + Rate: 40 - Index: 50 Item: Stone_Middle_Box - Rate: 400 + Rate: 40 - Index: 51 Item: Stone_Middle2_Box - Rate: 400 + Rate: 40 - Index: 52 Item: Stone_Bottom_Box - Rate: 400 + Rate: 40 - Index: 53 Item: Stone_Bottom2_Box - Rate: 400 + Rate: 40 - Index: 54 Item: CastingStone_Top - Rate: 400 + Rate: 40 - Index: 55 Item: CastingStone_Middle - Rate: 400 + Rate: 40 - Index: 56 Item: CastingStone_Bottom - Rate: 400 + Rate: 40 - Index: 57 Item: Critical_Stone - Rate: 400 + Rate: 40 - Index: 58 Item: Critical_Stone_Top - Rate: 400 + Rate: 40 - Index: 59 Item: Critical_Stone_Bottom - Rate: 400 + Rate: 40 - Group: ENCHANT_STONE_BOX32 SubGroups: - SubGroup: 1 List: - Index: 0 Item: Range_Stone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 1 Item: Melee_Stone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 2 Item: Magic_Stone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 3 Item: SmatkStone_Robe - Rate: 10 + Rate: 1 + Announced: true - Index: 4 Item: M_PATKStone_Robe - Rate: 10 + Rate: 1 + Announced: true - Index: 5 Item: R_PATKStone_Robe - Rate: 10 + Rate: 1 + Announced: true - Index: 6 Item: ResistDefStone_Robe - Rate: 10 + Rate: 1 + Announced: true - Index: 7 Item: StaminaWISStone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 8 Item: POWStone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 9 Item: SplStone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 10 Item: ConStone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 11 Item: CrtStone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 12 Item: MinorCastStone_Robe_D - Rate: 20 + Rate: 1 + Announced: true - Index: 13 Item: SkyEmperorStone_Robe - Rate: 40 + Rate: 1 + Announced: true - Index: 14 Item: MeisterStone_Robe - Rate: 80 + Rate: 1 + Announced: true - Index: 15 Item: ElementalStone_Robe - Rate: 80 + Rate: 1 + Announced: true - Index: 16 Item: ReloadStone_Robe_D - Rate: 80 + Rate: 1 + Announced: true - Index: 17 Item: CriticalStone_Robe_D - Rate: 80 + Rate: 1 + Announced: true - Index: 18 Item: DoubleAttack_Stone - Rate: 80 + Rate: 2 + Announced: true - Index: 19 Item: Critical_Stone_Robe - Rate: 80 + Rate: 2 + Announced: true - Index: 20 Item: CastStone_Robe_D - Rate: 80 + Rate: 4 + Announced: true - Index: 21 Item: SPdrainStone_Robe_D - Rate: 80 + Rate: 4 + Announced: true - Index: 22 Item: HPdrainStone_Robe_D - Rate: 80 + Rate: 8 + Announced: true - Index: 23 Item: ASPDStone_Robe_D - Rate: 80 + Rate: 8 + Announced: true - Index: 24 Item: CastStone_Robe - Rate: 80 + Rate: 8 + Announced: true - Index: 25 Item: StarStone_Top3 - Rate: 80 + Rate: 8 + Announced: true - Index: 26 Item: StarStone_Middle3 - Rate: 80 + Rate: 8 + Announced: true - Index: 27 Item: StarStone_Bottom3 - Rate: 150 + Rate: 8 + Announced: true - Index: 28 Item: GeneticStone_Top3 - Rate: 150 + Rate: 8 + Announced: true - Index: 29 Item: GeneticStone_Middle3 - Rate: 150 + Rate: 8 + Announced: true - Index: 30 Item: GeneticStone_Bottom3 - Rate: 150 + Rate: 8 + Announced: true - Index: 31 Item: SorcererStone_Top3 - Rate: 190 + Rate: 8 + Announced: true - Index: 32 Item: SorcererStone_Middle3 - Rate: 190 + Rate: 8 + Announced: true - Index: 33 Item: SorcererStone_Bottom3 - Rate: 200 + Rate: 8 + Announced: true - Index: 34 Item: Stone_Robe_Box - Rate: 200 + Rate: 17 - Index: 35 - Item: aegis_102333 - Rate: 200 + Item: Stone_Robe3_Box + Rate: 17 - Index: 36 Item: Magic_Stone_Top - Rate: 200 + Rate: 20 - Index: 37 Item: Magic_Stone_Middle - Rate: 200 + Rate: 20 - Index: 38 Item: Magic_Stone_Bottom - Rate: 200 + Rate: 20 - Index: 39 Item: Range_Stone_Top - Rate: 200 + Rate: 20 - Index: 40 Item: Range_Stone - Rate: 200 + Rate: 20 - Index: 41 Item: Range_Stone_Bottom - Rate: 200 + Rate: 20 - Index: 42 Item: Melee_Stone_Top - Rate: 200 + Rate: 20 - Index: 43 Item: Melee_Stone_Middle - Rate: 200 + Rate: 20 - Index: 44 Item: Melee_Stone_Bottom - Rate: 200 + Rate: 20 - Index: 45 Item: DefenseStone_Top - Rate: 200 + Rate: 20 - Index: 46 Item: DefenseStone_Middle - Rate: 200 + Rate: 20 - Index: 47 Item: DefenseStone_Bottom - Rate: 200 + Rate: 20 - Index: 48 Item: ReloadStone_Top - Rate: 400 + Rate: 20 - Index: 49 Item: ReloadStone_Middle - Rate: 400 + Rate: 20 - Index: 50 Item: ReloadStone_Bottom - Rate: 400 + Rate: 20 - Index: 51 Item: EXPStone_Middle - Rate: 400 + Rate: 20 - Index: 52 Item: EXPStone_Bottom - Rate: 400 + Rate: 20 - Index: 53 Item: EXPStone_Top - Rate: 400 + Rate: 20 - Index: 54 Item: Stone_Top_Box - Rate: 400 + Rate: 40 - Index: 55 Item: Stone_Top2_Box - Rate: 400 + Rate: 40 - Index: 56 Item: Stone_Middle_Box - Rate: 400 + Rate: 40 - Index: 57 Item: Stone_Middle2_Box - Rate: 400 + Rate: 40 - Index: 58 Item: Stone_Bottom_Box - Rate: 400 + Rate: 40 - Index: 59 Item: Stone_Bottom2_Box - Rate: 400 + Rate: 40 + - Index: 60 + Item: CastingStone_Top + Rate: 40 + - Index: 61 + Item: CastingStone_Middle + Rate: 40 + - Index: 62 + Item: CastingStone_Bottom + Rate: 40 + - Index: 63 + Item: Critical_Stone + Rate: 40 + - Index: 64 + Item: Critical_Stone_Top + Rate: 40 + - Index: 65 + Item: Critical_Stone_Bottom + Rate: 40 - Group: ANCIENT_HERO_BOX_2 SubGroups: - SubGroup: 1 @@ -70309,15 +75490,15 @@ Body: List: - Index: 0 Item: Small_Life_Potion - Amount: 100 + Amount: 200 UniqueId: true - Index: 1 Item: Med_Life_Potion - Amount: 100 + Amount: 200 UniqueId: true - Index: 2 Item: Mysterious_Water - Amount: 100 + Amount: 200 UniqueId: true - Index: 3 Item: K_Secret_Key @@ -70328,15 +75509,15 @@ Body: List: - Index: 0 Item: Small_Life_Potion - Amount: 10 + Amount: 20 UniqueId: true - Index: 1 Item: Med_Life_Potion - Amount: 10 + Amount: 20 UniqueId: true - Index: 2 Item: Mysterious_Water - Amount: 10 + Amount: 20 UniqueId: true - Index: 3 Item: K_Secret_Key @@ -70346,7 +75527,7 @@ Body: List: - Index: 0 Item: Infinity_Drink - Amount: 200 + Amount: 100 UniqueId: true - Index: 1 Item: K_Secret_Key @@ -70357,7 +75538,7 @@ Body: List: - Index: 0 Item: Infinity_Drink - Amount: 20 + Amount: 10 UniqueId: true - Index: 1 Item: K_Secret_Key @@ -70727,209 +75908,40 @@ Body: List: - Index: 0 Item: Pieces_Of_Grudge - Rate: 300 + Rate: 665 + Amount: 10 + - Index: 1 + Item: Pieces_Of_Grudge + Rate: 130 + Amount: 20 + - Index: 2 + Item: Pieces_Of_Grudge + Rate: 100 + Amount: 30 + - Index: 3 + Item: Pieces_Of_Grudge + Rate: 100 + Amount: 40 + - Index: 4 + Item: Pieces_Of_Grudge + Rate: 1 Amount: 100 - - Index: 1 - Item: Pieces_Of_Grudge - Rate: 400 - Amount: 200 - - Index: 2 - Item: Pieces_Of_Grudge - Rate: 200 - Amount: 300 - - Index: 3 - Item: Pieces_Of_Grudge - Rate: 90 - Amount: 400 - - Index: 4 - Item: Pieces_Of_Grudge - Rate: 10 - Amount: 500 - Index: 5 - Item: Luminous_Blue_Stone - Rate: 7 + Item: Pieces_Of_Grudge + Rate: 1 + Amount: 200 - Index: 6 - Item: Strawberry_In_Mouth_ - Rate: 12 + Item: Pieces_Of_Grudge + Rate: 1 + Amount: 300 - Index: 7 - Item: Wakwak_Manteau - Rate: 8 + Item: Pieces_Of_Grudge + Rate: 1 + Amount: 400 - Index: 8 - Item: Faceworm_Egg_Shell - Rate: 10 - - Index: 9 - Item: Scutum - Rate: 5 - - Index: 10 - Item: Shadow_Ring - Rate: 10 - - Index: 11 - Item: Wing_Of_Baalzebub_Box - Rate: 17 - - Index: 12 - Item: Guarantee_Armor_5Up - Rate: 4 - Amount: 2 - - Index: 13 - Item: Battle_Manual_X3 - Rate: 17 - Amount: 6 - - Index: 14 - Item: Job_Manual50 - Rate: 17 - Amount: 8 - - Index: 15 - Item: C_Happy_Balloon_J - Rate: 10 - - Index: 16 - Item: C_Octopus_Hat_J - Rate: 10 - - Index: 17 - Item: C_Weird_Goatee - Rate: 10 - - Index: 18 - Item: C_Wrapping_Ribbon - Rate: 10 - - Index: 19 - Item: C_Royal_Rabbit_Crown - Rate: 10 - - Index: 20 - Item: C_Dog_Officer - Rate: 10 - - Index: 21 - Item: C_Charcoal_Stove - Rate: 10 - - Index: 22 - Item: C_Dokkebi_Mask - Rate: 10 - - Index: 23 - Item: C_Persika_J - Rate: 10 - - Index: 24 - Item: Lunar_Rainbow - Rate: 7 - - Index: 25 - Item: Armor_Of_Flamedragon - Rate: 12 - - Index: 26 - Item: Temporal_Manteau - Rate: 8 - - Index: 27 - Item: Demonist_Shoes - Rate: 10 - - Index: 28 - Item: Holy_Coat - Rate: 5 - - Index: 29 - Item: Lapine_Shield - Rate: 10 - - Index: 30 - Item: Wing_Of_Baalzebub_Box - Rate: 10 - - Index: 31 - Item: Bloody_Dead_Branch - Rate: 14 - Amount: 5 - - Index: 32 - Item: Battle_Manual_X3 - Rate: 14 - Amount: 6 - - Index: 33 - Item: Lucky_Egg_C10 - Rate: 14 - Amount: 4 - - Index: 34 - Item: HE_Bubble_Gum - Rate: 14 - Amount: 8 - - Index: 36 - Item: Archpriest_Ring - Rate: 5 - - Index: 37 - Item: Glove_Of_Wizard - Rate: 5 - - Index: 38 - Item: Valkyrie_Knife - Rate: 8 - - Index: 39 - Item: EvilDragon_Armor - Rate: 8 - - Index: 40 - Item: Magical_Ring - Rate: 8 - - Index: 41 - Item: Tip_Of_Thief_Vol1 - Rate: 8 - - Index: 42 - Item: Matagi_Swordaxe - Rate: 8 - - Index: 43 - Item: Cylinder_Hairband - Rate: 5 - - Index: 44 - Item: Wing_Of_Baalzebub_Box - Rate: 20 - - Index: 45 - Item: F_Enriched_Oridecon - Rate: 15 - Amount: 30 - - Index: 46 - Item: F_Enriched_Elunium - Rate: 15 - Amount: 30 - - Index: 47 - Item: Bloody_Dead_Branch - Rate: 20 - Amount: 5 - - Index: 48 - Item: C_Butterfly_Wing_Ear_J - Rate: 10 - - Index: 49 - Item: C_Rose_Crown - Rate: 10 - - Index: 50 - Item: C_Earth_Goddess_Flower - Rate: 10 - - Index: 51 - Item: C_Hermose_Cap - Rate: 10 - - Index: 52 - Item: C_Red_Cherry_Blossom - Rate: 10 - - Index: 53 - Item: C_Carmen_Miranda_Hat - Rate: 10 - - Index: 54 - Item: C_Samambaia - Rate: 10 - - Index: 55 - Item: C_Decoration_bluerose - Rate: 10 - - Index: 56 - Item: C_Pray_Cherry_Blossom - Rate: 10 - - Index: 57 - Item: C_Wind_Of_The_Prairie - Rate: 10 - - SubGroup: 0 - List: - - Index: 0 - Item: Lighting_Sphere_ + Item: Pieces_Of_Grudge + Rate: 1 Amount: 500 - - Index: 1 - Item: Blind_Sphere_ - Amount: 500 - - Index: 2 - Item: Poison_Sphere_ - Amount: 500 - - Index: 3 - Item: Freezing_Sphere_ - Amount: 500 - - Index: 4 - Item: Flare_Sphere_ - Amount: 500 - - Index: 35 - Item: C_Eremes_Scarf_Black - Group: WING_OF_BAALZEBUB_BOX SubGroups: - SubGroup: 0 @@ -71034,26 +76046,26 @@ Body: Rate: 80 - Index: 4 Item: Hot_Tee - Rate: 1500 + Rate: 1700 Amount: 5 - Index: 5 Item: Bloody_Dead_Branch Rate: 100 - Index: 6 Item: Old_Violet_Box - Rate: 808 + Rate: 907 Amount: 3 - Index: 7 Item: Manacles - Rate: 100 + Rate: 600 Amount: 10 - Index: 8 Item: Bloody_Page - Rate: 110 + Rate: 610 Amount: 10 - Index: 9 Item: Sweet_Canape - Rate: 1800 + Rate: 2100 Amount: 5 - Index: 10 Item: Bloody_Coin @@ -71061,7 +76073,7 @@ Body: Amount: 5 - Index: 11 Item: Gold - Rate: 1400 + Rate: 1 Amount: 2 - Index: 12 Item: Violet_Jewel @@ -71069,285 +76081,304 @@ Body: Amount: 10 - Index: 13 Item: Crystal_Jewel__ - Rate: 1200 + Rate: 1000 Amount: 10 - Group: COOKIE_BAG_B SubGroups: - SubGroup: 1 List: - Index: 0 - Item: Lucky_Cookie + Item: Lucky_Cookie_B Rate: 1042 - Index: 1 - Item: Lucky_Candy_Cane + Item: Lucky_Candy_Cane_B Rate: 1042 - Index: 2 - Item: Rice_Ball + Item: Rice_Ball_B Rate: 1042 - Index: 3 - Item: Candy_Striper + Item: Candy_Striper_B Rate: 1042 - Index: 4 - Item: Lucky_Candy + Item: Lucky_Candy_B Rate: 1042 - Index: 5 - Item: Candy + Item: Candy_B Rate: 1042 - Index: 6 - Item: Piece_Of_Cake + Item: Piece_Of_Cake_B Rate: 1042 - Index: 7 - Item: Well_Baked_Cookie + Item: Well_Baked_Cookie_B Rate: 1042 - Index: 8 - Item: Chocolate_Drink + Item: Chocolate_Drink_B Rate: 208 - Index: 9 - Item: White_Chocolate + Item: White_Chocolate_B Rate: 208 - Index: 10 - Item: HandMade_Chocolate + Item: HandMade_Chocolate_B Rate: 208 - Index: 11 - Item: Chocolate + Item: HandMade_Chocolate_B_ Rate: 208 - Index: 12 - Item: Sesame_Pastry + Item: Chocolate_B Rate: 208 - Index: 13 - Item: Honey_Pastry + Item: Sesame_Pastry_B Rate: 208 - Index: 14 - Item: Rainbow_Cake + Item: Honey_Pastry_B + Rate: 208 + - Index: 15 + Item: Rainbow_Cake_B Rate: 208 - SubGroup: 2 List: - Index: 0 - Item: Lucky_Cookie + Item: Lucky_Cookie_B Rate: 1042 - Index: 1 - Item: Lucky_Candy_Cane + Item: Lucky_Candy_Cane_B Rate: 1042 - Index: 2 - Item: Rice_Ball + Item: Rice_Ball_B Rate: 1042 - Index: 3 - Item: Candy_Striper + Item: Candy_Striper_B Rate: 1042 - Index: 4 - Item: Lucky_Candy + Item: Lucky_Candy_B Rate: 1042 - Index: 5 - Item: Candy + Item: Candy_B Rate: 1042 - Index: 6 - Item: Piece_Of_Cake + Item: Piece_Of_Cake_B Rate: 1042 - Index: 7 - Item: Well_Baked_Cookie + Item: Well_Baked_Cookie_B Rate: 1042 - Index: 8 - Item: Chocolate_Drink + Item: Chocolate_Drink_B Rate: 208 - Index: 9 - Item: White_Chocolate + Item: White_Chocolate_B Rate: 208 - Index: 10 - Item: HandMade_Chocolate + Item: HandMade_Chocolate_B Rate: 208 - Index: 11 - Item: Chocolate + Item: HandMade_Chocolate_B_ Rate: 208 - Index: 12 - Item: Sesame_Pastry + Item: Chocolate_B Rate: 208 - Index: 13 - Item: Honey_Pastry + Item: Sesame_Pastry_B Rate: 208 - Index: 14 - Item: Rainbow_Cake + Item: Honey_Pastry_B + Rate: 208 + - Index: 15 + Item: Rainbow_Cake_B Rate: 208 - SubGroup: 3 List: - Index: 0 - Item: Lucky_Cookie + Item: Lucky_Cookie_B Rate: 1042 - Index: 1 - Item: Lucky_Candy_Cane + Item: Lucky_Candy_Cane_B Rate: 1042 - Index: 2 - Item: Rice_Ball + Item: Rice_Ball_B Rate: 1042 - Index: 3 - Item: Candy_Striper + Item: Candy_Striper_B Rate: 1042 - Index: 4 - Item: Lucky_Candy + Item: Lucky_Candy_B Rate: 1042 - Index: 5 - Item: Candy + Item: Candy_B Rate: 1042 - Index: 6 - Item: Piece_Of_Cake + Item: Piece_Of_Cake_B Rate: 1042 - Index: 7 - Item: Well_Baked_Cookie + Item: Well_Baked_Cookie_B Rate: 1042 - Index: 8 - Item: Chocolate_Drink + Item: Chocolate_Drink_B Rate: 208 - Index: 9 - Item: White_Chocolate + Item: White_Chocolate_B Rate: 208 - Index: 10 - Item: HandMade_Chocolate + Item: HandMade_Chocolate_B Rate: 208 - Index: 11 - Item: Chocolate + Item: HandMade_Chocolate_B_ Rate: 208 - Index: 12 - Item: Sesame_Pastry + Item: Chocolate_B Rate: 208 - Index: 13 - Item: Honey_Pastry + Item: Sesame_Pastry_B Rate: 208 - Index: 14 - Item: Rainbow_Cake + Item: Honey_Pastry_B + Rate: 208 + - Index: 15 + Item: Rainbow_Cake_B Rate: 208 - SubGroup: 4 List: - Index: 0 - Item: Lucky_Cookie + Item: Lucky_Cookie_B Rate: 1042 - Index: 1 - Item: Lucky_Candy_Cane + Item: Lucky_Candy_Cane_B Rate: 1042 - Index: 2 - Item: Rice_Ball + Item: Rice_Ball_B Rate: 1042 - Index: 3 - Item: Candy_Striper + Item: Candy_Striper_B Rate: 1042 - Index: 4 - Item: Lucky_Candy + Item: Lucky_Candy_B Rate: 1042 - Index: 5 - Item: Candy + Item: Candy_B Rate: 1042 - Index: 6 - Item: Piece_Of_Cake + Item: Piece_Of_Cake_B Rate: 1042 - Index: 7 - Item: Well_Baked_Cookie + Item: Well_Baked_Cookie_B Rate: 1042 - Index: 8 - Item: Chocolate_Drink + Item: Chocolate_Drink_B Rate: 208 - Index: 9 - Item: White_Chocolate + Item: White_Chocolate_B Rate: 208 - Index: 10 - Item: HandMade_Chocolate + Item: HandMade_Chocolate_B Rate: 208 - Index: 11 - Item: Chocolate + Item: HandMade_Chocolate_B_ Rate: 208 - Index: 12 - Item: Sesame_Pastry + Item: Chocolate_B Rate: 208 - Index: 13 - Item: Honey_Pastry + Item: Sesame_Pastry_B Rate: 208 - Index: 14 - Item: Rainbow_Cake + Item: Honey_Pastry_B + Rate: 208 + - Index: 15 + Item: Rainbow_Cake_B Rate: 208 - SubGroup: 5 List: - Index: 0 - Item: Lucky_Cookie + Item: Lucky_Cookie_B Rate: 1042 - Index: 1 - Item: Lucky_Candy_Cane + Item: Lucky_Candy_Cane_B Rate: 1042 - Index: 2 - Item: Rice_Ball + Item: Rice_Ball_B Rate: 1042 - Index: 3 - Item: Candy_Striper + Item: Candy_Striper_B Rate: 1042 - Index: 4 - Item: Lucky_Candy + Item: Lucky_Candy_B Rate: 1042 - Index: 5 - Item: Candy + Item: Candy_B Rate: 1042 - Index: 6 - Item: Piece_Of_Cake + Item: Piece_Of_Cake_B Rate: 1042 - Index: 7 - Item: Well_Baked_Cookie + Item: Well_Baked_Cookie_B Rate: 1042 - Index: 8 - Item: Chocolate_Drink + Item: Chocolate_Drink_B Rate: 208 - Index: 9 - Item: White_Chocolate + Item: White_Chocolate_B Rate: 208 - Index: 10 - Item: HandMade_Chocolate + Item: HandMade_Chocolate_B Rate: 208 - Index: 11 - Item: Chocolate + Item: HandMade_Chocolate_B_ Rate: 208 - Index: 12 - Item: Sesame_Pastry + Item: Chocolate_B Rate: 208 - Index: 13 - Item: Honey_Pastry + Item: Sesame_Pastry_B Rate: 208 - Index: 14 - Item: Rainbow_Cake + Item: Honey_Pastry_B + Rate: 208 + - Index: 15 + Item: Rainbow_Cake_B Rate: 208 - Group: SHADOW_BOX2 SubGroups: - SubGroup: 1 List: - Index: 0 - Item: S_Lucky_Weapon - Rate: 850 + Item: Brilliant_Golden_Wings + Rate: 220 + Announced: true - Index: 1 - Item: S_Power_Earring - Rate: 850 + Item: S_Lucky_Weapon + Rate: 815 - Index: 2 - Item: S_Int_Pendant - Rate: 850 + Item: S_Power_Earring + Rate: 815 - Index: 3 - Item: S_Dexterous_Armor - Rate: 850 + Item: S_Int_Pendant + Rate: 815 - Index: 4 - Item: S_Vital_Shoes - Rate: 850 + Item: S_Dexterous_Armor + Rate: 815 - Index: 5 - Item: S_Athletic_Shield - Rate: 750 + Item: S_Vital_Shoes + Rate: 815 - Index: 6 - Item: S_Lucky_Armor - Rate: 850 + Item: S_Athletic_Shield + Rate: 815 - Index: 7 - Item: S_Power_Pendant - Rate: 850 + Item: S_Lucky_Armor + Rate: 815 - Index: 8 - Item: S_Int_Earring - Rate: 850 + Item: S_Power_Pendant + Rate: 815 - Index: 9 - Item: S_Dexterous_Weapon - Rate: 850 + Item: S_Int_Earring + Rate: 815 - Index: 10 - Item: S_Athletic_Shoes - Rate: 750 + Item: S_Dexterous_Weapon + Rate: 815 - Index: 11 + Item: S_Athletic_Shoes + Rate: 815 + - Index: 12 Item: S_Vital_Shield - Rate: 850 + Rate: 815 - Group: SHADOW_BOX SubGroups: - SubGroup: 1 @@ -71425,303 +76456,195 @@ Body: UniqueId: true - Group: POWER_BOX2 SubGroups: - - SubGroup: 1 - List: - - Index: 0 - Item: C_Night_Sparrow_Hat - Rate: 166 - UniqueId: true - - Index: 1 - Item: C_Black_Mage_Hat - Rate: 166 - UniqueId: true - - Index: 2 - Item: C_Shrine_Maiden_Hat - Rate: 166 - UniqueId: true - - Index: 3 - Item: C_Sorc_Night_Cap - Rate: 166 - UniqueId: true - SubGroup: 0 List: - Index: 0 - Item: Special_Eyepatch - Duration: 4320 + Item: Honey_Pastry + UniqueId: true + - Index: 1 + Item: Sesame_Pastry + UniqueId: true + - Index: 2 + Item: Exorcize_Herb UniqueId: true - Group: POWER_BOX1 SubGroups: - - SubGroup: 1 + - SubGroup: 0 List: - Index: 0 - Item: Battle_Manual_X3 - Rate: 1 - - Index: 1 - Item: Bloody_Dead_Branch - Rate: 1 - - Index: 2 - Item: HE_Bubble_Gum - Rate: 1 - Amount: 2 - - SubGroup: 2 - List: - - Index: 0 - Item: Battle_Manual_X3 - Rate: 30 - - Index: 1 - Item: Bloody_Dead_Branch - Rate: 31 - Amount: 2 - - Index: 2 - Item: HE_Bubble_Gum - Rate: 32 - Amount: 3 - - Index: 3 - Item: Lucky_Egg_C10 - Rate: 33 - - Index: 4 - Item: Bow_Mercenary_Scroll10 - Rate: 34 - Amount: 10 - - Index: 5 - Item: Bravery_Bag - Rate: 10 + Item: Honey_Pastry UniqueId: true - - Index: 6 - Item: Sunglasses_ - Rate: 5 + - Index: 1 + Item: Sesame_Pastry + UniqueId: true + - Index: 2 + Item: Realgar_Wine UniqueId: true - Group: MAIL_BREAKER_BOX1 SubGroups: - - SubGroup: 1 + - SubGroup: 0 List: - Index: 0 - Item: Marvelous_Medal - Rate: 15 - Amount: 1000 - - Index: 1 - Item: Event_Pierrot_Nose - Rate: 4 - - Index: 2 - Item: Archangel_Wing - Rate: 4 - - Index: 3 - Item: Magic_Card_Album - Rate: 2 + Item: Mail_Breaker_C + Duration: 1440 UniqueId: true - - Index: 4 - Item: Fallen_Angel_Wing - Rate: 4 - - Index: 5 - Item: Food_Box_Lv1 - Rate: 22 - - Index: 6 - Item: SpearMercenary_Scroll10 - Rate: 23 - Amount: 10 - - Index: 7 - Item: SwordMercenary_Scroll10 - Rate: 24 - Amount: 10 - - Index: 8 - Item: Bow_Mercenary_Scroll10 - Rate: 25 - Amount: 10 - - Index: 9 - Item: Santa_Hat_2 - Rate: 5 - Group: HARDBACK_BOX1 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Lucky_Egg_C10 - - Index: 1 - Item: Silvervine - Amount: 2 - - SubGroup: 1 - List: - - Index: 0 - Item: Blue_Arara_Hat - Rate: 10 - - Index: 1 - Item: Bloody_Dead_Branch - Rate: 15 - Amount: 2 - - Index: 2 - Item: Deviruchi_Set_Box - Rate: 3 - - Index: 3 - Item: Slot_Coupon - Rate: 13 - - Index: 4 - Item: Battle_Manual_X3 - Rate: 15 - Amount: 2 - - Index: 5 - Item: Archangel_Wing - Rate: 3 - - Index: 6 - Item: Marvelous_Medal - Rate: 15 - Amount: 250 + Item: Hardback_C + Duration: 1440 + UniqueId: true - Group: SWORD_BREAKER_BOX1 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Deviruchi_Set_Box + Item: Sword_Breaker_C + Duration: 1440 UniqueId: true - - Index: 1 - Item: Bow_Of_Rudra_Box1 - - Index: 2 - Item: Bow_Of_Rudra_Box1 - - Index: 3 - Item: Bow_Of_Rudra_Box1 - - Index: 4 - Item: Bow_Of_Rudra_Box1 - - Index: 5 - Item: Bow_Of_Rudra_Box1 - Group: BOW_OF_RUDRA_BOX1 SubGroups: - - SubGroup: 1 + - SubGroup: 0 List: - Index: 0 - Item: Bravery_Bag - Rate: 3 - - Index: 1 - Item: Pencil_In_Mouth - Rate: 5 - - Index: 2 - Item: KVM_Badge - Rate: 12 - Amount: 400 - - Index: 3 - Item: Anubis_Helm - Rate: 17 - - Index: 4 - Item: Food_Box_Lv1 - Rate: 20 - - Index: 5 - Item: Rideword_Hat - Rate: 6 - - Index: 6 - Item: C_Ear_Of_Black_Cat - Rate: 7 - - Index: 7 - Item: Guarantee_Armor_7Up - Rate: 21 - Amount: 4 - - Index: 8 - Item: HD_Elunium - Rate: 22 - Amount: 10 - - Index: 9 - Item: Enchant_Book - Rate: 10 - - Index: 10 - Item: Evil's_Bone_Hat - Rate: 8 - - SubGroup: 2 - List: - - Index: 0 - Item: SpearMercenary_Scroll10 - Rate: 23 - Amount: 10 - - Index: 1 - Item: SwordMercenary_Scroll10 - Rate: 24 - Amount: 10 - - Index: 2 - Item: Bow_Mercenary_Scroll10 - Rate: 25 - Amount: 10 - - Index: 3 - Item: Pet_Egg_Scroll10 - Rate: 20 - - Index: 4 - Item: Battle_Manual_X3 - Rate: 22 - Amount: 2 + Item: Bow_Of_Rudra_C + Duration: 1440 + UniqueId: true - Group: BLOODY_ROAR_BOX1 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Bloody_Dead_Branch - - SubGroup: 2 - List: - - Index: 0 - Item: F_Repair_Scroll_Box - Rate: 10 - - Index: 1 - Item: Battle_Manual_X3 - Rate: 10 - - Index: 2 - Item: Fallen_Leaves_ - Rate: 6 + Item: Bloody_Roar_C + Duration: 1440 UniqueId: true - - Index: 3 - Item: Magic_Power_Scroll - Rate: 17 - Amount: 15 - - Index: 4 - Item: Knife_Goblin_Ring - Rate: 17 - Amount: 4 - Group: BLOODY_IRON_BALL_BOX1 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: C_Corsair - - Index: 1 - Item: Battle_Manual_X3 - Amount: 2 - - Index: 2 - Item: Bubble_Gum - Amount: 2 - - Index: 3 - Item: Kafra_Card - Amount: 2 - - Index: 4 - Item: Insurance - Amount: 2 - - Index: 5 - Item: Token_Of_Siegfried - Amount: 2 - - Index: 6 - Item: Abrasive - Amount: 10 + Item: Bloody_Iron_Ball_C + Duration: 1440 + UniqueId: true - Group: SIEGE_SUPPLY_BOX SubGroups: - - SubGroup: 0 - List: - - Index: 0 - Item: Exchange_Coupon - SubGroup: 1 List: - Index: 0 - Item: Exchange_Coupon - Rate: 25 + Item: White_Slim_Potion_Box_ + Rate: 50 - Index: 1 - Item: Exchange_Coupon - Rate: 25 - Amount: 2 + Item: Mastela_Fruit_Box_ + Rate: 50 - Index: 2 - Item: Exchange_Coupon - Rate: 25 - Amount: 3 + Item: White_Potion_Box_ + Rate: 10 - Index: 3 - Item: Exchange_Coupon - Rate: 25 - Amount: 4 + Item: Royal_Jelly_Box2_ + Rate: 50 + - Index: 4 + Item: Blue_Herb_Box2 + Rate: 10 + - Index: 5 + Item: Yellow_Gemstone + Rate: 50 + Amount: 50 + - Index: 6 + Item: Red_Gemstone + Rate: 50 + Amount: 50 + - Index: 7 + Item: Blue_Gemstone + Rate: 50 + Amount: 50 + - Index: 8 + Item: Detrimindexta + Rate: 50 + Amount: 20 + - Index: 9 + Item: Karvodailnirol + Rate: 50 + Amount: 20 + - Index: 10 + Item: Bomb_Mushroom_Spore + Rate: 50 + Amount: 10 + - Index: 11 + Item: Tear_Gas + Rate: 50 + Amount: 10 + - Index: 12 + Item: Explosive_Powder + Rate: 50 + Amount: 20 + - Index: 13 + Item: Smoke_Powder + Rate: 50 + Amount: 20 + - Index: 14 + Item: Runstone_Ancient + Rate: 50 + Amount: 10 + - Index: 15 + Item: Light_Granule + Rate: 50 + Amount: 10 + - Index: 16 + Item: Special_Alloy_Trap + Rate: 50 + Amount: 50 + - Index: 17 + Item: Poison_Herb_Nerium + Rate: 50 + Amount: 20 + - Index: 18 + Item: Poison_Herb_Rantana + Rate: 50 + Amount: 20 + - Index: 19 + Item: Poison_Herb_Makulata + Rate: 50 + Amount: 20 + - Index: 20 + Item: Poison_Herb_Seratum + Rate: 50 + Amount: 20 + - Index: 21 + Item: Poison_Herb_Scopolia + Rate: 50 + Amount: 20 + - Index: 22 + Item: Poison_Herb_Amoena + Rate: 50 + Amount: 20 + - Index: 23 + Item: Yggdrasil_Seed_Box_ + Rate: 30 + - Index: 24 + Item: Speed_Up_Potion + Rate: 10 + Amount: 10 + - Index: 25 + Item: Mandragora_Flowerpot + Rate: 10 + Amount: 10 + - Index: 26 + Item: Mora_Hip_Tea + Rate: 10 + Amount: 10 + - Index: 27 + Item: Rafflecino + Rate: 10 + Amount: 10 - Group: PC_BANG_COIN_BOX1 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Santa_Hat_2 + Item: Rusty_Coin + Duration: 60 - Group: ACIDBOMB_BOX50 SubGroups: - SubGroup: 0 @@ -71737,63 +76660,37 @@ Body: - SubGroup: 0 List: - Index: 0 - Item: Battle_Manual_X3 - - SubGroup: 2 - List: - - Index: 0 - Item: Battle_Manual_X3 - Rate: 150 - - Index: 1 - Item: Kuloren - Rate: 120 - Amount: 3 - - Index: 2 - Item: Job_Manual50 - Rate: 100 - Amount: 2 - - Index: 3 - Item: BF_Badge1 - Rate: 100 - Amount: 50 - - Index: 4 - Item: Helm_Of_Abyss - Rate: 75 - UniqueId: true + Item: Ordinary_Coin + Duration: 60 - Group: PC_BANG_COIN_BOX4 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Pty_Assumptio_Scroll - Amount: 16 - - Index: 1 - Item: Pty_Inc_Agi_Scroll - Amount: 10 - - Index: 2 - Item: Pty_Blessing_Scroll - Amount: 10 + Item: Shiny_Coin + Duration: 120 - Group: FOOD_BOX_LV1 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Savage_BBQ - Amount: 5 + Item: Str_Dish01_ + UniqueId: true - Index: 1 - Item: Wug_Blood_Cocktail - Amount: 5 + Item: Int_Dish01_ + UniqueId: true - Index: 2 - Item: Minor_Brisket - Amount: 5 + Item: Vit_Dish01_ + UniqueId: true - Index: 3 - Item: Siroma_Icetea - Amount: 5 + Item: Agi_Dish01_ + UniqueId: true - Index: 4 - Item: Drocera_Herb_Stew - Amount: 5 + Item: Dex_Dish01_ + UniqueId: true - Index: 5 - Item: Petti_Tail_Noodle - Amount: 5 + Item: Luk_Dish01_ + UniqueId: true - Group: FOOD_BOX_LV2 SubGroups: - SubGroup: 0 @@ -71843,17 +76740,17 @@ Body: - SubGroup: 0 List: - Index: 0 - Item: F_Battle_Manual + Item: Battle_Manual Amount: 2 + UniqueId: true - Index: 1 - Item: F_Blessing_10_Scroll + Item: Blessing_10_Scroll Amount: 15 + UniqueId: true - Index: 2 - Item: F_Inc_Agi_10_Scroll + Item: Inc_Agi_10_Scroll Amount: 15 - - Index: 3 - Item: E_WOB_Rune - Amount: 5 + UniqueId: true - Group: REPAIR_SCROLL_BOX10 SubGroups: - SubGroup: 0 @@ -72298,13 +77195,69 @@ Body: UniqueId: true - Group: TW_SCROLL01 SubGroups: - - SubGroup: 0 + - SubGroup: 1 List: - Index: 0 - Item: RWC_2012_Set_Box + Item: Fish_Head_Hat + Rate: 1 UniqueId: true - Index: 1 - Item: RWC_Scroll_2012 + Item: Magestic_Goat_ + Rate: 1 + UniqueId: true + - Index: 2 + Item: Sharp_Gear_ + Rate: 1 + UniqueId: true + - Index: 3 + Item: Neuralizer + Rate: 17 + UniqueId: true + - Index: 4 + Item: Convex_Mirror + Rate: 80 + UniqueId: true + - Index: 5 + Item: Blessing_10_Scroll_Box + Rate: 100 + UniqueId: true + - Index: 6 + Item: Inc_Agi_10_Scroll_Box + Rate: 100 + UniqueId: true + - Index: 7 + Item: Vigorgra_Package6 + Rate: 70 + UniqueId: true + - Index: 8 + Item: Mojji + Rate: 150 + Amount: 20 + UniqueId: true + - Index: 9 + Item: Guyak_Candy + Rate: 150 + Amount: 20 + UniqueId: true + - Index: 10 + Item: Guyak_Pudding + Rate: 150 + Amount: 15 + UniqueId: true + - Index: 11 + Item: Insurance + Rate: 60 + Amount: 10 + UniqueId: true + - Index: 12 + Item: Token_Of_Siegfried + Rate: 60 + Amount: 10 + UniqueId: true + - Index: 13 + Item: Battle_Manual + Rate: 60 + Amount: 10 UniqueId: true - Group: PICTURE_DIARY_BOX SubGroups: @@ -72511,11 +77464,25 @@ Body: - SubGroup: 0 List: - Index: 0 - Item: Guarantee_Armor_6Up + Item: Repair_Scroll_ + Amount: 5 + UniqueId: true - Index: 1 - Item: Guarantee_Armor_7Up + Item: Iron_Ore + Amount: 5 + UniqueId: true - Index: 2 - Item: Guarantee_Weapon_7Up + Item: Iron + Amount: 5 + UniqueId: true + - Index: 3 + Item: Oridecon_Stone + Amount: 5 + UniqueId: true + - Index: 4 + Item: Steel + Amount: 5 + UniqueId: true - Group: F_REPAIR_SCROLL_BOX10 SubGroups: - SubGroup: 0 @@ -72665,7 +77632,7 @@ Body: - SubGroup: 0 List: - Index: 0 - Item: Ear_Of_Devil's_Wing + Item: Evil_Wing_Ears_C Duration: 20160 UniqueId: true - Group: F_DARK_BLINDFOLD_BOX @@ -72738,7 +77705,7 @@ Body: List: - Index: 0 Item: Combat_Knife_C - Duration: 20160 + Duration: 10080 UniqueId: true - Group: F_COUNTER_DAGGER_BOX SubGroups: @@ -72746,7 +77713,7 @@ Body: List: - Index: 0 Item: Counter_Dagger_C - Duration: 20160 + Duration: 10080 UniqueId: true - Group: F_KAISER_KNUCKLE_BOX SubGroups: @@ -72770,7 +77737,7 @@ Body: List: - Index: 0 Item: Right_Epsilon_C - Duration: 20160 + Duration: 10080 UniqueId: true - Group: F_BALISTAR_BOX SubGroups: @@ -72786,7 +77753,7 @@ Body: List: - Index: 0 Item: Diary_Of_Great_Sage_C - Duration: 20160 + Duration: 10080 UniqueId: true - Group: F_ASURA_BOX SubGroups: @@ -72794,7 +77761,7 @@ Body: List: - Index: 0 Item: Asura_C - Duration: 20160 + Duration: 10080 UniqueId: true - Group: F_APPLE_OF_ARCHER_BOX SubGroups: @@ -72850,7 +77817,7 @@ Body: List: - Index: 0 Item: Critical_Ring_C - Duration: 20160 + Duration: 10080 UniqueId: true - Group: F_EARRING_BOX SubGroups: @@ -72858,7 +77825,7 @@ Body: List: - Index: 0 Item: Earring_C - Duration: 20160 + Duration: 10080 UniqueId: true - Group: F_RING_BOX SubGroups: @@ -72866,7 +77833,7 @@ Body: List: - Index: 0 Item: Ring_C - Duration: 20160 + Duration: 10080 UniqueId: true - Group: F_NECKLACE_BOX SubGroups: @@ -72874,7 +77841,7 @@ Body: List: - Index: 0 Item: Necklace_C - Duration: 20160 + Duration: 10080 UniqueId: true - Group: F_GLOVE_BOX SubGroups: @@ -72882,7 +77849,7 @@ Body: List: - Index: 0 Item: Glove_C - Duration: 20160 + Duration: 10080 UniqueId: true - Group: F_BROOCH_BOX SubGroups: @@ -72890,7 +77857,7 @@ Body: List: - Index: 0 Item: Brooch_C - Duration: 20160 + Duration: 10080 UniqueId: true - Group: F_ROSARY_BOX SubGroups: @@ -72898,7 +77865,7 @@ Body: List: - Index: 0 Item: Rosary_C - Duration: 20160 + Duration: 10080 UniqueId: true - Group: F_SAFETY_RING_BOX SubGroups: @@ -72906,7 +77873,7 @@ Body: List: - Index: 0 Item: Safety_Ring_C - Duration: 20160 + Duration: 10080 UniqueId: true - Group: F_VESPER_CORE_BOX01 SubGroups: @@ -72942,59 +77909,63 @@ Body: UniqueId: true - Group: F_VIGORGRA_PACKAGE1 SubGroups: - - SubGroup: 1 + - SubGroup: 0 List: - Index: 0 - Item: Fidelity_Necklace - Rate: 166 + Item: Battle_Manual + Amount: 2 UniqueId: true - Index: 1 - Item: Black_Shiba_Inu_Hat - Rate: 166 + Item: Str_Dish10_ + Amount: 2 UniqueId: true - Index: 2 - Item: Sinsuncho_Hat - Rate: 166 + Item: Agi_Dish10_ + Amount: 2 UniqueId: true - Index: 3 - Item: Drosera_Hairpin - Rate: 166 + Item: Inc_Agi_10_Scroll + Amount: 15 UniqueId: true - Index: 4 - Item: Butterfly_Wing_Ear_J - Rate: 166 + Item: Blessing_10_Scroll + Amount: 15 UniqueId: true - Index: 5 - Item: Anemos_Mask - Rate: 166 + Item: Kafra_Card + UniqueId: true + - Index: 6 + Item: Token_Of_Siegfried UniqueId: true - Group: F_VIGORGRA_PACKAGE2 SubGroups: - - SubGroup: 1 + - SubGroup: 0 List: - Index: 0 - Item: Fidelity_Necklace - Rate: 166 + Item: Battle_Manual + Amount: 2 UniqueId: true - Index: 1 - Item: Black_Shiba_Inu_Hat - Rate: 166 + Item: Str_Dish10_ + Amount: 2 UniqueId: true - Index: 2 - Item: Sinsuncho_Hat - Rate: 166 + Item: Vit_Dish10_ + Amount: 2 UniqueId: true - Index: 3 - Item: Drosera_Hairpin - Rate: 166 + Item: Inc_Agi_10_Scroll + Amount: 15 UniqueId: true - Index: 4 - Item: Butterfly_Wing_Ear_J - Rate: 166 + Item: Blessing_10_Scroll + Amount: 15 UniqueId: true - Index: 5 - Item: Anemos_Mask - Rate: 166 + Item: Kafra_Card + UniqueId: true + - Index: 6 + Item: Token_Of_Siegfried UniqueId: true - Group: F_VIGORGRA_PACKAGE5 SubGroups: @@ -73129,119 +78100,96 @@ Body: - SubGroup: 0 List: - Index: 0 - Item: Red_Envelope - Amount: 20 + Item: Battle_Manual + Amount: 4 UniqueId: true - Index: 1 - Item: Novice_Potion - Amount: 200 + Item: Int_Dish10_ + Amount: 4 UniqueId: true - Index: 2 - Item: Battle_Manual + Item: Dex_Dish10_ + Amount: 4 UniqueId: true - Index: 3 - Item: WOB_Rune - Amount: 3 + Item: Inc_Agi_10_Scroll + Amount: 30 + UniqueId: true + - Index: 4 + Item: Blessing_10_Scroll + Amount: 30 + UniqueId: true + - Index: 5 + Item: Kafra_Card + Amount: 2 + UniqueId: true + - Index: 6 + Item: Token_Of_Siegfried + Amount: 2 UniqueId: true - Group: F_VIGORGRA_PACKAGE10 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Str_Dish10_ - Amount: 5 + Item: Battle_Manual + Amount: 4 UniqueId: true - Index: 1 - Item: Dex_Dish10_ - Amount: 5 + Item: Int_Dish10_ + Amount: 4 UniqueId: true - Index: 2 - Item: Int_Dish10_ - Amount: 5 + Item: Vit_Dish10_ + Amount: 4 UniqueId: true - Index: 3 - Item: Mega_Resist_Potion - Amount: 10 + Item: Inc_Agi_10_Scroll + Amount: 30 UniqueId: true - Index: 4 - Item: B_Def_Potion - Amount: 10 + Item: Blessing_10_Scroll + Amount: 30 UniqueId: true - Index: 5 - Item: B_Mdef_Potion - Amount: 10 + Item: Kafra_Card + Amount: 2 UniqueId: true - Index: 6 - Item: Siege_White_Potion - Amount: 50 - UniqueId: true - - Index: 7 - Item: Siege_Blue_Potion - Amount: 25 - UniqueId: true - - Index: 8 - Item: Speed_Up_Potion - Amount: 20 - UniqueId: true - - Index: 9 - Item: WOB_Rachel - Amount: 5 - UniqueId: true - - Index: 10 - Item: WOB_Schwaltz - Amount: 5 - UniqueId: true - - Index: 11 - Item: WOB_Rune - Amount: 5 - UniqueId: true - - Index: 12 - Item: Siege_Teleport_Scroll - Amount: 20 + Item: Token_Of_Siegfried + Amount: 2 UniqueId: true - Group: F_VIGORGRA_PACKAGE11 SubGroups: - SubGroup: 0 List: - Index: 0 - Item: Assumptio_5_Scroll - Amount: 20 - UniqueId: true - - Index: 1 - Item: B_Def_Potion - Amount: 15 - UniqueId: true - - Index: 2 - Item: B_Mdef_Potion - Amount: 15 - UniqueId: true - - Index: 3 - Item: Med_Life_Potion - Amount: 6 - UniqueId: true - - Index: 4 - Item: Token_Of_Siegfried - Amount: 10 - UniqueId: true - - Index: 5 - Item: Insurance - Amount: 3 - UniqueId: true - - Index: 6 - Item: Regeneration_Potion - Amount: 5 - UniqueId: true - - Index: 7 - Item: Mega_Resist_Potion + Item: Battle_Manual Amount: 4 UniqueId: true - - Index: 8 - Item: Siege_White_Potion - Amount: 50 + - Index: 1 + Item: Str_Dish10_ + Amount: 4 UniqueId: true - - Index: 9 - Item: Siege_Blue_Potion - Amount: 25 + - Index: 2 + Item: Int_Dish10_ + Amount: 4 + UniqueId: true + - Index: 3 + Item: Inc_Agi_10_Scroll + Amount: 30 + UniqueId: true + - Index: 4 + Item: Blessing_10_Scroll + Amount: 30 + UniqueId: true + - Index: 5 + Item: Kafra_Card + Amount: 2 + UniqueId: true + - Index: 6 + Item: Token_Of_Siegfried + Amount: 2 UniqueId: true - Group: F_VIGORGRA_PACKAGE12 SubGroups: @@ -73249,67 +78197,47 @@ Body: List: - Index: 0 Item: Battle_Manual - Amount: 10 + Amount: 4 UniqueId: true - Index: 1 - Item: Bubble_Gum - Amount: 10 + Item: Str_Dish10_ + Amount: 4 UniqueId: true - Index: 2 - Item: Inc_Agi_10_Scroll - Amount: 20 + Item: Agi_Dish10_ + Amount: 4 UniqueId: true - Index: 3 - Item: Blessing_10_Scroll - Amount: 20 + Item: Adrenaline_Scroll + Amount: 48 UniqueId: true - Index: 4 - Item: Token_Of_Siegfried - Amount: 10 + Item: Aspersio_5_Scroll + Amount: 40 UniqueId: true - Index: 5 - Item: Insurance - Amount: 10 + Item: Holy_Water + Amount: 40 UniqueId: true - Index: 6 Item: Kafra_Card - Amount: 5 + Amount: 2 UniqueId: true - Index: 7 - Item: Greed_Scroll - Amount: 20 - UniqueId: true - - Index: 8 - Item: Dun_Tele_Scroll1 - Amount: 10 - UniqueId: true - - Index: 9 - Item: WOB_Local - Amount: 5 - UniqueId: true - - Index: 10 - Item: WOB_Rachel - Amount: 5 - UniqueId: true - - Index: 11 - Item: WOB_Schwaltz - Amount: 5 - UniqueId: true - - Index: 12 - Item: WOB_Rune - Amount: 5 - UniqueId: true - - Index: 13 - Item: Small_Life_Potion - Amount: 12 + Item: Token_Of_Siegfried + Amount: 2 UniqueId: true - Group: F_ASPERSIO_5_SCROLL_BOX SubGroups: - SubGroup: 0 List: - Index: 0 - Item: F_Aspersio_5_Scroll - Amount: 20 + Item: Holy_Water + Amount: 10 + UniqueId: true + - Index: 1 + Item: Aspersio_5_Scroll + Amount: 10 UniqueId: true - Group: F_ASPERSIO_5_BOX30 SubGroups: @@ -73787,199 +78715,32354 @@ Body: List: - Index: 0 Item: Range_Stone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 1 Item: Melee_Stone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 2 Item: Magic_Stone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 3 Item: SmatkStone_Robe - Rate: 10 + Rate: 1 + Announced: true - Index: 4 Item: M_PATKStone_Robe - Rate: 10 + Rate: 1 + Announced: true - Index: 5 Item: R_PATKStone_Robe - Rate: 10 + Rate: 1 + Announced: true - Index: 6 Item: ResistDefStone_Robe - Rate: 10 + Rate: 1 + Announced: true - Index: 7 Item: StaminaWISStone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 8 Item: POWStone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 9 Item: SplStone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 10 Item: ConStone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 11 Item: CrtStone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 12 Item: MinorCastStone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 13 Item: AbysschaserStone_Robe - Rate: 10 + Rate: 1 + Announced: true - Index: 14 Item: TRTRStone_Robe - Rate: 10 + Rate: 1 + Announced: true - Index: 15 Item: HNoviceStone_Robe - Rate: 10 + Rate: 1 + Announced: true - Index: 16 Item: ReloadStone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 17 Item: CriticalStone_Robe_D - Rate: 10 + Rate: 1 + Announced: true - Index: 18 Item: DoubleAttack_Stone - Rate: 20 + Rate: 2 + Announced: true - Index: 19 Item: Critical_Stone_Robe - Rate: 20 + Rate: 2 + Announced: true - Index: 20 Item: CastStone_Robe_D - Rate: 40 + Rate: 4 + Announced: true - Index: 21 Item: SPdrainStone_Robe_D - Rate: 40 + Rate: 4 + Announced: true - Index: 22 Item: HPdrainStone_Robe_D - Rate: 80 + Rate: 8 + Announced: true - Index: 23 Item: ASPDStone_Robe_D - Rate: 80 + Rate: 8 + Announced: true - Index: 24 Item: CastStone_Robe - Rate: 80 + Rate: 8 + Announced: true - Index: 25 Item: ShadowchasStone_Top3 - Rate: 80 + Rate: 8 + Announced: true - Index: 26 Item: ShadowchasStone_Middle3 - Rate: 80 + Rate: 8 + Announced: true - Index: 27 Item: ShadowchasStone_Bottom3 - Rate: 80 + Rate: 8 + Announced: true - Index: 28 Item: WanderMinsStone_Top3 - Rate: 80 + Rate: 8 + Announced: true - Index: 29 Item: WanderMinsStone_Middle3 - Rate: 80 + Rate: 8 + Announced: true - Index: 30 Item: WanderMinsStone_Bottom3 - Rate: 80 + Rate: 8 + Announced: true - Index: 31 Item: SuNoviceStone_Top - Rate: 80 + Rate: 8 + Announced: true - Index: 32 Item: SuNoviceStone_Middle - Rate: 80 + Rate: 8 + Announced: true - Index: 33 Item: SuNoviceStone_Bottom - Rate: 80 + Rate: 8 + Announced: true - Index: 34 Item: Stone_Robe_Box - Rate: 170 + Rate: 17 - Index: 35 - Item: aegis_102333 - Rate: 170 + Item: Stone_Robe3_Box + Rate: 17 - Index: 36 Item: Magic_Stone_Top - Rate: 200 + Rate: 20 - Index: 37 Item: Magic_Stone_Middle - Rate: 200 + Rate: 20 - Index: 38 Item: Magic_Stone_Bottom - Rate: 200 + Rate: 20 - Index: 39 Item: Range_Stone_Top - Rate: 200 + Rate: 20 - Index: 40 Item: Range_Stone - Rate: 200 + Rate: 20 - Index: 41 Item: Range_Stone_Bottom - Rate: 200 + Rate: 20 - Index: 42 Item: Melee_Stone_Top - Rate: 200 + Rate: 20 - Index: 43 Item: Melee_Stone_Middle - Rate: 200 + Rate: 20 - Index: 44 Item: Melee_Stone_Bottom - Rate: 200 + Rate: 20 - Index: 45 Item: DefenseStone_Top - Rate: 200 + Rate: 20 - Index: 46 Item: DefenseStone_Middle - Rate: 200 + Rate: 20 - Index: 47 Item: DefenseStone_Bottom - Rate: 200 + Rate: 20 - Index: 48 Item: ReloadStone_Top - Rate: 200 + Rate: 20 - Index: 49 Item: ReloadStone_Middle - Rate: 200 + Rate: 20 - Index: 50 Item: ReloadStone_Bottom - Rate: 200 + Rate: 20 - Index: 51 Item: EXPStone_Middle - Rate: 200 + Rate: 20 - Index: 52 Item: EXPStone_Bottom - Rate: 200 + Rate: 20 - Index: 53 Item: EXPStone_Top - Rate: 200 + Rate: 20 - Index: 54 Item: Stone_Top_Box - Rate: 400 + Rate: 40 - Index: 55 Item: Stone_Top2_Box - Rate: 400 + Rate: 40 - Index: 56 Item: Stone_Middle_Box - Rate: 400 + Rate: 40 - Index: 57 Item: Stone_Middle2_Box - Rate: 400 + Rate: 40 - Index: 58 Item: Stone_Bottom_Box - Rate: 400 + Rate: 40 - Index: 59 Item: Stone_Bottom2_Box - Rate: 400 + Rate: 40 - Index: 60 Item: CastingStone_Top - Rate: 400 + Rate: 40 - Index: 61 Item: CastingStone_Middle - Rate: 400 + Rate: 40 - Index: 62 Item: CastingStone_Bottom - Rate: 400 + Rate: 40 - Index: 63 Item: Critical_Stone - Rate: 400 + Rate: 40 - Index: 64 Item: Critical_Stone_Top - Rate: 400 + Rate: 40 - Index: 65 Item: Critical_Stone_Bottom + Rate: 40 + - Group: LUXURIOUS_BLUE_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Queen_Wing_Piece + Rate: 312 + - Index: 1 + Item: Rojerta_Piece + Rate: 312 + - Index: 2 + Item: Will_Of_Darkness_ + Rate: 312 + - Index: 3 + Item: Broken_Horn + Rate: 312 + - Index: 4 + Item: Voucher_Of_Orcish_Hero + Rate: 312 + - Index: 5 + Item: Token_of_OrcGeneral + Rate: 312 + - Index: 6 + Item: Valhalla_Flower + Rate: 312 + - Index: 7 + Item: Broken_Crown + Rate: 312 + - Index: 8 + Item: Mother's_Nightmare + Rate: 312 + - Index: 9 + Item: Piece_Of_Bone_Armor + Rate: 312 + - Index: 10 + Item: Shine_Spear_Blade + Rate: 312 + - Index: 11 + Item: Osiris_Doll + Rate: 312 + - Index: 12 + Item: Fang_Of_Garm + Rate: 312 + - Index: 13 + Item: Pocket_Watch + Rate: 312 + - Index: 14 + Item: Loki's_Whispers + Rate: 312 + - Index: 15 + Item: Tiger_Footskin + Rate: 312 + - Index: 16 + Item: White_Snake_Tear + Rate: 313 + - Index: 17 + Item: Gemstone + Rate: 313 + - Index: 18 + Item: Young_Twig + Rate: 313 + - Index: 19 + Item: Taegeuk_Plate + Rate: 313 + - Index: 20 + Item: Ice_Scale + Rate: 313 + - Index: 21 + Item: Dark_Red_Scale + Rate: 313 + - Index: 22 + Item: Tutankhamen's_Mask + Rate: 313 + - Index: 23 + Item: Broken_Pharaoh_Symbol + Rate: 313 + - Index: 24 + Item: Scale_Of_Red_Dragon + Rate: 313 + - Index: 25 + Item: Konts_Letter + Rate: 313 + - Index: 26 + Item: Boroken_Shiled_Piece + Rate: 313 + - Index: 27 + Item: Tiger's_Skin + Rate: 313 + - Index: 28 + Item: Baphomet_Doll + Rate: 313 + - Index: 29 + Item: EP19_D_P_Stone + Rate: 313 + - Index: 30 + Item: EP19_Luminant + Rate: 313 + - Index: 31 + Item: EP20_D_Scale + Rate: 313 + - Index: 32 + Item: Queen_Wing_Piece + Rate: 312 + - Index: 33 + Item: Rojerta_Piece + Rate: 312 + - Index: 34 + Item: Will_Of_Darkness_ + Rate: 312 + - Index: 35 + Item: Broken_Horn + Rate: 312 + - Index: 36 + Item: Voucher_Of_Orcish_Hero + Rate: 312 + - Index: 37 + Item: Token_of_OrcGeneral + Rate: 312 + - Index: 38 + Item: Valhalla_Flower + Rate: 312 + - Index: 39 + Item: Broken_Crown + Rate: 312 + - Index: 40 + Item: Mother's_Nightmare + Rate: 312 + - Index: 41 + Item: Piece_Of_Bone_Armor + Rate: 312 + - Index: 42 + Item: Shine_Spear_Blade + Rate: 312 + - Index: 43 + Item: Osiris_Doll + Rate: 312 + - Index: 44 + Item: Fang_Of_Garm + Rate: 312 + - Index: 45 + Item: Pocket_Watch + Rate: 312 + - Index: 46 + Item: Baphomet_Doll + Rate: 312 + - Index: 47 + Item: Loki's_Whispers + Rate: 312 + - Index: 48 + Item: Tiger_Footskin + Rate: 313 + - Index: 49 + Item: White_Snake_Tear + Rate: 313 + - Index: 50 + Item: Gemstone + Rate: 313 + - Index: 51 + Item: Young_Twig + Rate: 313 + - Index: 52 + Item: Taegeuk_Plate + Rate: 313 + - Index: 53 + Item: Ice_Scale + Rate: 313 + - Index: 54 + Item: Dark_Red_Scale + Rate: 313 + - Index: 55 + Item: Tutankhamen's_Mask + Rate: 313 + - Index: 56 + Item: Broken_Pharaoh_Symbol + Rate: 313 + - Index: 57 + Item: Scale_Of_Red_Dragon + Rate: 313 + - Index: 58 + Item: Konts_Letter + Rate: 313 + - Index: 59 + Item: Boroken_Shiled_Piece + Rate: 313 + - Index: 60 + Item: Tiger's_Skin + Rate: 313 + - Index: 61 + Item: EP19_D_P_Stone + Rate: 313 + - Index: 62 + Item: EP19_Luminant + Rate: 313 + - Index: 63 + Item: EP20_D_Scale + Rate: 313 + - Group: C_BRAID_HALF_UP_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: C_Braid_Half_Up_BL_K + Rate: 3 + - Index: 1 + Item: C_Braid_Half_Up_WH_K + Rate: 3 + - Index: 2 + Item: C_Braid_Half_Up_OM_K + Rate: 3 + - Index: 3 + Item: C_Braid_Half_Up_PP_K + Rate: 3 + - Index: 4 + Item: C_Braid_Half_Up_BU_K + Rate: 3 + - Index: 5 + Item: C_Braid_Half_Up_YL_K + Rate: 3 + - Index: 6 + Item: C_Braid_Half_Up_RD_K + Rate: 3 + - Index: 7 + Item: C_Braid_Half_Up_GN_K + Rate: 3 + - Group: SLD_BOSS_CARD_ALBUM + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Sealed_D_Lord_Card + Rate: 10 + Announced: true + - Index: 1 + Item: Sealed_Knight_WS_Card + Rate: 10 + Announced: true + - Index: 2 + Item: Sealed_Berz_Card + Rate: 10 + Announced: true + - Index: 3 + Item: Sealed_Kiel_Card + Rate: 10 + Announced: true + - Index: 4 + Item: Sealed_Gloom_Card + Rate: 10 + Announced: true + - Index: 5 + Item: Sealed_F_Bishop_Card + Rate: 10 + Announced: true + - Index: 6 + Item: Sealed_Ifrit_Card + Rate: 10 + Announced: true + - Index: 7 + Item: Sealed_TurtleG_Card + Rate: 10 + Announced: true + - Index: 8 + Item: Sealed_Bacsojin_Card + Rate: 10 + Announced: true + - Index: 9 + Item: Sealed_Pharaoh_Card + Rate: 10 + Announced: true + - Index: 10 + Item: Sealed_M_Flower_Card + Rate: 10 + Announced: true + - Index: 11 + Item: Sealed_B_Ygnizem_Card + Rate: 10 + Announced: true + - Index: 12 + Item: Sealed_Apocalips_H_Card + Rate: 10 + Announced: true + - Index: 13 + Item: Sealed_Dracula_Card + Rate: 10 + Announced: true + - Index: 14 + Item: Sealed_B_Shecil_Card + Rate: 10 + Announced: true + - Index: 15 + Item: Sealed_Orc_Hero_Card + Rate: 10 + Announced: true + - Index: 16 + Item: Sealed_Lady_Tanee_Card + Rate: 10 + Announced: true + - Index: 17 + Item: Sealed_Samurai_Card + Rate: 10 + Announced: true + - Index: 18 + Item: Sealed_Orc_Load_Card + Rate: 10 + Announced: true + - Index: 19 + Item: Sealed_B_Magaleta_Card + Rate: 10 + Announced: true + - Index: 20 + Item: Sealed_B_Harword_Card + Rate: 10 + Announced: true + - Index: 21 + Item: Sealed_Eddga_Card + Rate: 10 + Announced: true + - Index: 22 + Item: Sealed_Ktullanux_Card + Rate: 10 + Announced: true + - Index: 23 + Item: Sealed_Mistress_Card + Rate: 10 + Announced: true + - Index: 24 + Item: SLD_Q_Scaraba_Card + Rate: 10 + Announced: true + - Index: 25 + Item: SLD_Baphomet_Card + Rate: 10 + Announced: true + - Index: 26 + Item: SLD_Maya_Card + Rate: 10 + Announced: true + - Index: 27 + Item: SLD_Clown_Card + Rate: 10 + Announced: true + - Index: 28 + Item: SLD_Professor_Card + Rate: 10 + Announced: true + - Index: 29 + Item: SLD_Champion_Card + Rate: 10 + Announced: true + - Index: 30 + Item: SLD_Creator_Card + Rate: 10 + Announced: true + - Index: 31 + Item: SLD_Stalker_Card + Rate: 10 + Announced: true + - Index: 32 + Item: SLD_Paladin_Card + Rate: 10 + Announced: true + - Index: 33 + Item: SLD_Gypsy_Card + Rate: 10 + Announced: true + - Index: 34 + Item: SLD_Daehyon_Card + Rate: 10 + Announced: true + - Index: 35 + Item: SLD_Gioia_Card + Rate: 10 + Announced: true + - Index: 36 + Item: SLD_Pyuriel_Card + Rate: 10 + Announced: true + - Index: 37 + Item: SLD_Kades_Card + Rate: 10 + Announced: true + - Index: 38 + Item: SLD_Timeholder_Card + Rate: 10 + Announced: true + - Index: 39 + Item: Sealed_Tao_Card + Rate: 10 + Announced: true + - Index: 40 + Item: SLD_Boitata_Card + Rate: 10 + Announced: true + - Index: 41 + Item: SLD_F_Muspell_Card + Rate: 10 + Announced: true + - Index: 42 + Item: SLD_Grave_Amon_Ra_Card + Rate: 10 + Announced: true + - Index: 43 + Item: SLD_P_Spi_Q_Card + Rate: 10 + Announced: true + - Group: M_ARMOR_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: S_IG_Armor + Rate: 10 + - Index: 1 + Item: S_CD_Armor + Rate: 10 + - Index: 2 + Item: S_NW_Armor + Rate: 10 + - Index: 3 + Item: S_AG_Armor + Rate: 10 + - Index: 4 + Item: S_BO_Armor + Rate: 10 + - Index: 5 + Item: S_SS_Armor + Rate: 10 + - Index: 6 + Item: S_DK_Armor + Rate: 10 + - Index: 7 + Item: S_MT_Armor + Rate: 10 + - Index: 8 + Item: S_SOA_Armor + Rate: 10 + - Index: 9 + Item: S_ABC_Armor + Rate: 10 + - Index: 10 + Item: S_WH_Armor + Rate: 10 + - Index: 11 + Item: S_SKE_Armor + Rate: 10 + - Index: 12 + Item: S_EM_Armor + Rate: 10 + - Index: 13 + Item: S_TR_Armor + Rate: 10 + - Index: 14 + Item: S_SH_Armor + Rate: 10 + - Index: 15 + Item: S_IQ_Armor + Rate: 10 + - Index: 16 + Item: S_SHC_Armor + Rate: 10 + - Index: 17 + Item: S_HN_Armor + Rate: 10 + - Group: M_SHOES_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: S_IG_Shoes + Rate: 10 + - Index: 1 + Item: S_CD_Shoes + Rate: 10 + - Index: 2 + Item: S_NW_Shoes + Rate: 10 + - Index: 3 + Item: S_AG_Shoes + Rate: 10 + - Index: 4 + Item: S_BO_Shoes + Rate: 10 + - Index: 5 + Item: S_SS_Shoes + Rate: 10 + - Index: 6 + Item: S_DK_Shoes + Rate: 10 + - Index: 7 + Item: S_MT_Shoes + Rate: 10 + - Index: 8 + Item: S_SOA_Shoes + Rate: 10 + - Index: 9 + Item: S_ABC_Shoes + Rate: 10 + - Index: 10 + Item: S_WH_Shoes + Rate: 10 + - Index: 11 + Item: S_SKE_Shoes + Rate: 10 + - Index: 12 + Item: S_EM_Shoes + Rate: 10 + - Index: 13 + Item: S_TR_Shoes + Rate: 10 + - Index: 14 + Item: S_SH_Shoes + Rate: 10 + - Index: 15 + Item: S_IQ_Shoes + Rate: 10 + - Index: 16 + Item: S_SHC_Shoes + Rate: 10 + - Index: 17 + Item: S_HN_Shoes + Rate: 10 + - Group: M_PENDANT_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: S_IG_Pendant + Rate: 10 + - Index: 1 + Item: S_CD_Pendant + Rate: 10 + - Index: 2 + Item: S_NW_Pendant + Rate: 10 + - Index: 3 + Item: S_AG_Pendant + Rate: 10 + - Index: 4 + Item: S_BO_Pendant + Rate: 10 + - Index: 5 + Item: S_SS_Pendant + Rate: 10 + - Index: 6 + Item: S_DK_Pendant + Rate: 10 + - Index: 7 + Item: S_MT_Pendant + Rate: 10 + - Index: 8 + Item: S_SOA_Pendant + Rate: 10 + - Index: 9 + Item: S_ABC_Pendant + Rate: 10 + - Index: 10 + Item: S_WH_Pendant + Rate: 10 + - Index: 11 + Item: S_SKE_Pendant + Rate: 10 + - Index: 12 + Item: S_EM_Pendant + Rate: 10 + - Index: 13 + Item: S_TR_Pendant + Rate: 10 + - Index: 14 + Item: S_SH_Pendant + Rate: 10 + - Index: 15 + Item: S_IQ_Pendant + Rate: 10 + - Index: 16 + Item: S_SHC_Pendant + Rate: 10 + - Index: 17 + Item: S_HN_Pendant + Rate: 10 + - Group: M_EARRING_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: S_IG_Earring + Rate: 10 + - Index: 1 + Item: S_CD_Earring + Rate: 10 + - Index: 2 + Item: S_NW_Earring + Rate: 10 + - Index: 3 + Item: S_AG_Earring + Rate: 10 + - Index: 4 + Item: S_BO_Earring + Rate: 10 + - Index: 5 + Item: S_SS_Earring + Rate: 10 + - Index: 6 + Item: S_DK_Earring + Rate: 10 + - Index: 7 + Item: S_MT_Earring + Rate: 10 + - Index: 8 + Item: S_SOA_Earring + Rate: 10 + - Index: 9 + Item: S_ABC_Earring + Rate: 10 + - Index: 10 + Item: S_WH_Earring + Rate: 10 + - Index: 11 + Item: S_SKE_Earring + Rate: 10 + - Index: 12 + Item: S_EM_Earring + Rate: 10 + - Index: 13 + Item: S_TR_Earring + Rate: 10 + - Index: 14 + Item: S_SH_Earring + Rate: 10 + - Index: 15 + Item: S_IQ_Earring + Rate: 10 + - Index: 16 + Item: S_SHC_Earring + Rate: 10 + - Index: 17 + Item: S_HN_Earring + Rate: 10 + - Group: S_ENCHANT_ESSENCE_BOX_3 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: S_Enchant_Essence + Amount: 3 + - Group: SHADOW_UP_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: AllMighty_Up + Rate: 10 + - Index: 1 + Item: MajorAutoSpell_Up + Rate: 10 + - Index: 2 + Item: Hasty_Up + Rate: 10 + - Index: 3 + Item: PhysicalShadow_Up + Rate: 10 + - Index: 4 + Item: PerfectSize_Up + Rate: 10 + - Index: 5 + Item: True_GemShadow_Up + Rate: 10 + - Index: 6 + Item: EXPShadow_Up + Rate: 10 + - Index: 7 + Item: MagicalShadow_Up + Rate: 10 + - Index: 8 + Item: InfinityShadow_Up + Rate: 10 + - Index: 9 + Item: R_Bearers_Shadow_Up + Rate: 10 + - Index: 10 + Item: M_Blitz_Shadow_Up + Rate: 10 + - Index: 11 + Item: Absorb_Shadow_Up + Rate: 10 + - Index: 12 + Item: Mammoth_Shadow_Up + Rate: 10 + - Index: 13 + Item: FullPenest_Shadow_Up + Rate: 10 + - Index: 14 + Item: Reload_Shadow_Up + Rate: 10 + - Index: 15 + Item: SpellCaster_Shadow_Up + Rate: 10 + - Index: 16 + Item: Ex_Status_Shadow_Up + Rate: 10 + - Group: EIN_ORE_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Ein_WHIDIUM + Rate: 15 + Amount: 5 + - Index: 1 + Item: Ein_WHIDIUM + Rate: 15 + Amount: 6 + - Index: 2 + Item: Ein_WHIDIUM + Rate: 15 + Amount: 7 + - Index: 3 + Item: Ein_WHIDIUM + Rate: 15 + Amount: 8 + - Index: 4 + Item: Ein_WHIDIUM + Rate: 15 + Amount: 9 + - Index: 5 + Item: Ein_WHIDIUM + Rate: 15 + Amount: 10 + - Index: 6 + Item: Ein_WHIDIUM + Rate: 15 + Amount: 11 + - Index: 7 + Item: Ein_WHIDIUM + Rate: 15 + Amount: 12 + - Index: 8 + Item: Ein_WHIDIUM + Rate: 15 + Amount: 13 + - Index: 9 + Item: Ein_WHIDIUM + Rate: 15 + Amount: 14 + - Index: 10 + Item: Ein_WHIDIUM + Rate: 15 + Amount: 15 + - Index: 11 + Item: Ein_WHIDIUM + Rate: 15 + Amount: 16 + - Index: 12 + Item: Ein_WHIDIUM + Rate: 15 + Amount: 17 + - Index: 13 + Item: Ein_WHIDIUM + Rate: 15 + Amount: 18 + - Index: 14 + Item: Ein_WHIDIUM + Rate: 15 + Amount: 19 + - Index: 15 + Item: Ein_WHIDIUM + Rate: 15 + Amount: 20 + - Index: 16 + Item: Ein_PURDIUM + Rate: 15 + Amount: 5 + - Index: 17 + Item: Ein_PURDIUM + Rate: 15 + Amount: 6 + - Index: 18 + Item: Ein_PURDIUM + Rate: 15 + Amount: 7 + - Index: 19 + Item: Ein_PURDIUM + Rate: 15 + Amount: 8 + - Index: 20 + Item: Ein_PURDIUM + Rate: 15 + Amount: 9 + - Index: 21 + Item: Ein_PURDIUM + Rate: 15 + Amount: 10 + - Index: 22 + Item: Ein_PURDIUM + Rate: 15 + Amount: 11 + - Index: 23 + Item: Ein_PURDIUM + Rate: 15 + Amount: 12 + - Index: 24 + Item: Ein_PURDIUM + Rate: 15 + Amount: 13 + - Index: 25 + Item: Ein_PURDIUM + Rate: 15 + Amount: 14 + - Index: 26 + Item: Ein_PURDIUM + Rate: 15 + Amount: 15 + - Index: 27 + Item: Ein_PURDIUM + Rate: 15 + Amount: 16 + - Index: 28 + Item: Ein_PURDIUM + Rate: 15 + Amount: 17 + - Index: 29 + Item: Ein_PURDIUM + Rate: 15 + Amount: 18 + - Index: 30 + Item: Ein_PURDIUM + Rate: 15 + Amount: 19 + - Index: 31 + Item: Ein_PURDIUM + Rate: 15 + Amount: 20 + - Index: 32 + Item: Ein_ODIUM + Rate: 15 + Amount: 5 + - Index: 33 + Item: Ein_ODIUM + Rate: 15 + Amount: 6 + - Index: 34 + Item: Ein_ODIUM + Rate: 15 + Amount: 7 + - Index: 35 + Item: Ein_ODIUM + Rate: 15 + Amount: 8 + - Index: 36 + Item: Ein_ODIUM + Rate: 15 + Amount: 9 + - Index: 37 + Item: Ein_ODIUM + Rate: 15 + Amount: 10 + - Index: 38 + Item: Ein_ODIUM + Rate: 15 + Amount: 11 + - Index: 39 + Item: Ein_ODIUM + Rate: 15 + Amount: 12 + - Index: 40 + Item: Ein_ODIUM + Rate: 15 + Amount: 13 + - Index: 41 + Item: Ein_ODIUM + Rate: 15 + Amount: 14 + - Index: 42 + Item: Ein_ODIUM + Rate: 15 + Amount: 15 + - Index: 43 + Item: Ein_ODIUM + Rate: 15 + Amount: 16 + - Index: 44 + Item: Ein_ODIUM + Rate: 15 + Amount: 17 + - Index: 45 + Item: Ein_ODIUM + Rate: 15 + Amount: 18 + - Index: 46 + Item: Ein_ODIUM + Rate: 15 + Amount: 19 + - Index: 47 + Item: Ein_ODIUM + Rate: 15 + Amount: 20 + - Index: 48 + Item: Ein_RINDIUM + Rate: 15 + Amount: 5 + - Index: 49 + Item: Ein_RINDIUM + Rate: 15 + Amount: 6 + - Index: 50 + Item: Ein_RINDIUM + Rate: 15 + Amount: 7 + - Index: 51 + Item: Ein_RINDIUM + Rate: 15 + Amount: 8 + - Index: 52 + Item: Ein_RINDIUM + Rate: 15 + Amount: 9 + - Index: 53 + Item: Ein_RINDIUM + Rate: 15 + Amount: 10 + - Index: 54 + Item: Ein_RINDIUM + Rate: 15 + Amount: 11 + - Index: 55 + Item: Ein_RINDIUM + Rate: 15 + Amount: 12 + - Index: 56 + Item: Ein_RINDIUM + Rate: 15 + Amount: 13 + - Index: 57 + Item: Ein_RINDIUM + Rate: 15 + Amount: 14 + - Index: 58 + Item: Ein_RINDIUM + Rate: 15 + Amount: 15 + - Index: 59 + Item: Ein_RINDIUM + Rate: 15 + Amount: 16 + - Index: 60 + Item: Ein_RINDIUM + Rate: 15 + Amount: 17 + - Index: 61 + Item: Ein_RINDIUM + Rate: 15 + Amount: 18 + - Index: 62 + Item: Ein_RINDIUM + Rate: 15 + Amount: 19 + - Index: 63 + Item: Ein_RINDIUM + Rate: 15 + Amount: 20 + - Index: 64 + Item: Ein_REDIUM + Rate: 15 + Amount: 5 + - Index: 65 + Item: Ein_REDIUM + Rate: 15 + Amount: 6 + - Index: 66 + Item: Ein_REDIUM + Rate: 15 + Amount: 7 + - Index: 67 + Item: Ein_REDIUM + Rate: 15 + Amount: 8 + - Index: 68 + Item: Ein_REDIUM + Rate: 15 + Amount: 9 + - Index: 69 + Item: Ein_REDIUM + Rate: 15 + Amount: 10 + - Index: 70 + Item: Ein_REDIUM + Rate: 15 + Amount: 11 + - Index: 71 + Item: Ein_REDIUM + Rate: 15 + Amount: 12 + - Index: 72 + Item: Ein_REDIUM + Rate: 15 + Amount: 13 + - Index: 73 + Item: Ein_REDIUM + Rate: 15 + Amount: 14 + - Index: 74 + Item: Ein_REDIUM + Rate: 15 + Amount: 15 + - Index: 75 + Item: Ein_REDIUM + Rate: 15 + Amount: 16 + - Index: 76 + Item: Ein_REDIUM + Rate: 15 + Amount: 17 + - Index: 77 + Item: Ein_REDIUM + Rate: 15 + Amount: 18 + - Index: 78 + Item: Ein_REDIUM + Rate: 15 + Amount: 19 + - Index: 79 + Item: Ein_REDIUM + Rate: 15 + Amount: 20 + - Index: 80 + Item: Ein_UNDIUM + Rate: 15 + Amount: 5 + - Index: 81 + Item: Ein_UNDIUM + Rate: 15 + Amount: 6 + - Index: 82 + Item: Ein_UNDIUM + Rate: 15 + Amount: 7 + - Index: 83 + Item: Ein_UNDIUM + Rate: 15 + Amount: 8 + - Index: 84 + Item: Ein_UNDIUM + Rate: 15 + Amount: 9 + - Index: 85 + Item: Ein_UNDIUM + Rate: 15 + Amount: 10 + - Index: 86 + Item: Ein_UNDIUM + Rate: 15 + Amount: 11 + - Index: 87 + Item: Ein_UNDIUM + Rate: 15 + Amount: 12 + - Index: 88 + Item: Ein_UNDIUM + Rate: 15 + Amount: 13 + - Index: 89 + Item: Ein_UNDIUM + Rate: 15 + Amount: 14 + - Index: 90 + Item: Ein_UNDIUM + Rate: 15 + Amount: 15 + - Index: 91 + Item: Ein_UNDIUM + Rate: 15 + Amount: 16 + - Index: 92 + Item: Ein_UNDIUM + Rate: 15 + Amount: 17 + - Index: 93 + Item: Ein_UNDIUM + Rate: 15 + Amount: 18 + - Index: 94 + Item: Ein_UNDIUM + Rate: 15 + Amount: 19 + - Index: 95 + Item: Ein_UNDIUM + Rate: 15 + Amount: 20 + - Index: 96 + Item: Ein_DYNITE + Rate: 32 + - Index: 97 + Item: Ein_DYNITE + Rate: 32 + Amount: 2 + - Index: 98 + Item: Ein_DYNITE + Rate: 32 + Amount: 3 + - Index: 99 + Item: Ein_DYNITE + Rate: 32 + Amount: 4 + - Index: 100 + Item: Ein_DYNITE + Rate: 32 + Amount: 5 + - Group: FATE_FRAGMENT_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Fate_Shard_A + Rate: 45 + Amount: 5 + - Index: 1 + Item: Fate_Shard_A + Rate: 45 + Amount: 6 + - Index: 2 + Item: Fate_Shard_A + Rate: 45 + Amount: 7 + - Index: 3 + Item: Fate_Shard_A + Rate: 45 + Amount: 8 + - Index: 4 + Item: Fate_Shard_A + Rate: 45 + Amount: 9 + - Index: 5 + Item: Fate_Shard_A + Rate: 45 + Amount: 10 + - Index: 6 + Item: Fate_Shard_A + Rate: 45 + Amount: 11 + - Index: 7 + Item: Fate_Shard_A + Rate: 45 + Amount: 12 + - Index: 8 + Item: Fate_Shard_A + Rate: 45 + Amount: 13 + - Index: 9 + Item: Fate_Shard_A + Rate: 45 + Amount: 14 + - Index: 10 + Item: Fate_Shard_A + Rate: 45 + Amount: 15 + - Index: 11 + Item: Fate_Shard_A + Rate: 45 + Amount: 16 + - Index: 12 + Item: Fate_Shard_A + Rate: 45 + Amount: 17 + - Index: 13 + Item: Fate_Shard_A + Rate: 45 + Amount: 18 + - Index: 14 + Item: Fate_Shard_A + Rate: 45 + Amount: 19 + - Index: 15 + Item: Fate_Shard_A + Rate: 45 + Amount: 20 + - Index: 16 + Item: Fate_Shard_B + Rate: 45 + Amount: 5 + - Index: 17 + Item: Fate_Shard_B + Rate: 45 + Amount: 6 + - Index: 18 + Item: Fate_Shard_B + Rate: 45 + Amount: 7 + - Index: 19 + Item: Fate_Shard_B + Rate: 45 + Amount: 8 + - Index: 20 + Item: Fate_Shard_B + Rate: 45 + Amount: 9 + - Index: 21 + Item: Fate_Shard_B + Rate: 45 + Amount: 10 + - Index: 22 + Item: Fate_Shard_B + Rate: 45 + Amount: 11 + - Index: 23 + Item: Fate_Shard_B + Rate: 45 + Amount: 12 + - Index: 24 + Item: Fate_Shard_B + Rate: 45 + Amount: 13 + - Index: 25 + Item: Fate_Shard_B + Rate: 45 + Amount: 14 + - Index: 26 + Item: Fate_Shard_B + Rate: 45 + Amount: 15 + - Index: 27 + Item: Fate_Shard_B + Rate: 45 + Amount: 16 + - Index: 28 + Item: Fate_Shard_B + Rate: 45 + Amount: 17 + - Index: 29 + Item: Fate_Shard_B + Rate: 45 + Amount: 18 + - Index: 30 + Item: Fate_Shard_B + Rate: 45 + Amount: 19 + - Index: 31 + Item: Fate_Shard_B + Rate: 45 + Amount: 20 + - Index: 32 + Item: Fate_Shard_C + Rate: 45 + Amount: 5 + - Index: 33 + Item: Fate_Shard_C + Rate: 45 + Amount: 6 + - Index: 34 + Item: Fate_Shard_C + Rate: 45 + Amount: 7 + - Index: 35 + Item: Fate_Shard_C + Rate: 45 + Amount: 8 + - Index: 36 + Item: Fate_Shard_C + Rate: 45 + Amount: 9 + - Index: 37 + Item: Fate_Shard_C + Rate: 45 + Amount: 10 + - Index: 38 + Item: Fate_Shard_C + Rate: 45 + Amount: 11 + - Index: 39 + Item: Fate_Shard_C + Rate: 45 + Amount: 12 + - Index: 40 + Item: Fate_Shard_C + Rate: 45 + Amount: 13 + - Index: 41 + Item: Fate_Shard_C + Rate: 45 + Amount: 14 + - Index: 42 + Item: Fate_Shard_C + Rate: 45 + Amount: 15 + - Index: 43 + Item: Fate_Shard_C + Rate: 45 + Amount: 16 + - Index: 44 + Item: Fate_Shard_C + Rate: 45 + Amount: 17 + - Index: 45 + Item: Fate_Shard_C + Rate: 45 + Amount: 18 + - Index: 46 + Item: Fate_Shard_C + Rate: 45 + Amount: 19 + - Index: 47 + Item: Fate_Shard_C + Rate: 45 + Amount: 20 + - Index: 48 + Item: Fate_Shard_D + Rate: 45 + Amount: 5 + - Index: 49 + Item: Fate_Shard_D + Rate: 45 + Amount: 6 + - Index: 50 + Item: Fate_Shard_D + Rate: 45 + Amount: 7 + - Index: 51 + Item: Fate_Shard_D + Rate: 45 + Amount: 8 + - Index: 52 + Item: Fate_Shard_D + Rate: 45 + Amount: 9 + - Index: 53 + Item: Fate_Shard_D + Rate: 45 + Amount: 10 + - Index: 54 + Item: Fate_Shard_D + Rate: 45 + Amount: 11 + - Index: 55 + Item: Fate_Shard_D + Rate: 45 + Amount: 12 + - Index: 56 + Item: Fate_Shard_D + Rate: 45 + Amount: 13 + - Index: 57 + Item: Fate_Shard_D + Rate: 45 + Amount: 14 + - Index: 58 + Item: Fate_Shard_D + Rate: 45 + Amount: 15 + - Index: 59 + Item: Fate_Shard_D + Rate: 45 + Amount: 16 + - Index: 60 + Item: Fate_Shard_D + Rate: 45 + Amount: 17 + - Index: 61 + Item: Fate_Shard_D + Rate: 45 + Amount: 18 + - Index: 62 + Item: Fate_Shard_D + Rate: 45 + Amount: 19 + - Index: 63 + Item: Fate_Shard_D + Rate: 45 + Amount: 20 + - Index: 64 + Item: Fate_Shard_E + Rate: 45 + Amount: 5 + - Index: 65 + Item: Fate_Shard_E + Rate: 45 + Amount: 6 + - Index: 66 + Item: Fate_Shard_E + Rate: 45 + Amount: 7 + - Index: 67 + Item: Fate_Shard_E + Rate: 45 + Amount: 8 + - Index: 68 + Item: Fate_Shard_E + Rate: 45 + Amount: 9 + - Index: 69 + Item: Fate_Shard_E + Rate: 45 + Amount: 10 + - Index: 70 + Item: Fate_Shard_E + Rate: 45 + Amount: 11 + - Index: 71 + Item: Fate_Shard_E + Rate: 45 + Amount: 12 + - Index: 72 + Item: Fate_Shard_E + Rate: 45 + Amount: 13 + - Index: 73 + Item: Fate_Shard_E + Rate: 45 + Amount: 14 + - Index: 74 + Item: Fate_Shard_E + Rate: 45 + Amount: 15 + - Index: 75 + Item: Fate_Shard_E + Rate: 45 + Amount: 16 + - Index: 76 + Item: Fate_Shard_E + Rate: 45 + Amount: 17 + - Index: 77 + Item: Fate_Shard_E + Rate: 45 + Amount: 18 + - Index: 78 + Item: Fate_Shard_E + Rate: 45 + Amount: 19 + - Index: 79 + Item: Fate_Shard_E + Rate: 45 + Amount: 20 + - Index: 80 + Item: Fate_Fragment + Rate: 80 + - Index: 81 + Item: Fate_Fragment + Rate: 80 + Amount: 2 + - Index: 82 + Item: Fate_Fragment + Rate: 80 + Amount: 3 + - Index: 83 + Item: Fate_Fragment + Rate: 80 + Amount: 4 + - Index: 84 + Item: Fate_Fragment + Rate: 80 + Amount: 5 + - Group: SIN_FRAGMENT_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Sin_Shard_A + Rate: 45 + Amount: 5 + - Index: 1 + Item: Sin_Shard_A + Rate: 45 + Amount: 6 + - Index: 2 + Item: Sin_Shard_A + Rate: 45 + Amount: 7 + - Index: 3 + Item: Sin_Shard_A + Rate: 45 + Amount: 8 + - Index: 4 + Item: Sin_Shard_A + Rate: 45 + Amount: 9 + - Index: 5 + Item: Sin_Shard_A + Rate: 45 + Amount: 10 + - Index: 6 + Item: Sin_Shard_A + Rate: 45 + Amount: 11 + - Index: 7 + Item: Sin_Shard_A + Rate: 45 + Amount: 12 + - Index: 8 + Item: Sin_Shard_A + Rate: 45 + Amount: 13 + - Index: 9 + Item: Sin_Shard_A + Rate: 45 + Amount: 14 + - Index: 10 + Item: Sin_Shard_A + Rate: 45 + Amount: 15 + - Index: 11 + Item: Sin_Shard_A + Rate: 45 + Amount: 16 + - Index: 12 + Item: Sin_Shard_A + Rate: 45 + Amount: 17 + - Index: 13 + Item: Sin_Shard_A + Rate: 45 + Amount: 18 + - Index: 14 + Item: Sin_Shard_A + Rate: 45 + Amount: 19 + - Index: 15 + Item: Sin_Shard_A + Rate: 45 + Amount: 20 + - Index: 16 + Item: Sin_Shard_B + Rate: 45 + Amount: 5 + - Index: 17 + Item: Sin_Shard_B + Rate: 45 + Amount: 6 + - Index: 18 + Item: Sin_Shard_B + Rate: 45 + Amount: 7 + - Index: 19 + Item: Sin_Shard_B + Rate: 45 + Amount: 8 + - Index: 20 + Item: Sin_Shard_B + Rate: 45 + Amount: 9 + - Index: 21 + Item: Sin_Shard_B + Rate: 45 + Amount: 10 + - Index: 22 + Item: Sin_Shard_B + Rate: 45 + Amount: 11 + - Index: 23 + Item: Sin_Shard_B + Rate: 45 + Amount: 12 + - Index: 24 + Item: Sin_Shard_B + Rate: 45 + Amount: 13 + - Index: 25 + Item: Sin_Shard_B + Rate: 45 + Amount: 14 + - Index: 26 + Item: Sin_Shard_B + Rate: 45 + Amount: 15 + - Index: 27 + Item: Sin_Shard_B + Rate: 45 + Amount: 16 + - Index: 28 + Item: Sin_Shard_B + Rate: 45 + Amount: 17 + - Index: 29 + Item: Sin_Shard_B + Rate: 45 + Amount: 18 + - Index: 30 + Item: Sin_Shard_B + Rate: 45 + Amount: 19 + - Index: 31 + Item: Sin_Shard_B + Rate: 45 + Amount: 20 + - Index: 32 + Item: Sin_Shard_C + Rate: 45 + Amount: 5 + - Index: 33 + Item: Sin_Shard_C + Rate: 45 + Amount: 6 + - Index: 34 + Item: Sin_Shard_C + Rate: 45 + Amount: 7 + - Index: 35 + Item: Sin_Shard_C + Rate: 45 + Amount: 8 + - Index: 36 + Item: Sin_Shard_C + Rate: 45 + Amount: 9 + - Index: 37 + Item: Sin_Shard_C + Rate: 45 + Amount: 10 + - Index: 38 + Item: Sin_Shard_C + Rate: 45 + Amount: 11 + - Index: 39 + Item: Sin_Shard_C + Rate: 45 + Amount: 12 + - Index: 40 + Item: Sin_Shard_C + Rate: 45 + Amount: 13 + - Index: 41 + Item: Sin_Shard_C + Rate: 45 + Amount: 14 + - Index: 42 + Item: Sin_Shard_C + Rate: 45 + Amount: 15 + - Index: 43 + Item: Sin_Shard_C + Rate: 45 + Amount: 16 + - Index: 44 + Item: Sin_Shard_C + Rate: 45 + Amount: 17 + - Index: 45 + Item: Sin_Shard_C + Rate: 45 + Amount: 18 + - Index: 46 + Item: Sin_Shard_C + Rate: 45 + Amount: 19 + - Index: 47 + Item: Sin_Shard_C + Rate: 45 + Amount: 20 + - Index: 48 + Item: Sin_Shard_D + Rate: 45 + Amount: 5 + - Index: 49 + Item: Sin_Shard_D + Rate: 45 + Amount: 6 + - Index: 50 + Item: Sin_Shard_D + Rate: 45 + Amount: 7 + - Index: 51 + Item: Sin_Shard_D + Rate: 45 + Amount: 8 + - Index: 52 + Item: Sin_Shard_D + Rate: 45 + Amount: 9 + - Index: 53 + Item: Sin_Shard_D + Rate: 45 + Amount: 10 + - Index: 54 + Item: Sin_Shard_D + Rate: 45 + Amount: 11 + - Index: 55 + Item: Sin_Shard_D + Rate: 45 + Amount: 12 + - Index: 56 + Item: Sin_Shard_D + Rate: 45 + Amount: 13 + - Index: 57 + Item: Sin_Shard_D + Rate: 45 + Amount: 14 + - Index: 58 + Item: Sin_Shard_D + Rate: 45 + Amount: 15 + - Index: 59 + Item: Sin_Shard_D + Rate: 45 + Amount: 16 + - Index: 60 + Item: Sin_Shard_D + Rate: 45 + Amount: 17 + - Index: 61 + Item: Sin_Shard_D + Rate: 45 + Amount: 18 + - Index: 62 + Item: Sin_Shard_D + Rate: 45 + Amount: 19 + - Index: 63 + Item: Sin_Shard_D + Rate: 45 + Amount: 20 + - Index: 64 + Item: Sin_Shard_E + Rate: 45 + Amount: 5 + - Index: 65 + Item: Sin_Shard_E + Rate: 45 + Amount: 6 + - Index: 66 + Item: Sin_Shard_E + Rate: 45 + Amount: 7 + - Index: 67 + Item: Sin_Shard_E + Rate: 45 + Amount: 8 + - Index: 68 + Item: Sin_Shard_E + Rate: 45 + Amount: 9 + - Index: 69 + Item: Sin_Shard_E + Rate: 45 + Amount: 10 + - Index: 70 + Item: Sin_Shard_E + Rate: 45 + Amount: 11 + - Index: 71 + Item: Sin_Shard_E + Rate: 45 + Amount: 12 + - Index: 72 + Item: Sin_Shard_E + Rate: 45 + Amount: 13 + - Index: 73 + Item: Sin_Shard_E + Rate: 45 + Amount: 14 + - Index: 74 + Item: Sin_Shard_E + Rate: 45 + Amount: 15 + - Index: 75 + Item: Sin_Shard_E + Rate: 45 + Amount: 16 + - Index: 76 + Item: Sin_Shard_E + Rate: 45 + Amount: 17 + - Index: 77 + Item: Sin_Shard_E + Rate: 45 + Amount: 18 + - Index: 78 + Item: Sin_Shard_E + Rate: 45 + Amount: 19 + - Index: 79 + Item: Sin_Shard_E + Rate: 45 + Amount: 20 + - Index: 80 + Item: Sin_Fragment + Rate: 80 + - Index: 81 + Item: Sin_Fragment + Rate: 80 + Amount: 2 + - Index: 82 + Item: Sin_Fragment + Rate: 80 + Amount: 3 + - Index: 83 + Item: Sin_Fragment + Rate: 80 + Amount: 4 + - Index: 84 + Item: Sin_Fragment + Rate: 80 + Amount: 5 + - Group: AMETHYST_FRAGMENT_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Ep18_Amethyst_Fragment + Rate: 10 + Amount: 5 + - Index: 1 + Item: Ep18_Amethyst_Fragment + Rate: 10 + Amount: 6 + - Index: 2 + Item: Ep18_Amethyst_Fragment + Rate: 10 + Amount: 7 + - Index: 3 + Item: Ep18_Amethyst_Fragment + Rate: 10 + Amount: 8 + - Index: 4 + Item: Ep18_Amethyst_Fragment + Rate: 10 + Amount: 9 + - Index: 5 + Item: Ep18_Amethyst_Fragment + Rate: 10 + Amount: 10 + - Index: 6 + Item: Ep18_Amethyst_Fragment + Rate: 10 + Amount: 11 + - Index: 7 + Item: Ep18_Amethyst_Fragment + Rate: 10 + Amount: 12 + - Index: 8 + Item: Ep18_Amethyst_Fragment + Rate: 10 + Amount: 13 + - Index: 9 + Item: Ep18_Amethyst_Fragment + Rate: 10 + Amount: 14 + - Index: 10 + Item: Ep18_Amethyst_Fragment + Rate: 10 + Amount: 15 + - Index: 11 + Item: Ep18_Amethyst_Fragment + Rate: 10 + Amount: 16 + - Index: 12 + Item: Ep18_Amethyst_Fragment + Rate: 10 + Amount: 17 + - Index: 13 + Item: Ep18_Amethyst_Fragment + Rate: 10 + Amount: 18 + - Index: 14 + Item: Ep18_Amethyst_Fragment + Rate: 10 + Amount: 19 + - Index: 15 + Item: Ep18_Amethyst_Fragment + Rate: 10 + Amount: 20 + - Index: 16 + Item: Ep18_Amethyst_Fragment + Rate: 10 + Amount: 21 + - Index: 17 + Item: Ep18_Amethyst_Fragment + Rate: 10 + Amount: 22 + - Index: 18 + Item: Ep18_Amethyst_Fragment + Rate: 10 + Amount: 23 + - Index: 19 + Item: Ep18_Amethyst_Fragment + Rate: 10 + Amount: 24 + - Index: 20 + Item: Ep18_Amethyst_Fragment + Rate: 10 + Amount: 25 + - Index: 21 + Item: Ep18_Amethyst_Fragment + Rate: 10 + Amount: 26 + - Index: 22 + Item: Ep18_Amethyst_Fragment + Rate: 10 + Amount: 27 + - Index: 23 + Item: Ep18_Amethyst_Fragment + Rate: 10 + Amount: 28 + - Index: 24 + Item: Ep18_Amethyst_Fragment + Rate: 10 + Amount: 29 + - Index: 25 + Item: Ep18_Amethyst_Fragment + Rate: 10 + Amount: 30 + - Group: SNOW_F_ORE_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Snow_F_Ore + Rate: 35 + Amount: 5 + - Index: 1 + Item: Snow_F_Ore + Rate: 35 + Amount: 6 + - Index: 2 + Item: Snow_F_Ore + Rate: 35 + Amount: 7 + - Index: 3 + Item: Snow_F_Ore + Rate: 35 + Amount: 8 + - Index: 4 + Item: Snow_F_Ore + Rate: 35 + Amount: 9 + - Index: 5 + Item: Snow_F_Ore + Rate: 35 + Amount: 10 + - Index: 6 + Item: Snow_F_Ore + Rate: 35 + Amount: 11 + - Index: 7 + Item: Snow_F_Ore + Rate: 35 + Amount: 12 + - Index: 8 + Item: Snow_F_Ore + Rate: 35 + Amount: 13 + - Index: 9 + Item: Snow_F_Ore + Rate: 35 + Amount: 14 + - Index: 10 + Item: Snow_F_Ore + Rate: 35 + Amount: 15 + - Index: 11 + Item: Snow_F_Ore + Rate: 35 + Amount: 16 + - Index: 12 + Item: Snow_F_Ore + Rate: 35 + Amount: 17 + - Index: 13 + Item: Snow_F_Ore + Rate: 35 + Amount: 18 + - Index: 14 + Item: Snow_F_Ore + Rate: 35 + Amount: 19 + - Index: 15 + Item: Snow_F_Ore + Rate: 35 + Amount: 20 + - Index: 16 + Item: Snow_F_Stone1 + Rate: 32 + - Index: 17 + Item: Snow_F_Stone1 + Rate: 32 + Amount: 2 + - Index: 18 + Item: Snow_F_Stone1 + Rate: 32 + Amount: 3 + - Index: 19 + Item: Snow_F_Stone1 + Rate: 32 + Amount: 4 + - Index: 20 + Item: Snow_F_Stone1 + Rate: 32 + Amount: 5 + - Index: 21 + Item: Snow_F_Stone2 + Rate: 40 + - Index: 22 + Item: Snow_F_Stone2 + Rate: 40 + Amount: 2 + - Group: BROWN_DIA_BOX_3_7 + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: aegis_1001480 + Rate: 50 + Amount: 3 + - Index: 1 + Item: aegis_1001480 + Rate: 20 + Amount: 4 + - Index: 2 + Item: aegis_1001480 + Rate: 15 + Amount: 5 + - Index: 3 + Item: aegis_1001480 + Rate: 10 + Amount: 6 + - Index: 4 + Item: aegis_1001480 + Rate: 5 + Amount: 7 + - Group: BOOSTER_PACK_10 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Orange_Potion_B_20 + Amount: 4 + - Index: 1 + Item: Boarding_Halter_Box30_Z + - Index: 2 + Item: Blue_Potion_B_10 + Amount: 3 + - Index: 3 + Item: Arrow_Container + Amount: 5 + - Index: 4 + Item: Bullet_Case + Amount: 5 + - Index: 5 + Item: Booster_Coin + Amount: 4 + - Index: 6 + Item: World_Tour_Ticket + Amount: 10 + - Index: 7 + Item: Booster_Pack_20 + - Index: 8 + Item: Metal_W_Box + - Group: BOOSTER_PACK_40 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Yellow_Potion_B_20 + Amount: 4 + - Index: 1 + Item: Blue_Potion_B_10 + Amount: 5 + - Index: 2 + Item: Arrow_Container + Amount: 5 + - Index: 3 + Item: Bullet_Case + Amount: 5 + - Index: 4 + Item: Booster_Coin + Amount: 16 + - Index: 5 + Item: World_Tour_Ticket + Amount: 10 + - Index: 6 + Item: Booster_Pack_50 + - Group: BOOSTER_PACK_70 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: White_Potion_B_20 + Amount: 4 + - Index: 1 + Item: Blue_Potion_B_10 + Amount: 7 + - Index: 2 + Item: E_Red_Booster + Amount: 20 + - Index: 3 + Item: E_Life_Potion_Pack + - Index: 4 + Item: Booster_Coin + Amount: 28 + - Index: 5 + Item: World_Tour_Ticket + Amount: 10 + - Index: 6 + Item: Booster_Pack_80 + - Group: BOOSTER_PACK_110 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Comp_Almighty + Amount: 5 + - Index: 1 + Item: Comp_Power_Booster + Amount: 5 + - Index: 2 + Item: Blue_Potion_B_10 + Amount: 10 + - Index: 3 + Item: E_Infinity_Drink + Amount: 5 + - Index: 4 + Item: Booster_B_M_1 + Amount: 3 + - Index: 5 + Item: Booster_Coin + Amount: 46 + - Index: 6 + Item: World_Tour_Ticket + Amount: 20 + - Index: 7 + Item: Booster_Pack_120 + - Group: BOOSTER_PACK_140 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: E_Life_Potion_Pack + Amount: 2 + - Index: 1 + Item: E_DEF_Scroll_Box + Amount: 2 + - Index: 2 + Item: Comp_Small_Mana_Potion + Amount: 40 + - Index: 3 + Item: E_Red_Booster + Amount: 40 + - Index: 4 + Item: Inventory_Ex_Evt + Amount: 3 + - Index: 5 + Item: Booster_Coin + Amount: 64 + - Index: 6 + Item: World_Tour_Ticket + Amount: 20 + - Index: 7 + Item: Booster_Pack_150 + - Index: 8 + Item: Booster_B_M_1 + Amount: 3 + - Group: BOOSTER_PACK_170 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Comp_Almighty + Amount: 5 + - Index: 1 + Item: Comp_Power_Booster + Amount: 5 + - Index: 2 + Item: E_Infinity_Drink + Amount: 5 + - Index: 3 + Item: Booster_B_M_2 + Amount: 3 + - Index: 4 + Item: Lv_Up_T_170 + Amount: 5 + - Index: 5 + Item: Booster_Coin + Amount: 82 + - Index: 6 + Item: World_Tour_Ticket + Amount: 20 + - Index: 7 + Item: Booster_Pack_180 + - Group: BOOSTER_PACK_210 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: E_Life_Potion_Pack + Amount: 3 + - Index: 1 + Item: E_DEF_Scroll_Box + Amount: 3 + - Index: 2 + Item: Comp_Small_Mana_Potion + Amount: 40 + - Index: 3 + Item: E_Wing_Of_Fly_3Day_Box + - Index: 4 + Item: Boarding_Halter_Box30_Z + - Index: 5 + Item: E_Red_Booster + Amount: 20 + - Index: 6 + Item: Booster_B_M_2 + Amount: 3 + - Index: 7 + Item: Booster_Coin + Amount: 110 + - Index: 8 + Item: World_Tour_Ticket + Amount: 30 + - Index: 9 + Item: Booster_Pack_220 + - Group: BOOSTER_PACK_240 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: E_Life_Potion_Pack + Amount: 3 + - Index: 1 + Item: E_DEF_Scroll_Box + Amount: 3 + - Index: 2 + Item: Comp_Small_Mana_Potion + Amount: 40 + - Index: 3 + Item: E_Red_Booster + Amount: 20 + - Index: 4 + Item: Comp_Almighty + Amount: 5 + - Index: 5 + Item: Comp_Power_Booster + Amount: 5 + - Index: 6 + Item: E_Infinity_Drink + Amount: 5 + - Index: 7 + Item: Booster_B_M_2 + Amount: 5 + - Index: 8 + Item: Booster_Coin + Amount: 140 + - Index: 9 + Item: World_Tour_Ticket + Amount: 30 + - Index: 10 + Item: Booster_Pack_250 + - Group: BOOSTER_PACK_20 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Orange_Potion_B_20 + Amount: 8 + - Index: 1 + Item: Blue_Potion_B_10 + Amount: 4 + - Index: 2 + Item: Arrow_Container + Amount: 5 + - Index: 3 + Item: Bullet_Case + Amount: 5 + - Index: 4 + Item: Booster_Coin + Amount: 8 + - Index: 5 + Item: World_Tour_Ticket + Amount: 10 + - Index: 6 + Item: Booster_Pack_30 + - Group: BOOSTER_PACK_50 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Yellow_Potion_B_20 + Amount: 4 + - Index: 1 + Item: Blue_Potion_B_10 + Amount: 5 + - Index: 2 + Item: Arrow_Container + Amount: 5 + - Index: 3 + Item: Bullet_Case + Amount: 5 + - Index: 4 + Item: Booster_Coin + Amount: 20 + - Index: 5 + Item: World_Tour_Ticket + Amount: 10 + - Index: 6 + Item: Booster_Pack_60 + - Group: BOOSTER_PACK_80 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: White_Potion_B_20 + Amount: 8 + - Index: 1 + Item: E_Wing_Of_Fly_3Day_Box + - Index: 2 + Item: Blue_Potion_B_10 + Amount: 8 + - Index: 3 + Item: Comp_Almighty + Amount: 5 + - Index: 4 + Item: Comp_Power_Booster + Amount: 5 + - Index: 5 + Item: E_Infinity_Drink + Amount: 5 + - Index: 6 + Item: Lv_Up_T_80 + Amount: 3 + - Index: 7 + Item: Booster_Coin + Amount: 32 + - Index: 8 + Item: World_Tour_Ticket + Amount: 10 + - Index: 9 + Item: Booster_Pack_90 + - Group: BOOSTER_PACK_120 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: E_Life_Potion_Pack + Amount: 2 + - Index: 1 + Item: E_DEF_Scroll_Box + Amount: 2 + - Index: 2 + Item: Comp_Small_Mana_Potion + Amount: 40 + - Index: 3 + Item: E_Red_Booster + Amount: 40 + - Index: 4 + Item: Inventory_Ex_Evt + Amount: 3 + - Index: 5 + Item: Booster_B_M_1 + Amount: 3 + - Index: 6 + Item: Booster_Coin + Amount: 52 + - Index: 7 + Item: World_Tour_Ticket + Amount: 20 + - Index: 8 + Item: Booster_Pack_130 + - Group: BOOSTER_PACK_150 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Comp_Almighty + Amount: 5 + - Index: 1 + Item: Comp_Power_Booster + Amount: 5 + - Index: 2 + Item: E_Infinity_Drink + Amount: 5 + - Index: 3 + Item: Booster_B_M_1 + Amount: 3 + - Index: 4 + Item: Lv_Up_T_150 + Amount: 5 + - Index: 5 + Item: Booster_Coin + Amount: 70 + - Index: 6 + Item: World_Tour_Ticket + Amount: 20 + - Index: 7 + Item: Booster_Pack_160 + - Group: BOOSTER_PACK_180 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: E_Life_Potion_Pack + Amount: 3 + - Index: 1 + Item: E_DEF_Scroll_Box + Amount: 3 + - Index: 2 + Item: Comp_Small_Mana_Potion + Amount: 60 + - Index: 3 + Item: E_Red_Booster + Amount: 60 + - Index: 4 + Item: Booster_Coin + Amount: 88 + - Index: 5 + Item: World_Tour_Ticket + Amount: 20 + - Index: 6 + Item: Booster_Pack_190 + - Group: BOOSTER_PACK_220 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: E_Life_Potion_Pack + Amount: 3 + - Index: 1 + Item: E_DEF_Scroll_Box + Amount: 3 + - Index: 2 + Item: Comp_Small_Mana_Potion + Amount: 40 + - Index: 3 + Item: E_Red_Booster + Amount: 20 + - Index: 4 + Item: Booster_Coin + Amount: 120 + - Index: 5 + Item: World_Tour_Ticket + Amount: 30 + - Index: 6 + Item: Booster_Pack_230 + - Group: BOOSTER_PACK_250 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Booster_M_Ticket + Amount: 3 + - Group: PC_BANG_COIN_BOX3 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Shiny_Coin + Duration: 60 + - Group: PCBANG_GIFT_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Coat_ + Rate: 30 + - Index: 1 + Item: Guard_ + Rate: 30 + - Index: 2 + Item: Muffler_ + Rate: 30 + - Index: 3 + Item: Shoes_ + Rate: 30 + - Index: 4 + Item: Handsei + Rate: 160 + Amount: 2 + - Index: 5 + Item: Str_Dish09 + Rate: 35 + - Index: 6 + Item: Int_Dish09 + Rate: 35 + - Index: 7 + Item: Vit_Dish09 + Rate: 35 + - Index: 8 + Item: Agi_Dish09 + Rate: 35 + - Index: 9 + Item: Dex_Dish09 + Rate: 35 + - Index: 10 + Item: Luk_Dish09 + Rate: 35 + - Index: 11 + Item: Set_Of_Taiming_Item + Rate: 25 + - Index: 12 + Item: Grape + Rate: 180 + Amount: 5 + - Index: 13 + Item: Bloody_Dead_Branch + Rate: 5 + - Index: 14 + Item: Yellow_Potion + Rate: 300 + Amount: 20 + - Group: PCBANG_COUPON_BOX2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Comp_Battle_Manual + Amount: 5 + - Index: 1 + Item: Comp_Insurance + Amount: 5 + - Index: 2 + Item: Enriched_Slim_Pot + Amount: 100 + - SubGroup: 2 + List: + - Index: 0 + Item: Ear_Of_Devil's_Wing + Rate: 100 + - Index: 1 + Item: Leaf_Cat_Hat + Rate: 50 + - Index: 2 + Item: Pair_Of_Red_Ribbon + Rate: 180 + - Index: 3 + Item: Tiara_ + Rate: 110 + - Index: 4 + Item: Rider_Insignia_ + Rate: 30 + - Index: 5 + Item: Rider_Insignia + Rate: 50 + - Index: 6 + Item: Flame_Sprits_Armor__ + Rate: 180 + - Index: 7 + Item: Muffler_ + Rate: 300 + - Group: PCBANG_COUPON_BOX3 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Comp_Battle_Manual + Amount: 5 + - Index: 1 + Item: Comp_Insurance + Amount: 5 + - Index: 2 + Item: Enriched_Slim_Pot + Amount: 100 + - SubGroup: 2 + List: + - Index: 0 + Item: Elven_Ears + Rate: 154 + - Index: 1 + Item: Leaf_Cat_Hat + Rate: 50 + - Index: 2 + Item: Pair_Of_Red_Ribbon + Rate: 180 + - Index: 3 + Item: Tiara_ + Rate: 100 + - Index: 4 + Item: Linen_Glove + Rate: 15 + - Index: 5 + Item: Skewer + Rate: 1 + - Index: 6 + Item: Flame_Sprits_Armor__ + Rate: 200 + - Index: 7 + Item: Muffler_ + Rate: 300 + - Group: CHANCE_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Lucky_Egg_C2 + Rate: 550 + - Index: 1 + Item: Lucky_Egg_C3 + Rate: 350 + - Index: 2 + Item: Lucky_Egg_C + Rate: 100 + - Group: ATTEND_3DAY_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Seed_Of_Yggdrasil + Amount: 10 + - Group: ATTEND_7DAY_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Old_Violet_Box + Amount: 2 + - Group: ATTEND_10DAY_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Old_Card_Album + Amount: 2 + - Group: ATTEND_15DAY_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Wrapped_Mask + - Index: 1 + Item: Accessory_Box + - Group: ATTEND_20DAY_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Comp_Battle_Manual + Amount: 5 + - Group: ATTEND_25DAY_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Bloody_Dead_Branch + Amount: 2 + - Group: GOLDPC_FIRST_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Ring_Of_Flame_Lord + - Index: 1 + Item: Ring_Of_Resonance + - Group: TICKET_GIFT_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Poring_Card + - Index: 1 + Item: Drops_Card + - Index: 2 + Item: Poporing_Card + - Index: 3 + Item: Marin_Card + - Index: 4 + Item: Lunatic_Card + - Index: 5 + Item: Fabre_Card + - Index: 6 + Item: Picky_Card + - Index: 7 + Item: Rocker_Card + - Index: 8 + Item: Desert_Wolf_Babe_Card + - Index: 9 + Item: Savage_Babe_Card + - Index: 10 + Item: Roda_Frog_Card + - Index: 11 + Item: Worm_Tail_Card + - Index: 12 + Item: Spore_Card + - Index: 13 + Item: Zombie_Card + - Index: 14 + Item: Condor_Card + - Group: TICKET_GIFT_BOX2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Time_Keepr_Shield + - Index: 1 + Item: Time_Keepr_Boots + - Index: 2 + Item: Time_Keepr_Manteau + - Index: 3 + Item: Time_Keeper_Hat + - Index: 4 + Item: Time_Keepr_Robe + - Group: ASSORTED_SCROLL_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Blessing_10_Scroll + Amount: 15 + UniqueId: true + - Index: 1 + Item: Inc_Agi_10_Scroll + Amount: 15 + UniqueId: true + - Index: 2 + Item: Assumptio_5_Scroll + Amount: 10 + UniqueId: true + - Index: 3 + Item: Wind_Walk_10_Scroll + Amount: 5 + UniqueId: true + - Group: DROOPING_KITTY_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Drooping_Kitty_C + Duration: 10080 + UniqueId: true + - Group: MAGESTIC_GOAT_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Magestic_Goat_C + Duration: 10080 + UniqueId: true + - Group: DEVIRUCHI_CAP_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Deviruchi_Cap_C + Duration: 10080 + UniqueId: true + - Group: EXECUTIONER_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Executioner_C + Duration: 10080 + UniqueId: true + - Group: BROOD_AXE_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Brood_Axe_C + Duration: 10080 + UniqueId: true + - Group: TOMAHAWK_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Tomahawk_C + Duration: 10080 + UniqueId: true + - Group: BOW_OF_RUDRA_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Bow_Of_Rudra_C + Duration: 10080 + UniqueId: true + - Group: CUTLAS_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Cutlas_C + Duration: 10080 + UniqueId: true + - Group: SOLAR_SWORD_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Solar_Sword_C + Duration: 10080 + UniqueId: true + - Group: SWORD_BREAKER_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Sword_Breaker_C + Duration: 10080 + UniqueId: true + - Group: MAIL_BREAKER_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Mail_Breaker_C + Duration: 10080 + UniqueId: true + - Group: MOONLIGHT_SWORD_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Moonlight_Sword_C + Duration: 10080 + UniqueId: true + - Group: SPANNER_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Spanner_C + Duration: 10080 + UniqueId: true + - Group: WEAPON_CARD_SCROLL + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Orc_Lady_Card + Rate: 40 + UniqueId: true + - Index: 1 + Item: Mummy_Card + Rate: 40 + UniqueId: true + - Index: 2 + Item: Marina_Card + Rate: 40 + UniqueId: true + - Index: 3 + Item: Desert_Wolf_Card + Rate: 40 + UniqueId: true + - Index: 4 + Item: Soldier_Skeleton_Card + Rate: 4 + UniqueId: true + - Index: 5 + Item: Magnolia_Card + Rate: 5 + UniqueId: true + - Index: 6 + Item: Andre_Card + Rate: 1 + UniqueId: true + - Index: 7 + Item: Battle_Manual + Rate: 130 + Amount: 2 + UniqueId: true + - Index: 8 + Item: Insurance + Rate: 130 + UniqueId: true + - Index: 9 + Item: Bubble_Gum + Rate: 130 + Amount: 2 + UniqueId: true + - Index: 10 + Item: Yggdrasilberry + Rate: 220 + Amount: 9 + UniqueId: true + - Index: 11 + Item: Leaf_Of_Yggdrasil + Rate: 220 + Amount: 5 + UniqueId: true + - Group: ARMOR_CARD_SCROLL + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Flying_Deleter_Card + Rate: 40 + UniqueId: true + - Index: 1 + Item: Nightmare_Terror_Card + Rate: 40 + UniqueId: true + - Index: 2 + Item: Pest_Card + Rate: 40 + UniqueId: true + - Index: 3 + Item: Marc_Card + Rate: 40 + UniqueId: true + - Index: 4 + Item: Dark_Frame_Card + Rate: 5 + UniqueId: true + - Index: 5 + Item: Deleter_Card + Rate: 1 + UniqueId: true + - Index: 6 + Item: Enriched_Oridecon + Rate: 80 + Amount: 2 + UniqueId: true + - Index: 7 + Item: Enriched_Elunium + Rate: 80 + Amount: 2 + UniqueId: true + - Index: 8 + Item: Yggdrasilberry + Rate: 170 + Amount: 9 + UniqueId: true + - Index: 9 + Item: Token_Of_Siegfried + Rate: 170 + Amount: 5 + UniqueId: true + - Index: 10 + Item: Red_Slim_Potion + Rate: 170 + Amount: 50 + UniqueId: true + - Index: 11 + Item: Leaf_Of_Yggdrasil + Rate: 170 + Amount: 5 + UniqueId: true + - Group: HELMET_CARD_SCROLL + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Elder_Wilow_Card + Rate: 60 + UniqueId: true + - Index: 1 + Item: Deviruchi_Card + Rate: 8 + UniqueId: true + - Index: 2 + Item: Marduk_Card + Rate: 8 + UniqueId: true + - Index: 3 + Item: Carat_Card + Rate: 1 + UniqueId: true + - Index: 4 + Item: Battle_Manual + Rate: 60 + Amount: 2 + UniqueId: true + - Index: 5 + Item: Insurance + Rate: 53 + UniqueId: true + - Index: 6 + Item: Bubble_Gum + Rate: 60 + Amount: 2 + UniqueId: true + - Index: 7 + Item: Yggdrasilberry + Rate: 150 + Amount: 9 + UniqueId: true + - Index: 8 + Item: Token_Of_Siegfried + Rate: 150 + Amount: 5 + UniqueId: true + - Index: 9 + Item: Red_Slim_Potion + Rate: 150 + Amount: 50 + UniqueId: true + - Index: 10 + Item: Leaf_Of_Yggdrasil + Rate: 150 + Amount: 5 + UniqueId: true + - Index: 11 + Item: Grape_Juice + Rate: 150 + Amount: 5 + UniqueId: true + - Group: HOOD_CARD_SCROLL + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Choco_Card + Rate: 60 + UniqueId: true + - Index: 1 + Item: Hyegun_Card + Rate: 60 + UniqueId: true + - Index: 2 + Item: Nine_Tail_Card + Rate: 4 + UniqueId: true + - Index: 3 + Item: Whisper_Card + Rate: 1 + UniqueId: true + - Index: 4 + Item: Frilldora_Card + Rate: 1 + UniqueId: true + - Index: 5 + Item: Enriched_Oridecon + Rate: 60 + Amount: 2 + UniqueId: true + - Index: 6 + Item: Enriched_Elunium + Rate: 60 + Amount: 2 + UniqueId: true + - Index: 7 + Item: Yggdrasilberry + Rate: 150 + Amount: 9 + UniqueId: true + - Index: 8 + Item: Token_Of_Siegfried + Rate: 150 + Amount: 5 + UniqueId: true + - Index: 9 + Item: Red_Slim_Potion + Rate: 150 + Amount: 50 + UniqueId: true + - Index: 10 + Item: Leaf_Of_Yggdrasil + Rate: 150 + Amount: 5 + UniqueId: true + - Index: 11 + Item: Grape_Juice + Rate: 154 + Amount: 5 + UniqueId: true + - Group: HOOD_CARD_SCROLL2 + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Dragon_Tail_Card + Rate: 60 + UniqueId: true + - Index: 1 + Item: Baphomet__Card + Rate: 60 + UniqueId: true + - Index: 2 + Item: Daydric_Card + Rate: 10 + UniqueId: true + - Index: 3 + Item: Harpy_Card + Rate: 10 + UniqueId: true + - Index: 4 + Item: Whisper_Boss_Card + Rate: 2 + UniqueId: true + - Index: 5 + Item: Battle_Manual + Rate: 100 + Amount: 2 + UniqueId: true + - Index: 6 + Item: Insurance + Rate: 100 + UniqueId: true + - Index: 7 + Item: Bubble_Gum + Rate: 100 + Amount: 2 + UniqueId: true + - Index: 8 + Item: Yggdrasilberry + Rate: 180 + Amount: 9 + UniqueId: true + - Index: 9 + Item: Red_Slim_Potion + Rate: 180 + Amount: 50 + UniqueId: true + - Index: 10 + Item: Leaf_Of_Yggdrasil + Rate: 180 + Amount: 5 + UniqueId: true + - Index: 11 + Item: Grape_Juice + Rate: 180 + Amount: 5 + UniqueId: true + - Group: SHOES_CARD_SCROLL + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Thief_Bug_Male_Card + Rate: 50 + UniqueId: true + - Index: 1 + Item: Verit_Card + Rate: 10 + UniqueId: true + - Index: 2 + Item: Matyr_Card + Rate: 2 + UniqueId: true + - Index: 3 + Item: Sohee_Card + Rate: 2 + UniqueId: true + - Index: 4 + Item: Antique_Firelock_Card + Rate: 2 + UniqueId: true + - Index: 5 + Item: Battle_Manual + Rate: 80 + Amount: 2 + UniqueId: true + - Index: 6 + Item: Insurance + Rate: 70 + UniqueId: true + - Index: 7 + Item: Bubble_Gum + Rate: 90 + Amount: 2 + UniqueId: true + - Index: 8 + Item: Yggdrasilberry + Rate: 180 + Amount: 9 + UniqueId: true + - Index: 9 + Item: White_Slim_Potion + Rate: 174 + Amount: 20 + UniqueId: true + - Index: 10 + Item: Grape_Juice + Rate: 180 + Amount: 5 + UniqueId: true + - Index: 11 + Item: Fruit_Of_Mastela + Rate: 160 + Amount: 5 + UniqueId: true + - Group: ACCY_CARD_SCROLL + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Blood_Butterfly_Card + Rate: 50 + UniqueId: true + - Index: 1 + Item: Mimic_Card + Rate: 10 + UniqueId: true + - Index: 2 + Item: Zerom_Card + Rate: 2 + UniqueId: true + - Index: 3 + Item: Phen_Card + Rate: 2 + UniqueId: true + - Index: 4 + Item: Battle_Manual + Rate: 70 + Amount: 2 + UniqueId: true + - Index: 5 + Item: Insurance + Rate: 70 + UniqueId: true + - Index: 6 + Item: Bubble_Gum + Rate: 70 + Amount: 2 + UniqueId: true + - Index: 7 + Item: Yggdrasilberry + Rate: 140 + Amount: 9 + UniqueId: true + - Index: 8 + Item: Token_Of_Siegfried + Rate: 140 + Amount: 5 + UniqueId: true + - Index: 9 + Item: White_Slim_Potion + Rate: 150 + Amount: 20 + UniqueId: true + - Index: 10 + Item: Grape_Juice + Rate: 150 + Amount: 5 + UniqueId: true + - Index: 11 + Item: Fruit_Of_Mastela + Rate: 146 + Amount: 5 + UniqueId: true + - Group: WEAPON_CARD_SCROLL2 + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Mandragora_Card + Rate: 40 + UniqueId: true + - Index: 1 + Item: Vadon_Card + Rate: 40 + UniqueId: true + - Index: 2 + Item: Snake_Card + Rate: 40 + UniqueId: true + - Index: 3 + Item: Drainliar_Card + Rate: 40 + UniqueId: true + - Index: 4 + Item: Orc_Skeleton_Card + Rate: 39 + UniqueId: true + - Index: 5 + Item: Skel_Worker_Card + Rate: 5 + UniqueId: true + - Index: 6 + Item: Minorous_Card + Rate: 5 + UniqueId: true + - Index: 7 + Item: Garm_Baby_Card + Rate: 1 + UniqueId: true + - Index: 8 + Item: Enriched_Oridecon + Rate: 160 + Amount: 2 + UniqueId: true + - Index: 9 + Item: Enriched_Elunium + Rate: 150 + Amount: 2 + UniqueId: true + - Index: 10 + Item: Yggdrasilberry + Rate: 240 + Amount: 9 + UniqueId: true + - Index: 11 + Item: Leaf_Of_Yggdrasil + Rate: 240 + Amount: 5 + UniqueId: true + - Group: WEAPON_CARD_SCROLL3 + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Goblin_Card + Rate: 40 + UniqueId: true + - Index: 1 + Item: Caramel_Card + Rate: 40 + UniqueId: true + - Index: 2 + Item: Scorpion_Card + Rate: 40 + UniqueId: true + - Index: 3 + Item: Flora_Card + Rate: 40 + UniqueId: true + - Index: 4 + Item: Hunter_Fly_Card + Rate: 5 + UniqueId: true + - Index: 5 + Item: Pecopeco_Egg_Card + Rate: 5 + UniqueId: true + - Index: 6 + Item: Hydra_Card + Rate: 5 + UniqueId: true + - Index: 7 + Item: Battle_Manual + Rate: 120 + Amount: 2 + UniqueId: true + - Index: 8 + Item: Insurance + Rate: 125 + UniqueId: true + - Index: 9 + Item: Bubble_Gum + Rate: 160 + Amount: 2 + UniqueId: true + - Index: 10 + Item: Yggdrasilberry + Rate: 210 + Amount: 9 + UniqueId: true + - Index: 11 + Item: White_Slim_Potion + Rate: 210 + Amount: 20 + UniqueId: true + - Group: ARMOR_CARD_SCROLL2 + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Disguise_Card + Rate: 58 + UniqueId: true + - Index: 1 + Item: Rybio_Card + Rate: 58 + UniqueId: true + - Index: 2 + Item: Wraith_Dead_Card + Rate: 5 + UniqueId: true + - Index: 3 + Item: Majoruros_Card + Rate: 5 + UniqueId: true + - Index: 4 + Item: Pupa_Card + Rate: 4 + UniqueId: true + - Index: 5 + Item: Pecopeco_Card + Rate: 4 + UniqueId: true + - Index: 6 + Item: Battle_Manual + Rate: 100 + Amount: 2 + UniqueId: true + - Index: 7 + Item: Insurance + Rate: 80 + UniqueId: true + - Index: 8 + Item: Bubble_Gum + Rate: 100 + Amount: 2 + UniqueId: true + - Index: 9 + Item: Yggdrasilberry + Rate: 199 + Amount: 9 + UniqueId: true + - Index: 10 + Item: White_Slim_Potion + Rate: 199 + Amount: 20 + UniqueId: true + - Index: 11 + Item: Fruit_Of_Mastela + Rate: 188 + Amount: 5 + UniqueId: true + - Group: ACCY_CARD_SCROLL2 + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Kobold_Card + Rate: 40 + UniqueId: true + - Index: 1 + Item: Dancing_Dragon_Card + Rate: 40 + UniqueId: true + - Index: 2 + Item: Mantis_Card + Rate: 9 + UniqueId: true + - Index: 3 + Item: Smokie_Card + Rate: 9 + UniqueId: true + - Index: 4 + Item: Vitata_Card + Rate: 2 + UniqueId: true + - Index: 5 + Item: Enriched_Oridecon + Rate: 70 + Amount: 2 + UniqueId: true + - Index: 6 + Item: Enriched_Elunium + Rate: 80 + Amount: 2 + UniqueId: true + - Index: 7 + Item: Yggdrasilberry + Rate: 150 + Amount: 9 + UniqueId: true + - Index: 8 + Item: Token_Of_Siegfried + Rate: 150 + Amount: 5 + UniqueId: true + - Index: 9 + Item: White_Slim_Potion + Rate: 150 + Amount: 20 + UniqueId: true + - Index: 10 + Item: Grape_Juice + Rate: 150 + Amount: 5 + UniqueId: true + - Index: 11 + Item: Fruit_Of_Mastela + Rate: 150 + Amount: 5 + UniqueId: true + - Group: ASPERSIO_5_BOX30 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Holy_Water + Amount: 30 + UniqueId: true + - Index: 1 + Item: Aspersio_5_Scroll + Amount: 30 + UniqueId: true + - Group: ASPERSIO_5_BOX50 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Holy_Water + Amount: 50 + UniqueId: true + - Index: 1 + Item: Aspersio_5_Scroll + Amount: 50 + UniqueId: true + - Group: HANDCUFF_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Handcuff + Duration: 2880 + UniqueId: true + - Group: INFILTRATOR_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Infiltrator_C + Duration: 1440 + UniqueId: true + - Group: MURAMASA_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Muramasa_C + Duration: 1440 + UniqueId: true + - Group: EXCALIBUR_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Excalibur_C + Duration: 1440 + UniqueId: true + - Group: COMBAT_KNIFE_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Combat_Knife_C + Duration: 1440 + UniqueId: true + - Group: COUNTER_DAGGER_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Counter_Dagger_C + Duration: 1440 + UniqueId: true + - Group: KAISER_KNUCKLE_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Kaiser_Knuckle_C + Duration: 1440 + UniqueId: true + - Group: POLE_AXE_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Pole_Axe_C + Duration: 1440 + UniqueId: true + - Group: MIGHTY_STAFF_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Mighty_Staff_C + Duration: 1440 + UniqueId: true + - Group: RIGHT_EPSILON_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Right_Epsilon_C + Duration: 1440 + UniqueId: true + - Group: BALISTAR_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Balistar_C + Duration: 1440 + UniqueId: true + - Group: DIARY_OF_SAGE_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Diary_Of_Great_Sage_C + Duration: 1440 + UniqueId: true + - Group: ASURA_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Asura_C + Duration: 1440 + UniqueId: true + - Group: APPLE_OF_ARCHER_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Apple_Of_Archer_C + Duration: 1440 + UniqueId: true + - Group: BUNNY_BAND_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Bunny_Band_C + Duration: 1440 + UniqueId: true + - Group: SAHKKAT_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Sahkkat_C + Duration: 1440 + UniqueId: true + - Group: LORD_CIRCLET_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Lord_Circlet_C + Duration: 1440 + UniqueId: true + - Group: ELVEN_EARS_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Elven_Ears_C + Duration: 1440 + UniqueId: true + - Group: STEEL_FLOWER_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Steel_Flower_C + Duration: 1440 + UniqueId: true + - Group: CRITICAL_RING_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Critical_Ring_C + Duration: 1440 + UniqueId: true + - Group: EARRING_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Earring_C + Duration: 1440 + UniqueId: true + - Group: RING_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Ring_C + Duration: 1440 + UniqueId: true + - Group: NECKLACE_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Necklace_C + Duration: 1440 + UniqueId: true + - Group: GLOVE_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Glove_C + Duration: 1440 + UniqueId: true + - Group: BROOCH_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Brooch_C + Duration: 1440 + UniqueId: true + - Group: ROSARY_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Rosary_C + Duration: 1440 + UniqueId: true + - Group: SAFETY_RING_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Safety_Ring_C + Duration: 1440 + UniqueId: true + - Group: VESPER_CORE01_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Vesper_Core01_C + Duration: 1440 + UniqueId: true + - Group: VESPER_CORE02_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Vesper_Core02_C + Duration: 1440 + UniqueId: true + - Group: VESPER_CORE03_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Vesper_Core03_C + Duration: 1440 + UniqueId: true + - Group: VESPER_CORE04_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Vesper_Core04_C + Duration: 1440 + UniqueId: true + - Group: DROOPING_KITTY_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Drooping_Kitty_C + Duration: 1440 + UniqueId: true + - Group: MAGESTIC_GOAT_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Magestic_Goat_C + Duration: 1440 + UniqueId: true + - Group: DEVIRUCHI_CAP_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Deviruchi_Cap_C + Duration: 1440 + UniqueId: true + - Group: EXECUTIONER_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Executioner_C + Duration: 1440 + UniqueId: true + - Group: BROOD_AXE_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Brood_Axe_C + Duration: 1440 + UniqueId: true + - Group: TOMAHAWK_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Tomahawk_C + Duration: 1440 + UniqueId: true + - Group: CUTLAS_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Cutlas_C + Duration: 1440 + UniqueId: true + - Group: SOLAR_SWORD_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Solar_Sword_C + Duration: 1440 + UniqueId: true + - Group: MOONLIGHT_SWORD_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Moonlight_Sword_C + Duration: 1440 + UniqueId: true + - Group: SPANNER_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Spanner_C + Duration: 1440 + UniqueId: true + - Group: FREYJA_OVERCOAT_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Freyja_Overcoat + Duration: 10080 + UniqueId: true + - Group: FREYJA_BOOTS_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Freyja_Boots + Duration: 10080 + UniqueId: true + - Group: FREYJA_CAPE_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Freyja_Cape + Duration: 10080 + UniqueId: true + - Group: FREYJA_CROWN_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Freyja_Crown + Duration: 10080 + UniqueId: true + - Group: BRO_PACKAGE1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Adrenaline_Scroll + Amount: 20 + UniqueId: true + - Index: 1 + Item: Wind_Walk_10_Scroll + Amount: 20 + UniqueId: true + - Index: 2 + Item: Blessing_10_Scroll + Amount: 20 + UniqueId: true + - Index: 3 + Item: Inc_Agi_10_Scroll + Amount: 20 + UniqueId: true + - Group: PECOPECO_HAIRBAND_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Pecopeco_Hairband + Duration: 20160 + UniqueId: true + - Group: RED_GLASSES_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Red_Glasses + Duration: 20160 + UniqueId: true + - Group: WHISPER_MASK_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Whisper_Mask + Duration: 20160 + UniqueId: true + - Group: GOLD_BOX_ + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Beret + Rate: 2 + UniqueId: true + - Index: 1 + Item: Alice_Doll + Rate: 2 + UniqueId: true + - Index: 2 + Item: Lif_Doll_Hat + Rate: 7 + UniqueId: true + - Index: 3 + Item: Moonlight_Flower_Hat + Rate: 2 + UniqueId: true + - Index: 4 + Item: Dress_Hat + Rate: 7 + UniqueId: true + - Index: 5 + Item: Triple_Poring_Hat + Rate: 7 + UniqueId: true + - Index: 6 + Item: Magic_Eyes + Rate: 7 + UniqueId: true + - Index: 7 + Item: Sheep_Hat + Rate: 7 + UniqueId: true + - Index: 8 + Item: Baseball_Cap + Rate: 7 + UniqueId: true + - Index: 9 + Item: Cat_Hat + Rate: 30 + UniqueId: true + - Index: 10 + Item: Battle_Manual + Rate: 61 + UniqueId: true + - Index: 11 + Item: Gold_Key_TW + Rate: 30 + UniqueId: true + - Index: 12 + Item: Enriched_Oridecon + Rate: 61 + UniqueId: true + - Index: 13 + Item: Enriched_Elunium + Rate: 60 + UniqueId: true + - Index: 14 + Item: Fruit_Of_Mastela + Rate: 110 + UniqueId: true + - Index: 15 + Item: Yggdrasilberry + Rate: 110 + UniqueId: true + - Index: 16 + Item: Zeny_Scroll + Rate: 60 + UniqueId: true + - Index: 17 + Item: Old_Blue_Box + Rate: 110 + UniqueId: true + - Index: 18 + Item: Old_Violet_Box + Rate: 60 + UniqueId: true + - Index: 19 + Item: Old_Card_Album + Rate: 30 + UniqueId: true + - Index: 20 + Item: Crystal_Jewel__ + Rate: 60 + UniqueId: true + - Index: 21 + Item: Crystal_Jewel + Rate: 170 + UniqueId: true + - Group: SILVER_BOX_ + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Drooping_Nine_Tail + Rate: 2 + UniqueId: true + - Index: 1 + Item: Black_Bunny_Band + Rate: 6 + UniqueId: true + - Index: 2 + Item: Satellite_Hairband + Rate: 6 + UniqueId: true + - Index: 3 + Item: Pink_Drooping_Kitty + Rate: 7 + UniqueId: true + - Index: 4 + Item: Pink_Fur_Hat + Rate: 30 + UniqueId: true + - Index: 5 + Item: White_Wizardry_Hat + Rate: 30 + UniqueId: true + - Index: 6 + Item: Red_Wizardry_Hat + Rate: 30 + UniqueId: true + - Index: 7 + Item: White_Deviruchi_Cap + Rate: 7 + UniqueId: true + - Index: 8 + Item: Red_Deviruchi_Cap + Rate: 6 + UniqueId: true + - Index: 9 + Item: Angeling_Hairpin + Rate: 6 + UniqueId: true + - Index: 10 + Item: Battle_Manual + Rate: 60 + UniqueId: true + - Index: 11 + Item: Token_Of_Siegfried + Rate: 60 + UniqueId: true + - Index: 12 + Item: Silver_Key + Rate: 30 + UniqueId: true + - Index: 13 + Item: Oridecon + Rate: 60 + UniqueId: true + - Index: 14 + Item: Elunium + Rate: 60 + UniqueId: true + - Index: 15 + Item: Leaf_Of_Yggdrasil + Rate: 110 + UniqueId: true + - Index: 16 + Item: Seed_Of_Yggdrasil + Rate: 110 + UniqueId: true + - Index: 17 + Item: Zeny_Scroll + Rate: 60 + UniqueId: true + - Index: 18 + Item: Old_Blue_Box + Rate: 60 + UniqueId: true + - Index: 19 + Item: Crystal_Jewel + Rate: 60 + UniqueId: true + - Index: 20 + Item: Crystal_Jewel___ + Rate: 200 + UniqueId: true + - Group: PECOPECO_HAIRBAND_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Pecopeco_Hairband + Duration: 1440 + UniqueId: true + - Group: RED_GLASSES_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Red_Glasses + Duration: 1440 + UniqueId: true + - Group: WHISPER_MASK_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Whisper_Mask + Duration: 1440 + UniqueId: true + - Group: RAMEN_HAT_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Ramen_Hat + Duration: 1440 + UniqueId: true + - Group: 5_ANNIVERSARY_COIN_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: 5_Anniversary_Coin + Duration: 60 + UniqueId: true + - Group: CERTIFICATE_TW_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Certificate_TW + Duration: 1440 + UniqueId: true + - Group: NAGAN_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nagan_C + Duration: 10080 + UniqueId: true + - Group: SKEWER_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Skewer_C + Duration: 10080 + UniqueId: true + - Group: SURVIVAL_ROD_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Survival_Rod_C + Duration: 10080 + UniqueId: true + - Group: QUADRILLE_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Quadrille_C + Duration: 10080 + UniqueId: true + - Group: GREAT_AXE_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Great_Axe_C + Duration: 10080 + UniqueId: true + - Group: BLOODY_ROAR_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Bloody_Roar_C + Duration: 10080 + UniqueId: true + - Group: HARDBACK_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Hardback_C + Duration: 10080 + UniqueId: true + - Group: IMMATERIAL_SWORD_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Immaterial_Sword_C + Duration: 10080 + UniqueId: true + - Group: UNHOLY_TOUCH_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Unholy_Touch_C + Duration: 10080 + UniqueId: true + - Group: CLOAK_OF_SURVIVAL_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Cloak_Of_Survival_C + Duration: 20160 + UniqueId: true + - Group: MASQUERADE_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Masquerade_C + Duration: 20160 + UniqueId: true + - Group: ORC_HERO_HELM_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Orc_Hero_Helm_C + Duration: 20160 + UniqueId: true + - Group: EVIL_WING_EARS_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Evil_Wing_Ears_C + Duration: 20160 + UniqueId: true + - Group: DARK_BLINDFOLD_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Dark_Blindfold_C + Duration: 20160 + UniqueId: true + - Group: KRO_DROOPING_KITTY_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: kRO_Drooping_Kitty_C + Duration: 20160 + UniqueId: true + - Group: CORSAIR_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Corsair_C + Duration: 20160 + UniqueId: true + - Group: BLOODY_IRON_BALL_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Bloody_Iron_Ball_C + Duration: 10080 + UniqueId: true + - Group: SPIRITUAL_RING_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Spiritual_Ring_C + Duration: 10080 + UniqueId: true + - Group: NAGAN_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nagan_C + Duration: 1440 + UniqueId: true + - Group: SKEWER_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Skewer_C + Duration: 1440 + UniqueId: true + - Group: SURVIVAL_ROD_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Survival_Rod_C + Duration: 1440 + UniqueId: true + - Group: QUADRILLE_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Quadrille_C + Duration: 1440 + UniqueId: true + - Group: GREAT_AXE_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Great_Axe_C + Duration: 1440 + UniqueId: true + - Group: FIRE_BRAND_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Fire_Brand_C + Duration: 1440 + UniqueId: true + - Group: IMMATERIAL_SWORD_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Immaterial_Sword_C + Duration: 1440 + UniqueId: true + - Group: UNHOLY_TOUCH_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Unholy_Touch_C + Duration: 1440 + UniqueId: true + - Group: CLOAK_OF_SURVIVAL_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Cloak_Of_Survival_C + Duration: 1440 + UniqueId: true + - Group: MASQUERADE_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Masquerade_C + Duration: 1440 + UniqueId: true + - Group: ORC_HERO_HELM_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Orc_Hero_Helm_C + Duration: 1440 + UniqueId: true + - Group: EVIL_WING_EARS_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Evil_Wing_Ears_C + Duration: 1440 + UniqueId: true + - Group: DARK_BLINDFOLD_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Dark_Blindfold_C + Duration: 1440 + UniqueId: true + - Group: KRO_DROOPING_KITTY_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: kRO_Drooping_Kitty_C + Duration: 1440 + UniqueId: true + - Group: CORSAIR_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Corsair_C + Duration: 1440 + UniqueId: true + - Group: SPIRITUAL_RING_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Spiritual_Ring_C + Duration: 1440 + UniqueId: true + - Group: INDONESIA_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Yellow_Slim_Potion + Amount: 100 + UniqueId: true + - Index: 1 + Item: Speed_Up_Potion + Amount: 10 + UniqueId: true + - Index: 2 + Item: Yggdrasilberry + Amount: 5 + UniqueId: true + - Group: GREEN_BOX_ + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Helm_Of_Darkness + Rate: 100 + UniqueId: true + - Index: 1 + Item: Red_Deviruchi_Cap + Rate: 200 + UniqueId: true + - Index: 2 + Item: Kettle_Hat + Rate: 200 + UniqueId: true + - Index: 3 + Item: Ribbon_Black + Rate: 200 + UniqueId: true + - Index: 4 + Item: Poring_Box + Rate: 300 + Amount: 3 + UniqueId: true + - Group: RESIST_BOX1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Resist_Fire + UniqueId: true + - Index: 1 + Item: Resist_Water + UniqueId: true + - Group: RESIST_BOX2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Resist_Earth + UniqueId: true + - Index: 1 + Item: Resist_Wind + UniqueId: true + - Group: STAT_BOOST1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Str_Dish05_ + UniqueId: true + - Index: 1 + Item: Agi_Dish05_ + UniqueId: true + - Index: 2 + Item: Vit_Dish05_ + UniqueId: true + - Group: STAT_BOOST2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Int_Dish05_ + UniqueId: true + - Index: 1 + Item: Luk_Dish05_ + UniqueId: true + - Index: 2 + Item: Dex_Dish05_ + UniqueId: true + - Group: STAT_BOOST3 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Agi_Dish05_ + UniqueId: true + - Index: 1 + Item: Vit_Dish05_ + UniqueId: true + - Index: 2 + Item: Dex_Dish05_ + UniqueId: true + - Group: STAT_BOOST4 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Int_Dish05_ + UniqueId: true + - Index: 1 + Item: Vit_Dish05_ + UniqueId: true + - Index: 2 + Item: Dex_Dish05_ + UniqueId: true + - Group: OBSERVER_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Observer + Duration: 10080 + UniqueId: true + - Group: LUCKY_CLIP_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Lucky_Clip + Duration: 1440 + UniqueId: true + - Group: F_LEVER_ACTION_RIFLE_BO + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Lever_Action_Rifle_C + Duration: 10080 + UniqueId: true + - Group: F_REFRESH_SHOES_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Refresh_Shoes + Duration: 10080 + UniqueId: true + - Group: F_PECOPECO_HAIRBAND_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Pecopeco_Hairband + Duration: 20160 + UniqueId: true + - Group: F_RED_GLASSES_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Red_Glasses + Duration: 20160 + UniqueId: true + - Group: F_WHISPER_MASK_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Whisper_Mask + Duration: 20160 + UniqueId: true + - Group: F_RAMEN_HAT_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Ramen_Hat + Duration: 20160 + UniqueId: true + - Group: F_VIGORGRA_PACKAGE3 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Battle_Manual + Amount: 2 + UniqueId: true + - Index: 1 + Item: Int_Dish10_ + Amount: 2 + UniqueId: true + - Index: 2 + Item: Dex_Dish10_ + Amount: 2 + UniqueId: true + - Index: 3 + Item: Inc_Agi_10_Scroll + Amount: 15 + UniqueId: true + - Index: 4 + Item: Blessing_10_Scroll + Amount: 15 + UniqueId: true + - Index: 5 + Item: Kafra_Card + UniqueId: true + - Index: 6 + Item: Token_Of_Siegfried + UniqueId: true + - Group: F_VIGORGRA_PACKAGE4 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Battle_Manual + Amount: 2 + UniqueId: true + - Index: 1 + Item: Int_Dish10_ + Amount: 2 + UniqueId: true + - Index: 2 + Item: Vit_Dish10_ + Amount: 2 + UniqueId: true + - Index: 3 + Item: Inc_Agi_10_Scroll + Amount: 15 + UniqueId: true + - Index: 4 + Item: Blessing_10_Scroll + Amount: 15 + UniqueId: true + - Index: 5 + Item: Kafra_Card + UniqueId: true + - Index: 6 + Item: Token_Of_Siegfried + UniqueId: true + - Group: NOVICE_SET_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Cracked_Buckler + Duration: 10080 + UniqueId: true + - Index: 1 + Item: Old_Pant + Duration: 10080 + UniqueId: true + - Index: 2 + Item: Boots_Perforated + Duration: 10080 + UniqueId: true + - Index: 3 + Item: Cheap_Running_Shirts + Duration: 10080 + UniqueId: true + - Index: 4 + Item: Old_Bandanna + Duration: 10080 + UniqueId: true + - Group: BEHOLDER_RING_BOX2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Beholder_Ring + Duration: 21600 + UniqueId: true + - Group: HALLOW_RING_BOX2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Hallow_Ring + Duration: 21600 + UniqueId: true + - Group: CLAMOROUS_RING_BOX2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Clamorous_Ring + Duration: 21600 + UniqueId: true + - Group: CHEMICAL_RING_BOX2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Chemical_Ring + Duration: 21600 + UniqueId: true + - Group: INSECTICIDE_RING_BOX2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Insecticide_Ring + Duration: 21600 + UniqueId: true + - Group: FISHER_RING_BOX2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Fisher_Ring + Duration: 21600 + UniqueId: true + - Group: DECUSSATE_RING_BOX2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Decussate_Ring + Duration: 21600 + UniqueId: true + - Group: BLOODY_RING_BOX2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Bloody_Ring + Duration: 21600 + UniqueId: true + - Group: SATANIC_RING_BOX2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Satanic_Ring + Duration: 21600 + UniqueId: true + - Group: DRAGOON_RING_BOX2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Dragoon_Ring + Duration: 21600 + UniqueId: true + - Group: FPICTURE_DIARY_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Picture_Diary + Duration: 10080 + UniqueId: true + - Group: FMINI_HEART_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Mini_Heart + Duration: 10080 + UniqueId: true + - Group: FNEWCOMER_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Newcomer + Duration: 10080 + UniqueId: true + - Group: FKID_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Kid + Duration: 10080 + UniqueId: true + - Group: FMAGIC_CASTLE_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Magic_Castle + Duration: 10080 + UniqueId: true + - Group: FBULGING_HEAD_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Bulging_Head + Duration: 10080 + UniqueId: true + - Group: FPICTURE_DIARY_BOX_1M + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Picture_Diary + Duration: 43200 + UniqueId: true + - Group: FMINI_HEART_BOX_1M + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Mini_Heart + Duration: 43200 + UniqueId: true + - Group: FNEWCOMER_BOX_1M + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Newcomer + Duration: 43200 + UniqueId: true + - Group: FKID_BOX_1M + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Kid + Duration: 43200 + UniqueId: true + - Group: FMAGIC_CASTLE_BOX_1M + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Magic_Castle + Duration: 43200 + UniqueId: true + - Group: FBULGING_HEAD_BOX_1M + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Bulging_Head + Duration: 43200 + UniqueId: true + - Group: FHEALING_STAFF_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Healing_Staff_C + Duration: 10080 + UniqueId: true + - Group: FPRAXINUS_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Praxinus_C + Duration: 10080 + UniqueId: true + - Group: MUFFLER_C_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Muffler_C + Duration: 10080 + UniqueId: true + - Group: VALKYRJA_S_SHIELD_C_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Valkyrja's_Shield_C + Duration: 10080 + UniqueId: true + - Group: SKUL_RING_C_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Skul_Ring_C + Duration: 10080 + UniqueId: true + - Group: S_BARRICADE_REPAIR_KIT + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Wooden_Block + Amount: 30 + UniqueId: true + - Index: 1 + Item: Steel + Amount: 10 + UniqueId: true + - Index: 2 + Item: Emveretarcon + Amount: 10 + UniqueId: true + - Index: 3 + Item: Oridecon + Amount: 5 + UniqueId: true + - Group: S_GSTONE_REPAIR_KIT + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Oridecon + UniqueId: true + - Index: 1 + Item: Elunium + UniqueId: true + - Index: 2 + Item: Stone + Amount: 30 + UniqueId: true + - Index: 3 + Item: Blue_Gemstone + Amount: 5 + UniqueId: true + - Index: 4 + Item: Yellow_Gemstone + Amount: 5 + UniqueId: true + - Index: 5 + Item: Red_Gemstone + Amount: 5 + UniqueId: true + - Group: ARDOR_SCROLL + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Battle_Manual + Rate: 50 + Amount: 5 + UniqueId: true + - Index: 1 + Item: Insurance + Rate: 70 + Amount: 5 + UniqueId: true + - Index: 2 + Item: Kafra_Card + Rate: 150 + Amount: 10 + UniqueId: true + - Index: 3 + Item: Bloody_Dead_Branch + Rate: 150 + UniqueId: true + - Index: 4 + Item: Ribbon_Pink + Rate: 29 + UniqueId: true + - Index: 5 + Item: Ribbon_Red + Rate: 29 + UniqueId: true + - Index: 6 + Item: Yggdrasilberry_Box_ + Rate: 190 + UniqueId: true + - Index: 7 + Item: Dead_Tree_Branch_Box1 + Rate: 180 + UniqueId: true + - Index: 8 + Item: Guyak_Pudding + Rate: 150 + Amount: 10 + UniqueId: true + - Index: 9 + Item: Neuralizer + Rate: 2 + UniqueId: true + - Group: HOLY_SABER_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Holy_Saber + Duration: 180 + UniqueId: true + - Group: BOOK_OF_PRAYER_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Book_Of_Prayer + Duration: 180 + UniqueId: true + - Group: PHENOMENA_WHIP_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Phenomena_Whip + Duration: 180 + UniqueId: true + - Group: STAFF_OF_DARKNESS_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Staff_Of_Darkness + Duration: 180 + UniqueId: true + - Group: MONK_KNUCKLE_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Monk_Knuckle + Duration: 180 + UniqueId: true + - Group: MACE_OF_MADNESS_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Mace_Of_Madness + Duration: 180 + UniqueId: true + - Group: SPEAR_OF_EXCELLENT_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Spear_Of_Excellent + Duration: 180 + UniqueId: true + - Group: BOW_OF_EVIL_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Bow_Of_Evil + Duration: 180 + UniqueId: true + - Group: KATAR_OF_SPEED_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Katar_Of_Speed + Duration: 180 + UniqueId: true + - Group: SS_REVOLVER_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Sharpshooter_Revolver + Duration: 180 + UniqueId: true + - Group: XMAS_SCROLL + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Santa_Poring_Hat + Rate: 5 + UniqueId: true + - Index: 1 + Item: Cross_Band + Rate: 50 + UniqueId: true + - Index: 2 + Item: Centimental_Flower + Rate: 50 + UniqueId: true + - Index: 3 + Item: Santa's_Hat + Rate: 50 + UniqueId: true + - Index: 4 + Item: Luk_Dish_Box + Rate: 125 + UniqueId: true + - Index: 5 + Item: Blessing_10_Scroll_Box + Rate: 125 + UniqueId: true + - Index: 6 + Item: Diadem + Rate: 5 + UniqueId: true + - Index: 7 + Item: Aspersio_5_Scroll_Box + Rate: 125 + UniqueId: true + - Index: 8 + Item: Assumptio_5_Scroll_Box + Rate: 125 + UniqueId: true + - Index: 9 + Item: Poring__Card + Rate: 10 + UniqueId: true + - Index: 10 + Item: Fire_Cracker_Xmas_Box + Rate: 150 + UniqueId: true + - Index: 11 + Item: Cookie_XMAS_Card + Rate: 20 + UniqueId: true + - Index: 12 + Item: Zeny_Scroll + Rate: 150 + Amount: 10 + UniqueId: true + - Index: 13 + Item: Bell_Ribbon + Rate: 5 + UniqueId: true + - Index: 14 + Item: Fish_Head_Hat + Rate: 5 + UniqueId: true + - Group: FORTUNE_SWORD_BOX_I + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Fortune_Sword_I + Duration: 360 + UniqueId: true + - Group: HOUSE_AUGER_BOX_I + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: House_Auger_I + Duration: 360 + UniqueId: true + - Group: KAMAITACHI_BOX_I + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Kamaitachi_I + Duration: 360 + UniqueId: true + - Group: BERSERK_GUITAR_BOX_I + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Berserk_Guitar_I + Duration: 360 + UniqueId: true + - Group: DOOM_SLAYER_BOX_I + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Doom_Slayer_I + Duration: 360 + UniqueId: true + - Group: HUUMA_BLAZE_BOX_I + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Huuma_Blaze_I + Duration: 360 + UniqueId: true + - Group: ODIN_S_BLESSING_BOX_I + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Odin's_Blessing_I + Duration: 360 + UniqueId: true + - Group: RING_OF_F_LORD_BOX_I + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Ring_Of_Flame_Lord_I + Duration: 360 + UniqueId: true + - Group: RING_OF_RESON_BOX_I + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Ring_Of_Resonance_I + Duration: 360 + UniqueId: true + - Group: BOY_S_CAP_BOX_I + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Boy's_Cap_I + Duration: 360 + UniqueId: true + - Group: ULLE_CAP_BOX_I + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Ulle_Cap_I + Duration: 360 + UniqueId: true + - Group: SPINX_HELM_BOX_I + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Spinx_Helm_I + Duration: 360 + UniqueId: true + - Group: POWER_OF_THOR_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Asara_Fairy_Hat + Rate: 435 + - Index: 1 + Item: Pencil_In_Mouth + Rate: 550 + - Index: 2 + Item: Power_Of_Thor + Rate: 15 + Announced: true + - Group: ACTI_POTION_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Acti_Potion + Amount: 5 + UniqueId: true + - Group: ACTI_POTION_BOX2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Acti_Potion + Amount: 5 + UniqueId: true + - Index: 1 + Item: Lucky_Egg_C5 + UniqueId: true + - Group: HALF_ASPRIKA_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Half_Asprika + Duration: 10080 + UniqueId: true + - Group: HALF_BRYNHILD_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Half_Brynhild + Duration: 10080 + UniqueId: true + - Group: SPIKED_SCARF_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Spiked_Scarf + Duration: 60 + UniqueId: true + - Group: RAINBOW_SCARF_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Rainbow_Scarf + Duration: 60 + UniqueId: true + - Group: 3D_GLASSES_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: 3D_Glasses_ + Duration: 60 + UniqueId: true + - Group: CHEER_SCARF_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Cheer_Scarf + Duration: 10080 + - Group: CHEER_SCARF2_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: E_Token_Of_Siegfried + Amount: 30 + - Index: 1 + Item: Comp_Bubble_Gum + Amount: 20 + - Index: 2 + Item: C_Wing_Of_Fly + Duration: 10080 + - Group: CHEER_SCARF3_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Cheer_Scarf3 + Duration: 10080 + UniqueId: true + - Group: CHEER_SCARF4_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Cheer_Scarf4 + Duration: 10080 + UniqueId: true + - Group: CHEER_SCARF6_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Cheer_Scarf6 + Duration: 10080 + UniqueId: true + - Group: CHEER_SCARF8_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Cheer_Scarf8 + Duration: 10080 + UniqueId: true + - Group: CHEER_SCARF10_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Cheer_Scarf10 + Duration: 10080 + UniqueId: true + - Group: CHEER_SCARF10_BOX2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Cheer_Scarf10 + Duration: 20160 + UniqueId: true + - Group: RING_OF_VALKYRIE_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Ring_Of_Valkyrie + Duration: 5760 + UniqueId: true + - Group: RAPID_LIFE_WATER_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Rapid_Life_Water + Amount: 10 + UniqueId: true + - Index: 1 + Item: Lucky_Egg_C6 + UniqueId: true + - Group: LOLLI_POP_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Yummy_Lollipop + Duration: 4320 + UniqueId: true + - Group: SPECIAL_BOX1 + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: N_Fly_Wing + Rate: 330 + Amount: 50 + - Index: 1 + Item: White_Potion + Rate: 330 + Amount: 10 + - Index: 2 + Item: N_Butterfly_Wing + Rate: 340 + Amount: 12 + - Group: SPECIAL_BOX2 + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Minor_Brisket + Rate: 150 + - Index: 1 + Item: Savage_BBQ + Rate: 150 + - Index: 2 + Item: Oridecon + Rate: 120 + - Index: 3 + Item: Elunium + Rate: 120 + Amount: 2 + - Index: 4 + Item: Elunium + Rate: 120 + - Index: 5 + Item: Poison_Bottle + Rate: 100 + - Index: 6 + Item: N_Fly_Wing + Rate: 80 + Amount: 50 + - Index: 7 + Item: White_Potion + Rate: 80 + Amount: 10 + - Index: 8 + Item: N_Butterfly_Wing + Rate: 80 + Amount: 12 + - Group: SPECIAL_BOX3 + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Siroma_Icetea + Rate: 300 + - Index: 1 + Item: Wug_Blood_Cocktail + Rate: 220 + - Index: 2 + Item: Minor_Brisket + Rate: 130 + - Index: 3 + Item: Savage_BBQ + Rate: 130 + - Index: 4 + Item: Oridecon + Rate: 80 + - Index: 5 + Item: Elunium + Rate: 80 + Amount: 2 + - Index: 6 + Item: Poison_Bottle + Rate: 60 + - Group: SPECIAL_BOX4 + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Yggdrasilberry + Rate: 300 + Amount: 5 + - Index: 1 + Item: Drocera_Herb_Stew + Rate: 220 + - Index: 2 + Item: Siroma_Icetea + Rate: 180 + - Index: 3 + Item: Wug_Blood_Cocktail + Rate: 120 + - Index: 4 + Item: Minor_Brisket + Rate: 60 + - Index: 5 + Item: Savage_BBQ + Rate: 60 + - Index: 6 + Item: Oridecon + Rate: 30 + - Index: 7 + Item: Elunium + Rate: 30 + Amount: 2 + - Group: SPECIAL_BOX5 + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Old_Card_Album + Rate: 300 + - Index: 1 + Item: Siege_Supply_Box + Rate: 220 + Amount: 2 + - Index: 2 + Item: Yggdrasilberry + Rate: 180 + Amount: 5 + - Index: 3 + Item: Drocera_Herb_Stew + Rate: 120 + - Index: 4 + Item: Siroma_Icetea + Rate: 80 + - Index: 5 + Item: Wug_Blood_Cocktail + Rate: 60 + - Index: 6 + Item: Minor_Brisket + Rate: 20 + - Index: 7 + Item: Savage_BBQ + Rate: 20 + - Group: PCBANG_COUPON_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Comp_Insurance + Amount: 2 + - Index: 1 + Item: White_Slim_Pot_Box2 + - SubGroup: 2 + List: + - Index: 0 + Item: Skewer + Rate: 10 + - Index: 1 + Item: Pillar_Card + Rate: 20 + - Index: 2 + Item: Ringco_Card + Rate: 20 + - Index: 3 + Item: Lata_Card + Rate: 20 + - Index: 4 + Item: Duneirre_Card + Rate: 20 + - Index: 5 + Item: Linen_Glove + Rate: 100 + - Index: 6 + Item: Leaf_Cat_Hat + Rate: 100 + - Index: 7 + Item: Old_Blue_Box + Rate: 370 + - Index: 8 + Item: Old_Violet_Box + Rate: 340 + - Group: B_HALTER_BOX_30DAYS + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Boarding_Halter + Duration: 43200 + UniqueId: true + - Group: PCBANG_COUPON_BOX4 + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Geographer_Card + Rate: 55 + - Index: 1 + Item: Rideword_Card + Rate: 55 + - Index: 2 + Item: Live_Peach_Tree_Card + Rate: 55 + - Index: 3 + Item: Harpy_Card + Rate: 55 + - Index: 4 + Item: Parasite_Card + Rate: 55 + - Index: 5 + Item: Miyabi_Ningyo_Card + Rate: 55 + - Index: 6 + Item: Solider_Card + Rate: 65 + - Index: 7 + Item: Permeter_Card + Rate: 55 + - Index: 8 + Item: Freezer_Card + Rate: 55 + - Index: 9 + Item: Baby_Leopard_Card + Rate: 55 + - Index: 10 + Item: Mystcase_Card + Rate: 55 + - Index: 11 + Item: Raggler_Card + Rate: 55 + - Index: 12 + Item: Wander_Man_Card + Rate: 55 + - Index: 13 + Item: Wild_Rose_Card + Rate: 55 + - Index: 14 + Item: Dancing_Dragon_Card + Rate: 55 + - Index: 15 + Item: Anolian_Card + Rate: 55 + - Index: 16 + Item: Dragon_Tail_Card + Rate: 55 + - Index: 17 + Item: Merman_Card + Rate: 55 + - SubGroup: 2 + List: + - Index: 0 + Item: Geographer_Card + Rate: 55 + - Index: 1 + Item: Rideword_Card + Rate: 55 + - Index: 2 + Item: Live_Peach_Tree_Card + Rate: 55 + - Index: 3 + Item: Harpy_Card + Rate: 55 + - Index: 4 + Item: Parasite_Card + Rate: 55 + - Index: 5 + Item: Miyabi_Ningyo_Card + Rate: 55 + - Index: 6 + Item: Solider_Card + Rate: 65 + - Index: 7 + Item: Permeter_Card + Rate: 55 + - Index: 8 + Item: Freezer_Card + Rate: 55 + - Index: 9 + Item: Baby_Leopard_Card + Rate: 55 + - Index: 10 + Item: Mystcase_Card + Rate: 55 + - Index: 11 + Item: Raggler_Card + Rate: 55 + - Index: 12 + Item: Wander_Man_Card + Rate: 55 + - Index: 13 + Item: Wild_Rose_Card + Rate: 55 + - Index: 14 + Item: Dancing_Dragon_Card + Rate: 55 + - Index: 15 + Item: Anolian_Card + Rate: 55 + - Index: 16 + Item: Dragon_Tail_Card + Rate: 55 + - Index: 17 + Item: Merman_Card + Rate: 55 + - SubGroup: 3 + List: + - Index: 0 + Item: Geographer_Card + Rate: 55 + - Index: 1 + Item: Rideword_Card + Rate: 55 + - Index: 2 + Item: Live_Peach_Tree_Card + Rate: 55 + - Index: 3 + Item: Harpy_Card + Rate: 55 + - Index: 4 + Item: Parasite_Card + Rate: 55 + - Index: 5 + Item: Miyabi_Ningyo_Card + Rate: 55 + - Index: 6 + Item: Solider_Card + Rate: 65 + - Index: 7 + Item: Permeter_Card + Rate: 55 + - Index: 8 + Item: Freezer_Card + Rate: 55 + - Index: 9 + Item: Baby_Leopard_Card + Rate: 55 + - Index: 10 + Item: Mystcase_Card + Rate: 55 + - Index: 11 + Item: Raggler_Card + Rate: 55 + - Index: 12 + Item: Wander_Man_Card + Rate: 55 + - Index: 13 + Item: Wild_Rose_Card + Rate: 55 + - Index: 14 + Item: Dancing_Dragon_Card + Rate: 55 + - Index: 15 + Item: Anolian_Card + Rate: 55 + - Index: 16 + Item: Dragon_Tail_Card + Rate: 55 + - Index: 17 + Item: Merman_Card + Rate: 55 + - Group: OLD_HAT_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Chicken_Hat + Rate: 50 + - Index: 1 + Item: Rune_Hairband + Rate: 30 + - Index: 2 + Item: Whikebain_Ears + Rate: 40 + - Index: 3 + Item: New_Cowboy_Hat + Rate: 50 + - Index: 4 + Item: Darkness_Helm + Rate: 50 + - Index: 5 + Item: J_Captain_Hat + Rate: 50 + - Index: 6 + Item: Santa_Hat_1 + Rate: 40 + - Index: 7 + Item: Flying_Angel + Rate: 50 + - Index: 8 + Item: Marcher_Hat + Rate: 50 + - Index: 9 + Item: Ninja_Scroll + Rate: 40 + - Index: 10 + Item: Gang_Scarf + Rate: 40 + - Index: 11 + Item: Angel_Spirit + Rate: 40 + - Index: 12 + Item: Diadem + Rate: 50 + - Index: 13 + Item: Twin_Ribbon + Rate: 50 + - Index: 14 + Item: Robo_Eye + Rate: 40 + - Index: 15 + Item: L_Orc_Hero_Helm + Rate: 50 + - Index: 16 + Item: Rabbit_Ear_Hat + Rate: 50 + - Index: 17 + Item: Drooping_White_Kitty + Rate: 50 + - Index: 18 + Item: Santa_Poring_Hat + Rate: 50 + - Index: 19 + Item: Fish_Head_Hat + Rate: 50 + - Index: 20 + Item: Little_Angel_Doll + Rate: 50 + - Index: 21 + Item: Chick_Hat + Rate: 30 + - Group: SAPA_FEAT_CERT_PACK + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Sapa_Feat_Cert + Rate: 500 + Amount: 20 + - Index: 1 + Item: Sapa_Feat_Cert + Rate: 300 + Amount: 30 + - Index: 2 + Item: Sapa_Feat_Cert + Rate: 200 + Amount: 40 + - Index: 3 + Item: Sapa_Feat_Cert + Rate: 100 + Amount: 50 + - Group: ARCHANGEL_WING_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Archangel_Wing + UniqueId: true + - Index: 1 + Item: Special_Potion_Set + - Group: TRANS_BOX_DEVI + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Trans_Scroll_Devi + Amount: 10 + UniqueId: true + - Index: 1 + Item: Trans_Scroll_Poring + UniqueId: true + - Group: TRANS_BOX_RAY_ARCH + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Trans_Scroll_Ray_Arch + Amount: 10 + UniqueId: true + - Index: 1 + Item: Trans_Scroll_Poring + UniqueId: true + - Group: TRANS_BOX_MAVKA + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Trans_Scroll_Mavka + Amount: 10 + UniqueId: true + - Index: 1 + Item: Trans_Scroll_Poring + UniqueId: true + - Group: TRANS_BOX_MARDUK + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Trans_Scroll_Marduk + Amount: 10 + UniqueId: true + - Index: 1 + Item: Trans_Scroll_Poring + UniqueId: true + - Group: TRANS_BOX_BANSHEE + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Trans_Scroll_Banshee + Amount: 10 + UniqueId: true + - Index: 1 + Item: Trans_Scroll_Poring + UniqueId: true + - Group: TRANS_BOX_GOLEM + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Trans_Scroll_Golem + Amount: 10 + UniqueId: true + - Index: 1 + Item: Trans_Scroll_Poring + UniqueId: true + - Group: UPG_REVOLVER_BOX2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Upg_Revolver + UniqueId: true + - Index: 1 + Item: Lucky_Egg_C10 + UniqueId: true + - Group: UPG_TWOHAND_SWORD_BOX2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Upg_Twohand_Sword + UniqueId: true + - Index: 1 + Item: Lucky_Egg_C10 + UniqueId: true + - Group: UPG_KATAR_BOX2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Upg_Katar + UniqueId: true + - Index: 1 + Item: Lucky_Egg_C10 + UniqueId: true + - Group: UPG_TWO_HANDED_AXE_BOX2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Upg_Two_Handed_Axe + UniqueId: true + - Index: 1 + Item: Lucky_Egg_C10 + UniqueId: true + - Group: UPG_LANCE_BOX2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Upg_Lance + UniqueId: true + - Index: 1 + Item: Lucky_Egg_C10 + UniqueId: true + - Group: UPG_BOOK_BOX2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Upg_Book + UniqueId: true + - Index: 1 + Item: Lucky_Egg_C10 + UniqueId: true + - Group: UPG_STAFF_BOX2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Upg_Staff + UniqueId: true + - Index: 1 + Item: Lucky_Egg_C10 + UniqueId: true + - Group: UPG_DAGGER_BOX2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Upg_Dagger + UniqueId: true + - Index: 1 + Item: Lucky_Egg_C10 + UniqueId: true + - Group: UPG_MACE_BOX2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Upg_Mace + UniqueId: true + - Index: 1 + Item: Lucky_Egg_C10 + UniqueId: true + - Group: UPG_BOW_BOX2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Upg_Bow + UniqueId: true + - Index: 1 + Item: Lucky_Egg_C10 + UniqueId: true + - Group: GRYPHON_EGG_SCROLL + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Gryphon_Hat + Rate: 140 + Announced: true + - Index: 1 + Item: C_Gryphon_Hat + Rate: 160 + Announced: true + - Index: 2 + Item: Enchant_Book + Rate: 2500 + - Index: 3 + Item: Guarantee_Weapon_7Up + Rate: 90 + Announced: true + - Index: 4 + Item: Guarantee_Armor_7Up + Rate: 90 + Announced: true + - Index: 5 + Item: Guarantee_Weapon_9Up + Rate: 3 + Announced: true + - Index: 6 + Item: Guarantee_Armor_9Up + Rate: 2 + Announced: true + - Index: 7 + Item: E_WOB_Rune + Rate: 500 + Amount: 5 + - Index: 8 + Item: E_WOB_Schwaltz + Rate: 500 + Amount: 5 + - Index: 9 + Item: E_WOB_Rachel + Rate: 500 + Amount: 5 + - Index: 10 + Item: E_WOB_Local + Rate: 500 + Amount: 5 + - Index: 11 + Item: Old_Card_Album Rate: 400 + - Index: 12 + Item: Magic_Card_Album + Rate: 5 + Announced: true + - Index: 13 + Item: White_Slim_Pot_Box2 + Rate: 1000 + - Index: 14 + Item: Poison_Bottle_Box2 + Rate: 240 + - Index: 15 + Item: Comp_Battle_Manual + Rate: 500 + Amount: 2 + - Index: 16 + Item: Comp_Bubble_Gum + Rate: 500 + Amount: 2 + - Index: 17 + Item: Comp_Insurance + Rate: 500 + Amount: 2 + - Index: 18 + Item: Bloody_Dead_Branch + Rate: 100 + Announced: true + - Index: 19 + Item: Branch_Of_Dead_Tree + Rate: 1000 + Amount: 3 + - Index: 20 + Item: Treasure_Box + Rate: 770 + - Group: ASPD_POTION_BOX10 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: ASPD_Potion + Amount: 10 + UniqueId: true + - Index: 1 + Item: Gryphon_Egg_Scroll + UniqueId: true + - Group: DRAGON_EGG_SCROLL + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Helm_Of_Dragoon + Rate: 250 + Announced: true + - Index: 1 + Item: Dragon_Breath + Rate: 400 + - Index: 2 + Item: Dragon_Slayer_ + Rate: 400 + - Index: 3 + Item: Inverse_Scale + Rate: 400 + - Index: 4 + Item: Gae_Bolg_ + Rate: 400 + - Index: 5 + Item: Legacy_Of_Dragon + Rate: 400 + - Index: 6 + Item: Dragon_Wing + Rate: 400 + - Index: 7 + Item: Dragon_Killer_ + Rate: 400 + - Index: 8 + Item: Dragon_Vest + Rate: 500 + - Index: 9 + Item: Dragon_Manteau + Rate: 500 + - Index: 10 + Item: Guarantee_Armor_7Up + Rate: 90 + Announced: true + - Index: 11 + Item: Guarantee_Weapon_7Up + Rate: 90 + Announced: true + - Index: 12 + Item: Guarantee_Armor_9Up + Rate: 5 + Announced: true + - Index: 13 + Item: Guarantee_Weapon_9Up + Rate: 5 + Announced: true + - Index: 14 + Item: Enchant_Book + Rate: 3000 + - Index: 15 + Item: Old_Card_Album + Rate: 400 + - Index: 16 + Item: Bloody_Dead_Branch + Rate: 155 + Announced: true + - Index: 17 + Item: Magic_Card_Album + Rate: 5 + Announced: true + - Index: 18 + Item: Comp_Bubble_Gum + Rate: 500 + Amount: 2 + - Index: 19 + Item: Comp_Battle_Manual + Rate: 500 + Amount: 2 + - Index: 20 + Item: Treasure_Box + Rate: 1200 + - Group: 2011_RWC_SCROLL_KR + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Treasure_Box + Rate: 1200 + - Index: 1 + Item: Enchant_Book + Rate: 2000 + - Index: 2 + Item: Auger_Of_Spirit + Rate: 1240 + - Index: 3 + Item: Cat_Ears_Beret + Rate: 150 + Announced: true + - Index: 4 + Item: Red_Bread_Hat + Rate: 150 + Announced: true + - Index: 5 + Item: Branch_Of_Dead_Tree + Rate: 1500 + Amount: 3 + - Index: 6 + Item: Bloody_Dead_Branch + Rate: 155 + - Index: 7 + Item: Elven_Ears + Rate: 400 + - Index: 8 + Item: Old_C_Album_Helm + Rate: 400 + - Index: 9 + Item: Old_C_Album_Shield + Rate: 200 + - Index: 10 + Item: Comp_Bubble_Gum + Rate: 500 + - Index: 11 + Item: Comp_Battle_Manual + Rate: 500 + - Index: 12 + Item: Poison_Bottle_Box2 + Rate: 750 + - Index: 13 + Item: White_Slim_Pot_Box2 + Rate: 750 + - Index: 14 + Item: Magic_Card_Album + Rate: 5 + Announced: true + - Index: 15 + Item: Guarantee_Armor_8Up + Rate: 50 + Announced: true + - Index: 16 + Item: Guarantee_Weapon_8Up + Rate: 50 + Announced: true + - Group: CHANGE_NAME_CARD_BOX2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Change_Name_Card + UniqueId: true + - Index: 1 + Item: Change_Slot_Card + UniqueId: true + - Group: PCBANG_COUPON_BOX5 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Old_Blue_Box + - Index: 1 + Item: Old_Violet_Box + - Index: 2 + Item: White_Slim_Pot_Box2 + - SubGroup: 2 + List: + - Index: 0 + Item: Elven_Ears_ + Rate: 40 + - Index: 1 + Item: Leaf_Cat_Hat + Rate: 80 + - Index: 2 + Item: Carga_Mace + Rate: 80 + - Index: 3 + Item: Elven_Bow + Rate: 80 + - Index: 4 + Item: Zipper_Bear_Card + Rate: 20 + - Index: 5 + Item: Oridecon + Rate: 200 + Amount: 3 + - Index: 6 + Item: Elunium + Rate: 200 + Amount: 3 + - Index: 7 + Item: Treasure_Box + Rate: 300 + - Group: CRU_SCROLL + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Tare_Neko_Cru + Rate: 150 + Announced: true + - Index: 1 + Item: C_Tare_Neko_Cru + Rate: 150 + Announced: true + - Index: 2 + Item: Ring_Of_Flame_Lord + Rate: 1 + Announced: true + - Index: 3 + Item: Guarantee_Weapon_11Up + Rate: 1 + Announced: true + - Index: 4 + Item: Guarantee_Armor_11Up + Rate: 1 + Announced: true + - Index: 5 + Item: Guarantee_Weapon_9Up + Rate: 4 + Announced: true + - Index: 6 + Item: Guarantee_Armor_9Up + Rate: 3 + Announced: true + - Index: 7 + Item: Guarantee_Weapon_7Up + Rate: 90 + Announced: true + - Index: 8 + Item: Guarantee_Armor_7Up + Rate: 90 + Announced: true + - Index: 9 + Item: Magic_Card_Album + Rate: 5 + Announced: true + - Index: 10 + Item: Bloody_Dead_Branch + Rate: 155 + Announced: true + - Index: 11 + Item: Comp_Battle_Manual + Rate: 500 + Amount: 2 + - Index: 12 + Item: Comp_Bubble_Gum + Rate: 500 + Amount: 2 + - Index: 13 + Item: Comp_Insurance + Rate: 500 + Amount: 2 + - Index: 14 + Item: E_WOB_Rune + Rate: 500 + Amount: 5 + - Index: 15 + Item: E_WOB_Schwaltz + Rate: 500 + Amount: 5 + - Index: 16 + Item: E_WOB_Rachel + Rate: 500 + Amount: 5 + - Index: 17 + Item: E_WOB_Local + Rate: 500 + Amount: 5 + - Index: 18 + Item: Old_Card_Album + Rate: 400 + - Index: 19 + Item: White_Slim_Pot_Box2 + Rate: 1000 + - Index: 20 + Item: Poison_Bottle_Box2 + Rate: 250 + - Index: 21 + Item: Treasure_Box + Rate: 1200 + - Index: 22 + Item: Enchant_Book + Rate: 3000 + - Group: EVENT_GIFT_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Yggdrasilberry + Amount: 3 + - SubGroup: 2 + List: + - Index: 0 + Item: Ticket_Loli_Ruri + Rate: 28 + - Index: 1 + Item: Magic_Card_Album + Rate: 70 + - Index: 2 + Item: Guarantee_Weapon_9Up + Rate: 1 + - Index: 3 + Item: Guarantee_Armor_9Up + Rate: 1 + - Index: 4 + Item: Guarantee_Weapon_7Up + Rate: 40 + - Index: 5 + Item: Guarantee_Armor_7Up + Rate: 20 + - Index: 6 + Item: Old_Card_Album + Rate: 250 + - Index: 7 + Item: Old_Violet_Box + Rate: 240 + - Index: 8 + Item: Old_Blue_Box + Rate: 350 + Amount: 2 + - Group: EVENT_GIFT_BOX_ + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Yggdrasilberry + Amount: 3 + - SubGroup: 2 + List: + - Index: 0 + Item: PetTradeTicket_Box + Rate: 50 + - Index: 1 + Item: Magic_Card_Album + Rate: 10 + - Index: 2 + Item: Old_Card_Album + Rate: 50 + - Index: 3 + Item: Old_Violet_Box + Rate: 350 + - Index: 4 + Item: Old_Blue_Box + Rate: 360 + Amount: 2 + - Index: 5 + Item: Guarantee_Weapon_7Up + Rate: 30 + - Index: 6 + Item: Guarantee_Armor_7Up + Rate: 30 + - Index: 7 + Item: Guarantee_Weapon_8Up + Rate: 10 + - Index: 8 + Item: Guarantee_Armor_8Up + Rate: 10 + - Index: 9 + Item: Guarantee_Weapon_9Up + Rate: 1 + - Index: 10 + Item: Guarantee_Armor_9Up + Rate: 1 + - Group: TIME_GUARDIAN_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Time_Keepr_Shield + - Index: 1 + Item: Time_Keepr_Boots + - Index: 2 + Item: Time_Keepr_Manteau + - Index: 3 + Item: Time_Keeper_Hat + - Index: 4 + Item: Time_Keepr_Robe + - Index: 5 + Item: Metal_Katar + - Index: 6 + Item: Metal_Two_Handed_Axe + - Index: 7 + Item: Metal_Lance + - Index: 8 + Item: Metal_Book + - Index: 9 + Item: Metal_Staff + - Index: 10 + Item: Metal_Dagger + - Index: 11 + Item: Metal_Mace + - Index: 12 + Item: Metal_Bow + - Index: 13 + Item: Metal_Two_Hand_Sword + - Index: 14 + Item: Metal_Revolver + - Index: 15 + Item: Metal_Huuma_Shuriken + - Index: 16 + Item: Metal_Foxtail + - Group: BEGINNER_KIT_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Novice_Potion + Amount: 300 + - Index: 1 + Item: N_Fly_Wing + Amount: 100 + - Index: 2 + Item: N_Butterfly_Wing + Amount: 20 + - Index: 3 + Item: N_Magnifier + Amount: 10 + - Index: 4 + Item: Arrow_Container + Amount: 5 + - Group: MOTHER_LOVE_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Mother_Heart + Duration: 20160 + UniqueId: true + - Group: OLD_ORE_BOX_ + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Oridecon + Amount: 2 + - Index: 1 + Item: Elunium + Amount: 2 + - Index: 2 + Item: Old_Card_Album_ + - SubGroup: 2 + List: + - Index: 0 + Item: Oridecon_Stone + Rate: 150 + Amount: 3 + - Index: 1 + Item: Elunium_Stone + Rate: 150 + Amount: 3 + - Index: 2 + Item: Carnium + Rate: 50 + - Index: 3 + Item: Bradium + Rate: 50 + - Index: 4 + Item: Crystal_Jewel__ + Rate: 100 + Amount: 2 + - Index: 5 + Item: Gemstone + Rate: 200 + Amount: 5 + - Index: 6 + Item: Stone + Rate: 200 + Amount: 4 + - Index: 7 + Item: Gold + Rate: 50 + - Group: BOARDING_HALTER_BOX3 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Boarding_Halter + Duration: 4320 + UniqueId: true + - Group: UNDEAD_EGG + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Lord_of_Death + Rate: 100 + Announced: true + - Index: 1 + Item: C_Lord_of_Death + Rate: 150 + Announced: true + - Index: 2 + Item: Guarantee_Armor_11Up + Rate: 5 + Announced: true + - Index: 3 + Item: Guarantee_Weapon_11Up + Rate: 5 + Announced: true + - Index: 4 + Item: Guarantee_Armor_9Up + Rate: 15 + Announced: true + - Index: 5 + Item: Guarantee_Weapon_9Up + Rate: 15 + Announced: true + - Index: 6 + Item: Sg_Blue_Potion_Box + Rate: 1000 + - Index: 7 + Item: Old_C_Album_Helm + Rate: 600 + - Index: 8 + Item: Bloody_Dead_Branch + Rate: 230 + - Index: 9 + Item: Comp_Bubble_Gum + Rate: 690 + Amount: 2 + - Index: 10 + Item: Comp_Battle_Manual + Rate: 690 + Amount: 2 + - Index: 11 + Item: Poison_Bottle_Box2 + Rate: 600 + - Index: 12 + Item: Old_Card_Album + Rate: 1000 + - Index: 13 + Item: Rabbit_Earplug + Rate: 100 + Announced: true + - Index: 14 + Item: Jasper_Crest + Rate: 100 + Announced: true + - Index: 15 + Item: Enchant_Book + Rate: 1500 + - Index: 16 + Item: White_Slim_Pot_Box2 + Rate: 1700 + - Index: 17 + Item: Treasure_Box + Rate: 1500 + - Group: GIRLS_HEART + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Heart_Wing_Hairband + Rate: 100 + Announced: true + - Index: 1 + Item: C_Heart_Wing_Hairband + Rate: 150 + Announced: true + - Index: 2 + Item: Comp_Battle_Manual + Rate: 200 + Amount: 2 + - Index: 3 + Item: Comp_Bubble_Gum + Rate: 200 + Amount: 2 + - Index: 4 + Item: Old_C_Album_Garment + Rate: 100 + Announced: true + - Index: 5 + Item: Rabbit_Earplug + Rate: 100 + Announced: true + - Index: 6 + Item: Jasper_Crest + Rate: 100 + Announced: true + - Index: 7 + Item: Ear_Of_Angel's_Wing + Rate: 200 + - Index: 8 + Item: Delicious_Shaved_Ice + Rate: 400 + - Index: 9 + Item: Fit_Pipe + Rate: 400 + - Index: 10 + Item: Gril's_Naivety + Rate: 400 + - Index: 11 + Item: J_Aspersio_5_Scroll + Rate: 400 + - Index: 12 + Item: Sg_Blue_Potion_Box + Rate: 1000 + - Index: 13 + Item: Old_Card_Album + Rate: 550 + - Index: 14 + Item: Fruit_Of_Mastela_Box2 + Rate: 1200 + - Index: 15 + Item: Angeling_Potion + Rate: 1500 + Amount: 5 + - Index: 16 + Item: White_Slim_Pot_Box2 + Rate: 1500 + - Index: 17 + Item: Treasure_Box + Rate: 1500 + - Group: C_CENTER_POT_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Infinite_Center_Potion + Duration: 10080 + UniqueId: true + - Group: C_AWAKENING_POT_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Ifn_Awakening_Potion + Duration: 10080 + UniqueId: true + - Group: C_BERSERK_POT_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Infinite_Berserk_Potion + Duration: 10080 + UniqueId: true + - Group: C_WING_OF_FLY_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: C_Wing_Of_Fly + Duration: 10080 + UniqueId: true + - Group: REFINE_ORE_BOX3 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Enriched_Oridecon + Amount: 5 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 5 + UniqueId: true + - Group: GUARANTEE7_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Guarantee_Weapon_7Up + UniqueId: true + - Index: 1 + Item: Guarantee_Armor_7Up + UniqueId: true + - Group: WOLFKING_SCROLL + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Old_Ore_Box + Rate: 1000 + - Index: 1 + Item: Guarantee_Weapon_7Up + Rate: 34 + Announced: true + - Index: 2 + Item: Guarantee_Armor_7Up + Rate: 34 + Announced: true + - Index: 3 + Item: Guarantee_Weapon_11Up + Rate: 1 + Announced: true + UniqueId: true + - Index: 4 + Item: Guarantee_Armor_11Up + Rate: 1 + Announced: true + UniqueId: true + - Index: 5 + Item: Wondering_Wolf_Helm + Rate: 75 + Announced: true + - Index: 6 + Item: C_Wondering_Wolf_Helm + Rate: 150 + - Index: 7 + Item: Imp_Hat + Rate: 75 + Announced: true + - Index: 8 + Item: C_Imp_Hat + Rate: 150 + - Index: 9 + Item: White_Slim_Pot_Box2 + Rate: 1650 + - Index: 10 + Item: Poison_Bottle_Box2 + Rate: 1000 + - Index: 11 + Item: Comp_Bubble_Gum + Rate: 1500 + Amount: 2 + - Index: 12 + Item: Treasure_Box + Rate: 1000 + - Index: 13 + Item: Comp_Battle_Manual + Rate: 1500 + Amount: 2 + - Index: 14 + Item: Old_C_Album_Armor + Rate: 250 + - Index: 15 + Item: Old_C_Album_Shield + Rate: 250 + - Index: 16 + Item: Magic_Card_Album + Rate: 80 + Announced: true + - Index: 17 + Item: Auger_Of_Spirit + Rate: 100 + - Index: 18 + Item: Branch_Of_Dead_Tree + Rate: 1000 + Amount: 3 + - Index: 19 + Item: Blacksmith_Blessing + Rate: 150 + Announced: true + - Group: ALMIGHTY_BOX2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Almighty + Amount: 10 + UniqueId: true + - Index: 1 + Item: WolfKing_Scroll + UniqueId: true + - Group: HD_ELUNIUM_BOX30 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: HD_Elunium + Amount: 30 + UniqueId: true + - Index: 1 + Item: Blacksmith_Blessing + - Group: HD_ORIDECON_BOX30 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: HD_Oridecon + Amount: 30 + UniqueId: true + - Index: 1 + Item: Blacksmith_Blessing + - Group: KINGS_GIFT + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Mysterious_Egg2 + Rate: 200 + Announced: true + - Index: 1 + Item: Mysterious_Egg + Rate: 200 + Announced: true + - Index: 2 + Item: Old_Card_Album + Rate: 500 + - Index: 3 + Item: Comp_Battle_Manual + Rate: 500 + UniqueId: true + - Index: 4 + Item: Reward_Job_BM25 + Rate: 500 + UniqueId: true + - Index: 5 + Item: Comp_Bubble_Gum + Rate: 500 + - Index: 6 + Item: Comp_Insurance + Rate: 500 + - Index: 7 + Item: Meteor_10_Scroll + Rate: 500 + Amount: 3 + - Index: 8 + Item: Storm_10_Scroll + Rate: 500 + Amount: 3 + - Index: 9 + Item: Vermilion_10_Scroll + Rate: 500 + Amount: 3 + - Index: 10 + Item: E_WOB_Rune + Rate: 500 + Amount: 3 + - Index: 11 + Item: E_WOB_Schwaltz + Rate: 500 + Amount: 3 + - Index: 12 + Item: E_WOB_Rachel + Rate: 500 + Amount: 3 + - Index: 13 + Item: E_WOB_Local + Rate: 500 + Amount: 3 + - Index: 14 + Item: Guarantee_Weapon_5Up + Rate: 200 + - Index: 15 + Item: Guarantee_Armor_5Up + Rate: 200 + - Index: 16 + Item: Elf_Tear_Stun + Rate: 100 + Amount: 3 + - Index: 17 + Item: Elf_Tear_Blind + Rate: 100 + Amount: 3 + - Index: 18 + Item: Elf_Tear_Sleep + Rate: 100 + Amount: 3 + - Index: 19 + Item: Elf_Tear_Freezing + Rate: 100 + Amount: 3 + - Index: 20 + Item: Elf_Tear_Curse + Rate: 100 + Amount: 3 + - Index: 21 + Item: Elf_Tear_Silence + Rate: 100 + Amount: 3 + - Index: 22 + Item: Elf_Tear_Stone_Curse + Rate: 100 + Amount: 3 + - Index: 23 + Item: Old_Violet_Box + Rate: 1499 + Amount: 2 + - Index: 24 + Item: White_Slim_Pot_Box2 + Rate: 1000 + - Index: 25 + Item: Kiel_Card + Rate: 1 + Announced: true + - Group: C_CENTER_POT_3D_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Infinite_Center_Potion + Duration: 4320 + UniqueId: true + - Group: C_AWAKENING_POT_3D_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Ifn_Awakening_Potion + Duration: 4320 + UniqueId: true + - Group: C_BERSERK_POT_3D_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Infinite_Berserk_Potion + Duration: 4320 + UniqueId: true + - Group: BM_LIMIT_PACK + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Battle_Manual_Limit + Amount: 10 + UniqueId: true + - Index: 1 + Item: C_Center_Pot_3d_Box + UniqueId: true + - Index: 2 + Item: C_Awakening_Pot_3d_Box + UniqueId: true + - Index: 3 + Item: C_Berserk_Pot_3d_Box + UniqueId: true + - Index: 4 + Item: C_Wing_Of_Fly_3Day_Box + UniqueId: true + - Group: GOLDENTREASUREBOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Ghostring_Card + Rate: 1 + Announced: true + - Index: 1 + Item: Deviling_Card + Rate: 1 + Announced: true + - Index: 2 + Item: Angeling_Card + Rate: 1 + Announced: true + - Index: 3 + Item: Guarantee_Weapon_11Up + Rate: 1 + Announced: true + - Index: 4 + Item: Guarantee_Armor_11Up + Rate: 1 + Announced: true + - Index: 5 + Item: Guarantee_Weapon_7Up + Rate: 100 + Announced: true + - Index: 6 + Item: Guarantee_Armor_7Up + Rate: 100 + Announced: true + - Index: 7 + Item: Buffalo_Horn + Rate: 75 + Announced: true + - Index: 8 + Item: Recovery_Ring + Rate: 200 + Announced: true + - Index: 9 + Item: Comp_Battle_Manual + Rate: 1000 + Amount: 2 + - Index: 10 + Item: Comp_Bubble_Gum + Rate: 1000 + Amount: 2 + - Index: 11 + Item: Comp_Insurance + Rate: 1000 + Amount: 2 + - Index: 12 + Item: Piece_Of_Angent_Skin + Rate: 100 + - Index: 13 + Item: Diabolus_Ring + Rate: 100 + - Index: 14 + Item: Diabolus_Robe + Rate: 100 + - Index: 15 + Item: Recovery_Light + Rate: 835 + - Index: 16 + Item: Thorn_Staff_ + Rate: 300 + - Index: 17 + Item: Muramasa_ + Rate: 300 + - Index: 18 + Item: Robe_Of_Happiness + Rate: 1000 + - Index: 19 + Item: Krishnagar + Rate: 583 + - Index: 20 + Item: C_Pink_Bunny_Band_J + Rate: 200 + Announced: true + - Index: 21 + Item: Old_C_Album_Shield + Rate: 500 + - Index: 22 + Item: Old_C_Album_Garment + Rate: 500 + - Index: 23 + Item: Treasure_Box + Rate: 1000 + - Index: 24 + Item: Branch_Of_Dead_Tree + Rate: 1000 + Amount: 3 + - Group: UNLIMITED_10_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: ASPD_Potion + Amount: 50 + UniqueId: true + - Index: 1 + Item: Red_Booster + Amount: 100 + UniqueId: true + - Index: 2 + Item: GoldenTreasureBox + Amount: 11 + UniqueId: true + - Group: XMAX_EGG_KR + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Tha_Odium_Card + Rate: 5 + Announced: true + - Index: 1 + Item: Tha_Maero_Card + Rate: 10 + - Index: 2 + Item: Tha_Despero_Card + Rate: 10 + - Index: 3 + Item: Tha_Dolor_Card + Rate: 10 + - Index: 4 + Item: Magic_Card_Album + Rate: 5 + Announced: true + - Index: 5 + Item: Guarantee_Weapon_9Up + Rate: 5 + Announced: true + - Index: 6 + Item: Guarantee_Armor_9Up + Rate: 5 + Announced: true + - Index: 7 + Item: Guarantee_Weapon_7Up + Rate: 100 + Announced: true + - Index: 8 + Item: Guarantee_Armor_7Up + Rate: 100 + Announced: true + - Index: 9 + Item: J_Shop_Coupon + Rate: 500 + - Index: 10 + Item: Piece_Of_Angent_Skin + Rate: 100 + - Index: 11 + Item: Diabolus_Ring + Rate: 100 + - Index: 12 + Item: Diabolus_Armor + Rate: 100 + - Index: 13 + Item: Thief_Handcuff + Rate: 150 + - Index: 14 + Item: Prison_Uniform + Rate: 300 + - Index: 15 + Item: Sprint_Glove + Rate: 100 + Announced: true + - Index: 16 + Item: Rider_Suit + Rate: 200 + Announced: true + - Index: 17 + Item: C_Red_Dress_Hat + Rate: 200 + Announced: true + - Index: 18 + Item: C_Festival_Ticket + Rate: 500 + - Index: 19 + Item: Enchant_Stone_Box + Rate: 1000 + - Index: 20 + Item: Costume_Exchange + Rate: 1000 + - Index: 21 + Item: Comp_Battle_Manual + Rate: 1000 + Amount: 2 + - Index: 22 + Item: Comp_Bubble_Gum + Rate: 1000 + Amount: 2 + - Index: 23 + Item: Comp_Insurance + Rate: 1000 + Amount: 2 + - Index: 24 + Item: Old_Ore_Box + Rate: 500 + - Index: 25 + Item: Treasure_Box + Rate: 1000 + - Index: 26 + Item: Blacksmith_Blessing + Rate: 1000 + - Group: C_FESTIVAL_TICKET + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: C_Gryphon_Hat + Rate: 50 + - Index: 1 + Item: C_Tare_Neko_Cru + Rate: 50 + - Index: 2 + Item: C_Tare_Pope + Rate: 50 + - Index: 3 + Item: C_Heart_Wing_Hairband + Rate: 50 + - Index: 4 + Item: C_Imp_Hat + Rate: 50 + - Index: 5 + Item: C_Rainbow_Feather_Deco + Rate: 50 + - Index: 6 + Item: C_Pink_Bunny_Band_J + Rate: 50 + - Index: 7 + Item: Heart_Eye_Patch1 + Rate: 50 + - Index: 8 + Item: Heart_Eye_Patch2 + Rate: 50 + - Index: 9 + Item: C_Lord_of_Death + Rate: 50 + - Index: 10 + Item: C_Wondering_Wolf_Helm + Rate: 50 + - Index: 11 + Item: C_Kabuki_Mask + Rate: 100 + - Index: 12 + Item: C_Dragon_Arhat_Mask + Rate: 100 + - Index: 13 + Item: C_Tiger_Arhat_Mask + Rate: 100 + - Index: 14 + Item: C_Samurai_Mask + Rate: 50 + - Index: 15 + Item: C_Santa_Poring_Hat + Rate: 50 + - Index: 16 + Item: C_Santa_Hat_1 + Rate: 50 + - Group: REFINE_ORE_BOX4 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Enriched_Oridecon + Amount: 5 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 5 + UniqueId: true + - Index: 2 + Item: Xmax_Egg_Kr + UniqueId: true + - Group: REFINE_ORE_BOX4_SET10 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Enriched_Oridecon + Amount: 50 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 50 + UniqueId: true + - Index: 2 + Item: Xmax_Egg_Kr + Amount: 11 + UniqueId: true + - Group: REFINE_ORE_BOX4_SET20 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Enriched_Oridecon + Amount: 100 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 100 + UniqueId: true + - Index: 2 + Item: Xmax_Egg_Kr + Amount: 23 + UniqueId: true + - Group: NEW_YEAR_GIFT_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Speed_Up_Potion + Amount: 3 + - SubGroup: 2 + List: + - Index: 0 + Item: Made_Dish_Box2 + Rate: 250 + - Index: 1 + Item: Reward_Job_BM25 + Rate: 250 + Amount: 3 + - Index: 2 + Item: Comp_Battle_Manual + Rate: 250 + Amount: 3 + - Index: 3 + Item: Set_Of_Taiming_Item + Rate: 200 + - Index: 4 + Item: Accessory_Box + Rate: 50 + - Group: PCBANG_COUPON_BOX6 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Comp_Insurance + Amount: 2 + - Index: 1 + Item: White_Slim_Pot_Box2 + - SubGroup: 2 + List: + - Index: 0 + Item: Pillar_Card + Rate: 20 + - Index: 1 + Item: Ringco_Card + Rate: 20 + - Index: 2 + Item: Lata_Card + Rate: 20 + - Index: 3 + Item: Duneirre_Card + Rate: 20 + - Index: 4 + Item: Old_Blue_Box + Rate: 190 + - Index: 5 + Item: First_Aid_Kit_B + Rate: 100 + - Index: 6 + Item: Cookie_Bag_B + Rate: 100 + - Index: 7 + Item: Inspector_Certificate + Rate: 340 + - Index: 8 + Item: Blue_Potion_B + Rate: 190 + Amount: 5 + - Group: SEALED_D_LORD_SCROLL + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Sealed_D_Lord_Card + Rate: 1 + Announced: true + - Index: 1 + Item: Dark_Illusion_Card + Rate: 4 + Announced: true + - Index: 2 + Item: Guarantee_Weapon_9Up + Rate: 5 + Announced: true + - Index: 3 + Item: Guarantee_Armor_9Up + Rate: 5 + Announced: true + - Index: 4 + Item: Guarantee_Weapon_7Up + Rate: 120 + Announced: true + - Index: 5 + Item: Guarantee_Armor_7Up + Rate: 115 + Announced: true + - Index: 6 + Item: C_Sleeping_Kitty_Cat + Rate: 150 + Announced: true + - Index: 7 + Item: S_Immune_Armor + Rate: 150 + Announced: true + - Index: 8 + Item: S_Hard_Armor + Rate: 350 + - Index: 9 + Item: S_Ancient_Armor + Rate: 350 + - Index: 10 + Item: S_Critical_Armor + Rate: 350 + - Index: 11 + Item: S_Kingbird_Weapon + Rate: 300 + - Index: 12 + Item: S_Cri_Hit_Weapon + Rate: 300 + - Index: 13 + Item: S_Healing_Weapon + Rate: 300 + - Index: 14 + Item: Enchant_Stone_Box + Rate: 1000 + - Index: 15 + Item: Costume_Exchange + Rate: 1000 + - Index: 16 + Item: Comp_Battle_Manual + Rate: 1500 + Amount: 2 + - Index: 17 + Item: Comp_Bubble_Gum + Rate: 1500 + Amount: 2 + - Index: 18 + Item: Comp_Insurance + Rate: 500 + Amount: 2 + - Index: 19 + Item: Treasure_Box + Rate: 1000 + - Index: 20 + Item: Poison_Bottle_Box2 + Rate: 1000 + - Group: STEALFIGHTER_20LV + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Undead_Egg + - Index: 1 + Item: Girls_Heart + - Group: STEALFIGHTER_25LV + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Undead_Egg + - Index: 1 + Item: Girls_Heart + - Index: 2 + Item: WolfKing_Scroll + - Group: KINGS_GIFT2 + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Mysterious_Egg2 + Rate: 200 + Announced: true + - Index: 1 + Item: Mysterious_Egg + Rate: 200 + Announced: true + - Index: 2 + Item: High_Weapon_Box + Rate: 500 + - Index: 3 + Item: C_Devil_Whisper + Rate: 500 + UniqueId: true + - Index: 4 + Item: Reward_Job_BM25 + Rate: 500 + UniqueId: true + - Index: 5 + Item: Comp_Bubble_Gum + Rate: 500 + - Index: 6 + Item: Comp_Insurance + Rate: 500 + - Index: 7 + Item: Meteor_10_Scroll + Rate: 500 + Amount: 3 + - Index: 8 + Item: Storm_10_Scroll + Rate: 500 + Amount: 3 + - Index: 9 + Item: Vermilion_10_Scroll + Rate: 500 + Amount: 3 + - Index: 10 + Item: E_WOB_Rune + Rate: 500 + Amount: 3 + - Index: 11 + Item: E_WOB_Schwaltz + Rate: 500 + Amount: 3 + - Index: 12 + Item: E_WOB_Rachel + Rate: 500 + Amount: 3 + - Index: 13 + Item: E_WOB_Local + Rate: 500 + Amount: 3 + - Index: 14 + Item: Guarantee_Weapon_5Up + Rate: 200 + - Index: 15 + Item: Guarantee_Armor_5Up + Rate: 200 + - Index: 16 + Item: Elf_Tear_Stun + Rate: 100 + Amount: 3 + - Index: 17 + Item: Elf_Tear_Blind + Rate: 100 + Amount: 3 + - Index: 18 + Item: Elf_Tear_Sleep + Rate: 100 + Amount: 3 + - Index: 19 + Item: Elf_Tear_Freezing + Rate: 100 + Amount: 3 + - Index: 20 + Item: Elf_Tear_Curse + Rate: 100 + Amount: 3 + - Index: 21 + Item: Elf_Tear_Silence + Rate: 100 + Amount: 3 + - Index: 22 + Item: Elf_Tear_Stone_Curse + Rate: 100 + Amount: 3 + - Index: 23 + Item: Old_Violet_Box + Rate: 1499 + Amount: 2 + - Index: 24 + Item: White_Slim_Pot_Box2 + Rate: 1000 + - Index: 25 + Item: Dracula_Card + Rate: 1 + Announced: true + - Group: HAPPY_CALL_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Potion_Box + - Index: 1 + Item: Treasure_Box + - Index: 2 + Item: Royal_Certificate__ + - Group: SEALED_KNIGHT_WS_SCROLL + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Sealed_Knight_WS_Card + Rate: 1 + Announced: true + - Index: 1 + Item: Guarantee_Weapon_9Up + Rate: 10 + Announced: true + - Index: 2 + Item: Guarantee_Armor_9Up + Rate: 10 + Announced: true + - Index: 3 + Item: Guarantee_Weapon_7Up + Rate: 100 + Announced: true + - Index: 4 + Item: Guarantee_Armor_7Up + Rate: 100 + Announced: true + - Index: 5 + Item: C_Wind_Milestone + Rate: 150 + Announced: true + - Index: 6 + Item: S_Rapid_Pendant + Rate: 300 + Announced: true + - Index: 7 + Item: S_Caster_Pendant + Rate: 300 + Announced: true + - Index: 8 + Item: S_Hard_Earring + Rate: 400 + - Index: 9 + Item: S_Wise_Earring + Rate: 400 + - Index: 10 + Item: S_Athena_Earring + Rate: 400 + - Index: 11 + Item: S_Resist_Spell_Pendant + Rate: 200 + - Index: 12 + Item: Enchant_Stone_Box + Rate: 1000 + - Index: 13 + Item: Costume_Exchange + Rate: 1000 + - Index: 14 + Item: C_Wing_Of_Fly_1Day_Box + Rate: 1000 + - Index: 15 + Item: J_Shop_Coupon + Rate: 529 + - Index: 16 + Item: Comp_Battle_Manual + Rate: 1000 + Amount: 2 + - Index: 17 + Item: Comp_Bubble_Gum + Rate: 1000 + Amount: 2 + - Index: 18 + Item: Comp_Insurance + Rate: 500 + Amount: 2 + - Index: 19 + Item: Treasure_Box + Rate: 600 + - Index: 20 + Item: Poison_Bottle_Box2 + Rate: 1000 + - Group: C_WING_OF_FLY_1DAY_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: C_Wing_Of_Fly + Duration: 1440 + UniqueId: true + - Group: SILVERVINE_BOX10_ + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Silvervine + Amount: 10 + - Index: 1 + Item: Malang_Sp_Can + Amount: 30 + - Index: 2 + Item: Sealed_Knight_WS_Scroll + - Group: SILVERVINE_BOX110 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Silvervine + Amount: 110 + - Index: 1 + Item: Malang_Sp_Can + Amount: 330 + - Index: 2 + Item: Sealed_Knight_WS_Scroll + Amount: 11 + - Group: SEALED_BERZ_SCROLL + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Sealed_Berz_Card + Rate: 1 + Announced: true + - Index: 1 + Item: Guarantee_Weapon_9Up + Rate: 5 + Announced: true + - Index: 2 + Item: Guarantee_Armor_9Up + Rate: 5 + Announced: true + - Index: 3 + Item: Guarantee_Weapon_7Up + Rate: 94 + Announced: true + - Index: 4 + Item: Guarantee_Armor_7Up + Rate: 95 + Announced: true + - Index: 5 + Item: C_Carnation_Hairband + Rate: 150 + Announced: true + - Index: 6 + Item: S_Cranial_Shield + Rate: 150 + Announced: true + - Index: 7 + Item: S_Safeguard_Shield + Rate: 100 + Announced: true + - Index: 8 + Item: S_Brutal_Shield + Rate: 300 + - Index: 9 + Item: S_Gargantua_Shield + Rate: 300 + - Index: 10 + Item: S_Homers_Shield + Rate: 300 + - Index: 11 + Item: S_Dragoon_Shield + Rate: 300 + - Index: 12 + Item: S_Satanic_Shield + Rate: 300 + - Index: 13 + Item: S_Flameguard_Shield + Rate: 300 + - Index: 14 + Item: S_Requiem_Shield + Rate: 300 + - Index: 15 + Item: S_Cadi_Shield + Rate: 300 + - Index: 16 + Item: Enchant_Stone_Box2 + Rate: 1000 + - Index: 17 + Item: Costume_Exchange + Rate: 1000 + - Index: 18 + Item: Comp_Battle_Manual + Rate: 1000 + Amount: 2 + - Index: 19 + Item: Comp_Bubble_Gum + Rate: 1000 + Amount: 2 + - Index: 20 + Item: Comp_Insurance + Rate: 500 + Amount: 2 + - Index: 21 + Item: Treasure_Box + Rate: 1000 + - Index: 22 + Item: Enchant_Book + Rate: 500 + - Index: 23 + Item: Poison_Bottle_Box2 + Rate: 1000 + - Group: 3_LIFE_POTION_PACK + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Small_Life_Potion + Amount: 20 + UniqueId: true + - Index: 1 + Item: Med_Life_Potion + Amount: 20 + UniqueId: true + - Index: 2 + Item: Mysterious_Water + Amount: 20 + UniqueId: true + - Index: 3 + Item: Sealed_Berz_Scroll + UniqueId: true + - Group: 3_LIFE_POTION_10PACK + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Small_Life_Potion + Amount: 200 + UniqueId: true + - Index: 1 + Item: Med_Life_Potion + Amount: 200 + UniqueId: true + - Index: 2 + Item: Mysterious_Water + Amount: 200 + UniqueId: true + - Index: 3 + Item: Sealed_Berz_Scroll + Amount: 11 + UniqueId: true + - Group: CLEARBOX_S + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Battle_Manual100 + Amount: 2 + - SubGroup: 1 + List: + - Index: 0 + Item: Clown_Card + Rate: 10 + - Index: 1 + Item: Professor_Card + Rate: 6 + - Index: 2 + Item: Champion_Card + Rate: 6 + - Index: 3 + Item: Creator_Card + Rate: 12 + - Index: 4 + Item: Stalker_Card + Rate: 12 + - Index: 5 + Item: Paladin_Card + Rate: 8 + - Index: 6 + Item: Gypsy_Card + Rate: 10 + - Index: 7 + Item: Daehyon_Card + Rate: 8 + - Index: 8 + Item: Gioia_Card + Rate: 8 + - Index: 9 + Item: Pyuriel_Card + Rate: 14 + - Index: 10 + Item: Kades_Card + Rate: 6 + - Group: SEALED_KIEL_SCROLL + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Sealed_Kiel_Card + Rate: 1 + Announced: true + - Index: 1 + Item: Guarantee_Weapon_9Up + Rate: 10 + Announced: true + - Index: 2 + Item: Guarantee_Armor_9Up + Rate: 9 + Announced: true + - Index: 3 + Item: Guarantee_Weapon_7Up + Rate: 90 + Announced: true + - Index: 4 + Item: Guarantee_Armor_7Up + Rate: 90 + Announced: true + - Index: 5 + Item: C_Ice_Wing_Ear + Rate: 150 + Announced: true + - Index: 6 + Item: S_Bloody_Shoes + Rate: 150 + Announced: true + - Index: 7 + Item: S_Liberation_Shoes + Rate: 100 + Announced: true + - Index: 8 + Item: S_Chemical_Shoes + Rate: 300 + - Index: 9 + Item: S_Clamorous_Shoes + Rate: 300 + - Index: 10 + Item: S_Insecticide_Shoes + Rate: 300 + - Index: 11 + Item: S_Fisher_Shoes + Rate: 300 + - Index: 12 + Item: S_Seraphim_Shoes + Rate: 300 + - Index: 13 + Item: S_Beholder_Shoes + Rate: 300 + - Index: 14 + Item: S_Divine_Shoes + Rate: 300 + - Index: 15 + Item: S_Dragoon_Shoes + Rate: 300 + - Index: 16 + Item: Enchant_Stone_Box2 + Rate: 1000 + - Index: 17 + Item: Costume_Exchange + Rate: 1000 + - Index: 18 + Item: Comp_Battle_Manual + Rate: 1000 + Amount: 2 + - Index: 19 + Item: Comp_Bubble_Gum + Rate: 500 + Amount: 2 + - Index: 20 + Item: Comp_Insurance + Rate: 500 + Amount: 2 + - Index: 21 + Item: Treasure_Box + Rate: 500 + - Index: 22 + Item: Blacksmith_Blessing + Rate: 500 + - Index: 23 + Item: Old_C_Album_Garment + Rate: 500 + - Index: 24 + Item: Enchant_Book + Rate: 500 + - Index: 25 + Item: Poison_Bottle_Box2 + Rate: 1000 + - Group: SEALED_GLOOM_SCROLL + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Sealed_Gloom_Card + Rate: 1 + Announced: true + - Index: 1 + Item: Guarantee_Weapon_9Up + Rate: 10 + Announced: true + - Index: 2 + Item: Guarantee_Armor_9Up + Rate: 9 + Announced: true + - Index: 3 + Item: Guarantee_Weapon_7Up + Rate: 90 + Announced: true + - Index: 4 + Item: Guarantee_Armor_7Up + Rate: 90 + Announced: true + - Index: 5 + Item: S_Big_Armor + Rate: 500 + - Index: 6 + Item: S_Medium_Armor + Rate: 300 + - Index: 7 + Item: S_Small_Armor + Rate: 500 + - Index: 8 + Item: S_Big_Weapon + Rate: 500 + - Index: 9 + Item: S_Medium_Weapon + Rate: 300 + Announced: true + - Index: 10 + Item: S_Small_Weapon + Rate: 500 + - Index: 11 + Item: C_Kirin_Wing + Rate: 150 + Announced: true + - Index: 12 + Item: Enchant_Stone_Box3 + Rate: 1000 + - Index: 13 + Item: Costume_Exchange + Rate: 1000 + - Index: 14 + Item: Old_C_Album_Weapon + Rate: 600 + - Index: 15 + Item: Blacksmith_Blessing + Rate: 500 + - Index: 16 + Item: C_Wing_Of_Fly_1Day_Box + Rate: 1000 + - Index: 17 + Item: Enchant_Book + Rate: 500 + - Index: 18 + Item: Comp_Battle_Manual + Rate: 1000 + Amount: 2 + - Index: 19 + Item: Comp_Bubble_Gum + Rate: 500 + Amount: 2 + - Index: 20 + Item: Comp_Insurance + Rate: 450 + Amount: 2 + - Index: 21 + Item: Treasure_Box + Rate: 500 + - Group: REFINE_ORE_BOX5 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Enriched_Oridecon + Amount: 5 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 5 + UniqueId: true + - Index: 2 + Item: Sealed_Gloom_Scroll + UniqueId: true + - Group: REFINE_ORE_BOX5_SET10 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Enriched_Oridecon + Amount: 50 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 50 + UniqueId: true + - Index: 2 + Item: Sealed_Gloom_Scroll + Amount: 11 + UniqueId: true + - Group: ANGELING_PACKAGE + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Cheer_Scarf + Rate: 2 + Duration: 72000 + Announced: true + UniqueId: true + - Index: 1 + Item: Cheer_Scarf + Rate: 5 + Duration: 43200 + Announced: true + UniqueId: true + - Index: 2 + Item: Cheer_Scarf + Rate: 15 + Duration: 14400 + UniqueId: true + - Index: 3 + Item: Guarantee_Armor_7Up + Rate: 1 + Announced: true + - Index: 4 + Item: Guarantee_Weapon_7Up + Rate: 2 + Announced: true + - Index: 5 + Item: Splendid_Box + Rate: 2 + - Index: 6 + Item: Iggdrasilberry_Box + Rate: 7 + - Index: 7 + Item: Lolli_Pop_Box + Rate: 5 + - Index: 8 + Item: Mysterious_Egg + Rate: 5 + - Index: 9 + Item: Comp_Battle_Manual + Rate: 13 + - Index: 10 + Item: Comp_Bubble_Gum + Rate: 14 + - Index: 11 + Item: Comp_Insurance + Rate: 14 + - Index: 12 + Item: Reward_Job_BM25 + Rate: 14 + - Group: DEVILING_PACKAGE + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Cheer_Scarf + Rate: 10 + Duration: 14400 + UniqueId: true + - Index: 1 + Item: Guarantee_Weapon_7Up + Rate: 1 + Announced: true + - Index: 2 + Item: Iggdrasilberry_Box + Rate: 3 + - Index: 3 + Item: Lolli_Pop_Box + Rate: 3 + - Index: 4 + Item: Mysterious_Egg + Rate: 1 + - Index: 5 + Item: Comp_Battle_Manual + Rate: 5 + - Index: 6 + Item: Comp_Bubble_Gum + Rate: 5 + - Index: 7 + Item: Comp_Insurance + Rate: 5 + - Index: 8 + Item: Reward_Job_BM25 + Rate: 5 + - Index: 9 + Item: Yggdrasil_Seed_Box + Rate: 3 + - Index: 10 + Item: White_Slim_Pot_Box2 + Rate: 3 + - Index: 11 + Item: Old_Violet_Box + Rate: 8 + - Index: 12 + Item: Old_Blue_Box + Rate: 34 + - Index: 13 + Item: Siege_Supply_Box + Rate: 6 + - Group: OLD_HAT_BOX_ + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Chicken_Hat + Rate: 50 + - Index: 1 + Item: Rune_Hairband + Rate: 30 + - Index: 2 + Item: Whikebain_Ears + Rate: 40 + - Index: 3 + Item: New_Cowboy_Hat + Rate: 50 + - Index: 4 + Item: Darkness_Helm + Rate: 50 + - Index: 5 + Item: J_Captain_Hat + Rate: 50 + - Index: 6 + Item: Santa_Hat_1 + Rate: 40 + - Index: 7 + Item: Flying_Angel + Rate: 50 + - Index: 8 + Item: Marcher_Hat + Rate: 50 + - Index: 9 + Item: Ninja_Scroll + Rate: 40 + - Index: 10 + Item: Gang_Scarf + Rate: 40 + - Index: 11 + Item: Angel_Spirit + Rate: 40 + - Index: 12 + Item: Diadem + Rate: 50 + - Index: 13 + Item: Twin_Ribbon + Rate: 50 + - Index: 14 + Item: Robo_Eye + Rate: 40 + - Index: 15 + Item: L_Orc_Hero_Helm + Rate: 50 + - Index: 16 + Item: Rabbit_Ear_Hat + Rate: 50 + - Index: 17 + Item: Drooping_White_Kitty + Rate: 50 + - Index: 18 + Item: Santa_Poring_Hat + Rate: 50 + - Index: 19 + Item: Fish_Head_Hat + Rate: 50 + - Index: 20 + Item: Little_Angel_Doll + Rate: 50 + - Index: 21 + Item: Chick_Hat + Rate: 30 + - Group: MEMORIAL_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Accessory_Box + Rate: 100 + - Index: 1 + Item: Singing_Plant + Rate: 1000 + - Index: 2 + Item: Spray_Of_Flowers + Rate: 1000 + - Index: 3 + Item: Illusion_Flower + Rate: 500 + - Index: 4 + Item: Elegant_Flower + Rate: 800 + - Index: 5 + Item: Beautiful_Flower + Rate: 1000 + - Index: 6 + Item: Flower_Ring + Rate: 1000 + - Index: 7 + Item: Silver_Ring + Rate: 800 + - Index: 8 + Item: Diamond_Ring + Rate: 500 + - Index: 9 + Item: Bookclip_In_Memory + Rate: 800 + - Index: 10 + Item: Leaf_Bookmark + Rate: 1000 + - Index: 11 + Item: Book_Of_Devil + Rate: 500 + - Index: 12 + Item: Bundle_Of_Magic_Scroll + Rate: 1000 + - Group: WET_CARDALBUM + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Old_Card_Album + Rate: 2999 + - Index: 1 + Item: Magic_Card_Album + Rate: 1000 + - Index: 2 + Item: Old_C_Album_Helm + Rate: 1000 + - Index: 3 + Item: Old_C_Album_Armor + Rate: 1000 + - Index: 4 + Item: Old_C_Album_Shield + Rate: 1000 + - Index: 5 + Item: Old_C_Album_Garment + Rate: 1000 + - Index: 6 + Item: Old_C_Album_Shoes + Rate: 1000 + - Index: 7 + Item: Old_C_Album_Acc + Rate: 1000 + - Index: 8 + Item: Golden_Card + Rate: 1 + - Group: GOLDEN_CARD + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Phreeoni_Card + Rate: 80 + - Index: 1 + Item: Eddga_Card + Rate: 10 + - Index: 2 + Item: Moonlight_Flower_Card + Rate: 50 + - Index: 3 + Item: Mistress_Card + Rate: 10 + - Index: 4 + Item: Dracula_Card + Rate: 10 + - Index: 5 + Item: Orc_Load_Card + Rate: 10 + - Index: 6 + Item: Doppelganger_Card + Rate: 50 + - Index: 7 + Item: Orc_Hero_Card + Rate: 10 + - Index: 8 + Item: Osiris_Card + Rate: 10 + - Index: 9 + Item: Berzebub_Card + Rate: 10 + - Index: 10 + Item: Maya_Card + Rate: 10 + - Index: 11 + Item: Baphomet_Card + Rate: 10 + - Index: 12 + Item: Pharaoh_Card + Rate: 1 + - Index: 13 + Item: Dark_Lord_Card + Rate: 30 + - Index: 14 + Item: Amon_Ra_Card + Rate: 70 + - Index: 15 + Item: Incant_Samurai_Card + Rate: 70 + - Index: 16 + Item: Lord_Of_Death_Card + Rate: 50 + - Index: 17 + Item: Turtle_General_Card + Rate: 10 + - Index: 18 + Item: Knight_Windstorm_Card + Rate: 10 + - Index: 19 + Item: Garm_Card + Rate: 25 + - Index: 20 + Item: Dark_Snake_Lord_Card + Rate: 20 + - Index: 21 + Item: Rsx_0806_Card + Rate: 10 + - Index: 22 + Item: B_Ygnizem_Card + Rate: 10 + - Index: 23 + Item: B_Eremes_Card + Rate: 10 + - Index: 24 + Item: B_Harword_Card + Rate: 10 + - Index: 25 + Item: B_Magaleta_Card + Rate: 10 + - Index: 26 + Item: B_Katrinn_Card + Rate: 10 + - Index: 27 + Item: B_Shecil_Card + Rate: 10 + - Index: 28 + Item: Bacsojin_Card + Rate: 10 + - Index: 29 + Item: Apocalips_H_Card + Rate: 10 + - Index: 30 + Item: Lady_Tanee_Card + Rate: 10 + - Index: 31 + Item: Detale_Card + Rate: 10 + - Index: 32 + Item: Kiel_Card + Rate: 10 + - Index: 33 + Item: Randgris_Card + Rate: 10 + - Index: 34 + Item: Gloom_Under_Night_Card + Rate: 1 + - Index: 35 + Item: Ktullanux_Card + Rate: 10 + - Index: 36 + Item: Atroce_Card + Rate: 10 + - Index: 37 + Item: Ifrit_Card + Rate: 10 + - Index: 38 + Item: Fallen_Bishop_Card + Rate: 1 + - Index: 39 + Item: Ant_Buyanne_Card + Rate: 10 + - Index: 40 + Item: Nidhogg_Shadow_Card + Rate: 10 + - Index: 41 + Item: Nahtzigger_Card + Rate: 10 + - Index: 42 + Item: Q_Scaraba_Card + Rate: 10 + - Index: 43 + Item: Gold_Q_Scaraba_Card + Rate: 10 + - Index: 44 + Item: Kraken_Card + Rate: 10 + - Index: 45 + Item: Odd_Coelacanth_Card + Rate: 10 + - Index: 46 + Item: Black_Coelacanth_Card + Rate: 10 + - Index: 47 + Item: Mutant_Coelacanth_Card + Rate: 10 + - Index: 48 + Item: Cruel_Coelacanth_Card + Rate: 10 + - Index: 49 + Item: Giant_Octopus_Card + Rate: 10 + - Index: 50 + Item: Clown_Card + Rate: 10 + - Index: 51 + Item: Professor_Card + Rate: 10 + - Index: 52 + Item: Champion_Card + Rate: 10 + - Index: 53 + Item: Creator_Card + Rate: 10 + - Index: 54 + Item: Stalker_Card + Rate: 10 + - Index: 55 + Item: Paladin_Card + Rate: 10 + - Index: 56 + Item: Gypsy_Card + Rate: 10 + - Index: 57 + Item: Daehyon_Card + Rate: 10 + - Index: 58 + Item: Gioia_Card + Rate: 10 + - Index: 59 + Item: Pyuriel_Card + Rate: 10 + - Index: 60 + Item: Kades_Card + Rate: 10 + - Index: 61 + Item: Bangungot_Card + Rate: 10 + - Index: 62 + Item: Bakonawa_Card + Rate: 10 + - Index: 63 + Item: Buwaya_Card + Rate: 10 + - Index: 64 + Item: Amdarais_Card + Rate: 10 + - Index: 65 + Item: AmdaraisH_Card + Rate: 1 + - Index: 66 + Item: CorruptionRoot_Card + Rate: 10 + - Index: 67 + Item: CorruptionRootH_Card + Rate: 1 + - Group: SHADOW_BOX3 + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: S_Spiritual_Weapon + Rate: 100 + - Index: 1 + Item: S_Spiritual_Earring + Rate: 100 + - Index: 2 + Item: S_Spiritual_Pendent + Rate: 100 + - Index: 3 + Item: S_Malicious_Shield + Rate: 100 + - Index: 4 + Item: S_Malicious_Armor + Rate: 100 + - Index: 5 + Item: S_Malicious_Shoes + Rate: 100 + - Group: 11TH_S_PACKAGE + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: S_Spiritual_Weapon + UniqueId: true + - Index: 1 + Item: S_Spiritual_Earring + UniqueId: true + - Index: 2 + Item: S_Spiritual_Pendent + UniqueId: true + - Index: 3 + Item: S_Malicious_Armor + UniqueId: true + - Index: 4 + Item: S_Malicious_Shoes + UniqueId: true + - Index: 5 + Item: S_Malicious_Shield + UniqueId: true + - Group: SILVERVINE_BOX10_2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Silvervine + Amount: 10 + - Index: 1 + Item: Malang_Sp_Can + Amount: 30 + - Index: 2 + Item: Sealed_F_Bishop_Scroll + - Group: SILVERVINE_BOX110_2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Silvervine + Amount: 110 + - Index: 1 + Item: Malang_Sp_Can + Amount: 330 + - Index: 2 + Item: Sealed_F_Bishop_Scroll + Amount: 11 + - Group: GEMSTONE_SHADOW_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: S_Gemstone_Armor + Rate: 170 + - Index: 1 + Item: S_Gemstone_Shoes + Rate: 170 + - Index: 2 + Item: S_Gemstone_Shield + Rate: 170 + - Index: 3 + Item: S_Gemstone_Weapon + Rate: 170 + - Index: 4 + Item: S_Gemstone_Earring + Rate: 160 + - Index: 5 + Item: S_Gemstone_Pendent + Rate: 160 + - Group: SEALED_F_BISHOP_SCROLL + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Sealed_F_Bishop_Card + Rate: 1 + Announced: true + - Index: 1 + Item: Guarantee_Weapon_9Up + Rate: 10 + Announced: true + - Index: 2 + Item: Guarantee_Armor_9Up + Rate: 10 + Announced: true + - Index: 3 + Item: Guarantee_Weapon_7Up + Rate: 120 + Announced: true + - Index: 4 + Item: Guarantee_Armor_7Up + Rate: 120 + Announced: true + - Index: 5 + Item: Gemstone_Shadow_Box + Rate: 139 + Announced: true + - Index: 6 + Item: C_Vanargandr_Helm + Rate: 150 + Announced: true + - Index: 7 + Item: S_Stability_Shield + Rate: 550 + - Index: 8 + Item: S_Plasterer's_Armor + Rate: 300 + - Index: 9 + Item: S_Plasterer's_Shoes + Rate: 300 + - Index: 10 + Item: S_Insomniac_Armor + Rate: 300 + - Index: 11 + Item: S_Insomniac_Shoes + Rate: 300 + - Index: 12 + Item: S_Peerless_Armor + Rate: 300 + - Index: 13 + Item: S_Peerless_Shoes + Rate: 300 + - Index: 14 + Item: S_Adurate_Armor + Rate: 300 + - Index: 15 + Item: S_Adurate_Shoes + Rate: 300 + - Index: 16 + Item: Enchant_Stone_Box3 + Rate: 1000 + - Index: 17 + Item: Costume_Exchange + Rate: 1000 + - Index: 18 + Item: Poison_Bottle_Box2 + Rate: 1000 + - Index: 19 + Item: Comp_Battle_Manual + Rate: 1000 + Amount: 2 + - Index: 20 + Item: Comp_Bubble_Gum + Rate: 1000 + Amount: 2 + - Index: 21 + Item: Comp_Insurance + Rate: 500 + Amount: 2 + - Index: 22 + Item: Treasure_Box + Rate: 500 + - Index: 23 + Item: Enchant_Book + Rate: 500 + - Group: HANGULDAY_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Mystery_Scroll + Amount: 10 + - Index: 1 + Item: Yggdrasilberry + Amount: 9 + - Group: 3_LIFE_POTION_PACK2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Small_Life_Potion + Amount: 20 + UniqueId: true + - Index: 1 + Item: Med_Life_Potion + Amount: 20 + UniqueId: true + - Index: 2 + Item: Mysterious_Water + Amount: 20 + UniqueId: true + - Index: 3 + Item: Sealed_Ifrit_Scroll + UniqueId: true + - Group: 3_LIFE_POTION_10PACK2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Small_Life_Potion + Amount: 200 + UniqueId: true + - Index: 1 + Item: Med_Life_Potion + Amount: 200 + UniqueId: true + - Index: 2 + Item: Mysterious_Water + Amount: 200 + UniqueId: true + - Index: 3 + Item: Sealed_Ifrit_Scroll + Amount: 11 + UniqueId: true + - Group: SEALED_IFRIT_SCROLL + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Sealed_Ifrit_Card + Rate: 1 + Announced: true + - Index: 1 + Item: Guarantee_Weapon_9Up + Rate: 10 + Announced: true + - Index: 2 + Item: Guarantee_Armor_9Up + Rate: 10 + Announced: true + - Index: 3 + Item: Guarantee_Weapon_7Up + Rate: 100 + Announced: true + - Index: 4 + Item: Guarantee_Armor_7Up + Rate: 100 + Announced: true + - Index: 5 + Item: C_Noah_Hat + Rate: 150 + Announced: true + - Index: 6 + Item: S_Stability_Shield + Rate: 550 + - Index: 7 + Item: Unfreez_Weapon_S + Rate: 150 + Announced: true + - Index: 8 + Item: Unfreeze_Earing_S + Rate: 300 + - Index: 9 + Item: Unfreeze_Pendent_S + Rate: 300 + - Index: 10 + Item: Vitality_Earing_S + Rate: 300 + - Index: 11 + Item: Vitality_Pendant_S + Rate: 300 + - Index: 12 + Item: Enchant_Stone_Box3 + Rate: 1000 + - Index: 13 + Item: Costume_Exchange + Rate: 1000 + - Index: 14 + Item: Poison_Bottle_Box2 + Rate: 1000 + - Index: 15 + Item: Comp_Battle_Manual + Rate: 1000 + Amount: 2 + - Index: 16 + Item: Comp_Bubble_Gum + Rate: 1000 + Amount: 2 + - Index: 17 + Item: Comp_Insurance + Rate: 500 + Amount: 2 + - Index: 18 + Item: Treasure_Box + Rate: 500 + - Index: 19 + Item: Enchant_Book + Rate: 500 + - Index: 20 + Item: J_Shop_Coupon + Rate: 479 + - Index: 21 + Item: Old_C_Album_Helm + Rate: 750 + - Group: BISCUIT_STICK_SET + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: STR_Biscuit_Stick + UniqueId: true + - Index: 1 + Item: VIT_Biscuit_Stick + UniqueId: true + - Index: 2 + Item: AGI_Biscuit_Stick + UniqueId: true + - Index: 3 + Item: INT_Biscuit_Stick + UniqueId: true + - Index: 4 + Item: DEX_Biscuit_Stick + UniqueId: true + - Index: 5 + Item: LUK_Biscuit_Stick + UniqueId: true + - Group: PREMIUM_BOOK_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Premium_Manual + Duration: 1440 + UniqueId: true + - Group: LI_EMPELIUM_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Emperium_G + UniqueId: true + - Index: 1 + Item: Union_Of_Tribe_ + Amount: 3 + UniqueId: true + - Group: LI_UPG_BUCKLER_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Upg_Buckler + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 3 + UniqueId: true + - Index: 2 + Item: Elunium + Amount: 4 + UniqueId: true + - Group: REFINE_ORE_BOX6 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Enriched_Oridecon + Amount: 5 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 5 + UniqueId: true + - Index: 2 + Item: Sealed_TurtleG_Scroll + UniqueId: true + - Group: REFINE_ORE_BOX6_SET10 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Enriched_Oridecon + Amount: 50 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 50 + UniqueId: true + - Index: 2 + Item: Sealed_TurtleG_Scroll + Amount: 11 + UniqueId: true + - Group: SEALED_TURTLEG_SCROLL + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Sealed_TurtleG_Card + Rate: 1 + Announced: true + - Index: 1 + Item: Guarantee_Weapon_9Up + Rate: 10 + Announced: true + - Index: 2 + Item: Guarantee_Armor_9Up + Rate: 10 + Announced: true + - Index: 3 + Item: Guarantee_Weapon_7Up + Rate: 100 + Announced: true + - Index: 4 + Item: Guarantee_Armor_7Up + Rate: 100 + Announced: true + - Index: 5 + Item: C_Light_Darkness_Crown + Rate: 150 + Announced: true + - Index: 6 + Item: S_Spell_Flow_Armor + Rate: 150 + Announced: true + - Index: 7 + Item: S_Spell_Flow_Shoes + Rate: 350 + - Index: 8 + Item: S_Spell_Flow_Shield + Rate: 350 + - Index: 9 + Item: S_Caster_Weapon + Rate: 350 + - Index: 10 + Item: S_Caster_earring + Rate: 350 + - Index: 11 + Item: S_Caster_Pendant + Rate: 350 + - Index: 12 + Item: Enchant_Stone_Box3 + Rate: 1000 + - Index: 13 + Item: Costume_Exchange + Rate: 1000 + - Index: 14 + Item: Poison_Bottle_Box2 + Rate: 1000 + - Index: 15 + Item: Comp_Battle_Manual + Rate: 1000 + Amount: 2 + - Index: 16 + Item: Comp_Bubble_Gum + Rate: 729 + Amount: 2 + - Index: 17 + Item: C_Wing_Of_Fly_1Day_Box + Rate: 1000 + - Index: 18 + Item: Enchant_Book + Rate: 500 + - Index: 19 + Item: Blacksmith_Blessing + Rate: 500 + - Index: 20 + Item: Old_C_Album_Weapon + Rate: 500 + - Index: 21 + Item: Old_C_Album_Garment + Rate: 500 + - Group: SEALED_BACSOJIN_SCROLL + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Sealed_Bacsojin_Card + Rate: 1 + Announced: true + - Index: 1 + Item: Guarantee_Weapon_9Up + Rate: 10 + Announced: true + - Index: 2 + Item: Guarantee_Armor_9Up + Rate: 10 + Announced: true + - Index: 3 + Item: Guarantee_Weapon_7Up + Rate: 100 + Announced: true + - Index: 4 + Item: Guarantee_Armor_7Up + Rate: 100 + Announced: true + - Index: 5 + Item: C_Saint_Frill_Ribbon + Rate: 150 + Announced: true + - Index: 6 + Item: Greed_Shadow_Box + Rate: 150 + Announced: true + - Index: 7 + Item: Heal_Shadow_Box + Rate: 700 + - Index: 8 + Item: Hiding_Shadow_Box + Rate: 700 + - Index: 9 + Item: Cloaking_Shadow_Box + Rate: 700 + - Index: 10 + Item: Costume_Festival_Box2 + Rate: 700 + - Index: 11 + Item: C_Festival_Ticket + Rate: 500 + - Index: 12 + Item: Enchant_Stone_Box3 + Rate: 1000 + - Index: 13 + Item: Costume_Exchange + Rate: 1000 + - Index: 14 + Item: Poison_Bottle_Box2 + Rate: 1000 + - Index: 15 + Item: Comp_Battle_Manual + Rate: 1000 + Amount: 2 + - Index: 16 + Item: C_Wing_Of_Fly_5Day_Box + Rate: 129 + - Index: 17 + Item: C_Wing_Of_Fly_1Day_Box + Rate: 1000 + - Index: 18 + Item: Treasure_Box + Rate: 1000 + Amount: 3 + - Index: 19 + Item: Gold + Rate: 50 + Amount: 2 + - Group: GREED_SHADOW_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: S_Greed_Armor + Rate: 170 + - Index: 1 + Item: S_Greed_Shoes + Rate: 170 + - Index: 2 + Item: S_Greed_Shield + Rate: 170 + - Index: 3 + Item: S_Greed_Weapon + Rate: 170 + - Index: 4 + Item: S_Greed_Earring + Rate: 160 + - Index: 5 + Item: S_Greed_Pendant + Rate: 160 + - Group: HEAL_SHADOW_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: S_Heal_Armor + Rate: 170 + - Index: 1 + Item: S_Heal_Shoes + Rate: 170 + - Index: 2 + Item: S_Heal_Shield + Rate: 170 + - Index: 3 + Item: S_Heal_Weapon + Rate: 170 + - Index: 4 + Item: S_Heal_Earring + Rate: 160 + - Index: 5 + Item: S_Heal_Pendant + Rate: 160 + - Group: HIDING_SHADOW_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: S_Hiding_Armor + Rate: 170 + - Index: 1 + Item: S_Hiding_Shoes + Rate: 170 + - Index: 2 + Item: S_Hiding_Shield + Rate: 170 + - Index: 3 + Item: S_Hiding_Weapon + Rate: 170 + - Index: 4 + Item: S_Hiding_Earring + Rate: 160 + - Index: 5 + Item: S_Hiding_Pendant + Rate: 160 + - Group: CLOAKING_SHADOW_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: S_Cloaking_Armor + Rate: 170 + - Index: 1 + Item: S_Cloaking_Shoes + Rate: 170 + - Index: 2 + Item: S_Cloaking_Shield + Rate: 170 + - Index: 3 + Item: S_Cloaking_Weapon + Rate: 170 + - Index: 4 + Item: S_Cloaking_Earring + Rate: 160 + - Index: 5 + Item: S_Cloaking_Pendant + Rate: 160 + - Group: COSTUME_FESTIVAL_BOX2 + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: C_Red_Dress_Hat + Rate: 150 + - Index: 1 + Item: C_Sleeping_Kitty_Cat + Rate: 150 + - Index: 2 + Item: C_Wind_Milestone + Rate: 150 + - Index: 3 + Item: C_Carnation_Hairband + Rate: 150 + - Index: 4 + Item: C_Ice_Wing_Ear + Rate: 75 + - Index: 5 + Item: C_Kirin_Wing + Rate: 25 + - Index: 6 + Item: C_Vanargandr_Helm + Rate: 150 + - Index: 7 + Item: C_Noah_Hat + Rate: 150 + - Index: 8 + Item: C_Wings_Of_Victory + Rate: 150 + - Index: 9 + Item: C_Light_Darkness_Crown + Rate: 150 + - Group: C_WING_OF_FLY_5DAY_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: C_Wing_Of_Fly + Duration: 7200 + UniqueId: true + - Group: TELEPORT_SHADOW_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: S_Teleport_Armor + Rate: 170 + - Index: 1 + Item: S_Teleport_Shoes + Rate: 170 + - Index: 2 + Item: S_Teleport_Shield + Rate: 170 + - Index: 3 + Item: S_Teleport_Weapon + Rate: 170 + - Index: 4 + Item: S_Teleport_Earring + Rate: 160 + - Index: 5 + Item: S_Teleport_Pendant + Rate: 160 + - Group: STEAL_SHADOW_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: S_Steal_Armor + Rate: 170 + - Index: 1 + Item: S_Steal_Shoes + Rate: 170 + - Index: 2 + Item: S_Steal_Shield + Rate: 170 + - Index: 3 + Item: S_Steal_Weapon + Rate: 170 + - Index: 4 + Item: S_Steal_Earring + Rate: 160 + - Index: 5 + Item: S_Steal_Pendant + Rate: 160 + - Group: SEALED_PHARAOH_SCROLL + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Sealed_Pharaoh_Card + Rate: 1 + Announced: true + - Index: 1 + Item: Guarantee_Weapon_9Up + Rate: 10 + Announced: true + - Index: 2 + Item: Guarantee_Armor_9Up + Rate: 10 + Announced: true + - Index: 3 + Item: Guarantee_Weapon_7Up + Rate: 100 + Announced: true + - Index: 4 + Item: Guarantee_Armor_7Up + Rate: 100 + Announced: true + - Index: 5 + Item: C_Jack_Castle_Bat + Rate: 150 + Announced: true + - Index: 6 + Item: Greed_Shadow_Box + Rate: 150 + Announced: true + - Index: 7 + Item: Heal_Shadow_Box + Rate: 400 + - Index: 8 + Item: Teleport_Shadow_Box + Rate: 700 + - Index: 9 + Item: Steal_Shadow_Box + Rate: 700 + - Index: 10 + Item: Old_C_Album_Armor + Rate: 500 + - Index: 11 + Item: Old_C_Album_Shield + Rate: 500 + - Index: 12 + Item: Enchant_Book + Rate: 500 + - Index: 13 + Item: Enchant_Stone_Box3 + Rate: 1000 + - Index: 14 + Item: Costume_Exchange + Rate: 1000 + - Index: 15 + Item: Poison_Bottle_Box2 + Rate: 1000 + - Index: 16 + Item: Comp_Battle_Manual + Rate: 1000 + Amount: 2 + - Index: 17 + Item: C_Wing_Of_Fly_5Day_Box + Rate: 129 + - Index: 18 + Item: C_Wing_Of_Fly_1Day_Box + Rate: 1000 + - Index: 19 + Item: Treasure_Box + Rate: 1000 + Amount: 3 + - Index: 20 + Item: Gold + Rate: 50 + Amount: 2 + - Group: QUESTION_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Apple + Rate: 13 + Amount: 200 + - Index: 1 + Item: Wing_Of_Fly + Rate: 13 + Amount: 100 + - Index: 2 + Item: Wing_Of_Butterfly + Rate: 13 + Amount: 50 + - Index: 3 + Item: Arrow + Rate: 13 + Amount: 1000 + - Index: 4 + Item: Savage_BBQ + Rate: 8 + - Index: 5 + Item: Minor_Brisket + Rate: 8 + - Index: 6 + Item: Drocera_Herb_Stew + Rate: 8 + - Index: 7 + Item: Petti_Tail_Noodle + Rate: 8 + - Index: 8 + Item: Wug_Blood_Cocktail + Rate: 8 + - Index: 9 + Item: Siroma_Icetea + Rate: 8 + - Group: SEALED_M_FLOWER_SCROLL + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Sealed_M_Flower_Card + Rate: 1 + Announced: true + - Index: 1 + Item: Guarantee_Weapon_9Up + Rate: 10 + Announced: true + - Index: 2 + Item: Guarantee_Armor_9Up + Rate: 10 + Announced: true + - Index: 3 + Item: Guarantee_Weapon_7Up + Rate: 100 + Announced: true + - Index: 4 + Item: Guarantee_Armor_7Up + Rate: 100 + Announced: true + - Index: 5 + Item: C_10Gallon_Hat_Of_Flame + Rate: 150 + Announced: true + - Index: 6 + Item: S_Infinity_Earring + Rate: 150 + Announced: true + - Index: 7 + Item: S_Infinity_Pendant + Rate: 350 + - Index: 8 + Item: S_Solid_Weapon + Rate: 350 + - Index: 9 + Item: S_Solid_Earring + Rate: 350 + - Index: 10 + Item: S_Immortal_Armor + Rate: 350 + - Index: 11 + Item: S_Immortal_Pendant + Rate: 350 + - Index: 12 + Item: Enchant_Stone_Box3 + Rate: 1000 + - Index: 13 + Item: Costume_Exchange + Rate: 1000 + - Index: 14 + Item: Poison_Bottle_Box2 + Rate: 1000 + - Index: 15 + Item: Comp_Battle_Manual + Rate: 1000 + Amount: 2 + - Index: 16 + Item: C_Wing_Of_Fly_5Day_Box + Rate: 179 + - Index: 17 + Item: C_Wing_Of_Fly_1Day_Box + Rate: 1000 + - Index: 18 + Item: Enchant_Book + Rate: 500 + - Index: 19 + Item: Blacksmith_Blessing + Rate: 500 + - Index: 20 + Item: Old_C_Album_Shoes + Rate: 500 + - Index: 21 + Item: Treasure_Box + Rate: 1000 + Amount: 3 + - Index: 22 + Item: Gold + Rate: 50 + Amount: 2 + - Group: SEALED_B_YGNIZEM_SCROLL + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Sealed_B_Ygnizem_Card + Rate: 1 + Announced: true + - Index: 1 + Item: Guarantee_Weapon_9Up + Rate: 10 + Announced: true + - Index: 2 + Item: Guarantee_Armor_9Up + Rate: 10 + Announced: true + - Index: 3 + Item: Guarantee_Weapon_7Up + Rate: 100 + Announced: true + - Index: 4 + Item: Guarantee_Armor_7Up + Rate: 100 + Announced: true + - Index: 5 + Item: S_Penetration_Earring + Rate: 500 + - Index: 6 + Item: S_Penetration_Pendent + Rate: 500 + - Index: 7 + Item: S_Executioner_Weapon + Rate: 150 + Announced: true + - Index: 8 + Item: S_Exorcist_Weapon + Rate: 150 + Announced: true + - Index: 9 + Item: S_Hunting_Weapon + Rate: 300 + - Index: 10 + Item: S_Insect_Net_Weapon + Rate: 300 + - Index: 11 + Item: S_Fishing_Weapon + Rate: 300 + - Index: 12 + Item: S_Dragon_Killer_Weapon + Rate: 300 + - Index: 13 + Item: S_Corrupt_Weapon + Rate: 300 + - Index: 14 + Item: S_Vibration_Weapon + Rate: 300 + - Index: 15 + Item: S_Holy_Water_Weapon + Rate: 300 + - Index: 16 + Item: S_Scissors_Weapon + Rate: 300 + - Index: 17 + Item: C_Hunting_Cap_Of_Gust + Rate: 150 + Announced: true + - Index: 18 + Item: Enchant_Stone_Box3 + Rate: 1000 + - Index: 19 + Item: Costume_Exchange + Rate: 1000 + - Index: 20 + Item: Poison_Bottle_Box2 + Rate: 1000 + - Index: 21 + Item: Comp_Battle_Manual + Rate: 1000 + Amount: 2 + - Index: 22 + Item: C_Wing_Of_Fly_1Day_Box + Rate: 879 + - Index: 23 + Item: Treasure_Box + Rate: 1000 + Amount: 3 + - Index: 24 + Item: Gold + Rate: 50 + Amount: 2 + - Group: REFINE_ORE_BOX7 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Enriched_Oridecon + Amount: 5 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 5 + UniqueId: true + - Index: 2 + Item: Sealed_B_Ygnizem_Scroll + UniqueId: true + - Group: REFINE_ORE_BOX7_SET10 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Enriched_Oridecon + Amount: 50 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 50 + UniqueId: true + - Index: 2 + Item: Sealed_B_Ygnizem_Scroll + Amount: 11 + UniqueId: true + - Group: SEALED_APO_H_SCROLL + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Sealed_Apocalips_H_Card + Rate: 1 + Announced: true + - Index: 1 + Item: Guarantee_Weapon_9Up + Rate: 10 + Announced: true + - Index: 2 + Item: Guarantee_Armor_9Up + Rate: 10 + Announced: true + - Index: 3 + Item: Guarantee_Weapon_7Up + Rate: 100 + Announced: true + - Index: 4 + Item: Guarantee_Armor_7Up + Rate: 100 + Announced: true + - Index: 5 + Item: S_Tempest_Earring + Rate: 500 + - Index: 6 + Item: S_Tempest_Pendent + Rate: 500 + - Index: 7 + Item: S_M_Executioner_Weapon + Rate: 150 + Announced: true + - Index: 8 + Item: S_M_Exorcist_Weapon + Rate: 150 + Announced: true + - Index: 9 + Item: S_M_Hunting_Weapon + Rate: 300 + - Index: 10 + Item: S_M_Insect_Net_Weapon + Rate: 300 + - Index: 11 + Item: S_M_Fishing_Weapon + Rate: 300 + - Index: 12 + Item: S_M_Dragon_K_Weapon + Rate: 300 + - Index: 13 + Item: S_M_Corrupt_Weapon + Rate: 300 + - Index: 14 + Item: S_M_Vibration_Weapon + Rate: 300 + - Index: 15 + Item: S_M_Holy_Water_Weapon + Rate: 300 + - Index: 16 + Item: S_M_Scissors_Weapon + Rate: 300 + - Index: 17 + Item: C_Knit_Cap_Of_Water + Rate: 150 + Announced: true + - Index: 18 + Item: Enchant_Stone_Box3 + Rate: 1000 + - Index: 19 + Item: Costume_Exchange + Rate: 1000 + - Index: 20 + Item: Poison_Bottle_Box2 + Rate: 1000 + - Index: 21 + Item: C_Wing_Of_Fly_1Day_Box + Rate: 879 + - Index: 22 + Item: Blacksmith_Blessing + Rate: 1000 + - Index: 23 + Item: Treasure_Box + Rate: 1000 + Amount: 3 + - Index: 24 + Item: Gold + Rate: 50 + Amount: 2 + - Group: PC_NOMALBOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: White_Slim_Potion_B + Amount: 50 + - SubGroup: 2 + List: + - Index: 0 + Item: White_Slim_Potion_B + Rate: 1000 + Amount: 10 + - Index: 1 + Item: Yellow_Slim_Potion_B + Rate: 1000 + Amount: 20 + - Index: 2 + Item: Red_Slim_Potion_B + Rate: 1000 + Amount: 30 + - Index: 3 + Item: White_Potion_B + Rate: 1000 + Amount: 20 + - Index: 4 + Item: Yellow_Potion_B + Rate: 200 + Amount: 30 + - Index: 5 + Item: Orange_Potion_B + Rate: 200 + Amount: 40 + - Index: 6 + Item: Red_Potion_B + Rate: 200 + Amount: 50 + - Index: 7 + Item: Green_Potion_B + Rate: 500 + Amount: 10 + - Index: 8 + Item: Blue_Potion_B + Rate: 500 + Amount: 3 + - Index: 9 + Item: Awakening_Potion_B + Rate: 800 + Amount: 3 + - Index: 10 + Item: Berserk_Potion_B + Rate: 800 + Amount: 3 + - Index: 11 + Item: Old_Violet_Box + Rate: 200 + - Index: 12 + Item: Old_Blue_Box + Rate: 200 + - Index: 13 + Item: Inspector_Certificate + Rate: 500 + Amount: 3 + - Index: 14 + Item: Oridecon + Rate: 200 + Amount: 3 + - Index: 15 + Item: Elunium + Rate: 200 + Amount: 3 + - Index: 16 + Item: First_Aid_Kit_B + Rate: 300 + - Index: 17 + Item: Speed_Up_Potion_B + Rate: 100 + Amount: 3 + - Index: 18 + Item: Water_Of_Darkness_B + Rate: 200 + Amount: 3 + - Index: 19 + Item: Poison_Bottle + Rate: 200 + Amount: 3 + - Index: 20 + Item: Cookie_Bag_B + Rate: 200 + - Index: 21 + Item: Sesame_Pastry_B + Rate: 200 + Amount: 3 + - Index: 22 + Item: Honey_Pastry_B + Rate: 200 + Amount: 3 + - Index: 23 + Item: Rainbow_Cake_B + Rate: 200 + Amount: 3 + - Index: 24 + Item: Comp_Insurance + Rate: 30 + - Index: 25 + Item: Comp_Battle_Manual + Rate: 50 + - Index: 26 + Item: Comp_Bubble_Gum + Rate: 40 + - Index: 27 + Item: Branch_Of_Dead_Tree + Rate: 78 + Amount: 3 + - Index: 28 + Item: Bloody_Dead_Branch + Rate: 1 + - Index: 29 + Item: Old_Card_Album + Rate: 1 + - Index: 30 + Item: PC_WoodenBox + Rate: 1 + - Group: PC_WOODENBOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: White_Slim_Potion_B + Amount: 80 + - SubGroup: 2 + List: + - Index: 0 + Item: White_Slim_Potion_B + Rate: 1000 + Amount: 20 + - Index: 1 + Item: Yellow_Slim_Potion_B + Rate: 1000 + Amount: 30 + - Index: 2 + Item: Red_Slim_Potion_B + Rate: 1000 + Amount: 40 + - Index: 3 + Item: Green_Potion_B + Rate: 700 + Amount: 20 + - Index: 4 + Item: Blue_Potion_B + Rate: 1000 + Amount: 6 + - Index: 5 + Item: Awakening_Potion_B + Rate: 700 + Amount: 6 + - Index: 6 + Item: Berserk_Potion_B + Rate: 700 + Amount: 6 + - Index: 7 + Item: Old_Violet_Box + Rate: 200 + Amount: 2 + - Index: 8 + Item: Old_Blue_Box + Rate: 200 + Amount: 2 + - Index: 9 + Item: Inspector_Certificate + Rate: 200 + Amount: 6 + - Index: 10 + Item: Oridecon + Rate: 500 + Amount: 6 + - Index: 11 + Item: Elunium + Rate: 500 + Amount: 6 + - Index: 12 + Item: Speed_Up_Potion_B + Rate: 100 + Amount: 6 + - Index: 13 + Item: Water_Of_Darkness_B + Rate: 300 + Amount: 6 + - Index: 14 + Item: Poison_Bottle + Rate: 200 + Amount: 6 + - Index: 15 + Item: Sesame_Pastry_B + Rate: 300 + Amount: 6 + - Index: 16 + Item: Honey_Pastry_B + Rate: 300 + Amount: 6 + - Index: 17 + Item: Rainbow_Cake_B + Rate: 300 + Amount: 6 + - Index: 18 + Item: Comp_Insurance + Rate: 50 + - Index: 19 + Item: Comp_Battle_Manual + Rate: 50 + - Index: 20 + Item: Comp_Bubble_Gum + Rate: 50 + - Index: 21 + Item: Branch_Of_Dead_Tree + Rate: 100 + Amount: 3 + - Index: 22 + Item: Bloody_Dead_Branch + Rate: 68 + - Index: 23 + Item: Old_Card_Album + Rate: 80 + - Index: 24 + Item: E_WOB_Rune + Rate: 50 + Amount: 3 + - Index: 25 + Item: E_WOB_Schwaltz + Rate: 50 + Amount: 3 + - Index: 26 + Item: E_WOB_Rachel + Rate: 50 + Amount: 3 + - Index: 27 + Item: E_WOB_Local + Rate: 50 + Amount: 3 + - Index: 28 + Item: Guarantee_Weapon_7Up + Rate: 1 + - Index: 29 + Item: Guarantee_Armor_7Up + Rate: 1 + - Index: 30 + Item: PC_GoldenBox + Rate: 1 + - Group: PC_GOLDENBOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: White_Slim_Pot_Box2 + Amount: 2 + - Index: 1 + Item: Elunium + Amount: 10 + - SubGroup: 2 + List: + - Index: 0 + Item: White_Slim_Potion_B + Rate: 1000 + Amount: 80 + - Index: 1 + Item: Blue_Potion_B + Rate: 1000 + Amount: 12 + - Index: 2 + Item: Awakening_Potion_B + Rate: 1000 + Amount: 12 + - Index: 3 + Item: Berserk_Potion_B + Rate: 1000 + Amount: 12 + - Index: 4 + Item: Old_Violet_Box + Rate: 200 + Amount: 3 + - Index: 5 + Item: Old_Blue_Box + Rate: 200 + Amount: 3 + - Index: 6 + Item: Inspector_Certificate + Rate: 500 + Amount: 12 + - Index: 7 + Item: Oridecon + Rate: 500 + Amount: 12 + - Index: 8 + Item: Elunium + Rate: 500 + Amount: 12 + - Index: 9 + Item: Speed_Up_Potion_B + Rate: 200 + Amount: 12 + - Index: 10 + Item: Water_Of_Darkness_B + Rate: 500 + Amount: 12 + - Index: 11 + Item: Poison_Bottle + Rate: 600 + Amount: 12 + - Index: 12 + Item: Sesame_Pastry_B + Rate: 100 + Amount: 12 + - Index: 13 + Item: Honey_Pastry_B + Rate: 100 + Amount: 12 + - Index: 14 + Item: Rainbow_Cake_B + Rate: 100 + Amount: 12 + - Index: 15 + Item: Reward_Job_BM25 + Rate: 290 + Amount: 2 + - Index: 16 + Item: Comp_Insurance + Rate: 200 + - Index: 17 + Item: Comp_Battle_Manual + Rate: 200 + - Index: 18 + Item: Comp_Bubble_Gum + Rate: 200 + - Index: 19 + Item: Branch_Of_Dead_Tree + Rate: 200 + Amount: 3 + - Index: 20 + Item: Bloody_Dead_Branch + Rate: 200 + - Index: 21 + Item: Old_Card_Album + Rate: 200 + - Index: 22 + Item: Magic_Card_Album + Rate: 200 + - Index: 23 + Item: E_WOB_Rune + Rate: 200 + Amount: 3 + - Index: 24 + Item: E_WOB_Schwaltz + Rate: 200 + Amount: 3 + - Index: 25 + Item: E_WOB_Rachel + Rate: 200 + Amount: 3 + - Index: 26 + Item: E_WOB_Local + Rate: 200 + Amount: 3 + - Index: 27 + Item: Guarantee_Weapon_7Up + Rate: 7 + - Index: 28 + Item: Guarantee_Armor_7Up + Rate: 3 + - Index: 29 + Item: PC_PlatinumBox + Rate: 3 + - Group: PC_PLATINUMBOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: White_Slim_Pot_Box2 + Amount: 2 + - Index: 1 + Item: Speed_Up_Potion_B + Amount: 10 + - Index: 2 + Item: Poison_Bottle + Amount: 12 + - SubGroup: 2 + List: + - Index: 0 + Item: White_Slim_Potion_B + Rate: 1000 + Amount: 80 + - Index: 1 + Item: Oridecon + Rate: 1000 + Amount: 12 + - Index: 2 + Item: Elunium + Rate: 1000 + Amount: 12 + - Index: 3 + Item: Branch_Of_Dead_Tree + Rate: 1000 + Amount: 10 + - Index: 4 + Item: Reward_Job_BM25 + Rate: 700 + Amount: 2 + - Index: 5 + Item: Comp_Insurance + Rate: 200 + - Index: 6 + Item: Battle_Manual100 + Rate: 700 + - Index: 7 + Item: Comp_Bubble_Gum + Rate: 200 + - Index: 8 + Item: Bloody_Dead_Branch + Rate: 600 + - Index: 9 + Item: Old_Card_Album + Rate: 600 + - Index: 10 + Item: Magic_Card_Album + Rate: 360 + - Index: 11 + Item: E_WOB_Rune + Rate: 200 + Amount: 3 + - Index: 12 + Item: E_WOB_Schwaltz + Rate: 200 + Amount: 3 + - Index: 13 + Item: E_WOB_Rachel + Rate: 200 + Amount: 3 + - Index: 14 + Item: E_WOB_Local + Rate: 200 + Amount: 3 + - Index: 15 + Item: E_Abrasive_Box10 + Rate: 200 + - Index: 16 + Item: E_S_Life_Potion_Box + Rate: 200 + - Index: 17 + Item: E_Str_Dish_Box + Rate: 120 + - Index: 18 + Item: E_Agi_Dish_Box + Rate: 120 + - Index: 19 + Item: E_Int_Dish_Box + Rate: 120 + - Index: 20 + Item: E_Dex_Dish_Box + Rate: 120 + - Index: 21 + Item: E_Luk_Dish_Box + Rate: 120 + - Index: 22 + Item: E_Vit_Dish_Box + Rate: 120 + - Index: 23 + Item: E_Inc_Agi_10_Scr_Box + Rate: 220 + - Index: 24 + Item: E_Blessing_10_Scr_Box + Rate: 220 + - Index: 25 + Item: Guarantee_Weapon_7Up + Rate: 100 + - Index: 26 + Item: Guarantee_Armor_7Up + Rate: 100 + - Index: 27 + Item: Guarantee_Weapon_9Up + Rate: 20 + - Index: 28 + Item: Guarantee_Armor_9Up + Rate: 20 + - Index: 29 + Item: Sigrun's_Wing + Rate: 1 + - Group: 3_LIFE_POTION_PACK4 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Small_Life_Potion + Amount: 20 + UniqueId: true + - Index: 1 + Item: Med_Life_Potion + Amount: 20 + UniqueId: true + - Index: 2 + Item: Mysterious_Water + Amount: 20 + UniqueId: true + - Index: 3 + Item: Sealed_Dracula_Scroll + UniqueId: true + - Group: 3_LIFE_POTION_10PACK4 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Small_Life_Potion + Amount: 200 + UniqueId: true + - Index: 1 + Item: Med_Life_Potion + Amount: 200 + UniqueId: true + - Index: 2 + Item: Mysterious_Water + Amount: 200 + UniqueId: true + - Index: 3 + Item: Sealed_Dracula_Scroll + Amount: 11 + UniqueId: true + - Group: SEALED_DRACULA_SCROLL + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Sealed_Dracula_Card + Rate: 1 + Announced: true + - Index: 1 + Item: Guarantee_Weapon_9Up + Rate: 10 + Announced: true + - Index: 2 + Item: Guarantee_Armor_9Up + Rate: 10 + Announced: true + - Index: 3 + Item: Guarantee_Weapon_7Up + Rate: 100 + Announced: true + - Index: 4 + Item: Guarantee_Armor_7Up + Rate: 100 + Announced: true + - Index: 5 + Item: Bearers_Shadow_Box + Rate: 179 + Announced: true + - Index: 6 + Item: S_Basis_Armor + Rate: 350 + - Index: 7 + Item: S_Hallowed_Armor + Rate: 350 + - Index: 8 + Item: S_Saharic_Armor + Rate: 350 + - Index: 9 + Item: S_Underneath_Armor + Rate: 350 + - Index: 10 + Item: S_Flam_Armor + Rate: 350 + - Index: 11 + Item: S_Windy_Armor + Rate: 350 + - Index: 12 + Item: S_Envenom_Armor + Rate: 350 + - Index: 13 + Item: S_Damned_Armor + Rate: 350 + - Index: 14 + Item: S_Geist_Armor + Rate: 350 + - Index: 15 + Item: S_Divine_Armor + Rate: 350 + - Index: 16 + Item: C_Silk_Hat_Of_Earth + Rate: 150 + Announced: true + - Index: 17 + Item: Enchant_Stone_Box3 + Rate: 1000 + - Index: 18 + Item: Costume_Exchange + Rate: 1000 + - Index: 19 + Item: Poison_Bottle_Box2 + Rate: 1000 + - Index: 20 + Item: C_Wing_Of_Fly_1Day_Box + Rate: 1000 + - Index: 21 + Item: Enchant_Book + Rate: 500 + - Index: 22 + Item: Blacksmith_Blessing + Rate: 400 + - Index: 23 + Item: Treasure_Box + Rate: 1000 + Amount: 3 + - Index: 24 + Item: Gold + Rate: 50 + Amount: 2 + - Group: BEARERS_SHADOW_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: S_Bearers_Armor + Rate: 170 + - Index: 1 + Item: S_Bearers_Shoes + Rate: 170 + - Index: 2 + Item: S_Bearers_Shield + Rate: 170 + - Index: 3 + Item: S_Bearers_Weapon + Rate: 170 + - Index: 4 + Item: S_Bearers_Earring + Rate: 160 + - Index: 5 + Item: S_Bearers_Pendent + Rate: 160 + - Group: VIGORGRA_PACKAGE_V4 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Battle_Manual + Amount: 2 + UniqueId: true + - Index: 1 + Item: Bubble_Gum + Amount: 2 + UniqueId: true + - Index: 2 + Item: Almighty + Amount: 2 + UniqueId: true + - Index: 3 + Item: Mental_Potion + Amount: 2 + UniqueId: true + - Index: 4 + Item: Mysterious_Water + Amount: 6 + UniqueId: true + - Index: 5 + Item: Sealed_B_Shecil_Scroll + UniqueId: true + - Group: VIGORGRA_PACKAGE_SET_V4 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Battle_Manual + Amount: 20 + UniqueId: true + - Index: 1 + Item: Bubble_Gum + Amount: 20 + UniqueId: true + - Index: 2 + Item: Almighty + Amount: 20 + UniqueId: true + - Index: 3 + Item: Mental_Potion + Amount: 20 + UniqueId: true + - Index: 4 + Item: Mysterious_Water + Amount: 60 + UniqueId: true + - Index: 5 + Item: Sealed_B_Shecil_Scroll + Amount: 11 + UniqueId: true + - Group: SEALED_B_SHECIL_SCROLL + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Sealed_B_Shecil_Card + Rate: 11 + Announced: true + - Index: 1 + Item: Guarantee_Weapon_9Up + Rate: 20 + Announced: true + - Index: 2 + Item: Guarantee_Armor_9Up + Rate: 20 + Announced: true + - Index: 3 + Item: Guarantee_Weapon_7Up + Rate: 210 + Announced: true + - Index: 4 + Item: Guarantee_Armor_7Up + Rate: 210 + Announced: true + - Index: 5 + Item: S_Hasty_Shoes + Rate: 150 + Announced: true + - Index: 6 + Item: S_Hasty_Armor + Rate: 150 + Announced: true + - Index: 7 + Item: S_Basis_Shield + Rate: 350 + - Index: 8 + Item: S_Hallowed_Shield + Rate: 350 + - Index: 9 + Item: S_Saharic_Shield + Rate: 350 + - Index: 10 + Item: S_Underneath_Shield + Rate: 350 + - Index: 11 + Item: S_Flam_Shield + Rate: 350 + - Index: 12 + Item: S_Windy_Shield + Rate: 350 + - Index: 13 + Item: S_Envenom_Shield + Rate: 350 + - Index: 14 + Item: S_Damned_Shield + Rate: 350 + - Index: 15 + Item: S_Geist_Shield + Rate: 350 + - Index: 16 + Item: S_Divine_Shield + Rate: 350 + - Index: 17 + Item: C_Flowerpot_Mask + Rate: 150 + Announced: true + - Index: 18 + Item: Enchant_Stone_Box3 + Rate: 1000 + - Index: 19 + Item: Costume_Exchange + Rate: 1000 + - Index: 20 + Item: Poison_Bottle_Box2 + Rate: 1000 + - Index: 21 + Item: C_Wing_Of_Fly_1Day_Box + Rate: 1000 + - Index: 22 + Item: C_Wing_Of_Fly_5Day_Box + Rate: 29 + - Index: 23 + Item: Blacksmith_Blessing + Rate: 500 + - Index: 24 + Item: Treasure_Box + Rate: 1000 + Amount: 3 + - Index: 25 + Item: Gold + Rate: 50 + Amount: 2 + - Group: NYANGVINE_BOX4 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 4 + - Index: 1 + Item: Malang_Sp_Can + Amount: 12 + - Group: NYANGVINE_BOX10 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 10 + - Index: 1 + Item: Malang_Sp_Can + Amount: 30 + - Group: NYANGVINE_BOX40 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 40 + - Index: 1 + Item: Malang_Sp_Can + Amount: 120 + - Group: REFINE_ORE_BOX8 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Enriched_Oridecon + Amount: 5 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 5 + UniqueId: true + - Index: 2 + Item: Sealed_Scroll + UniqueId: true + - Group: REFINE_ORE_BOX8_SET10 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Enriched_Oridecon + Amount: 50 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 50 + UniqueId: true + - Index: 2 + Item: Sealed_Scroll + Amount: 11 + UniqueId: true + - Group: SEALED_CARD + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Sealed_D_Lord_Card + Rate: 10 + Announced: true + - Index: 1 + Item: Sealed_Knight_WS_Card + Rate: 10 + Announced: true + - Index: 2 + Item: Sealed_Berz_Card + Rate: 10 + Announced: true + - Index: 3 + Item: Sealed_Kiel_Card + Rate: 10 + Announced: true + - Index: 4 + Item: Sealed_Gloom_Card + Rate: 10 + Announced: true + - Index: 5 + Item: Sealed_F_Bishop_Card + Rate: 10 + Announced: true + - Index: 6 + Item: Sealed_Ifrit_Card + Rate: 10 + Announced: true + - Index: 7 + Item: Sealed_TurtleG_Card + Rate: 10 + Announced: true + - Index: 8 + Item: Sealed_Bacsojin_Card + Rate: 10 + Announced: true + - Index: 9 + Item: Sealed_Pharaoh_Card + Rate: 10 + Announced: true + - Index: 10 + Item: Sealed_M_Flower_Card + Rate: 10 + Announced: true + - Index: 11 + Item: Sealed_B_Ygnizem_Card + Rate: 10 + Announced: true + - Index: 12 + Item: Sealed_Apocalips_H_Card + Rate: 10 + Announced: true + - Index: 13 + Item: Sealed_Dracula_Card + Rate: 10 + Announced: true + - Index: 14 + Item: Sealed_B_Shecil_Card + Rate: 10 + Announced: true + - Group: LI_HD_ELUNIUM_BOX30 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: LI_HD_Elunium + Amount: 30 + UniqueId: true + - Index: 1 + Item: Blacksmith_Blessing + - Group: LI_HD_ORIDECON_BOX30 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: LI_HD_Oridecon + Amount: 30 + UniqueId: true + - Index: 1 + Item: Blacksmith_Blessing + - Group: UNLIMITED_BOX3 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: ASPD_Potion + Amount: 5 + UniqueId: true + - Index: 1 + Item: Red_Booster + Amount: 10 + UniqueId: true + - Index: 2 + Item: Guarantee_Relax_Scroll + UniqueId: true + - Group: UNLIMITED_10_BOX3 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: ASPD_Potion + Amount: 50 + UniqueId: true + - Index: 1 + Item: Red_Booster + Amount: 100 + UniqueId: true + - Index: 2 + Item: Guarantee_Relax_Scroll + Amount: 11 + UniqueId: true + - Group: GUARANTEE_RELAX_SCROLL + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Guarantee_Weapon_11Up + Rate: 1 + Announced: true + - Index: 1 + Item: Guarantee_Armor_11Up + Rate: 1 + Announced: true + - Index: 2 + Item: Guarantee_Weapon_9Up + Rate: 10 + Announced: true + - Index: 3 + Item: Guarantee_Armor_9Up + Rate: 10 + Announced: true + - Index: 4 + Item: Guarantee_Weapon_7Up + Rate: 100 + Announced: true + - Index: 5 + Item: Guarantee_Armor_7Up + Rate: 100 + Announced: true + - Index: 6 + Item: S_Attack_Armor + Rate: 120 + Announced: true + - Index: 7 + Item: S_Blitz_Earring + Rate: 400 + - Index: 8 + Item: S_Blitz_Pendent + Rate: 400 + - Index: 9 + Item: S_ColdBolt_Armor + Rate: 400 + - Index: 10 + Item: S_FireBolt_Armor + Rate: 400 + - Index: 11 + Item: S_LightingBolt_Armor + Rate: 400 + - Index: 12 + Item: S_EarthSpike_Armor + Rate: 400 + - Index: 13 + Item: Costume_Exchange + Rate: 1000 + - Index: 14 + Item: Poison_Bottle_Box2 + Rate: 1000 + - Index: 15 + Item: Enchant_Book + Rate: 1000 + - Index: 16 + Item: C_Wing_Of_Fly_5Day_Box + Rate: 208 + - Index: 17 + Item: C_Wing_Of_Fly_1Day_Box + Rate: 1000 + - Index: 18 + Item: Treasure_Box + Rate: 1000 + Amount: 3 + - Index: 19 + Item: Gold + Rate: 50 + Amount: 2 + - Group: LIMIT_MANUAL_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Battle_Manual_Limit + Amount: 3 + UniqueId: true + - Index: 1 + Item: Job_Manual_Limit + Amount: 2 + UniqueId: true + - Group: SEALED_DRACULA_SCROLL2 + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Sealed_Dracula_Card + Rate: 5 + Announced: true + - Index: 1 + Item: Guarantee_Weapon_9Up + Rate: 10 + Announced: true + - Index: 2 + Item: Guarantee_Armor_9Up + Rate: 10 + Announced: true + - Index: 3 + Item: Guarantee_Weapon_7Up + Rate: 125 + Announced: true + - Index: 4 + Item: Guarantee_Armor_7Up + Rate: 125 + Announced: true + - Index: 5 + Item: S_Enhance_Force_Weapon + Rate: 150 + Announced: true + - Index: 6 + Item: S_Enhance_Spirit_Weapon + Rate: 150 + Announced: true + - Index: 7 + Item: S_Force_Weapon + Rate: 450 + - Index: 8 + Item: S_Force_Earring + Rate: 450 + - Index: 9 + Item: S_Force_Pendant + Rate: 450 + - Index: 10 + Item: S_Spirit_Weapon + Rate: 450 + - Index: 11 + Item: S_Spirit_Earring + Rate: 450 + - Index: 12 + Item: S_Spirit_Pendant + Rate: 450 + - Index: 13 + Item: Costume_Exchange + Rate: 900 + - Index: 14 + Item: Poison_Bottle_Box2 + Rate: 900 + - Index: 15 + Item: White_Slim_Pot_Box2 + Rate: 900 + - Index: 16 + Item: C_Wing_Of_Fly_5Day_Box + Rate: 225 + - Index: 17 + Item: Enchant_Book + Rate: 900 + - Index: 18 + Item: Treasure_Box + Rate: 900 + Amount: 3 + - Group: 3_LIFE_POTION_10PACK5 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Small_Life_Potion + Amount: 200 + UniqueId: true + - Index: 1 + Item: Med_Life_Potion + Amount: 200 + UniqueId: true + - Index: 2 + Item: Mysterious_Water + Amount: 200 + UniqueId: true + - Index: 3 + Item: Sealed_Dracula_Scroll2 + Amount: 11 + UniqueId: true + - Group: 3_LIFE_POTION_PACK5 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Small_Life_Potion + Amount: 20 + UniqueId: true + - Index: 1 + Item: Med_Life_Potion + Amount: 20 + UniqueId: true + - Index: 2 + Item: Mysterious_Water + Amount: 20 + UniqueId: true + - Index: 3 + Item: Sealed_Dracula_Scroll2 + UniqueId: true + - Group: SEALED_MYSTERIOUS_EGG + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Sealed_D_Lord_Scroll + Rate: 1 + UniqueId: true + - Index: 1 + Item: Sealed_Knight_WS_Scroll + Rate: 1 + UniqueId: true + - Index: 2 + Item: Sealed_Berz_Scroll + Rate: 1 + UniqueId: true + - Index: 3 + Item: Sealed_Kiel_Scroll + Rate: 1 + UniqueId: true + - Index: 4 + Item: Sealed_Gloom_Scroll + Rate: 1 + UniqueId: true + - Index: 5 + Item: Sealed_F_Bishop_Scroll + Rate: 1 + UniqueId: true + - Index: 6 + Item: Sealed_Ifrit_Scroll + Rate: 1 + UniqueId: true + - Index: 7 + Item: Sealed_TurtleG_Scroll + Rate: 1 + UniqueId: true + - Index: 8 + Item: Sealed_Bacsojin_Scroll + Rate: 1 + UniqueId: true + - Index: 9 + Item: Sealed_Pharaoh_Scroll + Rate: 1 + UniqueId: true + - Index: 10 + Item: Sealed_M_Flower_Scroll + Rate: 1 + UniqueId: true + - Index: 11 + Item: Sealed_B_Ygnizem_Scroll + Rate: 1 + UniqueId: true + - Index: 12 + Item: Sealed_Apo_H_Scroll + Rate: 1 + UniqueId: true + - Index: 13 + Item: Sealed_Dracula_Scroll + Rate: 1 + UniqueId: true + - Index: 14 + Item: Sealed_B_Shecil_Scroll + Rate: 1 + UniqueId: true + - Group: SEALED_DRACULA_ALBUM + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Sealed_Dracula_Card + Rate: 1 + Announced: true + - Index: 1 + Item: Sealed_Dracula_Card_ + Rate: 9999 + - Group: LIMIT_POWER_BOOSTER_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Limit_Power_Booster + Amount: 10 + UniqueId: true + - Index: 1 + Item: Sealed_Berz_Scroll2 + UniqueId: true + - Group: LIMIT_POWER_BOOSTER100 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Limit_Power_Booster + Amount: 100 + UniqueId: true + - Index: 1 + Item: Sealed_Berz_Scroll2 + Amount: 11 + UniqueId: true + - Group: SEALED_BERZ_ALBUM + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Sealed_Berz_Card + Rate: 1 + Announced: true + - Index: 1 + Item: Sealed_Berz_Card_ + Rate: 9999 + - Group: SEALED_BERZ_SCROLL2 + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Sealed_Berz_Card + Rate: 3 + Announced: true + - Index: 1 + Item: Guarantee_Weapon_11Up + Rate: 1 + Announced: true + - Index: 2 + Item: Guarantee_Armor_11Up + Rate: 1 + Announced: true + - Index: 3 + Item: Guarantee_Weapon_9Up + Rate: 10 + Announced: true + - Index: 4 + Item: Guarantee_Armor_9Up + Rate: 10 + Announced: true + - Index: 5 + Item: Guarantee_Weapon_7Up + Rate: 125 + Announced: true + - Index: 6 + Item: Guarantee_Armor_7Up + Rate: 125 + Announced: true + - Index: 7 + Item: S_Blitz_Shoes + Rate: 175 + Announced: true + - Index: 8 + Item: S_Blitz_Shield + Rate: 175 + Announced: true + - Index: 9 + Item: S_Exceed_Weapon + Rate: 500 + - Index: 10 + Item: S_Titan_Earring + Rate: 500 + - Index: 11 + Item: S_Titan_Pendant + Rate: 500 + - Index: 12 + Item: S_Boned_Earring + Rate: 500 + - Index: 13 + Item: S_Boned_Pendant + Rate: 500 + - Index: 14 + Item: S_Gigantic_Earring + Rate: 500 + - Index: 15 + Item: S_Gigantic_Pendant + Rate: 500 + - Index: 16 + Item: Blacksmith_Blessing + Rate: 500 + - Index: 17 + Item: C_Wing_Of_Fly_5Day_Box + Rate: 375 + - Index: 18 + Item: Costume_Exchange + Rate: 1000 + - Index: 19 + Item: C_Wing_Of_Fly_1Day_Box + Rate: 1000 + - Index: 20 + Item: Poison_Bottle_Box2 + Rate: 1000 + - Index: 21 + Item: Potion_Box + Rate: 1000 + - Index: 22 + Item: Treasure_Box + Rate: 1000 + Amount: 3 + - Group: NYANGVINE_BOX200 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 200 + - Index: 1 + Item: Malang_Sp_Can + Amount: 600 + - Group: APRILGIFTBOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Half_Megin + Duration: 20160 + UniqueId: true + - Index: 1 + Item: Half_Brysing + Duration: 20160 + UniqueId: true + - Index: 2 + Item: Half_Asprika + Duration: 20160 + UniqueId: true + - Index: 3 + Item: Half_Brynhild + Duration: 20160 + UniqueId: true + - Group: NOVEMBERGIFTBOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Half_Megin + Duration: 20160 + UniqueId: true + - Index: 1 + Item: Half_Brysing + Duration: 20160 + UniqueId: true + - Index: 2 + Item: Half_Asprika + Duration: 20160 + UniqueId: true + - Index: 3 + Item: Half_Brynhild + Duration: 20160 + UniqueId: true + - Group: SEPTEMBERGIFTBOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Sigrun's_Wing_C + Duration: 10080 + UniqueId: true + - Group: REFINE_ORE_BOX9 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Enriched_Oridecon + Amount: 5 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 5 + UniqueId: true + - Index: 2 + Item: 2015_New_Year_Scroll + UniqueId: true + - Group: REFINE_ORE_BOX9_SET10 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Enriched_Oridecon + Amount: 50 + UniqueId: true + - Index: 1 + Item: Enriched_Elunium + Amount: 50 + UniqueId: true + - Index: 2 + Item: 2015_New_Year_Scroll + Amount: 11 + UniqueId: true + - Group: 2015_NEW_YEAR_SCROLL + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Guarantee_Weapon_11Up + Rate: 1 + Announced: true + - Index: 1 + Item: Guarantee_Armor_11Up + Rate: 1 + Announced: true + - Index: 2 + Item: Guarantee_Weapon_9Up + Rate: 9 + Announced: true + - Index: 3 + Item: Guarantee_Armor_9Up + Rate: 9 + Announced: true + - Index: 4 + Item: Guarantee_Weapon_7Up + Rate: 125 + Announced: true + - Index: 5 + Item: Guarantee_Armor_7Up + Rate: 125 + Announced: true + - Index: 6 + Item: S_Caster_Shoes + Rate: 150 + Announced: true + - Index: 7 + Item: S_Caster_Shield + Rate: 150 + Announced: true + - Index: 8 + Item: S_Caster_Armor + Rate: 150 + Announced: true + - Index: 9 + Item: Shadow_Cube + Rate: 2500 + - Index: 10 + Item: C_Wing_Of_Fly_5Day_Box + Rate: 280 + - Index: 11 + Item: Comp_Battle_Manual + Rate: 1500 + Amount: 2 + - Index: 12 + Item: Old_Ore_Box + Rate: 1000 + - Index: 13 + Item: Poison_Bottle_Box2 + Rate: 1000 + - Index: 14 + Item: C_Wing_Of_Fly_1Day_Box + Rate: 1000 + - Index: 15 + Item: Potion_Box + Rate: 1000 + - Index: 16 + Item: Treasure_Box + Rate: 1000 + Amount: 3 + - Group: NEW_YEAR_SHADOW_CUBE + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: S_Gemstone_Weapon + Rate: 5 + Announced: true + - Index: 1 + Item: S_Gemstone_Earring + Rate: 5 + Announced: true + - Index: 2 + Item: S_Gemstone_Pendent + Rate: 5 + Announced: true + - Index: 3 + Item: S_Gemstone_Armor + Rate: 5 + Announced: true + - Index: 4 + Item: S_Gemstone_Shoes + Rate: 5 + Announced: true + - Index: 5 + Item: S_Gemstone_Shield + Rate: 5 + Announced: true + - Index: 6 + Item: S_Bearers_Weapon + Rate: 5 + Announced: true + - Index: 7 + Item: S_Bearers_Earring + Rate: 5 + Announced: true + - Index: 8 + Item: S_Bearers_Pendent + Rate: 5 + Announced: true + - Index: 9 + Item: S_Bearers_Armor + Rate: 5 + Announced: true + - Index: 10 + Item: S_Bearers_Shoes + Rate: 5 + Announced: true + - Index: 11 + Item: S_Bearers_Shield + Rate: 5 + Announced: true + - Index: 12 + Item: S_Blitz_Shoes + Rate: 5 + Announced: true + - Index: 13 + Item: S_Blitz_Shield + Rate: 5 + Announced: true + - Index: 14 + Item: S_Greed_Weapon + Rate: 10 + Announced: true + - Index: 15 + Item: S_Greed_Earring + Rate: 10 + Announced: true + - Index: 16 + Item: S_Greed_Pendant + Rate: 10 + Announced: true + - Index: 17 + Item: S_Greed_Armor + Rate: 10 + Announced: true + - Index: 18 + Item: S_Greed_Shoes + Rate: 10 + Announced: true + - Index: 19 + Item: S_Greed_Shield + Rate: 10 + Announced: true + - Index: 20 + Item: S_Liberation_Shoes + Rate: 10 + Announced: true + - Index: 21 + Item: S_Safeguard_Shield + Rate: 10 + Announced: true + - Index: 22 + Item: S_Infinity_Earring + Rate: 10 + Announced: true + - Index: 23 + Item: S_Infinity_Pendant + Rate: 10 + Announced: true + - Index: 24 + Item: S_Penetration_Earring + Rate: 10 + Announced: true + - Index: 25 + Item: S_Penetration_Pendent + Rate: 10 + Announced: true + - Index: 26 + Item: S_Executioner_Weapon + Rate: 10 + Announced: true + - Index: 27 + Item: S_Exorcist_Weapon + Rate: 10 + Announced: true + - Index: 28 + Item: S_Tempest_Earring + Rate: 10 + Announced: true + - Index: 29 + Item: S_Tempest_Pendent + Rate: 10 + Announced: true + - Index: 30 + Item: S_Hasty_Shoes + Rate: 10 + Announced: true + - Index: 31 + Item: S_Hasty_Armor + Rate: 10 + Announced: true + - Index: 32 + Item: S_Expert_Shoes + Rate: 10 + Announced: true + - Index: 33 + Item: S_Expert_Shield + Rate: 10 + Announced: true + - Index: 34 + Item: S_Blitz_Earring + Rate: 10 + Announced: true + - Index: 35 + Item: S_Blitz_Pendent + Rate: 10 + Announced: true + - Index: 36 + Item: S_Enhance_Force_Weapon + Rate: 10 + Announced: true + - Index: 37 + Item: S_Enhance_Spirit_Weapon + Rate: 10 + Announced: true + - Index: 38 + Item: S_Spell_Flow_Armor + Rate: 15 + - Index: 39 + Item: S_Spell_Flow_Shoes + Rate: 15 + - Index: 40 + Item: S_Spell_Flow_Shield + Rate: 15 + - Index: 41 + Item: S_M_Executioner_Weapon + Rate: 15 + - Index: 42 + Item: S_M_Exorcist_Weapon + Rate: 15 + - Index: 43 + Item: S_Attack_Armor + Rate: 15 + - Index: 44 + Item: S_Beginner_Shield + Rate: 15 + - Index: 45 + Item: S_Beginner_Shoes + Rate: 15 + - Index: 46 + Item: S_Rookie_Shield + Rate: 15 + - Index: 47 + Item: S_Rookie_Shoes + Rate: 15 + - Index: 48 + Item: S_Advanced_Shield + Rate: 15 + - Index: 49 + Item: S_Advanced_Shoes + Rate: 15 + - Index: 50 + Item: S_Force_Weapon + Rate: 15 + - Index: 51 + Item: S_Force_Earring + Rate: 15 + - Index: 52 + Item: S_Force_Pendant + Rate: 15 + - Index: 53 + Item: S_Spirit_Weapon + Rate: 15 + - Index: 54 + Item: S_Spirit_Earring + Rate: 15 + - Index: 55 + Item: S_Spirit_Pendant + Rate: 15 + - Group: 2015GOLDPCBOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: White_Slim_Potion_B + Rate: 9697 + Amount: 100 + - Index: 1 + Item: E_Str_Dish10_ + Rate: 50 + Amount: 20 + - Index: 2 + Item: E_Agi_Dish10_ + Rate: 50 + Amount: 20 + - Index: 3 + Item: E_Int_Dish10_ + Rate: 50 + Amount: 20 + - Index: 4 + Item: E_Dex_Dish10_ + Rate: 50 + Amount: 20 + - Index: 5 + Item: E_Luk_Dish10_ + Rate: 50 + Amount: 20 + - Index: 6 + Item: E_Vit_Dish10_ + Rate: 50 + Amount: 20 + - Index: 7 + Item: Guarantee_Weapon_7Up + Rate: 1 + - Index: 8 + Item: Guarantee_Armor_7Up + Rate: 1 + - Index: 9 + Item: Golden_Card + Rate: 1 + - Group: ALMIGHTY_BOX4 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Almighty + Amount: 10 + UniqueId: true + - Index: 1 + Item: Sealed_Scroll2 + UniqueId: true + - Group: ALMIGHTY100_BOX2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Almighty + Amount: 100 + UniqueId: true + - Index: 1 + Item: Sealed_Scroll2 + Amount: 11 + UniqueId: true + - Group: SEALED_SCROLL2 + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Sealed_Card + Rate: 10 + Announced: true + - Index: 1 + Item: Guarantee_Weapon_11Up + Rate: 1 + Announced: true + - Index: 2 + Item: Guarantee_Armor_11Up + Rate: 1 + Announced: true + - Index: 3 + Item: Guarantee_Weapon_9Up + Rate: 9 + Announced: true + - Index: 4 + Item: Guarantee_Armor_9Up + Rate: 9 + Announced: true + - Index: 5 + Item: Guarantee_Weapon_7Up + Rate: 125 + Announced: true + - Index: 6 + Item: Guarantee_Armor_7Up + Rate: 125 + Announced: true + - Index: 7 + Item: New_Year_Shadow_Cube + Rate: 250 + Announced: true + - Index: 8 + Item: S_Reload_Shoes + Rate: 500 + - Index: 9 + Item: S_Reload_Shield + Rate: 500 + - Index: 10 + Item: S_Reload_Armor + Rate: 500 + - Index: 11 + Item: Shadow_Cube + Rate: 1500 + - Index: 12 + Item: C_Wing_Of_Fly_5Day_Box + Rate: 470 + - Index: 13 + Item: Poison_Bottle_Box2 + Rate: 1500 + - Index: 14 + Item: C_Wing_Of_Fly_1Day_Box + Rate: 1500 + - Index: 15 + Item: Potion_Box + Rate: 1500 + - Index: 16 + Item: Treasure_Box + Rate: 1500 + Amount: 3 + - Group: INVISIBLE_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: C_Invisible_Manteau + Rate: 1 + - Index: 1 + Item: C_Invisible_Cap + Rate: 3 + - Index: 2 + Item: C_Invisible_Sunglasses + Rate: 3 + - Index: 3 + Item: C_Invisible_Mask + Rate: 3 + - Group: FREEZE_DREAM + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Dream_Piece + Rate: 1 + Amount: 15 + - Index: 1 + Item: Dream_Piece + Rate: 1 + Amount: 16 + - Index: 2 + Item: Dream_Piece + Rate: 1 + Amount: 17 + - Index: 3 + Item: Dream_Piece + Rate: 1 + Amount: 18 + - Index: 4 + Item: Dream_Piece + Rate: 1 + Amount: 19 + - Index: 5 + Item: Dream_Piece + Rate: 1 + Amount: 20 + - Group: LAPINE_DDUKDDAKBOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Shadow_Mix_Recipe + Rate: 375 + - Index: 1 + Item: EnchantStone_Recipe + Rate: 375 + - Index: 2 + Item: EventItem_Recipe + Rate: 450 + - Index: 3 + Item: PetEgg_Recipe + Rate: 150 + - Index: 4 + Item: Nyang_Costume_Recipe + Rate: 150 + - Index: 5 + Item: RaceShadow_Mix + Rate: 1 + Announced: true + - Index: 6 + Item: BearersShadow_Mix + Rate: 1 + Announced: true + - Index: 7 + Item: GemstoneShadow_Mix + Rate: 1 + Announced: true + - Index: 8 + Item: StatusShadow_Mix + Rate: 1 + Announced: true + - Index: 9 + Item: ComposeShadow_Mix + Rate: 1 + Announced: true + - Index: 10 + Item: InfinityShadow_Mix + Rate: 1 + Announced: true + - Index: 11 + Item: PerfectSize_Mix + Rate: 1 + - Index: 12 + Item: MagicPiercing_Mix + Rate: 1 + - Index: 13 + Item: JobShadow_Mix_Pendant + Rate: 1 + Announced: true + - Index: 14 + Item: JobShadow_Mix_Weapon + Rate: 1 + Announced: true + - Index: 15 + Item: JobShadow_Mix_Armor + Rate: 1 + Announced: true + - Index: 16 + Item: JobShadow_Mix_Shoes + Rate: 1 + Announced: true + - Index: 17 + Item: JobShadow_Mix_Shield + Rate: 1 + Announced: true + - Index: 18 + Item: JobShadow_Mix_Earing + Rate: 1 + Announced: true + - SubGroup: 2 + List: + - Index: 0 + Item: Poison_Pack2 + Rate: 10 + - Index: 1 + Item: White_Slim_Pot_Box2 + Rate: 10 + - Index: 2 + Item: E_WOB_Local + Rate: 10 + Amount: 3 + - Index: 3 + Item: E_WOB_Rachel + Rate: 10 + Amount: 3 + - Index: 4 + Item: E_WOB_Schwaltz + Rate: 10 + Amount: 3 + - Index: 5 + Item: E_WOB_Rune + Rate: 10 + Amount: 3 + - Index: 6 + Item: Comp_Battle_Manual + Rate: 10 + Amount: 2 + - Index: 7 + Item: Comp_Bubble_Gum + Rate: 10 + Amount: 2 + - Index: 8 + Item: C_Wing_Of_Fly_1Day_Box + Rate: 10 + - Index: 9 + Item: Minus_Str + Rate: 10 + Amount: 3 + - Index: 10 + Item: Minus_Agi + Rate: 10 + Amount: 3 + - Index: 11 + Item: Minus_Vit + Rate: 10 + Amount: 3 + - Index: 12 + Item: Minus_Int + Rate: 10 + Amount: 3 + - Index: 13 + Item: Minus_Dex + Rate: 10 + Amount: 3 + - Index: 14 + Item: Minus_Luk + Rate: 10 + Amount: 3 + - Index: 15 + Item: Old_C_Album_Helm + Rate: 10 + - Index: 16 + Item: Old_C_Album_Armor + Rate: 10 + - Index: 17 + Item: Old_C_Album_Shield + Rate: 10 + - Index: 18 + Item: Old_C_Album_Garment + Rate: 10 + - Index: 19 + Item: Old_C_Album_Shoes + Rate: 10 + - Index: 20 + Item: Old_C_Album_Acc + Rate: 10 + - Index: 21 + Item: Old_C_Album_Weapon + Rate: 10 + - Index: 22 + Item: C_Greed_1Hour_Box + Rate: 10 + - Index: 23 + Item: J_Shop_Coupon + Rate: 10 + - Index: 24 + Item: Comp_Insurance + Rate: 10 + Amount: 3 + - Index: 25 + Item: Comp_Magic_Candy + Rate: 10 + Amount: 3 + - Index: 26 + Item: Comp_Spark_Candy + Rate: 10 + Amount: 3 + - Group: GUNSLINGER_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Droop_Gunslinger + - Index: 1 + Item: Gunslinger_Enchant + - Group: MINI_FAN_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: SeeOtter_Fan + - Index: 1 + Item: Fan_Upgrade_Kit + - Group: KAFRA_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Kafra_Suit + - Index: 1 + Item: Suit_Upgrade_Kit + - Group: CANDY_BOX_MELEE + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Bag_Of_Antonio_Melee + - Index: 1 + Item: Candy_Bag_Scroll_Melee + - Group: CANDY_BOX_RANGE + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Bag_Of_Antonio_Range + - Index: 1 + Item: Candy_Bag_Scroll_Range + - Group: CANDY_BOX_MAGIC + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Bag_Of_Antonio_Magic + - Index: 1 + Item: Candy_Bag_Scroll_Magic + - Group: BLOODYKNIGHT_SHIELD_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Bloody_Knight_Shield + - Index: 1 + Item: Silver_Statue + - Group: E_WING_OF_FLY_3DAY_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: C_Wing_Of_Fly + Duration: 10080 + - Group: REBEGINER_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Rebeginer_Cap + - Index: 1 + Item: Rebeginer_Manteau + - Index: 2 + Item: Rebeginer_Suits + - Index: 3 + Item: Rebeginer_Boots + - Index: 4 + Item: Rebeginer_Ring + - Group: REBEGINER_S_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Rebeginer_Armor_S + - Index: 1 + Item: Rebeginer_Shield_S + - Index: 2 + Item: Rebeginer_Shoes_S + - Index: 3 + Item: Rebeginer_Weapon_S + - Index: 4 + Item: Rebeginer_Earring_S + - Index: 5 + Item: Rebeginer_Pendant_S + - Group: OVERWHELM_ARMOR_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Overwhelm_Str_Armor + Rate: 1 + - Index: 1 + Item: Overwhelm_Vit_Armor + Rate: 1 + - Index: 2 + Item: Overwhelm_Dex_Armor + Rate: 1 + - Index: 3 + Item: Overwhelm_Int_Armor + Rate: 1 + - Index: 4 + Item: Overwhelm_Agi_Armor + Rate: 1 + - Index: 5 + Item: Overwhelm_Luk_Armor + Rate: 1 + - Group: POWERFUL_HELM_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Dog_Officer + Rate: 1 + - Index: 1 + Item: Spell_Circuit + Rate: 1 + - Index: 2 + Item: General_Helmet_ + Rate: 1 + - Index: 3 + Item: Classical_Fhat + Rate: 1 + - Index: 4 + Item: Amistr_Beret + Rate: 1 + - Group: MYSTERIOUS_PLASTIC + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Comp_M_DEFScroll + Rate: 99 + Amount: 2 + - Index: 1 + Item: G_Almighty + Rate: 99 + - Index: 2 + Item: Comp_Small_Mana_Potion + Rate: 99 + - Index: 3 + Item: E_Med_Life_Potion + Rate: 99 + Amount: 3 + - Index: 4 + Item: E_Small_Life_Potion + Rate: 99 + Amount: 3 + - Index: 5 + Item: G_Mysterious_Water + Rate: 99 + - Index: 6 + Item: E_Token_Of_Siegfried + Rate: 99 + - Index: 7 + Item: Comp_Regenerate_Potion + Rate: 242 + - Index: 8 + Item: E_Abrasive + Rate: 242 + - Index: 9 + Item: G_Red_Booster + Rate: 242 + - Index: 10 + Item: G_ASPD_Potion + Rate: 242 + - Index: 11 + Item: Comp_Spark_Candy + Rate: 242 + - Index: 12 + Item: Comp_Magic_Candy + Rate: 242 + - Index: 13 + Item: Comp_Tyr's_Blessing + Rate: 242 + - Index: 14 + Item: Comp_Glass_Of_Illusion + Rate: 242 + - Index: 15 + Item: E_Blessing_10_Scroll + Rate: 242 + Amount: 3 + - Index: 16 + Item: E_Inc_Agi_10_Scroll + Rate: 242 + Amount: 3 + - Index: 17 + Item: Comp_Megaphone + Rate: 242 + - Index: 18 + Item: BraisedSpareribs + Rate: 950 + Amount: 2 + - Index: 19 + Item: BraisedShortRibs + Rate: 950 + Amount: 2 + - Index: 20 + Item: Sesame_Pastry + Rate: 949 + Amount: 2 + - Index: 21 + Item: Rainbow_Cake + Rate: 949 + Amount: 2 + - Index: 22 + Item: Lucky_Rice_Cake + Rate: 949 + Amount: 2 + - Index: 23 + Item: Honey_Pastry + Rate: 949 + Amount: 2 + - Index: 24 + Item: Blue_Potion_B + Rate: 949 + Amount: 5 + - Group: 80LVUP + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: S_Promotion_Shoes + Rate: 1 + - Index: 1 + Item: S_Promotion_Shield + Rate: 1 + - Index: 2 + Item: S_Promotion_Earring + Rate: 1 + - Index: 3 + Item: S_Promotion_Pendant + Rate: 1 + - Index: 4 + Item: S_Promotion_Armor + Rate: 1 + - Index: 5 + Item: S_Promotion_Weapon + Rate: 1 + - Index: 6 + Item: 90LVUP + Rate: 1 + - Group: JUMPING_KIT_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: White_Slim_Potion_Box + - Index: 1 + Item: Comp_Wing_Of_Fly + Amount: 200 + - Index: 2 + Item: N_Butterfly_Wing + Amount: 50 + - Index: 3 + Item: N_Magnifier + Amount: 50 + - Index: 4 + Item: Ori_Arrow_Container + Amount: 5 + - Index: 5 + Item: Time_Overload_Box + - Group: MAIN_LUCKY_BOX_ + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Sillit_Pong_Box + Rate: 1 + Announced: true + - Index: 1 + Item: High_Refine_Guarantee + Rate: 5 + Announced: true + - Index: 2 + Item: Enchant_Ticket + Rate: 6 + Amount: 2 + Announced: true + - Index: 3 + Item: Shadow_Select_Box_Set + Rate: 3 + Announced: true + - Index: 4 + Item: Mightysoul_Essence + Rate: 9 + Announced: true + - Index: 5 + Item: M_Dimension_Essence + Rate: 9 + Announced: true + - Index: 6 + Item: Refine_Guarantee + Rate: 83 + Announced: true + - Index: 7 + Item: SLD_Boss_Card_Album + Rate: 9 + Announced: true + - Index: 8 + Item: Refine_Hammer_Box + Rate: 20 + Announced: true + - Index: 9 + Item: FateSin_Boots_Hammer + Rate: 10 + Announced: true + - Index: 10 + Item: FateSin_Boots_IG + Rate: 10 + Announced: true + - Index: 11 + Item: FateSin_Boots_AG + Rate: 10 + Announced: true + - Index: 12 + Item: FateSin_Boots_NW + Rate: 10 + Announced: true + - Index: 13 + Item: Heart_Ace_Melee + Rate: 10 + Announced: true + - Index: 14 + Item: Spade_Ace_Melee + Rate: 10 + Announced: true + - Index: 15 + Item: Diamond_Ace_Range + Rate: 10 + Announced: true + - Index: 16 + Item: Clover_Ace_Defense + Rate: 10 + Announced: true + - Index: 17 + Item: aegis_410232 + Rate: 10 + Announced: true + - Index: 18 + Item: Pump_Of_Spirit + Rate: 10 + Announced: true + - Index: 19 + Item: S_Full_Spell_Armor + Rate: 10 + Announced: true + - Index: 20 + Item: S_Full_Spell_Shoes + Rate: 10 + Announced: true + - Index: 21 + Item: S_Centering_Pendant + Rate: 10 + Announced: true + - Index: 22 + Item: S_Centering_Earring + Rate: 10 + Announced: true + - Index: 23 + Item: S_Witty_Pendant + Rate: 10 + Announced: true + - Index: 24 + Item: S_Witty_Earring + Rate: 10 + Announced: true + - Index: 25 + Item: S_M_Spell_Weapon + Rate: 10 + Announced: true + - Index: 26 + Item: S_M_Spell_Shield + Rate: 10 + Announced: true + - Index: 27 + Item: S_Concentration_Weapon + Rate: 10 + Announced: true + - Index: 28 + Item: S_Concentration_Shield + Rate: 10 + Announced: true + - Index: 29 + Item: S_Wisdom_Weapon + Rate: 10 + Announced: true + - Index: 30 + Item: S_Wisdom_Shield + Rate: 10 + Announced: true + - Index: 31 + Item: S_Master_Weapon + Rate: 20 + Announced: true + - Index: 32 + Item: S_Master_Shield + Rate: 20 + Announced: true + - Index: 33 + Item: M_Armor_Box + Rate: 100 + - Index: 34 + Item: M_Shoes_Box + Rate: 100 + - Index: 35 + Item: M_Pendant_Box + Rate: 100 + - Index: 36 + Item: M_Earring_Box + Rate: 100 + - Index: 37 + Item: Blacksmith_Bless_Box_3 + Rate: 30 + Announced: true + - Index: 38 + Item: Shadow_Hammer_Box_3 + Rate: 30 + Announced: true + - Index: 39 + Item: S_Enchant_Essence_Box_3 + Rate: 30 + Announced: true + - Index: 40 + Item: Shadow_Up_Box + Rate: 400 + - Index: 41 + Item: Blacksmith_Blessing + Rate: 395 + - Index: 42 + Item: S_Enchant_Essence + Rate: 180 + - Index: 43 + Item: Loki_Coin + Rate: 30 + Amount: 10 + - Index: 44 + Item: Loki_Advice + Rate: 30 + Amount: 10 + - Index: 45 + Item: Loki_Coin_2 + Rate: 30 + Amount: 10 + - Index: 46 + Item: Loki_Advice_2 + Rate: 30 + Amount: 10 + - Index: 47 + Item: Loki_Coin_3 + Rate: 30 + Amount: 10 + - Index: 48 + Item: Loki_Advice_3 + Rate: 30 + Amount: 10 + - Index: 49 + Item: Loki_Coin_4 + Rate: 30 + Amount: 10 + - Index: 50 + Item: Loki_Advice_4 + Rate: 30 + Amount: 10 + - Index: 51 + Item: Material_Shadow_CubeII + Rate: 150 + - Index: 52 + Item: Shadow_Refine_Hammer + Rate: 390 + - Index: 53 + Item: Skill_Shadow_Cube + Rate: 450 + - Index: 54 + Item: All_Shadow_Cube + Rate: 300 + - Index: 55 + Item: Shadow_R_M_Box_ + Rate: 300 + - Index: 56 + Item: Shadowdecon_Ore_Box + Rate: 400 + - Index: 57 + Item: Zelunium_Ore_Box + Rate: 400 + - Index: 58 + Item: Minus_Status_Box_ + Rate: 400 + - Index: 59 + Item: Poison_Bottle_Box2 + Rate: 400 + - Index: 60 + Item: C_CatPaw_7Day_Box_ + Rate: 400 + - Index: 61 + Item: Alchemist_Box_ + Rate: 400 + - Index: 62 + Item: Ein_Ore_Box + Rate: 400 + - Index: 63 + Item: Fate_Fragment_Box + Rate: 400 + - Index: 64 + Item: Sin_Fragment_Box + Rate: 400 + - Index: 65 + Item: Amethyst_Fragment_Box + Rate: 400 + - Index: 66 + Item: Snow_F_Ore_Box + Rate: 400 + - Index: 67 + Item: C_Wing_Of_Fly_5Day_Box_ + Rate: 400 + - Index: 68 + Item: Lapine_DdukddakBox3 + Rate: 500 + - Index: 69 + Item: Gold + Rate: 500 + Amount: 3 + - Index: 70 + Item: World_Tour_Ticket + Rate: 500 + Amount: 5 + - Group: SILLIT_PONG_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Sillit_Pong_Bottle + - Group: KUNAI_SCROLL_OF_FLAME + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Kunai_Of_Fierce_Flame + Amount: 500 + - Group: KUNAI_SCROLL_OF_ICICLE + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Kunai_Of_Icicle + Amount: 500 + - Group: KUNAI_SCROLL_OF_POISON + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Kunai_Of_Deadly_Poison + Amount: 500 + - Group: KUNAI_SCROLL_OF_SOIL + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Kunai_Of_Black_Soil + Amount: 500 + - Group: KUNAI_SCROLL_OF_WIND + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Kunai_Of_Furious_Wind + Amount: 500 + - Group: C_CATPAW_7DAY_BOX_ + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: C_CatPaw_Ticket + Duration: 10080 + - Group: CANNON_BALL_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Cannon_Ball + Amount: 500 + - Group: IRON_CANNON_BALL_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Iron_Cannon_Ball + Amount: 500 + - Group: SOUL_CANNON_BALL_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Soul_Cannon_Ball + Amount: 500 + - Group: DARK_CANNON_BALL_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Dark_Cannon_Ball + Amount: 500 + - Group: HOLY_CANNON_BALL_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Holy_Cannon_Ball + Amount: 500 + - Group: CANNON_BOX_6 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Liquid_Condensed_Bullet + Amount: 500 + - Group: MAGIC_GEAR_FUEL_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Magic_Gear_Fuel + Amount: 500 + - Group: REPAIRA_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: RepairA + Amount: 500 + - Group: REPAIRB_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: RepairB + Amount: 500 + - Group: REPAIRC_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: RepairC + Amount: 500 + - Group: FLAME_STONE_BUNDLE + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Flame_Stone + Amount: 500 + - Group: ICE_STONE_BUNDLE + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Ice_Stone + Amount: 500 + - Group: WIND_STONE_BUNDLE + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Wind_Stone + Amount: 500 + - Group: SHADOW_ORB_BUNDLE + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Shadow_Orb + Amount: 500 + - Group: CHARM_FIRE_BUNDLE + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Charm_Fire + Amount: 500 + - Group: CHARM_ICE_BUNDLE + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Charm_Ice + Amount: 500 + - Group: CHARM_WIND_BUNDLE + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Charm_Wind + Amount: 500 + - Group: CHARM_EARTH_BUNDLE + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Charm_Earth + Amount: 500 + - Group: KUNAI_SCROLL_EXPLOSIVE + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Explosive_Kunai + Amount: 500 + - Group: GEMSTONE_BLUE + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Blue_Gemstone + Amount: 500 + - Group: GEMSTONE_YL + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Yellow_Gemstone + Amount: 500 + - Group: GEMSTONE_RED + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Red_Gemstone + Amount: 500 + - Group: BULLET_CASE_FULL + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Full_Metal_Jacket + Amount: 500 + - Group: BULLET_CASE_MINE + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Shooting_Mine + Amount: 500 + - Group: BULLET_CASE_TAIL + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Dragon_Tail_Missile + Amount: 500 + - Group: POENETENTIA_BOX3 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Poenitentia_Sol + - Index: 1 + Item: Poenitentia_Jana + - Group: POENETENTIA_BOX4 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Poenitentia_Foramen + - Index: 1 + Item: Poenitentia_Penet + - Index: 2 + Item: Poenitentia_Veloci + - Index: 3 + Item: Poenitentia_Ruina + - Group: CHUSEOG_PRESENT_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Kr_B_Special01 + - Index: 1 + Item: Cachua_Coupon + - Index: 2 + Item: Evt_Cos_Coin + - Group: LI_NYANGVINE_BOX100_2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 100 + - Index: 1 + Item: Cachua_Coupon + Amount: 20 + - Group: BARMUND_RUNE_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Ice_Barmund_Rune + Rate: 10 + Amount: 10 + - Index: 1 + Item: Death_Barmund_Rune + Rate: 10 + Amount: 10 + - Index: 2 + Item: Flame_Barmund_Rune + Rate: 10 + Amount: 10 + - Index: 3 + Item: Plain_Barmund_Rune + Rate: 10 + Amount: 10 + - Group: SEALED_CARD3 + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Sealed_D_Lord_Card + Rate: 10 + - Index: 1 + Item: Sealed_Knight_WS_Card + Rate: 10 + - Index: 2 + Item: Sealed_Berz_Card + Rate: 10 + - Index: 3 + Item: Sealed_Kiel_Card + Rate: 10 + - Index: 4 + Item: Sealed_Gloom_Card + Rate: 10 + - Index: 5 + Item: Sealed_F_Bishop_Card + Rate: 10 + - Index: 6 + Item: Sealed_Ifrit_Card + Rate: 10 + - Index: 7 + Item: Sealed_TurtleG_Card + Rate: 10 + - Index: 8 + Item: Sealed_Bacsojin_Card + Rate: 10 + - Index: 9 + Item: Sealed_Pharaoh_Card + Rate: 10 + - Index: 10 + Item: Sealed_M_Flower_Card + Rate: 10 + - Index: 11 + Item: Sealed_B_Ygnizem_Card + Rate: 10 + - Index: 12 + Item: Sealed_Apocalips_H_Card + Rate: 10 + - Index: 13 + Item: Sealed_Dracula_Card + Rate: 10 + - Index: 14 + Item: Sealed_B_Shecil_Card + Rate: 10 + - Index: 15 + Item: Sealed_Orc_Hero_Card + Rate: 10 + - Index: 16 + Item: Sealed_Lady_Tanee_Card + Rate: 10 + - Index: 17 + Item: Sealed_Samurai_Card + Rate: 10 + - Index: 18 + Item: Sealed_Orc_Load_Card + Rate: 10 + - Index: 19 + Item: Sealed_B_Magaleta_Card + Rate: 10 + - Index: 20 + Item: Sealed_B_Harword_Card + Rate: 10 + - Index: 21 + Item: Sealed_Eddga_Card + Rate: 10 + - Index: 22 + Item: Sealed_Ktullanux_Card + Rate: 10 + - Index: 23 + Item: Sealed_Mistress_Card + Rate: 10 + - Index: 24 + Item: SLD_Q_Scaraba_Card + Rate: 10 + - Index: 25 + Item: SLD_Baphomet_Card + Rate: 10 + - Index: 26 + Item: SLD_Maya_Card + Rate: 10 + - Index: 27 + Item: SLD_Clown_Card + Rate: 10 + - Index: 28 + Item: SLD_Professor_Card + Rate: 10 + - Index: 29 + Item: SLD_Champion_Card + Rate: 10 + - Index: 30 + Item: SLD_Creator_Card + Rate: 10 + - Index: 31 + Item: SLD_Stalker_Card + Rate: 10 + - Index: 32 + Item: SLD_Paladin_Card + Rate: 10 + - Index: 33 + Item: SLD_Gypsy_Card + Rate: 10 + - Index: 34 + Item: SLD_Daehyon_Card + Rate: 10 + - Index: 35 + Item: SLD_Gioia_Card + Rate: 10 + - Index: 36 + Item: SLD_Pyuriel_Card + Rate: 10 + - Index: 37 + Item: SLD_Kades_Card + Rate: 10 + - Index: 38 + Item: SLD_Timeholder_Card + Rate: 10 + - Index: 39 + Item: Sealed_Tao_Card + Rate: 10 + - Group: LI_NYANGVINE_STONE_BOX3 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 200 + - Index: 1 + Item: Enchant_Stone_Box25 + Amount: 5 + - Group: RO_LIVE_SHOP_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: E_Small_Life_Potion + Amount: 30 + - Index: 1 + Item: Comp_Small_Mana_Potion + Amount: 30 + - Index: 2 + Item: E_Med_Life_Potion + Amount: 30 + - Index: 3 + Item: E_Mysterious_Water + Amount: 30 + - Group: RO_LIVE_SHOP_EX_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: E_Small_Life_Potion + Amount: 30 + - Index: 1 + Item: Comp_Small_Mana_Potion + Amount: 30 + - Index: 2 + Item: E_Med_Life_Potion + Amount: 30 + - Index: 3 + Item: E_Mysterious_Water + Amount: 30 + - Index: 4 + Item: Cachua_Coupon + Amount: 10 + - Index: 5 + Item: E_Infinity_Drink + Amount: 20 + - Index: 6 + Item: Comp_Power_Booster + Amount: 20 + - Index: 7 + Item: Comp_Almighty + Amount: 20 + - Group: SEASON_EVT_REWARD_11 + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Royal_Secret_Box + Rate: 30 + Amount: 3 + - Index: 1 + Item: Magic_Card_Album + Rate: 15 + - Index: 2 + Item: Old_Card_Album + Rate: 15 + - Index: 3 + Item: C_Midgarts_Glory + Rate: 25 + - Index: 4 + Item: C_White_Bird_Rose + Rate: 25 + - Index: 5 + Item: C_Pierced_Apple_ + Rate: 25 + - Index: 6 + Item: C_Focus_Beret + Rate: 25 + - Index: 7 + Item: C_Hunters_Dinner + Rate: 25 + - Index: 8 + Item: C_Drooping_Boto + Rate: 25 + - Index: 9 + Item: True_Hunting_9Refine + Rate: 50 + - Index: 10 + Item: Comp_Power_Booster + Rate: 100 + - Index: 11 + Item: Comp_Almighty + Rate: 100 + - Index: 12 + Item: E_Infinity_Drink + Rate: 100 + - Index: 13 + Item: Comp_M_DEFScroll + Rate: 100 + Amount: 3 + - Index: 14 + Item: E_Small_Life_Potion + Rate: 100 + Amount: 3 + - Index: 15 + Item: E_Med_Life_Potion + Rate: 100 + Amount: 3 + - Index: 16 + Item: True_Hunting_Opt_A + Rate: 265 + - Index: 17 + Item: True_Hunting_Opt_B + Rate: 265 + - Index: 18 + Item: aegis_300486 + Rate: 560 + - Index: 19 + Item: aegis_300488 + Rate: 560 + - Index: 20 + Item: aegis_300490 + Rate: 560 + - Index: 21 + Item: aegis_300492 + Rate: 560 + - Index: 22 + Item: aegis_300494 + Rate: 560 + - Index: 23 + Item: aegis_300496 + Rate: 560 + - Index: 24 + Item: aegis_300421 + Rate: 350 + - Index: 25 + Item: aegis_300423 + Rate: 350 + - Index: 26 + Item: aegis_300425 + Rate: 350 + - Index: 27 + Item: Meyer_Card + Rate: 350 + - Index: 28 + Item: Helmut_Card + Rate: 350 + - Index: 29 + Item: Kathryn_Card + Rate: 350 + - Index: 30 + Item: Isaac_Card + Rate: 350 + - Index: 31 + Item: Poe_Card + Rate: 350 + - Index: 32 + Item: Wolf_Card_E + Rate: 350 + - Index: 33 + Item: Nihil_Card + Rate: 350 + - Index: 34 + Item: Agnes_Card + Rate: 350 + - Index: 35 + Item: Jurgen_Card + Rate: 350 + - Index: 36 + Item: Spica_Card + Rate: 350 + - Index: 37 + Item: Kronecker_Card + Rate: 350 + - Index: 38 + Item: Skia_Card + Rate: 350 + - Group: CANNON_BOX_ICE + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Ice_Cannon_Ball + Amount: 500 + - Group: CANNON_BOX_LIGHTNING + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Lightning_Cannon_Ball + Amount: 500 + - Group: CANNON_BOX_STONE + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Stone_Cannon_Ball + Amount: 500 + - Group: CANNON_BOX_FLARE + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Flare_Cannon_Ball + Amount: 500 + - Group: CANNON_BOX_POISONING + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Poisoning_Cannon_Ball + Amount: 500 + - Group: KUNAI_SCROLL + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Kunai + Amount: 500 + - Group: KUNAI_SCROLL_NOTHING + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Kunai_Of_Nothing + Amount: 500 + - Group: KUNAI_SCROLL_SHADOW + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Kunai_Of_Shadow + Amount: 500 + - Group: KUNAI_SCROLL_HAMAYA + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Kunai_Of_Hamaya + Amount: 500 + - Group: NW_GRENADE_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nw_Grenade + Amount: 500 + - Group: SOA_CHARM_BUNDLE + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Soa_Charm + Amount: 500 + - Group: SS_CHARM_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: SS_Charm + Amount: 500 + - Group: SS_CHARM_F_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: SS_Charm_F + Amount: 500 + - Group: SS_CHARM_W_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: SS_Charm_W + Amount: 500 + - Group: SS_CHARM_G_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: SS_Charm_G + Amount: 500 + - Group: SS_CHARM_L_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: SS_Charm_L + Amount: 500 + - Group: PAYMENT_COSTUME_BOX1 + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: C_B_EarWitchHat + Rate: 10 + - Index: 1 + Item: C_Blinking_Eyes_BU + Rate: 10 + - Index: 2 + Item: C_Airy_Two_Side_Up_SV + Rate: 10 + - Index: 3 + Item: C_Magic_Circle_Rainbow + Rate: 10 + - Group: PAYMENT_COSTUME_BOX2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: C_B_EarWitchHat + - Index: 1 + Item: C_Blinking_Eyes_BU + - Index: 2 + Item: C_Airy_Two_Side_Up_SV + - Index: 3 + Item: C_Magic_Circle_Rainbow + - Group: 2021_PROMO_PACKAGE_1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: EXP_Drop_Up_7days + Amount: 4 + - Index: 1 + Item: Premium_Box + - Index: 2 + Item: Nyangvine_Fruit + Amount: 106 + - Index: 3 + Item: World_Tour_Ticket + Amount: 30 + - Index: 4 + Item: K_Secret_Key + Amount: 20 + - Group: 2021_PROMO_PACKAGE_2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: E_Boarding_Halter_Box + - Index: 1 + Item: Max_Weight_Up_Scroll + Amount: 10 + - Index: 2 + Item: Nyangvine_Fruit + Amount: 28 + - Index: 3 + Item: World_Tour_Ticket + Amount: 30 + - Index: 4 + Item: K_Secret_Key + Amount: 20 + - Group: COSTUMEMILEAGE_PACKAGE4 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 100 + - Index: 1 + Item: Evt_Cos_Coin + Amount: 12 + - Index: 2 + Item: Enchant_Stone_Box25 + Amount: 3 + - Group: COSTUMEMILEAGE_PACKAGE5 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 200 + - Index: 1 + Item: Evt_Cos_Coin + Amount: 25 + - Index: 2 + Item: Enchant_Stone_Box25 + Amount: 5 + - Group: COSTUMEMILEAGE_PACKAGE6 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 400 + - Index: 1 + Item: Evt_Cos_Coin + Amount: 50 + - Index: 2 + Item: Enchant_Stone_Box25 + Amount: 10 + - Group: EVT_RAGFES_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Blacksmith_Blessing + Rate: 10 + - Index: 1 + Item: Armor_Stone_2 + Rate: 10 + - Index: 2 + Item: Weapon_Stone_2 + Rate: 10 + - Index: 3 + Item: Comp_Battle_Bubble + Rate: 100 + - Index: 4 + Item: Armor_Stone_1 + Rate: 100 + - Index: 5 + Item: Weapon_Stone_1 + Rate: 100 + - Index: 6 + Item: Shadowdecon + Rate: 100 + - Index: 7 + Item: Zelunium + Rate: 100 + - Index: 8 + Item: E_Infinity_Drink + Rate: 300 + - Index: 9 + Item: Comp_Power_Booster + Rate: 300 + - Index: 10 + Item: Comp_Almighty + Rate: 300 + - Index: 11 + Item: E_Mysterious_Water + Rate: 300 + Amount: 3 + - Index: 12 + Item: E_Med_Life_Potion + Rate: 300 + Amount: 3 + - Index: 13 + Item: E_Small_Life_Potion + Rate: 300 + Amount: 3 + - Index: 14 + Item: Comp_Small_Mana_Potion + Rate: 300 + Amount: 3 + - Index: 15 + Item: Comp_M_DEFScroll + Rate: 300 + Amount: 3 + - Index: 16 + Item: E_Abrasive + Rate: 300 + Amount: 3 + - Index: 17 + Item: Armor_Ore_2 + Rate: 350 + - Index: 18 + Item: Weapon_Ore_2 + Rate: 350 + - Index: 19 + Item: Armor_Ore_1 + Rate: 500 + - Index: 20 + Item: Weapon_Ore_1 + Rate: 500 + - Index: 21 + Item: E_Red_Booster + Rate: 710 + - Index: 22 + Item: Comp_Tyr's_Blessing + Rate: 710 + - Index: 23 + Item: E_Inc_Agi_10_Scroll + Rate: 710 + - Index: 24 + Item: E_Blessing_10_Scroll + Rate: 710 + - Index: 25 + Item: Shadowdecon_Ore + Rate: 740 + Amount: 3 + - Index: 26 + Item: Zelunium_Ore + Rate: 740 + Amount: 3 + - Index: 27 + Item: World_Tour_Ticket + Rate: 750 + - Group: KR_B_SPECIAL08 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: All_In_One_buff_B + - Index: 1 + Item: All_In_One_Healing_B + - Index: 2 + Item: World_Tour_Ticket + Amount: 10 + - Group: KR_B_SPECIAL05 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Comp_Almighty + Amount: 10 + - Index: 1 + Item: Comp_Power_Booster + Amount: 10 + - Index: 2 + Item: World_Tour_Ticket + Amount: 20 + - Index: 3 + Item: Comp_Small_Mana_Potion + Amount: 10 + - Index: 4 + Item: C_Mechanical_Plant_Hat + - Group: SEASON_EVT_REWARD_12 + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Shadow_Refine_Hammer + Rate: 3 + Announced: true + - Index: 1 + Item: Bloody_Dead_Branch + Rate: 10 + Announced: true + - Index: 2 + Item: C_Pure_Love_Muffler + Rate: 50 + - Index: 3 + Item: C_SnowFlake_Tiara + Rate: 50 + - Index: 4 + Item: C_Let_It_Snow + Rate: 50 + - Index: 5 + Item: Comp_Almighty + Rate: 300 + - Index: 6 + Item: Comp_Power_Booster + Rate: 300 + - Index: 7 + Item: E_Small_Life_Potion + Rate: 300 + Amount: 3 + - Index: 8 + Item: E_Med_Life_Potion + Rate: 300 + Amount: 3 + - Index: 9 + Item: Flora_Cookie + Rate: 1600 + Amount: 2 + - Index: 10 + Item: Festi_Cookie + Rate: 1600 + Amount: 2 + - Index: 11 + Item: Winter_Cookie + Rate: 1600 + Amount: 2 + - Index: 12 + Item: Snow_Cookie + Rate: 1600 + Amount: 2 + - Index: 13 + Item: Ice_Candy + Rate: 2137 + Amount: 3 + - Index: 14 + Item: C_Crushed_Snow_Man + Rate: 50 + - Index: 15 + Item: aegis_400373 + Rate: 50 + - Group: SECURITY_CAMPAIGN_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: World_Tour_Ticket + Amount: 30 + - Index: 1 + Item: EXP_Drop_Up_1day + - Index: 2 + Item: Motp_Potion + Amount: 10 + - Group: HERO_HAMMER_PACKAGE_6 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Small_Mana_Potion + Amount: 50 + - Index: 1 + Item: M_DEFScroll + Amount: 300 + - Index: 2 + Item: Mysterious_Water + Amount: 200 + - Index: 3 + Item: Small_Life_Potion + Amount: 200 + - Index: 4 + Item: Med_Life_Potion + Amount: 200 + - Index: 5 + Item: Hero_Weapon_Hammer_6 + - Group: HERO_UP_PACKAGE_6 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Small_Mana_Potion + Amount: 175 + - Index: 1 + Item: M_DEFScroll + Amount: 300 + - Index: 2 + Item: Mysterious_Water + Amount: 200 + - Index: 3 + Item: Small_Life_Potion + Amount: 200 + - Index: 4 + Item: Med_Life_Potion + Amount: 200 + - Index: 5 + Item: Nyangvine_Fruit + Amount: 100 + - Index: 6 + Item: Hero_Weapon_Up_Box_6 + - Group: HERO_TOKEN_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Hero_Token_AG + Rate: 10 + - Index: 1 + Item: Hero_Token_WH + Rate: 10 + - Index: 2 + Item: Hero_Token_IG + Rate: 10 + - Index: 3 + Item: Hero_Token_CD + Rate: 10 + - Index: 4 + Item: Hero_Token_SHC + Rate: 10 + - Index: 5 + Item: Hero_Token_ABC + Rate: 10 + - Index: 6 + Item: Hero_Token_DK + Rate: 10 + - Index: 7 + Item: Hero_Token_BO + Rate: 10 + - Index: 8 + Item: Hero_Token_EM + Rate: 10 + - Index: 9 + Item: Hero_Token_TR + Rate: 10 + - Index: 10 + Item: Hero_Token_MT + Rate: 10 + - Index: 11 + Item: Hero_Token_IQ + Rate: 10 + - Index: 12 + Item: Hero_Token_SS + Rate: 10 + - Index: 13 + Item: Hero_Token_NW + Rate: 10 + - Index: 14 + Item: Hero_Token_SOA + Rate: 10 + - Index: 15 + Item: Hero_Token_SKE + Rate: 10 + - Index: 16 + Item: Hero_Token_SH + Rate: 10 + - Index: 17 + Item: aegis_490220 + Rate: 10 + - Group: JANUARYGIFTBOX_ + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: E_EXP_Drop_Up_7days + - Index: 1 + Item: World_Tour_Ticket + Amount: 5 + - Group: FEBRUARYGIFTBOX_ + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Comp_Neuralizer + - Index: 1 + Item: World_Tour_Ticket + Amount: 10 + - Group: MARCHGIFTBOX_ + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: K_Secret_Key + Amount: 5 + - Index: 1 + Item: World_Tour_Ticket + Amount: 10 + - Group: APRILGIFTBOX_ + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Evt_Cos_Coin + Amount: 5 + - Index: 1 + Item: World_Tour_Ticket + Amount: 10 + - Group: MAYGIFTBOX_ + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Blacksmith_Blessing + Amount: 2 + - Index: 1 + Item: World_Tour_Ticket + Amount: 10 + - Group: JUNEGIFTBOX_ + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Inventory_Ex_Evt + Amount: 4 + - Index: 1 + Item: World_Tour_Ticket + Amount: 10 + - Group: JULYGIFTBOX_ + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Battle_Manual100 + Amount: 3 + - Index: 1 + Item: World_Tour_Ticket + Amount: 10 + - Group: AUGUSTGIFTBOX_ + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: K_Secret_Key + Amount: 5 + - Index: 1 + Item: World_Tour_Ticket + Amount: 10 + - Group: SEPTEMBERGIFTBOX_ + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: E_EXP_Drop_Up_7days + Amount: 2 + - Index: 1 + Item: World_Tour_Ticket + Amount: 10 + - Group: OCTOBERGIFTBOX_ + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Battle_Manual100 + Amount: 3 + - Index: 1 + Item: World_Tour_Ticket + Amount: 10 + - Group: NOVEMBERGIFTBOX_ + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Blacksmith_Blessing + Amount: 2 + - Index: 1 + Item: World_Tour_Ticket + Amount: 10 + - Group: DECEMBERGIFTBOX_ + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: K_Secret_Key + Amount: 5 + - Index: 1 + Item: World_Tour_Ticket + Amount: 10 + - Group: SEASON_EVT_REWARD_1 + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: C_bullhead + Rate: 100 + - Index: 1 + Item: M_Dimension_Essence + Rate: 5 + - Index: 2 + Item: Magic_Card_Album + Rate: 200 + - Index: 3 + Item: Old_Card_Album + Rate: 200 + - Index: 4 + Item: EVT_JAN02KR + Rate: 500 + - Index: 5 + Item: C_Nut_Cracker + Rate: 500 + - Index: 6 + Item: BraisedShortRibs + Rate: 1000 + - Index: 7 + Item: BraisedSpareribs + Rate: 1000 + - Index: 8 + Item: 2009_Rice_Cake_Soup + Rate: 800 + - Index: 9 + Item: Octupus_Leg + Rate: 875 + - Index: 10 + Item: Choco_Tteokguk + Rate: 3520 + - Index: 11 + Item: Comp_Power_Booster + Rate: 300 + - Index: 12 + Item: Comp_Almighty + Rate: 300 + - Index: 13 + Item: E_Small_Life_Potion + Rate: 300 + Amount: 3 + - Index: 14 + Item: E_Med_Life_Potion + Rate: 300 + Amount: 3 + - Index: 15 + Item: C_HwaHoJumJung + Rate: 100 + - Group: 2021_WINTER_EVENT_BOX1 + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: C_Filir_Bag + Rate: 34 + - Index: 1 + Item: C_Silky_Long_SV + Rate: 33 + - Index: 2 + Item: C_Full_Bloom_Hp_Blue + Rate: 33 + - Group: 2021_WINTER_EVENT_BOX2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: C_Filir_Bag + - Index: 1 + Item: C_Silky_Long_SV + - Index: 2 + Item: C_Full_Bloom_Hp_Blue + - Group: ICE_F_STONE_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Ice_F_Stone_Str + Rate: 500 + - Index: 1 + Item: Ice_F_Stone_Dex + Rate: 500 + - Index: 2 + Item: Ice_F_Stone_Agi + Rate: 500 + - Index: 3 + Item: Ice_F_Stone_Int + Rate: 500 + - Index: 4 + Item: Ice_F_Stone_Vit + Rate: 500 + - Index: 5 + Item: Ice_F_Stone_luk + Rate: 500 + - Index: 6 + Item: Ice_F_Stone_Def + Rate: 500 + - Index: 7 + Item: Ice_F_Stone_Mdef + Rate: 500 + - Index: 8 + Item: Ice_F_Stone_Ran + Rate: 125 + - Index: 9 + Item: Ice_F_Stone_War + Rate: 125 + - Index: 10 + Item: Ice_F_Stone_Mag + Rate: 125 + - Index: 11 + Item: Ice_F_Stone_R_Reject + Rate: 75 + - Index: 12 + Item: Ice_F_Stone_Force + Rate: 75 + - Index: 13 + Item: Ice_F_Stone_S_Delay + Rate: 75 + - Index: 14 + Item: Ice_F_Stone_Skill_1 + Rate: 50 + - Index: 15 + Item: Ice_F_Stone_Skill_2 + Rate: 50 + - Index: 16 + Item: Ice_F_Stone_Skill_3 + Rate: 50 + - Index: 17 + Item: Ice_F_Stone_Skill_4 + Rate: 50 + - Index: 18 + Item: Ice_F_Stone_Skill_5 + Rate: 50 + - Index: 19 + Item: Ice_F_Stone_Skill_6 + Rate: 50 + - Index: 20 + Item: Ice_F_Stone_Skill_7 + Rate: 50 + - Index: 21 + Item: Ice_F_Stone_Skill_8 + Rate: 50 + - Index: 22 + Item: Ice_F_Stone_Skill_9 + Rate: 50 + - Index: 23 + Item: Ice_F_Stone_Skill_10 + Rate: 50 + - Index: 24 + Item: Ice_F_Stone_Skill_11 + Rate: 50 + - Index: 25 + Item: Ice_F_Stone_Skill_12 + Rate: 50 + - Index: 26 + Item: Ice_F_Stone_Skill_13 + Rate: 50 + - Index: 27 + Item: Ice_F_Stone_Skill_14 + Rate: 50 + - Index: 28 + Item: Ice_F_Stone_Skill_15 + Rate: 50 + - Index: 29 + Item: Ice_F_Stone_Skill_16 + Rate: 50 + - Index: 30 + Item: Ice_F_Stone_Skill_17 + Rate: 50 + - Index: 31 + Item: Ice_F_Stone_Skill_18 + Rate: 50 + - Index: 32 + Item: Ice_F_Stone_Skill_19 + Rate: 50 + - Index: 33 + Item: Ice_F_Stone_Skill_20 + Rate: 50 + - Index: 34 + Item: Ice_F_Stone_Skill_21 + Rate: 50 + - Index: 35 + Item: Ice_F_Stone_Skill_22 + Rate: 50 + - Index: 36 + Item: Ice_F_Stone_Skill_23 + Rate: 50 + - Index: 37 + Item: Ice_F_Stone_Skill_24 + Rate: 50 + - Index: 38 + Item: Ice_F_Stone_Skill_25 + Rate: 50 + - Index: 39 + Item: Ice_F_Stone_Skill_26 + Rate: 50 + - Index: 40 + Item: Ice_F_Stone_Skill_27 + Rate: 50 + - Index: 41 + Item: Ice_F_Stone_Skill_28 + Rate: 50 + - Index: 42 + Item: Ice_F_Stone_Skill_29 + Rate: 50 + - Index: 43 + Item: Ice_F_Stone_Skill_30 + Rate: 50 + - Index: 44 + Item: Ice_F_Stone_Skill_31 + Rate: 50 + - Index: 45 + Item: Ice_F_Stone_Skill_32 + Rate: 50 + - Index: 46 + Item: Ice_F_Stone_Skill_33 + Rate: 50 + - Index: 47 + Item: Ice_F_Stone_Skill_34 + Rate: 50 + - Index: 48 + Item: Ice_F_Stone_Skill_35 + Rate: 50 + - Index: 49 + Item: Ice_F_Stone_Skill_36 + Rate: 50 + - Index: 50 + Item: Ice_F_Stone_Skill_37 + Rate: 50 + - Index: 51 + Item: Ice_F_Stone_Skill_38 + Rate: 50 + - Index: 52 + Item: Ice_F_Stone_Skill_39 + Rate: 50 + - Index: 53 + Item: Ice_F_Stone_Skill_40 + Rate: 50 + - Index: 54 + Item: Ice_F_Stone_Skill_41 + Rate: 50 + - Index: 55 + Item: Ice_F_Stone_Skill_42 + Rate: 50 + - Index: 56 + Item: Ice_F_Stone_Skill_43 + Rate: 50 + - Index: 57 + Item: Ice_F_Stone_Skill_44 + Rate: 50 + - Index: 58 + Item: Ice_F_Stone_Skill_45 + Rate: 50 + - Index: 59 + Item: Ice_F_Stone_Skill_46 + Rate: 50 + - Index: 60 + Item: Ice_F_Stone_Skill_47 + Rate: 50 + - Index: 61 + Item: Ice_F_Stone_Skill_48 + Rate: 50 + - Index: 62 + Item: Ice_F_Stone_Skill_49 + Rate: 50 + - Index: 63 + Item: Ice_F_Stone_Skill_50 + Rate: 50 + - Index: 64 + Item: Ice_F_Stone_Skill_51 + Rate: 50 + - Index: 65 + Item: Ice_F_Stone_Skill_52 + Rate: 50 + - Index: 66 + Item: Ice_F_Stone_Skill_53 + Rate: 50 + - Index: 67 + Item: Ice_F_Stone_Skill_54 + Rate: 50 + - Index: 68 + Item: Ice_F_Stone_Speed + Rate: 75 + - Index: 69 + Item: Ice_F_Stone_Caster + Rate: 75 + - Index: 70 + Item: Ice_F_Stone_Critical + Rate: 75 + - Index: 71 + Item: Ice_F_Stone_Guide + Rate: 75 + - Index: 72 + Item: Ice_F_Stone_Above + Rate: 50 + - Index: 73 + Item: Ice_F_Stone_P_Full + Rate: 50 + - Index: 74 + Item: Ice_F_Stone_M_Counter + Rate: 50 + - Index: 75 + Item: Ice_F_Stone_Hp + Rate: 250 + - Index: 76 + Item: Ice_F_Stone_Sp + Rate: 250 + - Index: 77 + Item: Ice_F_Stone_Heal + Rate: 250 + - Index: 78 + Item: Ice_F_Stone_Robust + Rate: 100 + - Index: 79 + Item: Ice_F_Stone_F_Cast + Rate: 50 + - Index: 80 + Item: Ice_F_Stone_M_F + Rate: 50 + - Index: 81 + Item: Ice_F_Stone_P_F + Rate: 50 + - Index: 82 + Item: Ice_F_Stone_Un_Vit + Rate: 50 + - Index: 83 + Item: Ice_F_Stone_Sp_Int + Rate: 50 + - Index: 84 + Item: Ice_F_Stone_Fi_Dex + Rate: 50 + - Index: 85 + Item: Ice_F_Stone_Ov_Str + Rate: 50 + - Index: 86 + Item: Ice_F_Stone_Fa_Agi + Rate: 50 + - Index: 87 + Item: Ice_F_Stone_Lu_Luk + Rate: 50 + - Index: 88 + Item: Ice_F_Stone_A_Delay + Rate: 100 + - Index: 89 + Item: Ice_F_Stone_E_Archer + Rate: 100 + - Index: 90 + Item: Ice_F_Stone_Fatal + Rate: 100 + - Index: 91 + Item: Ice_F_Stone_F_Spirit + Rate: 100 + - Index: 92 + Item: Ice_F_Stone_Spell + Rate: 100 + - Index: 93 + Item: Ice_F_Stone_HealHP + Rate: 100 + - Index: 94 + Item: Ice_F_Stone_HealSP + Rate: 100 + - Index: 95 + Item: Ice_F_Stone_Life + Rate: 50 + - Index: 96 + Item: Ice_F_Stone_Soul + Rate: 50 + - Index: 97 + Item: Ice_F_Stone_M_Heal + Rate: 50 + - Index: 98 + Item: Ice_F_Stone_M_Soul + Rate: 50 + - Index: 99 + Item: Ice_F_Stone_A_Force + Rate: 50 + - Group: BS_MAKING_S + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Bs_Item_M_S_2 + Rate: 300 + - Index: 1 + Item: Bs_Item_M_S_8 + Rate: 300 + - Index: 2 + Item: Bs_Item_M_S_10 + Rate: 300 + - Index: 3 + Item: Bs_Item_M_S_11 + Rate: 300 + - Index: 4 + Item: Bs_Item_M_S_34 + Rate: 300 + - Index: 5 + Item: Bs_Item_M_S_41 + Rate: 300 + - Index: 6 + Item: Bs_Item_M_S_42 + Rate: 300 + - Index: 7 + Item: Bs_Item_M_S_43 + Rate: 300 + - Index: 8 + Item: Bs_Item_M_S_44 + Rate: 300 + - Index: 9 + Item: Bs_Sha_M_S_1 + Rate: 300 + - Index: 10 + Item: Bs_Sha_M_S_17 + Rate: 300 + - Index: 11 + Item: Bs_Sha_M_S_18 + Rate: 300 + - Index: 12 + Item: Bs_Sha_M_S_19 + Rate: 300 + - Index: 13 + Item: Bs_Sha_M_S_20 + Rate: 300 + - Index: 14 + Item: Bs_Item_M_S_4 + Rate: 125 + - Index: 15 + Item: Bs_Item_M_S_6 + Rate: 125 + - Index: 16 + Item: Bs_Item_M_S_7 + Rate: 125 + - Index: 17 + Item: Bs_Item_M_S_12 + Rate: 125 + - Index: 18 + Item: Bs_Item_M_S_13 + Rate: 125 + - Index: 19 + Item: Bs_Item_M_S_15 + Rate: 125 + - Index: 20 + Item: Bs_Item_M_S_28 + Rate: 125 + - Index: 21 + Item: Bs_Item_M_S_29 + Rate: 125 + - Index: 22 + Item: Bs_Item_M_S_31 + Rate: 125 + - Index: 23 + Item: Bs_Item_M_S_32 + Rate: 125 + - Index: 24 + Item: Bs_Item_M_S_33 + Rate: 125 + - Index: 25 + Item: Bs_Item_M_S_36 + Rate: 125 + - Index: 26 + Item: Bs_Item_M_S_37 + Rate: 125 + - Index: 27 + Item: Bs_Item_M_S_38 + Rate: 125 + - Index: 28 + Item: Bs_Item_M_S_39 + Rate: 125 + - Index: 29 + Item: Bs_Item_M_S_40 + Rate: 125 + - Index: 30 + Item: Bs_Item_M_S_45 + Rate: 125 + - Index: 31 + Item: Bs_Item_M_S_46 + Rate: 125 + - Index: 32 + Item: Bs_Item_M_S_47 + Rate: 125 + - Index: 33 + Item: Bs_Item_M_S_48 + Rate: 125 + - Index: 34 + Item: Bs_Item_M_S_49 + Rate: 125 + - Index: 35 + Item: Bs_Item_M_S_50 + Rate: 125 + - Index: 36 + Item: Bs_Item_M_S_51 + Rate: 125 + - Index: 37 + Item: Bs_Sha_M_S_2 + Rate: 125 + - Index: 38 + Item: Bs_Sha_M_S_5 + Rate: 125 + - Index: 39 + Item: Bs_Sha_M_S_6 + Rate: 125 + - Index: 40 + Item: Bs_Sha_M_S_7 + Rate: 125 + - Index: 41 + Item: Bs_Sha_M_S_8 + Rate: 125 + - Index: 42 + Item: Bs_Sha_M_S_13 + Rate: 125 + - Index: 43 + Item: Bs_Sha_M_S_15 + Rate: 125 + - Index: 44 + Item: Bs_Sha_M_S_16 + Rate: 125 + - Index: 45 + Item: Bs_Sha_M_S_23 + Rate: 125 + - Index: 46 + Item: Bs_Item_M_S_5 + Rate: 63 + - Index: 47 + Item: Bs_Item_M_S_9 + Rate: 63 + - Index: 48 + Item: Bs_Item_M_S_14 + Rate: 63 + - Index: 49 + Item: Bs_Item_M_S_16 + Rate: 63 + - Index: 50 + Item: Bs_Item_M_S_17 + Rate: 63 + - Index: 51 + Item: Bs_Item_M_S_19 + Rate: 63 + - Index: 52 + Item: Bs_Item_M_S_27 + Rate: 63 + - Index: 53 + Item: Bs_Item_M_S_35 + Rate: 63 + - Index: 54 + Item: Bs_Sha_M_S_9 + Rate: 63 + - Index: 55 + Item: Bs_Sha_M_S_10 + Rate: 63 + - Index: 56 + Item: Bs_Sha_M_S_11 + Rate: 63 + - Index: 57 + Item: Bs_Sha_M_S_21 + Rate: 63 + - Index: 58 + Item: Bs_Sha_M_S_24 + Rate: 63 + - Index: 59 + Item: Bs_Sha_M_S_25 + Rate: 63 + - Index: 60 + Item: Bs_Sha_M_S_22 + Rate: 63 + - Index: 61 + Item: Bs_Item_M_S_1 + Rate: 30 + - Index: 62 + Item: Bs_Item_M_S_3 + Rate: 30 + - Index: 63 + Item: Bs_Item_M_S_18 + Rate: 30 + - Index: 64 + Item: Bs_Item_M_S_20 + Rate: 30 + - Index: 65 + Item: Bs_Item_M_S_21 + Rate: 30 + - Index: 66 + Item: Bs_Item_M_S_22 + Rate: 30 + - Index: 67 + Item: Bs_Item_M_S_23 + Rate: 30 + - Index: 68 + Item: Bs_Item_M_S_24 + Rate: 30 + - Index: 69 + Item: Bs_Item_M_S_25 + Rate: 30 + - Index: 70 + Item: Bs_Item_M_S_26 + Rate: 30 + - Index: 71 + Item: Bs_Item_M_S_30 + Rate: 30 + - Index: 72 + Item: Bs_Sha_M_S_3 + Rate: 30 + - Index: 73 + Item: Bs_Sha_M_S_4 + Rate: 30 + - Index: 74 + Item: Bs_Sha_M_S_12 + Rate: 30 + - Index: 75 + Item: Bs_Sha_M_S_14 + Rate: 30 + - Index: 76 + Item: Bs_Item_M_S_52 + Rate: 110 + - Index: 77 + Item: Bs_Item_M_S_53 + Rate: 110 + - Index: 78 + Item: Bs_Item_M_S_54 + Rate: 33 + - Index: 79 + Item: Bs_Item_M_S_55 + Rate: 33 + - Index: 80 + Item: Bs_Item_M_S_56 + Rate: 14 + - Index: 81 + Item: Bs_Item_M_S_57 + Rate: 15 + - Index: 82 + Item: Bs_Item_M_S_58 + Rate: 15 + - Index: 83 + Item: Bs_Item_M_S_59 + Rate: 15 + - Index: 84 + Item: Bs_Item_M_S_60 + Rate: 15 + - Index: 85 + Item: Bs_Item_M_S_61 + Rate: 15 + - Index: 86 + Item: Bs_Item_M_S_62 + Rate: 15 + - Index: 87 + Item: Bs_Item_M_S_63 + Rate: 15 + - Group: MONTHLY_PACKAGE_1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Small_Life_Potion + Amount: 200 + UniqueId: true + - Index: 1 + Item: Med_Life_Potion + Amount: 200 + UniqueId: true + - Index: 2 + Item: Mysterious_Water + Amount: 200 + UniqueId: true + - Index: 3 + Item: K_Secret_Key + Amount: 5 + - Index: 4 + Item: Blacksmith_Blessing + Amount: 2 + - Index: 5 + Item: Cachua_Coupon + Amount: 10 + - Group: MONTHLY_PACKAGE_2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Small_Life_Potion + Amount: 200 + UniqueId: true + - Index: 1 + Item: Med_Life_Potion + Amount: 200 + UniqueId: true + - Index: 2 + Item: Mysterious_Water + Amount: 200 + UniqueId: true + - Index: 3 + Item: K_Secret_Key + Amount: 10 + - Index: 4 + Item: Blacksmith_Blessing + Amount: 4 + - Index: 5 + Item: Cachua_Coupon + Amount: 20 + - Index: 6 + Item: Infinity_Drink + Amount: 33 + UniqueId: true + - Index: 7 + Item: Almighty + Amount: 33 + UniqueId: true + - Index: 8 + Item: Limit_Power_Booster + Amount: 34 + UniqueId: true + - Group: MONTHLY_PACKAGE_3 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Small_Life_Potion + Amount: 200 + UniqueId: true + - Index: 1 + Item: Med_Life_Potion + Amount: 200 + UniqueId: true + - Index: 2 + Item: Mysterious_Water + Amount: 200 + UniqueId: true + - Index: 3 + Item: K_Secret_Key + Amount: 15 + - Index: 4 + Item: Blacksmith_Blessing + Amount: 6 + - Index: 5 + Item: Cachua_Coupon + Amount: 30 + - Index: 6 + Item: Infinity_Drink + Amount: 33 + UniqueId: true + - Index: 7 + Item: Almighty + Amount: 33 + UniqueId: true + - Index: 8 + Item: Limit_Power_Booster + Amount: 34 + UniqueId: true + - Index: 9 + Item: Small_Mana_Potion + Amount: 50 + UniqueId: true + - Index: 10 + Item: M_DEFScroll + Amount: 300 + UniqueId: true + - Group: MONTHLY_BUFF_PACKAGE + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 6 + - Index: 1 + Item: Premium_Box + - Index: 2 + Item: EXP_Drop_Up_7days + - Index: 3 + Item: K_Secret_Key + Amount: 10 + - Group: MONTHLY_BATTLE_PACKAGE + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Battle_Manual + Amount: 12 + UniqueId: true + - Index: 1 + Item: Mental_Potion + Amount: 8 + UniqueId: true + - Index: 2 + Item: K_Secret_Key + Amount: 10 + - Group: MD_AIRBOAT_EXPBOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: MD_Airboat_Bexp + Rate: 10000 + Amount: 10 + - Group: ENCHANT_TICKET_3 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Enchant_Ticket + Amount: 3 + - Group: FAN_GREED_1HOUR_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: C_Greed_Scroll + Duration: 60 + UniqueId: true + - Group: KAKAO_PLUS_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: C_KAKAO_Sky_Hat + - Index: 1 + Item: Kr_B_Special01 + - Index: 2 + Item: E_Life_Potion_Pack + - Index: 3 + Item: E_DEF_Scroll_Box + - Index: 4 + Item: C_Wing_Of_Fly_3Day_B__ + Duration: 20160 + - Group: COSTUMEMILEPACK_27_1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 100 + - Index: 1 + Item: Evt_Cos_Coin + Amount: 12 + - Index: 2 + Item: aegis_101416 + Amount: 3 + - Group: COSTUMEMILEPACK_27_2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 200 + - Index: 1 + Item: Evt_Cos_Coin + Amount: 25 + - Index: 2 + Item: aegis_101416 + Amount: 5 + - Group: COSTUMEMILEPACK_27_3 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 400 + - Index: 1 + Item: Evt_Cos_Coin + Amount: 50 + - Index: 2 + Item: aegis_101416 + Amount: 10 + - Group: P_BOOSTER230_GIFT + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: C_Cons_Of_Light_Dark + Rate: 100 + - Index: 1 + Item: C_Seraphim_Wing_TW + Rate: 1000 + - Index: 2 + Item: C_Wing_Of_Angel_Move_RD + Rate: 250 + - Index: 3 + Item: C_Wing_Of_Angel_Move + Rate: 250 + - Index: 4 + Item: C_Wing_Of_Angel_Move_BK + Rate: 250 + - Index: 5 + Item: C_Wing_Of_Angel_Move_GD + Rate: 250 + - Index: 6 + Item: C_Twinkle_Twin_B + Rate: 700 + - Index: 7 + Item: C_Long_Wave_BD + Rate: 700 + - Index: 8 + Item: C_Long_Wave_SV + Rate: 700 + - Index: 9 + Item: C_Fluffy_Semi_Long_SV + Rate: 700 + - Index: 10 + Item: C_Miyabi_Long_Hair_LPP + Rate: 700 + - Index: 11 + Item: C_Miyabi_Long_Hair + Rate: 700 + - Index: 12 + Item: C_Fairy_Long_CB + Rate: 700 + - Index: 13 + Item: C_Airy_Two_Side_Up_BD + Rate: 1000 + - Index: 14 + Item: C_Notation_Hairband + Rate: 1000 + - Index: 15 + Item: C_Clinging_Doram_2 + Rate: 1000 + - Group: BOOSTER230_GIFT + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: C_Wing_Of_Angel_Move_RD + Rate: 50 + - Index: 1 + Item: C_Twinkle_Twin_B + Rate: 50 + - Index: 2 + Item: C_Notation_Hairband + Rate: 50 + - Index: 3 + Item: C_Clinging_Doram_2 + Rate: 50 + - Index: 4 + Item: C_Love_Guard + Rate: 50 + - Index: 5 + Item: C_Long_Ribbon + Rate: 50 + - Index: 6 + Item: C_Isabella_Brown_Ear + Rate: 50 + - Index: 7 + Item: C_Drops_Muffler + Rate: 50 + - Index: 8 + Item: C_Eremes_Scarf_BU + Rate: 50 + - Index: 9 + Item: C_ZombieMask + Rate: 50 + - Index: 10 + Item: C_Suit_Sollar + Rate: 50 + - Index: 11 + Item: C_Lovely_Ribbon_Hair + Rate: 50 + - Index: 12 + Item: C_Nobility_Hat + Rate: 50 + - Index: 13 + Item: C_Bubble_A_Angel_H + Rate: 50 + - Index: 14 + Item: C_Mob_Scarf + Rate: 50 + - Index: 15 + Item: C_Garden_Of_Eden + Rate: 50 + - Index: 16 + Item: C_Fluffy_Angel_Cape + Rate: 50 + - Index: 17 + Item: C_VesperHeadGear + Rate: 50 + - Index: 18 + Item: C_Adv_Whisper_Mask_J + Rate: 50 + - Index: 19 + Item: C_Male_Poring_Earmuff + Rate: 50 + - Index: 20 + Item: C_Leopard_Ear_Hat + Rate: 50 + - Index: 21 + Item: C_Misty_Ears + Rate: 50 + - Index: 22 + Item: C_Mech_Feather_Hairband + Rate: 50 + - Group: BOOSTER_CALL_PACKAGE + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Booster_Call + - Index: 1 + Item: Booster_Pack_1 + - Index: 2 + Item: Booster_Hat_Box + - Index: 3 + Item: Booster_Back_Box + - Index: 4 + Item: Reset_Stat_Ticket + Amount: 5 + - Index: 5 + Item: Reset_Skill_Ticket + Amount: 5 + - Group: E_BOARDING_HALTER_BOX2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Boarding_Halter + - Group: VIVA_ADUL_HAT_BOX_11 + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Viva_Adul_Hat_WL1 + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 1 + Item: Viva_Adul_Hat_WL2 + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 2 + Item: Viva_Adul_Hat_SR1 + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 3 + Item: Viva_Adul_Hat_SR2 + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 4 + Item: Viva_Adul_Hat_AB1 + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 5 + Item: Viva_Adul_Hat_AB2 + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 6 + Item: Viva_Adul_Hat_SC1 + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 7 + Item: Viva_Adul_Hat_SC2 + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 8 + Item: Viva_Adul_Hat_RA1 + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 9 + Item: Viva_Adul_Hat_RA2 + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 10 + Item: Viva_Adul_Hat_LG1 + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 11 + Item: Viva_Adul_Hat_LG2 + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 12 + Item: Viva_Adul_Hat_GC1 + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 13 + Item: Viva_Adul_Hat_GC2 + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 14 + Item: Viva_Adul_Hat_SO1 + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 15 + Item: Viva_Adul_Hat_SO2 + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 16 + Item: Viva_Adul_Hat_RK1 + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 17 + Item: Viva_Adul_Hat_RK2 + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 18 + Item: Viva_Adul_Hat_WM1 + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 19 + Item: Viva_Adul_Hat_WM2 + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 20 + Item: Viva_Adul_Hat_NC1 + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 21 + Item: Viva_Adul_Hat_NC2 + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 22 + Item: Viva_Adul_Hat_GN1 + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 23 + Item: Viva_Adul_Hat_GN2 + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 24 + Item: Viva_Adul_Hat_KO1 + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 25 + Item: Viva_Adul_Hat_KO2 + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 26 + Item: Viva_Adul_Hat_RL1 + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 27 + Item: Viva_Adul_Hat_RL2 + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 28 + Item: Viva_Adul_Hat_SP1 + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 29 + Item: Viva_Adul_Hat_SP2 + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 30 + Item: Viva_Adul_Hat_SJ1 + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 31 + Item: Viva_Adul_Hat_SJ2 + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 32 + Item: Viva_Adul_Hat_SU1 + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 33 + Item: Viva_Adul_Hat_SU2 + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Group: EVT_MAKINGMATERIALS_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Death_Barmund_Rune + Rate: 1250 + - Index: 1 + Item: Ice_Barmund_Rune + Rate: 1250 + - Index: 2 + Item: Flame_Barmund_Rune + Rate: 1250 + - Index: 3 + Item: Plain_Barmund_Rune + Rate: 1250 + - Index: 4 + Item: Spell_Of_Time + Rate: 1250 + - Index: 5 + Item: Gray_Shard + Rate: 1250 + Amount: 10 + - Index: 6 + Item: ClockTower_Gear + Rate: 1250 + Amount: 10 + - Index: 7 + Item: Pieces_Of_Grudge + Rate: 1250 + Amount: 10 + - Group: LI_NYANGVINE_BOX1_28 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 100 + - Index: 1 + Item: aegis_101675 + Amount: 2 + - Index: 2 + Item: Comp_Bubble_Gum + Amount: 3 + - Group: LI_NYANGVINE_BOX2_28 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 200 + - Index: 1 + Item: Battle_Manual100 + Amount: 2 + - Index: 2 + Item: aegis_101675 + Amount: 5 + - Group: LI_NYANGVINE_BOX3_28 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 400 + - Index: 1 + Item: Comp_Bubble_Gum + Amount: 5 + - Index: 2 + Item: Battle_Manual100 + Amount: 5 + - Index: 3 + Item: aegis_101675 + Amount: 10 + - Group: EVT_20TH_WHITEGOLD + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Evt_20th_Letter + Amount: 3 + - Index: 1 + Item: Shadow_Hammer_Box_3 + - Index: 2 + Item: Kr_B_Special01 + Amount: 3 + - Index: 3 + Item: Enchant_Ticket + - Index: 4 + Item: Blacksmith_Bless_Box_3 + - Index: 5 + Item: Pet_Coin + Amount: 50 + - Group: EVT_20TH_GOLD + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Evt_20th_Letter + Amount: 2 + - Index: 1 + Item: Shadow_Refine_Hammer + - Index: 2 + Item: Kr_B_Special01 + - Index: 3 + Item: Blacksmith_Blessing + - Index: 4 + Item: Pet_Coin + Amount: 30 + - Group: EVT_20TH_SILVER + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Evt_20th_Letter + - Index: 1 + Item: Battle_Manual100 + Amount: 2 + - Index: 2 + Item: Shadow_R_M_Box_ + Amount: 6 + - Index: 3 + Item: Pet_Coin + Amount: 20 + - Group: EVT_20TH_BRONZE + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Battle_Manual100 + - Index: 1 + Item: Shadow_R_M_Box_ + Amount: 2 + - Index: 2 + Item: Pet_Coin + Amount: 10 + - Group: EVT_20TH_RETURN + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: E_Infinity_Drink + Amount: 20 + - Index: 1 + Item: Comp_Power_Booster + Amount: 20 + - Index: 2 + Item: Comp_Almighty + Amount: 20 + - Index: 3 + Item: Comp_Small_Mana_Potion + Amount: 20 + - Group: EVT_20TH_RETURN2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: K_Secret_Key + Amount: 5 + - Index: 1 + Item: E_Infinity_Drink + Amount: 30 + - Index: 2 + Item: Comp_Power_Booster + Amount: 30 + - Index: 3 + Item: Comp_Almighty + Amount: 30 + - Index: 4 + Item: Comp_Small_Mana_Potion + Amount: 30 + - Index: 5 + Item: Comp_Neuralizer + - Group: E_CLOTH_DYE_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Clothing_Dye_Coupon + - Index: 1 + Item: Clothing_Dye_Coupon2 + - Group: PLAIN_RUNE_BOX5 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Plain_Barmund_Rune2 + Amount: 5 + - Group: FLAME_RUNE_BOX5 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Flame_Barmund_Rune2 + Amount: 5 + - Group: ICE_RUNE_BOX5 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Ice_Barmund_Rune2 + Amount: 5 + - Group: DEATH_RUNE_BOX5 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Death_Barmund_Rune2 + Amount: 5 + - Group: RO_FESTIVAL_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: C_Melody_Wing + - Index: 1 + Item: Kr_B_Special01 + - Index: 2 + Item: E_Life_Potion_Pack + - Index: 3 + Item: E_DEF_Scroll_Box + - Index: 4 + Item: C_Wing_Of_Fly_3Day_B__ + Duration: 20160 + - Group: SERVICE1_M_01_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Service30_M_01_Call + Duration: 1440 + - Group: SERVICE1_M_05_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Service30_M_01_Call + Duration: 7200 + - Group: SERVICE1_M_07_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Service30_M_01_Call + Duration: 10080 + - Group: SERVICE1_M_10_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Service30_M_01_Call + Duration: 14400 + - Group: SERVICE1P_M_01_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Service30P_M_01_Call + Duration: 1440 + - Group: SERVICE1P_M_05_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Service30P_M_01_Call + Duration: 7200 + - Group: SERVICE1P_M_07_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Service30P_M_01_Call + Duration: 10080 + - Group: SERVICE1P_M_10_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Service30P_M_01_Call + Duration: 14400 + - Group: SERVICE1_F_01_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Service30_F_01_Call + Duration: 1440 + - Group: SERVICE1_F_05_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Service30_F_01_Call + Duration: 7200 + - Group: SERVICE1_F_07_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Service30_F_01_Call + Duration: 10080 + - Group: SERVICE1_F_10_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Service30_F_01_Call + Duration: 14400 + - Group: SERVICE1P_F_01_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Service30P_F_01_Call + Duration: 1440 + - Group: SERVICE1P_F_05_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Service30P_F_01_Call + Duration: 7200 + - Group: SERVICE1P_F_07_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Service30P_F_01_Call + Duration: 10080 + - Group: SERVICE1P_F_10_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Service30P_F_01_Call + Duration: 14400 + - Group: R_BEARERS_EARRING_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: S_R_Bearers_Earring + Rate: 40 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_R_Bearers_Earring + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_R_Bearers_Earring + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_R_Bearers_Earring + Rate: 10 + RefineMinimum: 10 + RefineMaximum: 10 + - Group: R_BEARERS_PENDANT_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: S_R_Bearers_Pendant + Rate: 40 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_R_Bearers_Pendant + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_R_Bearers_Pendant + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_R_Bearers_Pendant + Rate: 10 + RefineMinimum: 10 + RefineMaximum: 10 + - Group: R_BEARERS_ARMOR_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: S_R_Bearers_Armor + Rate: 40 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_R_Bearers_Armor + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_R_Bearers_Armor + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_R_Bearers_Armor + Rate: 10 + RefineMinimum: 10 + RefineMaximum: 10 + - Group: R_BEARERS_SHOES_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: S_R_Bearers_Shoes + Rate: 40 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_R_Bearers_Shoes + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_R_Bearers_Shoes + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_R_Bearers_Shoes + Rate: 10 + RefineMinimum: 10 + RefineMaximum: 10 + - Group: HASTY_WEAPON_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: S_Hasty_Weapon + Rate: 40 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_Hasty_Weapon + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_Hasty_Weapon + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_Hasty_Weapon + Rate: 10 + RefineMinimum: 10 + RefineMaximum: 10 + - Group: HASTY_SHIELD_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: S_Hasty_Shield + Rate: 40 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_Hasty_Shield + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_Hasty_Shield + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_Hasty_Shield + Rate: 10 + RefineMinimum: 10 + RefineMaximum: 10 + - Group: S_RELOAD_SHIELD_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: S_S_Reload_Shield + Rate: 40 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_S_Reload_Shield + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_S_Reload_Shield + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_S_Reload_Shield + Rate: 10 + RefineMinimum: 10 + RefineMaximum: 10 + - Group: RO_ARENA_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: C_Star_Eyepatch + - Index: 1 + Item: Kr_B_Special07 + - Index: 2 + Item: E_Life_Potion_Pack + - Index: 3 + Item: E_DEF_Scroll_Box + - Index: 4 + Item: C_Wing_Of_Fly_3Day_B__ + Duration: 20160 + - Group: RO_ARENA_BOX2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: E_Mysterious_Water + Amount: 10 + - Index: 1 + Item: E_Small_Life_Potion + Amount: 10 + - Index: 2 + Item: E_Med_Life_Potion + Amount: 10 + - Index: 3 + Item: Comp_Small_Mana_Potion + Amount: 10 + - Index: 4 + Item: Comp_M_DEFScroll + Amount: 10 + - Index: 5 + Item: Comp_Almighty + Amount: 10 + - Index: 6 + Item: Comp_Power_Booster + Amount: 10 + - Index: 7 + Item: E_Infinity_Drink + Amount: 10 + - Index: 8 + Item: Comp_Battle_Bubble + Amount: 3 + - Group: HEROSRIA_GIFT + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: C_Fire_Giant_Gold + Rate: 2 + Announced: true + - Index: 1 + Item: Dimmension_Jewel + Rate: 1 + Announced: true + - Index: 2 + Item: Dimmension_Jewelry + Rate: 1 + Announced: true + - Index: 3 + Item: Herosria_Jewel + Rate: 1 + Announced: true + - Index: 4 + Item: Dimmen_Jewel_Fragment + Rate: 10 + - Index: 5 + Item: Dimm_Jewelry_Fragment + Rate: 10 + - Index: 6 + Item: Herosria_Jewel_Fragment + Rate: 10 + - Index: 7 + Item: Under_Seal_D_Key + Rate: 10 + - Index: 8 + Item: Under_Seal_D_Padlock + Rate: 10 + - Index: 9 + Item: Under_Seal_D_keyring + Rate: 10 + - Index: 10 + Item: Heros_Gold_Bar + Rate: 100 + - Index: 11 + Item: Heros_Silver_Bar + Rate: 200 + - Index: 12 + Item: Heros_Copper_Bar + Rate: 300 + - Index: 13 + Item: Heros_Iron_Bar + Rate: 600 + - Index: 14 + Item: Heros_Ruby + Rate: 103 + - Index: 15 + Item: Heros_Topaz + Rate: 103 + - Index: 16 + Item: Heros_Sapphire + Rate: 103 + - Index: 17 + Item: Heros_Emerald + Rate: 103 + - Index: 18 + Item: Heros_Diamond + Rate: 103 + - Index: 19 + Item: Heros_White_H_Powder + Rate: 150 + Amount: 50 + - Index: 20 + Item: Heros_White_H_Powder + Rate: 250 + Amount: 30 + - Index: 21 + Item: Heros_White_H_Powder + Rate: 500 + Amount: 10 + - Index: 22 + Item: Heros_Blue_H_Powder + Rate: 200 + Amount: 50 + - Index: 23 + Item: Heros_Blue_H_Powder + Rate: 300 + Amount: 30 + - Index: 24 + Item: Heros_Blue_H_Powder + Rate: 600 + Amount: 10 + - Index: 25 + Item: Heros_Yellow_H_Powder + Rate: 350 + Amount: 50 + - Index: 26 + Item: Heros_Yellow_H_Powder + Rate: 450 + Amount: 30 + - Index: 27 + Item: Heros_Yellow_H_Powder + Rate: 900 + Amount: 10 + - Index: 28 + Item: Heros_Red_H_Powder + Rate: 500 + Amount: 50 + - Index: 29 + Item: Heros_Red_H_Powder + Rate: 600 + Amount: 30 + - Index: 30 + Item: Heros_Red_H_Powder + Rate: 1200 + Amount: 10 + - Index: 31 + Item: White_Gold_Bullion + Rate: 70 + Amount: 3 + - Index: 32 + Item: White_Gold_Bullion + Rate: 200 + Amount: 2 + - Index: 33 + Item: White_Gold_Bullion + Rate: 600 + - Index: 34 + Item: Gold_Bullion + Rate: 150 + Amount: 3 + - Index: 35 + Item: Gold_Bullion + Rate: 400 + Amount: 2 + - Index: 36 + Item: Gold_Bullion + Rate: 800 + - Index: 37 + Item: Heros_Gold_Bar + Rate: 30 + - Index: 38 + Item: Heros_Silver_Bar + Rate: 30 + - Index: 39 + Item: Heros_Copper_Bar + Rate: 30 + - Index: 40 + Item: Heros_Iron_Bar + Rate: 30 + - Index: 41 + Item: Heros_Gold_Ore + Rate: 150 + Amount: 7 + - Index: 42 + Item: Heros_Silver_Ore + Rate: 200 + Amount: 7 + - Index: 43 + Item: Heros_Copper_Ore + Rate: 250 + Amount: 7 + - Index: 44 + Item: Heros_Iron_Ore + Rate: 350 + Amount: 7 + - Index: 45 + Item: Heros_Gold_Ore + Rate: 200 + Amount: 5 + - Index: 46 + Item: Heros_Silver_Ore + Rate: 300 + Amount: 5 + - Index: 47 + Item: Heros_Copper_Ore + Rate: 400 + Amount: 5 + - Index: 48 + Item: Heros_Iron_Ore + Rate: 600 + Amount: 5 + - Index: 49 + Item: Heros_Gold_Ore + Rate: 800 + Amount: 3 + - Index: 50 + Item: Heros_Silver_Ore + Rate: 1100 + Amount: 3 + - Index: 51 + Item: Heros_Copper_Ore + Rate: 1400 + Amount: 3 + - Index: 52 + Item: Heros_Iron_Ore + Rate: 2900 + Amount: 3 + - Index: 53 + Item: White_Gold_Bullion + Rate: 415 + - Index: 54 + Item: Gold_Bullion + Rate: 815 + - SubGroup: 2 + List: + - Index: 0 + Item: Heros_Ruby + Rate: 30 + - Index: 1 + Item: Heros_Topaz + Rate: 30 + - Index: 2 + Item: Heros_Sapphire + Rate: 30 + - Index: 3 + Item: Heros_Emerald + Rate: 30 + - Index: 4 + Item: Heros_Diamond + Rate: 30 + - Index: 5 + Item: Heros_Ruby_Ore + Rate: 150 + Amount: 7 + - Index: 6 + Item: Heros_Topaz_Ore + Rate: 150 + Amount: 7 + - Index: 7 + Item: Heros_Sapphire_Ore + Rate: 150 + Amount: 7 + - Index: 8 + Item: Heros_Emerald_Ore + Rate: 150 + Amount: 7 + - Index: 9 + Item: Heros_Diamond_Ore + Rate: 150 + Amount: 7 + - Index: 10 + Item: Heros_Ruby_Ore + Rate: 300 + Amount: 5 + - Index: 11 + Item: Heros_Topaz_Ore + Rate: 300 + Amount: 5 + - Index: 12 + Item: Heros_Sapphire_Ore + Rate: 300 + Amount: 5 + - Index: 13 + Item: Heros_Emerald_Ore + Rate: 300 + Amount: 5 + - Index: 14 + Item: Heros_Diamond_Ore + Rate: 300 + Amount: 5 + - Index: 15 + Item: Heros_Ruby_Ore + Rate: 500 + Amount: 3 + - Index: 16 + Item: Heros_Topaz_Ore + Rate: 500 + Amount: 3 + - Index: 17 + Item: Heros_Sapphire_Ore + Rate: 500 + Amount: 3 + - Index: 18 + Item: Heros_Emerald_Ore + Rate: 500 + Amount: 3 + - Index: 19 + Item: Heros_Diamond_Ore + Rate: 500 + Amount: 3 + - Index: 20 + Item: Heros_Ruby_Ore + Rate: 800 + Amount: 2 + - Index: 21 + Item: Heros_Topaz_Ore + Rate: 800 + Amount: 2 + - Index: 22 + Item: Heros_Sapphire_Ore + Rate: 800 + Amount: 2 + - Index: 23 + Item: Heros_Emerald_Ore + Rate: 800 + Amount: 2 + - Index: 24 + Item: Heros_Diamond_Ore + Rate: 800 + Amount: 2 + - Index: 25 + Item: White_Gold_Bullion + Rate: 300 + - Index: 26 + Item: Gold_Bullion + Rate: 800 + - Group: MAUTOSPELL_EARRING_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: S_M_AutoSpell_Earring + Rate: 40 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_M_AutoSpell_Earring + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_M_AutoSpell_Earring + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_M_AutoSpell_Earring + Rate: 10 + RefineMinimum: 10 + RefineMaximum: 10 + - Group: MAUTOSPELL_PENDANT_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: S_M_AutoSpell_Pendant + Rate: 40 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_M_AutoSpell_Pendant + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_M_AutoSpell_Pendant + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_M_AutoSpell_Pendant + Rate: 10 + RefineMinimum: 10 + RefineMaximum: 10 + - Group: MAUTOSPELL_ARMOR_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: S_M_AutoSpell_Armor + Rate: 40 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_M_AutoSpell_Armor + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_M_AutoSpell_Armor + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_M_AutoSpell_Armor + Rate: 10 + RefineMinimum: 10 + RefineMaximum: 10 + - Group: MAUTOSPELL_SHOES_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: S_M_AutoSpell_Shoes + Rate: 40 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_M_AutoSpell_Shoes + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_M_AutoSpell_Shoes + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_M_AutoSpell_Shoes + Rate: 10 + RefineMinimum: 10 + RefineMaximum: 10 + - Group: INFINITY_WEAPON_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: S_Infinity_Weapon + Rate: 40 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_Infinity_Weapon + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_Infinity_Weapon + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_Infinity_Weapon + Rate: 10 + RefineMinimum: 10 + RefineMaximum: 10 + - Group: INFINITY_SHIELD_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: S_Infinity_Shield + Rate: 40 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_Infinity_Shield + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_Infinity_Shield + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_Infinity_Shield + Rate: 10 + RefineMinimum: 10 + RefineMaximum: 10 + - Group: VR_BOOK_EVENT + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: VR_Reading_Card + Rate: 320 + - Index: 1 + Item: VR_Bookmark + Rate: 320 + - Index: 2 + Item: VR_Navi_Sticker + Rate: 312 + - Index: 3 + Item: VR_Book_Tracker + Rate: 312 + - Index: 4 + Item: VR_Wristband + Rate: 312 + - Index: 5 + Item: VR_Metal_Cube + Rate: 312 + - Index: 6 + Item: VR_Heart_Cookie + Rate: 312 + - Index: 7 + Item: VR_Mini_Cannon_Kit + Rate: 312 + - Index: 8 + Item: VR_4leaf_Bookmark + Rate: 312 + - Index: 9 + Item: VR_Note_Pen + Rate: 312 + - Index: 10 + Item: VR_Knights_Badge + Rate: 312 + - Index: 11 + Item: VR_Orange_Chocolate + Rate: 312 + - Index: 12 + Item: VR_Tea_Set + Rate: 312 + - Index: 13 + Item: VR_Capitolina_Candy + Rate: 312 + - Index: 14 + Item: VR_Sealing_Bandage + Rate: 312 + - Index: 15 + Item: VR_Kntcmds_Portrait + Rate: 312 + - Index: 16 + Item: VR_Bloody_Sword + Rate: 312 + - Index: 17 + Item: VR_Old_Dagger + Rate: 312 + - Index: 18 + Item: VR_Abyss_Mirror + Rate: 312 + - Index: 19 + Item: VR_Fork_Spoon + Rate: 312 + - Index: 20 + Item: VR_Sloppy_Glasses + Rate: 312 + - Index: 21 + Item: VR_Old_Tie + Rate: 312 + - Index: 22 + Item: VR_Nyllems_Handmirror + Rate: 312 + - Index: 23 + Item: VR_Tiny_Jellopy + Rate: 312 + - Index: 24 + Item: VR_Bite_Apple + Rate: 312 + - Index: 25 + Item: VR_Clover_Ring + Rate: 312 + - Index: 26 + Item: VR_BlackTea_Tin + Rate: 312 + - Index: 27 + Item: VR_Candy_Pile + Rate: 312 + - Index: 28 + Item: aegis_1000998 + Rate: 312 + - Index: 29 + Item: VR_Stress_Jelly + Rate: 312 + - Index: 30 + Item: VR_Creatura_Doll + Rate: 312 + - Index: 31 + Item: aegis_1001071 + Rate: 312 + - Group: LI_NYANGVINE_BOX1_29 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 100 + - Index: 1 + Item: aegis_101876 + Amount: 2 + - Index: 2 + Item: Comp_Bubble_Gum + Amount: 3 + - Group: LI_NYANGVINE_BOX2_29 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 200 + - Index: 1 + Item: Battle_Manual100 + Amount: 2 + - Index: 2 + Item: aegis_101876 + Amount: 5 + - Group: LI_NYANGVINE_BOX3_29 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 400 + - Index: 1 + Item: Comp_Bubble_Gum + Amount: 5 + - Index: 2 + Item: Battle_Manual100 + Amount: 5 + - Index: 3 + Item: aegis_101876 + Amount: 10 + - Group: EXP_WEAPON_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: S_EXP_Weapon + Rate: 40 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_EXP_Weapon + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_EXP_Weapon + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_EXP_Weapon + Rate: 10 + RefineMinimum: 10 + RefineMaximum: 10 + - Group: EXP_SHIELD_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: S_EXP_Shield + Rate: 40 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_EXP_Shield + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_EXP_Shield + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_EXP_Shield + Rate: 10 + RefineMinimum: 10 + RefineMaximum: 10 + - Group: M_BLITZ_WEAPON_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: S_Mega_Blitz_Weapon + Rate: 40 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_Mega_Blitz_Weapon + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_Mega_Blitz_Weapon + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_Mega_Blitz_Weapon + Rate: 10 + RefineMinimum: 10 + RefineMaximum: 10 + - Group: M_BLITZ_SHIELD_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: S_Mega_Blitz_Shield + Rate: 40 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_Mega_Blitz_Shield + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 2 + Item: S_Mega_Blitz_Shield + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 3 + Item: S_Mega_Blitz_Shield + Rate: 10 + RefineMinimum: 10 + RefineMaximum: 10 + - Group: CVT_WING_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Cvt_Magical_Wing + Rate: 10 + - Index: 1 + Item: Cvt_Physical_Wing + Rate: 10 + - Index: 2 + Item: aegis_480197 + Rate: 10 + - Group: TEMPLE_RUNE_BOX5 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Temple_Barmund_Rune2 + Amount: 5 + - Group: VENOM_RUNE_BOX5 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Venom_Barmund_Rune2 + Amount: 5 + - Group: SOUL_RUNE_BOX5 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Soul_Barmund_Rune2 + Amount: 5 + - Group: CASH_BOOSTER_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Booster_Call_Package + - Index: 1 + Item: Nyangvine_Fruit + Amount: 150 + - Index: 2 + Item: Almighty + Amount: 30 + - Index: 3 + Item: Limit_Power_Booster + Amount: 30 + - Index: 4 + Item: Infinity_Drink + Amount: 30 + - Group: A_BUBBLE_GUM_BOX10 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: A_Bubble_Gum + Amount: 10 + - Group: COSTUMEMILEPACK_29_1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 100 + - Index: 1 + Item: Evt_Cos_Coin + Amount: 12 + - Index: 2 + Item: aegis_101876 + Amount: 3 + - Group: COSTUMEMILEPACK_29_2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 200 + - Index: 1 + Item: Evt_Cos_Coin + Amount: 25 + - Index: 2 + Item: aegis_101876 + Amount: 5 + - Group: COSTUMEMILEPACK_29_3 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 400 + - Index: 1 + Item: Evt_Cos_Coin + Amount: 50 + - Index: 2 + Item: aegis_101876 + Amount: 10 + - Group: S_BEARERS_CUBE + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: S_Bearers_Earring + - Index: 1 + Item: S_Bearers_Pendent + - Index: 2 + Item: S_Bearers_Armor + - Index: 3 + Item: S_Bearers_Weapon + - Index: 4 + Item: S_Bearers_Shoes + - Index: 5 + Item: S_Bearers_Shield + - Group: PENE_SET_CUBE + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: S_Executioner_Weapon + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_Exorcist_Weapon + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 2 + Item: S_Hunting_Weapon + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 3 + Item: S_Insect_Net_Weapon + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 4 + Item: S_Fishing_Weapon + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 5 + Item: S_Dragon_Killer_Weapon + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 6 + Item: S_Corrupt_Weapon + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 7 + Item: S_Vibration_Weapon + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 8 + Item: S_Holy_Water_Weapon + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 9 + Item: S_Scissors_Weapon + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 10 + Item: S_Penetration_Earring + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 11 + Item: S_Penetration_Pendent + RefineMinimum: 9 + RefineMaximum: 9 + - Group: TEMP_SET_CUBE + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: S_M_Executioner_Weapon + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 1 + Item: S_M_Exorcist_Weapon + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 2 + Item: S_M_Hunting_Weapon + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 3 + Item: S_M_Insect_Net_Weapon + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 4 + Item: S_M_Fishing_Weapon + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 5 + Item: S_M_Dragon_K_Weapon + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 6 + Item: S_M_Corrupt_Weapon + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 7 + Item: S_M_Vibration_Weapon + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 8 + Item: S_M_Holy_Water_Weapon + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 9 + Item: S_M_Scissors_Weapon + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 10 + Item: S_Tempest_Earring + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 11 + Item: S_Tempest_Pendent + RefineMinimum: 9 + RefineMaximum: 9 + - Group: JUSTICE_WEAPON_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Punish_Hall + Rate: 10 + - Index: 1 + Item: Saint_Bringer + Rate: 10 + - Index: 2 + Item: Humma_Brilliance + Rate: 10 + - Index: 3 + Item: Luppiter_Spear + Rate: 10 + - Index: 4 + Item: Holy_Raise_Spear + Rate: 10 + - Index: 5 + Item: Lightforce_Foxtail_Wand + Rate: 10 + - Index: 6 + Item: Shining_Light_Katar + Rate: 10 + - Index: 7 + Item: Angel_Wing_Bow + Rate: 10 + - Index: 8 + Item: Guardian_Saber + Rate: 10 + - Index: 9 + Item: Holy_Light_Dagger + Rate: 10 + - Index: 10 + Item: Light_Power_Harp + Rate: 10 + - Index: 11 + Item: Light_Power_Spark + Rate: 10 + - Index: 12 + Item: Lighting_Splatter + Rate: 10 + - Index: 13 + Item: Justice_Bomber + Rate: 10 + - Index: 14 + Item: Last_Dawn + Rate: 10 + - Index: 15 + Item: Devil_Hunter + Rate: 10 + - Index: 16 + Item: Road_Of_Glory + Rate: 10 + - Index: 17 + Item: Victory_Sword + Rate: 10 + - Index: 18 + Item: Divine_Buster + Rate: 10 + - Index: 19 + Item: Orign_Of_Life + Rate: 10 + - Index: 20 + Item: Destiny_Staff + Rate: 10 + - Index: 21 + Item: Blessed_Bible + Rate: 10 + - Index: 22 + Item: Soul_Liberator + Rate: 10 + - Group: INJUSTICE_WEAPON_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Demonic_Claw + Rate: 10 + - Index: 1 + Item: Sealed_Bible + Rate: 10 + - Index: 2 + Item: Darkness_Tablet + Rate: 10 + - Index: 3 + Item: Devil_Wing_Staff + Rate: 10 + - Index: 4 + Item: Doom_Bible + Rate: 10 + - Index: 5 + Item: Soul_Harvest + Rate: 10 + - Index: 6 + Item: The_Reaper + Rate: 10 + - Index: 7 + Item: Underworld_Knife + Rate: 10 + - Index: 8 + Item: Devil_Cursed_Sword + Rate: 10 + - Index: 9 + Item: Dark_Angel_Ray_Bow + Rate: 10 + - Index: 10 + Item: Crime_Violine + Rate: 10 + - Index: 11 + Item: Crime_Whip + Rate: 10 + - Index: 12 + Item: RG_5649 + Rate: 10 + - Index: 13 + Item: Devil_L_Launcher + Rate: 10 + - Index: 14 + Item: Screaming_Rifle + Rate: 10 + - Index: 15 + Item: Devils_Bullet + Rate: 10 + - Index: 16 + Item: Outlaw_Cursed_Shotgun + Rate: 10 + - Index: 17 + Item: Blood_Rapier + Rate: 10 + - Index: 18 + Item: Destruction_Axe + Rate: 10 + - Index: 19 + Item: Devil_Claw + Rate: 10 + - Index: 20 + Item: Execution_Great_Sword + Rate: 10 + - Index: 21 + Item: Devil_Guardian_Sword + Rate: 10 + - Index: 22 + Item: Darkness_Foxtail_Model + Rate: 10 + - Group: GOODNEVIL_HELM_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: GoodnEvil_Circlet_DK + Rate: 10 + - Index: 1 + Item: GoodnEvil_Circlet_IG + Rate: 10 + - Index: 2 + Item: GoodnEvil_Circlet_AG + Rate: 10 + - Index: 3 + Item: GoodnEvil_Circlet_EM + Rate: 10 + - Index: 4 + Item: GoodnEvil_Circlet_CD + Rate: 10 + - Index: 5 + Item: GoodnEvil_Circlet_IQ + Rate: 10 + - Index: 6 + Item: GoodnEvil_Circlet_MT + Rate: 10 + - Index: 7 + Item: GoodnEvil_Circlet_BO + Rate: 10 + - Index: 8 + Item: GoodnEvil_Circlet_SHC + Rate: 10 + - Index: 9 + Item: GoodnEvil_Circlet_ABC + Rate: 10 + - Index: 10 + Item: GoodnEvil_Circlet_WH + Rate: 10 + - Index: 11 + Item: GoodnEvil_Circlet_TR + Rate: 10 + - Index: 12 + Item: GoodnEvil_Circlet_SS + Rate: 10 + - Index: 13 + Item: GoodnEvil_Circlet_SKE + Rate: 10 + - Index: 14 + Item: GoodnEvil_Circlet_SOA + Rate: 10 + - Index: 15 + Item: GoodnEvil_Circlet_HN + Rate: 10 + - Index: 16 + Item: GoodnEvil_Circlet_SH + Rate: 10 + - Index: 17 + Item: GoodnEvil_Circlet_Box + Rate: 10 + - Group: F_EIN_1HDAGGER_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: F_Ein_1HDAGGER + Rate: 10000 + - Index: 1 + Item: F_Ein_1HDAGGER2 + Rate: 10000 + - Group: LI_NYANGVINE_BOX1_30 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 100 + - Index: 1 + Item: aegis_102193 + Amount: 2 + - Index: 2 + Item: Comp_Bubble_Gum + Amount: 3 + - Group: LI_NYANGVINE_BOX2_30 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 200 + - Index: 1 + Item: Battle_Manual100 + Amount: 2 + - Index: 2 + Item: aegis_102193 + Amount: 5 + - Group: LI_NYANGVINE_BOX3_30 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 400 + - Index: 1 + Item: Comp_Bubble_Gum + Amount: 5 + - Index: 2 + Item: Battle_Manual100 + Amount: 5 + - Index: 3 + Item: aegis_102193 + Amount: 10 + - Group: COSTUMEMILEPACK_30_1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 100 + - Index: 1 + Item: Evt_Cos_Coin + Amount: 12 + - Index: 2 + Item: aegis_102193 + Amount: 3 + - Group: COSTUMEMILEPACK_30_2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 200 + - Index: 1 + Item: Evt_Cos_Coin + Amount: 25 + - Index: 2 + Item: aegis_102193 + Amount: 5 + - Group: COSTUMEMILEPACK_30_3 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 400 + - Index: 1 + Item: Evt_Cos_Coin + Amount: 50 + - Index: 2 + Item: aegis_102193 + Amount: 10 + - Group: VIP_GIFT + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: VIP_Black_Card + - Index: 1 + Item: VIP_Black_Coin + Amount: 150 + - Group: VVIP_GIFT + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: VIP_Black_Card + - Index: 1 + Item: VIP_Black_Coin + Amount: 300 + - Index: 2 + Item: Booster_Call_Package + - Group: SVIP_GIFT + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: VIP_Black_Card + - Index: 1 + Item: VIP_Black_Coin + Amount: 500 + - Index: 2 + Item: Booster_Call_Package + - Group: 2023_SPRING_COLLECTION + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: C_Heart_Chiffon_Rabbit + - Index: 1 + Item: C_Teaparty_Wonderland + - Index: 2 + Item: C_Chocolat_Rabbit_Hair + - Index: 3 + Item: C_Lop_Bunny_Cloak + - Index: 4 + Item: aegis_102193 + Amount: 10 + - Group: KR_B_SPECIAL04 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: C_Jumping_Poring + - Group: LI_NYANGVINE_BOX1_31 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 100 + - Index: 1 + Item: aegis_102332 + Amount: 2 + - Index: 2 + Item: Comp_Bubble_Gum + Amount: 3 + - Group: LI_NYANGVINE_BOX2_31 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 200 + - Index: 1 + Item: Battle_Manual100 + Amount: 2 + - Index: 2 + Item: aegis_102332 + Amount: 5 + - Group: LI_NYANGVINE_BOX3_31 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 400 + - Index: 1 + Item: Comp_Bubble_Gum + Amount: 5 + - Index: 2 + Item: Battle_Manual100 + Amount: 5 + - Index: 3 + Item: aegis_102332 + Amount: 10 + - Group: STONE_ROBE3_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: SuraStone_Robe2 + Rate: 10 + - Index: 1 + Item: SorcererStone_Robe2 + Rate: 10 + - Index: 2 + Item: ShadowchaserStone_Robe2 + Rate: 10 + - Index: 3 + Item: RuneknightStone_Robe2 + Rate: 10 + - Index: 4 + Item: GeneticStone_Robe2 + Rate: 10 + - Index: 5 + Item: WanderMinsStone_Robe2 + Rate: 10 + - Index: 6 + Item: WarlockStone_Robe2 + Rate: 10 + - Index: 7 + Item: RoyalguardStone_Robe2 + Rate: 10 + - Index: 8 + Item: GuillcrossStone_Robe2 + Rate: 10 + - Index: 9 + Item: RangerStone_Robe2 + Rate: 10 + - Index: 10 + Item: MechanicStone_Robe2 + Rate: 10 + - Index: 11 + Item: ArchbishopStone_Robe2 + Rate: 10 + - Index: 12 + Item: SoulreaperStone_Robe + Rate: 10 + - Index: 13 + Item: StaremperorStone_Robe + Rate: 10 + - Index: 14 + Item: SuNoviceStone_Robe + Rate: 10 + - Group: RO_CONCERT_SCROLL + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: C_Headset_OST + - Index: 1 + Item: C_Music_Decoration + - Index: 2 + Item: C_Whistle + - Group: RO_CONCERT_SCROLL_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: RO_Concert_Scroll2 + Amount: 2 + - Group: FAN_UPGRADE_KIT_EX_10 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Fan_Upgrade_Kit_EX + Amount: 10 + - Group: KR_B_SPECIAL06 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: C_Wing_Of_Fly + Duration: 7200 + - Group: COSTUMEMILEPACK_31_1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 100 + - Index: 1 + Item: Evt_Cos_Coin + Amount: 12 + - Index: 2 + Item: aegis_102332 + Amount: 3 + - Group: COSTUMEMILEPACK_31_2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 200 + - Index: 1 + Item: Evt_Cos_Coin + Amount: 25 + - Index: 2 + Item: aegis_102332 + Amount: 5 + - Group: COSTUMEMILEPACK_31_3 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 400 + - Index: 1 + Item: Evt_Cos_Coin + Amount: 50 + - Index: 2 + Item: aegis_102332 + Amount: 10 + - Group: CATPAW_1DAY_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: C_CatPaw_Ticket + Duration: 1440 + - Group: MILEAGE_COUPON + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Cachua_Coupon + - Index: 1 + Item: Evt_Cos_Coin + - Group: LI_NYANGVINE_BOX1_32 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 100 + - Index: 1 + Item: aegis_102441 + Amount: 2 + - Index: 2 + Item: Comp_Bubble_Gum + Amount: 3 + - Group: LI_NYANGVINE_BOX2_32 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 200 + - Index: 1 + Item: Battle_Manual100 + Amount: 2 + - Index: 2 + Item: aegis_102441 + Amount: 5 + - Group: LI_NYANGVINE_BOX3_32 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 400 + - Index: 1 + Item: Comp_Bubble_Gum + Amount: 5 + - Index: 2 + Item: Battle_Manual100 + Amount: 5 + - Index: 3 + Item: aegis_102441 + Amount: 10 + - Group: 21TH_PRESENT_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: E_All_In_One_Buff + Amount: 3 + - Index: 1 + Item: E_EXP_Drop_Up_7days + - Group: 21TH_COSTUME_COLLECTION + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: C_Ocean_Color_Long + - Index: 1 + Item: C_Aqua_Fin_Decoration + - Index: 2 + Item: C_Sailor_Cap + - Index: 3 + Item: aegis_102441 + Amount: 10 + - Group: SEASON_EVT_REWARD_8 + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: C_Indomitable_Crown + Rate: 1 + - Index: 1 + Item: C_Guardian_Wingdeco + Rate: 1 + - Index: 2 + Item: C_Guardian_Wing + Rate: 1 + - Index: 3 + Item: C_Reliance_Crown + Rate: 1 + - Index: 4 + Item: C_Guardian_Angelwing + Rate: 1 + - Index: 5 + Item: C_Guardian_Butterwing + Rate: 1 + - Index: 6 + Item: Pet_Coin + Rate: 1 + Amount: 50 + - Index: 7 + Item: South_Pork_Ricebowl + Rate: 25 + Amount: 3 + - Index: 8 + Item: South_Pork_Slice + Rate: 25 + Amount: 5 + - Index: 9 + Item: Grilled_Veg_Skewers_ + Rate: 25 + Amount: 7 + - Index: 10 + Item: Melody_Card_191 + Rate: 5 + - Index: 11 + Item: aegis_1001376 + Rate: 5 + - Index: 12 + Item: South_Pork_Ricebowl + Rate: 56 + - Index: 13 + Item: South_Pork_Slice + Rate: 56 + Amount: 2 + - Index: 14 + Item: Grilled_Veg_Skewers_ + Rate: 56 + Amount: 3 + - Index: 15 + Item: Pet_Coin + Rate: 10 + Amount: 30 + - Index: 16 + Item: Poring_Kombucha + Rate: 70 + Amount: 20 + - Index: 17 + Item: Monster_Bread + Rate: 70 + Amount: 20 + - Index: 18 + Item: Monster_Bread_ + Rate: 70 + Amount: 20 + - Index: 19 + Item: Poring_Kombucha + Rate: 140 + Amount: 10 + - Index: 20 + Item: Monster_Bread + Rate: 140 + Amount: 10 + - Index: 21 + Item: Monster_Bread_ + Rate: 140 + Amount: 10 + - Index: 22 + Item: Pet_Coin + Rate: 50 + Amount: 20 + - Index: 23 + Item: Night_M_Ice_Flakes + Rate: 250 + Amount: 30 + - Index: 24 + Item: Night_M_Ice_Cream + Rate: 250 + Amount: 30 + - Index: 25 + Item: Night_M_Cotton_Candy + Rate: 250 + Amount: 30 + - Index: 26 + Item: Night_M_Ice_Flakes + Rate: 500 + Amount: 15 + - Index: 27 + Item: Night_M_Ice_Cream + Rate: 500 + Amount: 15 + - Index: 28 + Item: Night_M_Cotton_Candy + Rate: 500 + Amount: 15 + - Index: 29 + Item: Pet_Coin + Rate: 100 + Amount: 10 + - Index: 30 + Item: Grilled_Fish + Rate: 700 + Amount: 50 + - Index: 31 + Item: Grilled_Veg_Skewers + Rate: 700 + Amount: 50 + - Index: 32 + Item: Grilled_Hm_Sausage + Rate: 700 + Amount: 50 + - Index: 33 + Item: Grilled_Fish + Rate: 1400 + Amount: 25 + - Index: 34 + Item: Grilled_Veg_Skewers + Rate: 1400 + Amount: 25 + - Index: 35 + Item: Grilled_Hm_Sausage + Rate: 1400 + Amount: 25 + - Index: 36 + Item: Pet_Coin + Rate: 400 + Amount: 5 + - Group: COSTUMEMILEPACK_32_1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 100 + - Index: 1 + Item: Evt_Cos_Coin + Amount: 12 + - Index: 2 + Item: aegis_102441 + Amount: 3 + - Group: COSTUMEMILEPACK_32_2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 200 + - Index: 1 + Item: Evt_Cos_Coin + Amount: 25 + - Index: 2 + Item: aegis_102441 + Amount: 5 + - Group: COSTUMEMILEPACK_32_3 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 400 + - Index: 1 + Item: Evt_Cos_Coin + Amount: 50 + - Index: 2 + Item: aegis_102441 + Amount: 10 + - Group: SCHMIDT_ANTIQUITY + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: aegis_1001478 + Rate: 1000 + Amount: 3 + - Index: 1 + Item: aegis_1001478 + Rate: 1000 + Amount: 4 + - Index: 2 + Item: aegis_1001478 + Rate: 1000 + Amount: 5 + - Index: 3 + Item: Schmidt_Suits + Rate: 120 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 4 + Item: Schmidt_Suits + Rate: 100 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 5 + Item: Schmidt_Suits + Rate: 80 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 6 + Item: Schmidt_Manteau + Rate: 120 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 7 + Item: Schmidt_Manteau + Rate: 100 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 8 + Item: Schmidt_Manteau + Rate: 80 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 9 + Item: Temporal_M_Str + Rate: 140 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 10 + Item: Temporal_M_Agi + Rate: 140 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 11 + Item: Temporal_M_Vit + Rate: 140 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 12 + Item: Temporal_M_Int + Rate: 140 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 13 + Item: Temporal_M_Dex + Rate: 140 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 14 + Item: Temporal_M_Luk + Rate: 140 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 15 + Item: Temporal_M_Str + Rate: 110 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 16 + Item: Temporal_M_Agi + Rate: 110 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 17 + Item: Temporal_M_Vit + Rate: 110 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 18 + Item: Temporal_M_Int + Rate: 110 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 19 + Item: Temporal_M_Dex + Rate: 110 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 20 + Item: Temporal_M_Luk + Rate: 110 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 21 + Item: Temporal_M_Str + Rate: 70 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 22 + Item: Temporal_M_Agi + Rate: 70 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 23 + Item: Temporal_M_Vit + Rate: 70 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 24 + Item: Temporal_M_Int + Rate: 70 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 25 + Item: Temporal_M_Dex + Rate: 70 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 26 + Item: Temporal_M_Luk + Rate: 70 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 27 + Item: Temporal_M_Str + Rate: 50 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 28 + Item: Temporal_M_Agi + Rate: 50 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 29 + Item: Temporal_M_Vit + Rate: 50 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 30 + Item: Temporal_M_Int + Rate: 50 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 31 + Item: Temporal_M_Dex + Rate: 50 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 32 + Item: Temporal_M_Luk + Rate: 50 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 33 + Item: Temporal_M_Str + Rate: 30 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 34 + Item: Temporal_M_Agi + Rate: 30 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 35 + Item: Temporal_M_Vit + Rate: 30 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 36 + Item: Temporal_M_Int + Rate: 30 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 37 + Item: Temporal_M_Dex + Rate: 30 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 38 + Item: Temporal_M_Luk + Rate: 30 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 39 + Item: GH_Cursed_Crystal + Rate: 400 + Amount: 16 + - Index: 40 + Item: GH_Cursed_Crystal + Rate: 400 + Amount: 17 + - Index: 41 + Item: GH_Cursed_Crystal + Rate: 400 + Amount: 18 + - Index: 42 + Item: GH_Cursed_Crystal + Rate: 400 + Amount: 19 + - Index: 43 + Item: GH_Cursed_Crystal + Rate: 400 + Amount: 20 + - Index: 44 + Item: GH_Cursed_Crystal + Rate: 400 + Amount: 21 + - Index: 45 + Item: GH_Cursed_Crystal + Rate: 400 + Amount: 22 + - Index: 46 + Item: GH_Cursed_Crystal + Rate: 400 + Amount: 23 + - Index: 47 + Item: GH_Cursed_Crystal + Rate: 400 + Amount: 24 + - Index: 48 + Item: GH_Cursed_Crystal + Rate: 400 + Amount: 25 + - Group: SCHMIDT_ANTIQUITY2 + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: aegis_1001478 + Rate: 500 + Amount: 4 + - Index: 1 + Item: aegis_1001478 + Rate: 500 + Amount: 5 + - Index: 2 + Item: aegis_1001478 + Rate: 500 + Amount: 6 + - Index: 3 + Item: aegis_1001478 + Rate: 500 + Amount: 7 + - Index: 4 + Item: Schmidt_Suits + Rate: 150 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 5 + Item: Schmidt_Suits + Rate: 100 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 6 + Item: Schmidt_Suits + Rate: 50 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 7 + Item: Schmidt_Manteau + Rate: 150 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 8 + Item: Schmidt_Manteau + Rate: 100 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 9 + Item: Schmidt_Manteau + Rate: 50 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 10 + Item: Overwhelm_Str_Armor + Rate: 150 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 11 + Item: Overwhelm_Agi_Armor + Rate: 150 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 12 + Item: Overwhelm_Vit_Armor + Rate: 150 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 13 + Item: Overwhelm_Int_Armor + Rate: 150 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 14 + Item: Overwhelm_Dex_Armor + Rate: 150 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 15 + Item: Overwhelm_Luk_Armor + Rate: 150 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 16 + Item: Overwhelm_Str_Armor + Rate: 100 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 17 + Item: Overwhelm_Agi_Armor + Rate: 100 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 18 + Item: Overwhelm_Vit_Armor + Rate: 100 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 19 + Item: Overwhelm_Int_Armor + Rate: 100 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 20 + Item: Overwhelm_Dex_Armor + Rate: 100 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 21 + Item: Overwhelm_Luk_Armor + Rate: 100 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 22 + Item: Overwhelm_Str_Armor + Rate: 50 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 23 + Item: Overwhelm_Agi_Armor + Rate: 50 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 24 + Item: Overwhelm_Vit_Armor + Rate: 50 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 25 + Item: Overwhelm_Int_Armor + Rate: 50 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 26 + Item: Overwhelm_Dex_Armor + Rate: 50 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 27 + Item: Overwhelm_Luk_Armor + Rate: 50 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 28 + Item: Schmidt_Insignia_Str + Rate: 100 + - Index: 29 + Item: Schmidt_Insignia_Int + Rate: 100 + - Index: 30 + Item: Schmidt_Insignia_Luk + Rate: 100 + - Index: 31 + Item: Schmidt_Insignia_Vit + Rate: 100 + - Index: 32 + Item: Schmidt_Insignia_Agi + Rate: 100 + - Index: 33 + Item: Schmidt_Insignia_Dex + Rate: 100 + - Index: 34 + Item: GH_Cursed_Gemstone + Rate: 500 + Amount: 16 + - Index: 35 + Item: GH_Cursed_Gemstone + Rate: 500 + Amount: 17 + - Index: 36 + Item: GH_Cursed_Gemstone + Rate: 500 + Amount: 18 + - Index: 37 + Item: GH_Cursed_Gemstone + Rate: 500 + Amount: 19 + - Index: 38 + Item: GH_Cursed_Gemstone + Rate: 500 + Amount: 20 + - Index: 39 + Item: GH_Cursed_Gemstone + Rate: 500 + Amount: 21 + - Index: 40 + Item: GH_Cursed_Gemstone + Rate: 500 + Amount: 22 + - Index: 41 + Item: GH_Cursed_Gemstone + Rate: 500 + Amount: 23 + - Index: 42 + Item: GH_Cursed_Gemstone + Rate: 500 + Amount: 24 + - Index: 43 + Item: GH_Cursed_Gemstone + Rate: 500 + Amount: 25 + - Group: AMDARAIS_ANTIQUITY + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: aegis_1001478 + Rate: 1000 + Amount: 3 + - Index: 1 + Item: aegis_1001478 + Rate: 1000 + Amount: 4 + - Index: 2 + Item: aegis_1001478 + Rate: 1000 + Amount: 5 + - Index: 3 + Item: Temporal_Str_Boots_ + Rate: 120 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 4 + Item: Temporal_Agi_Boots_ + Rate: 120 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 5 + Item: Temporal_Vit_Boots_ + Rate: 120 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 6 + Item: Temporal_Int_Boots_ + Rate: 120 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 7 + Item: Temporal_Dex_Boots_ + Rate: 120 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 8 + Item: Temporal_Luk_Boots_ + Rate: 120 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 9 + Item: Temporal_Str_Boots_ + Rate: 90 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 10 + Item: Temporal_Agi_Boots_ + Rate: 90 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 11 + Item: Temporal_Vit_Boots_ + Rate: 90 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 12 + Item: Temporal_Int_Boots_ + Rate: 90 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 13 + Item: Temporal_Dex_Boots_ + Rate: 90 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 14 + Item: Temporal_Luk_Boots_ + Rate: 90 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 15 + Item: Temporal_Str_Boots_ + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 16 + Item: Temporal_Agi_Boots_ + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 17 + Item: Temporal_Vit_Boots_ + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 18 + Item: Temporal_Int_Boots_ + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 19 + Item: Temporal_Dex_Boots_ + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 20 + Item: Temporal_Luk_Boots_ + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 21 + Item: Modify_Str_Boots_ + Rate: 120 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 22 + Item: Modify_Agi_Boots_ + Rate: 120 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 23 + Item: Modify_Vit_Boots_ + Rate: 120 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 24 + Item: Modify_Int_Boots_ + Rate: 120 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 25 + Item: Modify_Dex_Boots_ + Rate: 120 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 26 + Item: Modify_Luk_Boots_ + Rate: 120 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 27 + Item: Modify_Str_Boots_ + Rate: 90 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 28 + Item: Modify_Agi_Boots_ + Rate: 90 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 29 + Item: Modify_Vit_Boots_ + Rate: 90 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 30 + Item: Modify_Int_Boots_ + Rate: 90 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 31 + Item: Modify_Dex_Boots_ + Rate: 90 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 32 + Item: Modify_Luk_Boots_ + Rate: 90 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 33 + Item: Modify_Str_Boots_ + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 34 + Item: Modify_Agi_Boots_ + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 35 + Item: Modify_Vit_Boots_ + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 36 + Item: Modify_Int_Boots_ + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 37 + Item: Modify_Dex_Boots_ + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 38 + Item: Modify_Luk_Boots_ + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 39 + Item: Temporal_Crystal + Rate: 130 + Amount: 15 + - Index: 40 + Item: Temporal_Crystal + Rate: 130 + Amount: 16 + - Index: 41 + Item: Temporal_Crystal + Rate: 130 + Amount: 17 + - Index: 42 + Item: Temporal_Crystal + Rate: 130 + Amount: 18 + - Index: 43 + Item: Temporal_Crystal + Rate: 130 + Amount: 19 + - Index: 44 + Item: Temporal_Crystal + Rate: 130 + Amount: 20 + - Index: 45 + Item: Temporal_Crystal + Rate: 130 + Amount: 21 + - Index: 46 + Item: Temporal_Crystal + Rate: 130 + Amount: 22 + - Index: 47 + Item: Temporal_Crystal + Rate: 130 + Amount: 23 + - Index: 48 + Item: Temporal_Crystal + Rate: 130 + Amount: 24 + - Index: 49 + Item: Temporal_Crystal + Rate: 130 + Amount: 25 + - Index: 50 + Item: Temporal_Crystal + Rate: 130 + Amount: 26 + - Index: 51 + Item: Temporal_Crystal + Rate: 130 + Amount: 27 + - Index: 52 + Item: Temporal_Crystal + Rate: 130 + Amount: 28 + - Index: 53 + Item: Temporal_Crystal + Rate: 130 + Amount: 29 + - Index: 54 + Item: Temporal_Crystal + Rate: 130 + Amount: 30 + - Index: 55 + Item: Coagulated_Spell + Rate: 120 + Amount: 10 + - Index: 56 + Item: Coagulated_Spell + Rate: 120 + Amount: 11 + - Index: 57 + Item: Coagulated_Spell + Rate: 120 + Amount: 12 + - Index: 58 + Item: Coagulated_Spell + Rate: 120 + Amount: 13 + - Index: 59 + Item: Coagulated_Spell + Rate: 120 + Amount: 14 + - Index: 60 + Item: Coagulated_Spell + Rate: 120 + Amount: 15 + - Index: 61 + Item: Coagulated_Spell + Rate: 120 + Amount: 16 + - Index: 62 + Item: Coagulated_Spell + Rate: 120 + Amount: 17 + - Index: 63 + Item: Coagulated_Spell + Rate: 120 + Amount: 18 + - Index: 64 + Item: Coagulated_Spell + Rate: 120 + Amount: 19 + - Index: 65 + Item: Coagulated_Spell + Rate: 120 + Amount: 20 + - Index: 66 + Item: Coagulated_Spell + Rate: 120 + Amount: 21 + - Index: 67 + Item: Coagulated_Spell + Rate: 120 + Amount: 22 + - Index: 68 + Item: Coagulated_Spell + Rate: 120 + Amount: 23 + - Index: 69 + Item: Coagulated_Spell + Rate: 120 + Amount: 24 + - Index: 70 + Item: Coagulated_Spell + Rate: 120 + Amount: 25 + - Group: AMDARAIS_ANTIQUITY2 + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: aegis_1001478 + Rate: 1000 + Amount: 4 + - Index: 1 + Item: aegis_1001478 + Rate: 1000 + Amount: 5 + - Index: 2 + Item: aegis_1001478 + Rate: 1000 + Amount: 6 + - Index: 3 + Item: aegis_1001478 + Rate: 1000 + Amount: 7 + - Index: 4 + Item: Temporal_Str_Boots_ + Rate: 130 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 5 + Item: Temporal_Agi_Boots_ + Rate: 130 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 6 + Item: Temporal_Vit_Boots_ + Rate: 130 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 7 + Item: Temporal_Int_Boots_ + Rate: 130 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 8 + Item: Temporal_Dex_Boots_ + Rate: 130 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 9 + Item: Temporal_Luk_Boots_ + Rate: 130 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 10 + Item: Temporal_Str_Boots_ + Rate: 100 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 11 + Item: Temporal_Agi_Boots_ + Rate: 100 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 12 + Item: Temporal_Vit_Boots_ + Rate: 100 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 13 + Item: Temporal_Int_Boots_ + Rate: 100 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 14 + Item: Temporal_Dex_Boots_ + Rate: 100 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 15 + Item: Temporal_Luk_Boots_ + Rate: 100 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 16 + Item: Temporal_Str_Boots_ + Rate: 60 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 17 + Item: Temporal_Agi_Boots_ + Rate: 60 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 18 + Item: Temporal_Vit_Boots_ + Rate: 60 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 19 + Item: Temporal_Int_Boots_ + Rate: 60 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 20 + Item: Temporal_Dex_Boots_ + Rate: 60 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 21 + Item: Temporal_Luk_Boots_ + Rate: 60 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 22 + Item: Modify_Str_Boots_ + Rate: 130 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 23 + Item: Modify_Agi_Boots_ + Rate: 130 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 24 + Item: Modify_Vit_Boots_ + Rate: 130 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 25 + Item: Modify_Int_Boots_ + Rate: 130 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 26 + Item: Modify_Dex_Boots_ + Rate: 130 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 27 + Item: Modify_Luk_Boots_ + Rate: 130 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 28 + Item: Modify_Str_Boots_ + Rate: 100 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 29 + Item: Modify_Agi_Boots_ + Rate: 100 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 30 + Item: Modify_Vit_Boots_ + Rate: 100 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 31 + Item: Modify_Int_Boots_ + Rate: 100 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 32 + Item: Modify_Dex_Boots_ + Rate: 100 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 33 + Item: Modify_Luk_Boots_ + Rate: 100 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 34 + Item: Modify_Str_Boots_ + Rate: 60 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 35 + Item: Modify_Agi_Boots_ + Rate: 60 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 36 + Item: Modify_Vit_Boots_ + Rate: 60 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 37 + Item: Modify_Int_Boots_ + Rate: 60 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 38 + Item: Modify_Dex_Boots_ + Rate: 60 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 39 + Item: Modify_Luk_Boots_ + Rate: 60 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 40 + Item: Temporal_Crystal + Rate: 70 + Amount: 20 + - Index: 41 + Item: Temporal_Crystal + Rate: 70 + Amount: 21 + - Index: 42 + Item: Temporal_Crystal + Rate: 70 + Amount: 22 + - Index: 43 + Item: Temporal_Crystal + Rate: 70 + Amount: 23 + - Index: 44 + Item: Temporal_Crystal + Rate: 70 + Amount: 24 + - Index: 45 + Item: Temporal_Crystal + Rate: 70 + Amount: 25 + - Index: 46 + Item: Temporal_Crystal + Rate: 70 + Amount: 26 + - Index: 47 + Item: Temporal_Crystal + Rate: 70 + Amount: 27 + - Index: 48 + Item: Temporal_Crystal + Rate: 70 + Amount: 28 + - Index: 49 + Item: Temporal_Crystal + Rate: 70 + Amount: 29 + - Index: 50 + Item: Temporal_Crystal + Rate: 70 + Amount: 30 + - Index: 51 + Item: Temporal_Crystal + Rate: 70 + Amount: 31 + - Index: 52 + Item: Temporal_Crystal + Rate: 70 + Amount: 32 + - Index: 53 + Item: Temporal_Crystal + Rate: 70 + Amount: 33 + - Index: 54 + Item: Temporal_Crystal + Rate: 70 + Amount: 34 + - Index: 55 + Item: Temporal_Crystal + Rate: 70 + Amount: 35 + - Index: 56 + Item: Coagulated_Spell + Rate: 70 + Amount: 30 + - Index: 57 + Item: Coagulated_Spell + Rate: 70 + Amount: 31 + - Index: 58 + Item: Coagulated_Spell + Rate: 70 + Amount: 32 + - Index: 59 + Item: Coagulated_Spell + Rate: 70 + Amount: 33 + - Index: 60 + Item: Coagulated_Spell + Rate: 70 + Amount: 34 + - Index: 61 + Item: Coagulated_Spell + Rate: 70 + Amount: 35 + - Index: 62 + Item: Coagulated_Spell + Rate: 70 + Amount: 36 + - Index: 63 + Item: Coagulated_Spell + Rate: 70 + Amount: 37 + - Index: 64 + Item: Coagulated_Spell + Rate: 70 + Amount: 38 + - Index: 65 + Item: Coagulated_Spell + Rate: 70 + Amount: 39 + - Index: 66 + Item: Coagulated_Spell + Rate: 70 + Amount: 40 + - Index: 67 + Item: Coagulated_Spell + Rate: 70 + Amount: 41 + - Index: 68 + Item: Coagulated_Spell + Rate: 70 + Amount: 42 + - Index: 69 + Item: Coagulated_Spell + Rate: 70 + Amount: 43 + - Index: 70 + Item: Coagulated_Spell + Rate: 70 + Amount: 44 + - Index: 71 + Item: Coagulated_Spell + Rate: 70 + Amount: 45 + - Index: 72 + Item: Polluted_Spell + Rate: 60 + Amount: 11 + - Index: 73 + Item: Polluted_Spell + Rate: 55 + Amount: 12 + - Index: 74 + Item: Polluted_Spell + Rate: 55 + Amount: 13 + - Index: 75 + Item: Polluted_Spell + Rate: 55 + Amount: 14 + - Index: 76 + Item: Polluted_Spell + Rate: 55 + Amount: 15 + - Group: C_AMDARAIS_ANTIQUITY + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: aegis_1001478 + Rate: 600 + Amount: 4 + - Index: 1 + Item: aegis_1001478 + Rate: 600 + Amount: 5 + - Index: 2 + Item: aegis_1001478 + Rate: 600 + Amount: 6 + - Index: 3 + Item: aegis_1001478 + Rate: 600 + Amount: 7 + - Index: 4 + Item: aegis_1001478 + Rate: 600 + Amount: 8 + - Index: 5 + Item: G_Knight_Sword + Rate: 95 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 6 + Item: G_Knight_Spear + Rate: 95 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 7 + Item: G_Knight_JewelSword + Rate: 95 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 8 + Item: G_Knight_Axe + Rate: 95 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 9 + Item: G_Knight_BattleAxe + Rate: 95 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 10 + Item: G_Knight_Archer_Bow + Rate: 95 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 11 + Item: G_Knight_Bow + Rate: 95 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 12 + Item: G_Alchemist_Staff + Rate: 95 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 13 + Item: R_Gladius_L + Rate: 95 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 14 + Item: R_Gladius_R + Rate: 95 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 15 + Item: R_Katar + Rate: 95 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 16 + Item: R_Magician_Dagger + Rate: 95 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 17 + Item: R_Cleric_Staff + Rate: 95 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 18 + Item: R_Knuckle + Rate: 95 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 19 + Item: R_Magician_Staff + Rate: 95 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 20 + Item: R_Magician_Wand + Rate: 95 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 21 + Item: R_Sage_Book + Rate: 95 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 22 + Item: R_Cello + Rate: 95 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 23 + Item: R_Wheep + Rate: 95 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 24 + Item: R_Pillar + Rate: 95 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 25 + Item: R_Syringe + Rate: 95 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 26 + Item: R_Revolver + Rate: 95 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 27 + Item: R_Huuma_Shuriken + Rate: 95 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 28 + Item: R_Foxtail_rod + Rate: 95 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 29 + Item: G_Knight_Sword + Rate: 51 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 30 + Item: G_Knight_Spear + Rate: 51 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 31 + Item: G_Knight_JewelSword + Rate: 51 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 32 + Item: G_Knight_Axe + Rate: 51 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 33 + Item: G_Knight_BattleAxe + Rate: 51 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 34 + Item: G_Knight_Archer_Bow + Rate: 51 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 35 + Item: G_Knight_Bow + Rate: 51 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 36 + Item: G_Alchemist_Staff + Rate: 51 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 37 + Item: R_Gladius_L + Rate: 51 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 38 + Item: R_Gladius_R + Rate: 51 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 39 + Item: R_Katar + Rate: 51 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 40 + Item: R_Magician_Dagger + Rate: 51 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 41 + Item: R_Cleric_Staff + Rate: 51 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 42 + Item: R_Knuckle + Rate: 51 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 43 + Item: R_Magician_Staff + Rate: 51 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 44 + Item: R_Magician_Wand + Rate: 51 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 45 + Item: R_Sage_Book + Rate: 51 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 46 + Item: R_Cello + Rate: 51 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 47 + Item: R_Wheep + Rate: 51 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 48 + Item: R_Pillar + Rate: 51 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 49 + Item: R_Syringe + Rate: 51 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 50 + Item: R_Revolver + Rate: 51 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 51 + Item: R_Huuma_Shuriken + Rate: 51 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 52 + Item: R_Foxtail_rod + Rate: 51 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 53 + Item: G_Knight_Sword + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 54 + Item: G_Knight_Spear + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 55 + Item: G_Knight_JewelSword + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 56 + Item: G_Knight_Axe + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 57 + Item: G_Knight_BattleAxe + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 58 + Item: G_Knight_Archer_Bow + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 59 + Item: G_Knight_Bow + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 60 + Item: G_Alchemist_Staff + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 61 + Item: R_Gladius_L + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 62 + Item: R_Gladius_R + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 63 + Item: R_Katar + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 64 + Item: R_Magician_Dagger + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 65 + Item: R_Cleric_Staff + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 66 + Item: R_Knuckle + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 67 + Item: R_Magician_Staff + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 68 + Item: R_Magician_Wand + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 69 + Item: R_Sage_Book + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 70 + Item: R_Cello + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 71 + Item: R_Wheep + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 72 + Item: R_Pillar + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 73 + Item: R_Syringe + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 74 + Item: R_Revolver + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 75 + Item: R_Huuma_Shuriken + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 76 + Item: R_Foxtail_rod + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 77 + Item: Fragment_Of_Time + Rate: 151 + Amount: 11 + - Index: 78 + Item: Fragment_Of_Time + Rate: 151 + Amount: 12 + - Index: 79 + Item: Fragment_Of_Time + Rate: 151 + Amount: 13 + - Index: 80 + Item: Fragment_Of_Time + Rate: 151 + Amount: 14 + - Index: 81 + Item: Fragment_Of_Time + Rate: 151 + Amount: 15 + - Index: 82 + Item: Jewel_Of_Time_Ore + Rate: 151 + Amount: 6 + - Index: 83 + Item: Jewel_Of_Time_Ore + Rate: 151 + Amount: 7 + - Index: 84 + Item: Jewel_Of_Time_Ore + Rate: 151 + Amount: 8 + - Index: 85 + Item: Jewel_Of_Time_Ore + Rate: 151 + Amount: 9 + - Index: 86 + Item: Jewel_Of_Time_Ore + Rate: 151 + Amount: 10 + - Index: 87 + Item: Spell_Of_Time + Rate: 302 + Amount: 11 + - Index: 88 + Item: Spell_Of_Time + Rate: 301 + Amount: 12 + - Index: 89 + Item: Spell_Of_Time + Rate: 301 + Amount: 13 + - Index: 90 + Item: Spell_Of_Time + Rate: 301 + Amount: 14 + - Index: 91 + Item: Spell_Of_Time + Rate: 301 + Amount: 15 + - Group: C_HIMEL_ANTIQUITY + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: aegis_1001478 + Rate: 600 + Amount: 8 + - Index: 1 + Item: aegis_1001478 + Rate: 600 + Amount: 9 + - Index: 2 + Item: aegis_1001478 + Rate: 600 + Amount: 10 + - Index: 3 + Item: aegis_1001478 + Rate: 600 + Amount: 11 + - Index: 4 + Item: aegis_1001478 + Rate: 600 + Amount: 12 + - Index: 5 + Item: G_Knight_Sword + Rate: 75 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 6 + Item: G_Knight_Spear + Rate: 75 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 7 + Item: G_Knight_JewelSword + Rate: 75 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 8 + Item: G_Knight_Axe + Rate: 75 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 9 + Item: G_Knight_BattleAxe + Rate: 75 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 10 + Item: G_Knight_Archer_Bow + Rate: 75 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 11 + Item: G_Knight_Bow + Rate: 75 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 12 + Item: G_Alchemist_Staff + Rate: 75 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 13 + Item: R_Gladius_L + Rate: 75 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 14 + Item: R_Gladius_R + Rate: 75 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 15 + Item: R_Katar + Rate: 75 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 16 + Item: R_Magician_Dagger + Rate: 75 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 17 + Item: R_Cleric_Staff + Rate: 75 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 18 + Item: R_Knuckle + Rate: 75 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 19 + Item: R_Magician_Staff + Rate: 75 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 20 + Item: R_Magician_Wand + Rate: 75 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 21 + Item: R_Sage_Book + Rate: 75 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 22 + Item: R_Cello + Rate: 75 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 23 + Item: R_Wheep + Rate: 75 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 24 + Item: R_Pillar + Rate: 75 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 25 + Item: R_Syringe + Rate: 75 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 26 + Item: R_Revolver + Rate: 75 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 27 + Item: R_Huuma_Shuriken + Rate: 75 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 28 + Item: R_Foxtail_rod + Rate: 75 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 29 + Item: G_Knight_Sword + Rate: 61 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 30 + Item: G_Knight_Spear + Rate: 61 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 31 + Item: G_Knight_JewelSword + Rate: 61 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 32 + Item: G_Knight_Axe + Rate: 61 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 33 + Item: G_Knight_BattleAxe + Rate: 61 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 34 + Item: G_Knight_Archer_Bow + Rate: 61 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 35 + Item: G_Knight_Bow + Rate: 61 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 36 + Item: G_Alchemist_Staff + Rate: 61 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 37 + Item: R_Gladius_L + Rate: 61 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 38 + Item: R_Gladius_R + Rate: 61 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 39 + Item: R_Katar + Rate: 61 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 40 + Item: R_Magician_Dagger + Rate: 61 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 41 + Item: R_Cleric_Staff + Rate: 61 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 42 + Item: R_Knuckle + Rate: 61 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 43 + Item: R_Magician_Staff + Rate: 61 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 44 + Item: R_Magician_Wand + Rate: 61 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 45 + Item: R_Sage_Book + Rate: 61 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 46 + Item: R_Cello + Rate: 61 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 47 + Item: R_Wheep + Rate: 61 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 48 + Item: R_Pillar + Rate: 61 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 49 + Item: R_Syringe + Rate: 61 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 50 + Item: R_Revolver + Rate: 61 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 51 + Item: R_Huuma_Shuriken + Rate: 61 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 52 + Item: R_Foxtail_rod + Rate: 61 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 53 + Item: G_Knight_Sword + Rate: 30 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 54 + Item: G_Knight_Spear + Rate: 30 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 55 + Item: G_Knight_JewelSword + Rate: 30 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 56 + Item: G_Knight_Axe + Rate: 30 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 57 + Item: G_Knight_BattleAxe + Rate: 30 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 58 + Item: G_Knight_Archer_Bow + Rate: 30 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 59 + Item: G_Knight_Bow + Rate: 30 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 60 + Item: G_Alchemist_Staff + Rate: 30 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 61 + Item: R_Gladius_L + Rate: 30 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 62 + Item: R_Gladius_R + Rate: 30 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 63 + Item: R_Katar + Rate: 30 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 64 + Item: R_Magician_Dagger + Rate: 30 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 65 + Item: R_Cleric_Staff + Rate: 30 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 66 + Item: R_Knuckle + Rate: 30 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 67 + Item: R_Magician_Staff + Rate: 30 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 68 + Item: R_Magician_Wand + Rate: 30 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 69 + Item: R_Sage_Book + Rate: 30 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 70 + Item: R_Cello + Rate: 30 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 71 + Item: R_Wheep + Rate: 30 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 72 + Item: R_Pillar + Rate: 30 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 73 + Item: R_Syringe + Rate: 30 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 74 + Item: R_Revolver + Rate: 30 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 75 + Item: R_Huuma_Shuriken + Rate: 30 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 76 + Item: R_Foxtail_rod + Rate: 30 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 77 + Item: Fragment_Of_Time + Rate: 151 + Amount: 16 + - Index: 78 + Item: Fragment_Of_Time + Rate: 151 + Amount: 17 + - Index: 79 + Item: Fragment_Of_Time + Rate: 151 + Amount: 18 + - Index: 80 + Item: Fragment_Of_Time + Rate: 151 + Amount: 19 + - Index: 81 + Item: Fragment_Of_Time + Rate: 151 + Amount: 20 + - Index: 82 + Item: Jewel_Of_Time_Ore + Rate: 151 + Amount: 11 + - Index: 83 + Item: Jewel_Of_Time_Ore + Rate: 151 + Amount: 12 + - Index: 84 + Item: Jewel_Of_Time_Ore + Rate: 151 + Amount: 13 + - Index: 85 + Item: Jewel_Of_Time_Ore + Rate: 151 + Amount: 14 + - Index: 86 + Item: Jewel_Of_Time_Ore + Rate: 151 + Amount: 15 + - Index: 87 + Item: Spell_Of_Time + Rate: 302 + Amount: 16 + - Index: 88 + Item: Spell_Of_Time + Rate: 301 + Amount: 17 + - Index: 89 + Item: Spell_Of_Time + Rate: 301 + Amount: 18 + - Index: 90 + Item: Spell_Of_Time + Rate: 301 + Amount: 19 + - Index: 91 + Item: Spell_Of_Time + Rate: 301 + Amount: 20 + - Group: UNKNOWN_ANTIQUITY + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: aegis_1001478 + Rate: 600 + Amount: 3 + - Index: 1 + Item: aegis_1001478 + Rate: 600 + Amount: 4 + - Index: 2 + Item: aegis_1001478 + Rate: 600 + Amount: 5 + - Index: 3 + Item: aegis_1001478 + Rate: 600 + Amount: 6 + - Index: 4 + Item: aegis_1001478 + Rate: 600 + Amount: 7 + - Index: 5 + Item: Volar + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 6 + Item: Vernan + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 7 + Item: Argen_Blanco + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 8 + Item: Farthezan + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 9 + Item: Harve + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 10 + Item: Fortrage + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 11 + Item: Golden_Wrench + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 12 + Item: Engine_Pilebuncker + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 13 + Item: Maxi_Spanner + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 14 + Item: Estal + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 15 + Item: Coolant_Injection + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 16 + Item: Gene_Rod + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 17 + Item: Judgement_Slasher + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 18 + Item: Repent_Slasher + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 19 + Item: Agudo_Filo + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 20 + Item: Reaper_Cross + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 21 + Item: Jack_The_Knife + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 22 + Item: Platinum_Dagger + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 23 + Item: Rapid_Fire_C_Bow + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 24 + Item: Crimson_Rose_Stick + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 25 + Item: Staff_Of_Miracle + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 26 + Item: Gravitation_Staff + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 27 + Item: Boltigin + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 28 + Item: Psychic_Spear_Rod + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 29 + Item: Dust_Grave + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 30 + Item: Ponitendtia + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 31 + Item: Adorare_Staff + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 32 + Item: Lucis_Flail + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 33 + Item: Combo_Fist + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 34 + Item: Asura_Bandage + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 35 + Item: Bright_Mace + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 36 + Item: Sharp_Star_Bow + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 37 + Item: Falken_Shooter + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 38 + Item: Aiming_Bow + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 39 + Item: Wind_Gale + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 40 + Item: Black_Circle + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 41 + Item: Antique_Cello + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 42 + Item: Heart_Whip + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 43 + Item: Scarlet_Ribbon + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 44 + Item: Up_Sword_Of_Bluefire + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 45 + Item: Up_Slate_Sword + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 46 + Item: Up_Light_Blade + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 47 + Item: Up_Magic_Sword + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 48 + Item: Up_Fatalist + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 49 + Item: Up_Fog_Dew_Sword + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 50 + Item: Up_Blessed_Knife + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 51 + Item: Up_Undine_Spear_K + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 52 + Item: Up_OneSkyOneSun + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 53 + Item: Up_Demon_Hunting_Bible + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 54 + Item: Up_Shadow_Staff_K + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 55 + Item: Up_Freezing_Rod + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 56 + Item: Up_MeawFoxtail + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 57 + Item: Up_SoulWeight + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 58 + Item: Up_Freedom_Stick + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 59 + Item: Up_Iron_Nail_K + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 60 + Item: Up_Ray_Knuckle + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 61 + Item: Up_Trumpet_Shell_K + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 62 + Item: Up_Barb_Wire_K + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 63 + Item: Up_Meteor_Striker + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 64 + Item: Up_Saint_Hall + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 65 + Item: Up_Oriental_Sword + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 66 + Item: Up_Dragonic_Slayer + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 67 + Item: Up_Shiver_Katar_K + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 68 + Item: Up_Blade_Katar + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 69 + Item: Up_Avenger + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 70 + Item: Up_Iron_Staff + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 71 + Item: Up_Blue_Crystal_Staff + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 72 + Item: Up_Humma_Clear + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 73 + Item: Up_Narcis_Bow + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 74 + Item: Up_Royal_Bow_K + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 75 + Item: Up_Scalet_Dragon_L_Bow + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 76 + Item: Up_Crimson_Rose + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 77 + Item: Up_Master_Soul_Rifle + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 78 + Item: Up_Demon_S_Shot + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 79 + Item: Up_The_Black_Gatling + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 80 + Item: Up_Golden_L_Launcher + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 81 + Item: Volar + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 82 + Item: Vernan + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 83 + Item: Argen_Blanco + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 84 + Item: Farthezan + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 85 + Item: Harve + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 86 + Item: Fortrage + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 87 + Item: Golden_Wrench + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 88 + Item: Engine_Pilebuncker + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 89 + Item: Maxi_Spanner + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 90 + Item: Estal + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 91 + Item: Coolant_Injection + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 92 + Item: Gene_Rod + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 93 + Item: Judgement_Slasher + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 94 + Item: Repent_Slasher + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 95 + Item: Agudo_Filo + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 96 + Item: Reaper_Cross + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 97 + Item: Jack_The_Knife + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 98 + Item: Platinum_Dagger + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 99 + Item: Rapid_Fire_C_Bow + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 100 + Item: Crimson_Rose_Stick + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 101 + Item: Staff_Of_Miracle + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 102 + Item: Gravitation_Staff + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 103 + Item: Boltigin + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 104 + Item: Psychic_Spear_Rod + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 105 + Item: Dust_Grave + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 106 + Item: Ponitendtia + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 107 + Item: Adorare_Staff + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 108 + Item: Lucis_Flail + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 109 + Item: Combo_Fist + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 110 + Item: Asura_Bandage + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 111 + Item: Bright_Mace + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 112 + Item: Sharp_Star_Bow + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 113 + Item: Falken_Shooter + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 114 + Item: Aiming_Bow + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 115 + Item: Wind_Gale + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 116 + Item: Black_Circle + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 117 + Item: Antique_Cello + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 118 + Item: Heart_Whip + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 119 + Item: Scarlet_Ribbon + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 120 + Item: Up_Sword_Of_Bluefire + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 121 + Item: Up_Slate_Sword + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 122 + Item: Up_Light_Blade + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 123 + Item: Up_Magic_Sword + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 124 + Item: Up_Fatalist + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 125 + Item: Up_Fog_Dew_Sword + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 126 + Item: Up_Blessed_Knife + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 127 + Item: Up_Undine_Spear_K + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 128 + Item: Up_OneSkyOneSun + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 129 + Item: Up_Demon_Hunting_Bible + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 130 + Item: Up_Shadow_Staff_K + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 131 + Item: Up_Freezing_Rod + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 132 + Item: Up_MeawFoxtail + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 133 + Item: Up_SoulWeight + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 134 + Item: Up_Freedom_Stick + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 135 + Item: Up_Iron_Nail_K + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 136 + Item: Up_Ray_Knuckle + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 137 + Item: Up_Trumpet_Shell_K + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 138 + Item: Up_Barb_Wire_K + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 139 + Item: Up_Meteor_Striker + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 140 + Item: Up_Saint_Hall + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 141 + Item: Up_Oriental_Sword + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 142 + Item: Up_Dragonic_Slayer + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 143 + Item: Up_Shiver_Katar_K + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 144 + Item: Up_Blade_Katar + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 145 + Item: Up_Avenger + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 146 + Item: Up_Iron_Staff + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 147 + Item: Up_Blue_Crystal_Staff + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 148 + Item: Up_Humma_Clear + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 149 + Item: Up_Narcis_Bow + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 150 + Item: Up_Royal_Bow_K + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 151 + Item: Up_Scalet_Dragon_L_Bow + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 152 + Item: Up_Crimson_Rose + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 153 + Item: Up_Master_Soul_Rifle + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 154 + Item: Up_Demon_S_Shot + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 155 + Item: Up_The_Black_Gatling + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 156 + Item: Up_Golden_L_Launcher + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 157 + Item: Volar + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 158 + Item: Vernan + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 159 + Item: Argen_Blanco + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 160 + Item: Farthezan + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 161 + Item: Harve + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 162 + Item: Fortrage + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 163 + Item: Golden_Wrench + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 164 + Item: Engine_Pilebuncker + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 165 + Item: Maxi_Spanner + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 166 + Item: Estal + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 167 + Item: Coolant_Injection + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 168 + Item: Gene_Rod + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 169 + Item: Judgement_Slasher + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 170 + Item: Repent_Slasher + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 171 + Item: Agudo_Filo + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 172 + Item: Reaper_Cross + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 173 + Item: Jack_The_Knife + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 174 + Item: Platinum_Dagger + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 175 + Item: Rapid_Fire_C_Bow + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 176 + Item: Crimson_Rose_Stick + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 177 + Item: Staff_Of_Miracle + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 178 + Item: Gravitation_Staff + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 179 + Item: Boltigin + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 180 + Item: Psychic_Spear_Rod + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 181 + Item: Dust_Grave + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 182 + Item: Ponitendtia + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 183 + Item: Adorare_Staff + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 184 + Item: Lucis_Flail + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 185 + Item: Combo_Fist + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 186 + Item: Asura_Bandage + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 187 + Item: Bright_Mace + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 188 + Item: Sharp_Star_Bow + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 189 + Item: Falken_Shooter + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 190 + Item: Aiming_Bow + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 191 + Item: Wind_Gale + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 192 + Item: Black_Circle + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 193 + Item: Antique_Cello + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 194 + Item: Heart_Whip + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 195 + Item: Scarlet_Ribbon + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 196 + Item: Up_Sword_Of_Bluefire + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 197 + Item: Up_Slate_Sword + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 198 + Item: Up_Light_Blade + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 199 + Item: Up_Magic_Sword + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 200 + Item: Up_Fatalist + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 201 + Item: Up_Fog_Dew_Sword + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 202 + Item: Up_Blessed_Knife + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 203 + Item: Up_Undine_Spear_K + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 204 + Item: Up_OneSkyOneSun + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 205 + Item: Up_Demon_Hunting_Bible + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 206 + Item: Up_Shadow_Staff_K + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 207 + Item: Up_Freezing_Rod + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 208 + Item: Up_MeawFoxtail + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 209 + Item: Up_SoulWeight + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 210 + Item: Up_Freedom_Stick + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 211 + Item: Up_Iron_Nail_K + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 212 + Item: Up_Ray_Knuckle + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 213 + Item: Up_Trumpet_Shell_K + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 214 + Item: Up_Barb_Wire_K + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 215 + Item: Up_Meteor_Striker + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 216 + Item: Up_Saint_Hall + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 217 + Item: Up_Oriental_Sword + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 218 + Item: Up_Dragonic_Slayer + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 219 + Item: Up_Shiver_Katar_K + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 220 + Item: Up_Blade_Katar + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 221 + Item: Up_Avenger + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 222 + Item: Up_Iron_Staff + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 223 + Item: Up_Blue_Crystal_Staff + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 224 + Item: Up_Humma_Clear + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 225 + Item: Up_Narcis_Bow + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 226 + Item: Up_Royal_Bow_K + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 227 + Item: Up_Scalet_Dragon_L_Bow + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 228 + Item: Up_Crimson_Rose + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 229 + Item: Up_Master_Soul_Rifle + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 230 + Item: Up_Demon_S_Shot + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 231 + Item: Up_The_Black_Gatling + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 232 + Item: Up_Golden_L_Launcher + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 233 + Item: Bio_Test_Fragment + Rate: 320 + Amount: 36 + - Index: 234 + Item: Bio_Test_Fragment + Rate: 320 + Amount: 37 + - Index: 235 + Item: Bio_Test_Fragment + Rate: 320 + Amount: 38 + - Index: 236 + Item: Bio_Test_Fragment + Rate: 320 + Amount: 39 + - Index: 237 + Item: Bio_Test_Fragment + Rate: 320 + Amount: 40 + - Index: 238 + Item: Bio_Reseearch_Docu + Rate: 320 + Amount: 36 + - Index: 239 + Item: Bio_Reseearch_Docu + Rate: 320 + Amount: 37 + - Index: 240 + Item: Bio_Reseearch_Docu + Rate: 320 + Amount: 38 + - Index: 241 + Item: Bio_Reseearch_Docu + Rate: 320 + Amount: 39 + - Index: 242 + Item: Bio_Reseearch_Docu + Rate: 320 + Amount: 40 + - Group: SAKRAY_ANTIQUITY + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: aegis_1001480 + Rate: 500 + Amount: 5 + - Index: 1 + Item: aegis_1001480 + Rate: 500 + Amount: 6 + - Index: 2 + Item: aegis_1001480 + Rate: 500 + Amount: 7 + - Index: 3 + Item: aegis_1001480 + Rate: 500 + Amount: 8 + - Index: 4 + Item: Poenetentia_Aegis + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 5 + Item: Poenitentia_Gladius + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 6 + Item: Poenitentia_Ligula + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 7 + Item: Poenitentia_Orbis + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 8 + Item: Poenitentia_Mucro + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 9 + Item: Poenetentia_Dilacero + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 10 + Item: Poenitentia_Sol + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 11 + Item: Poenitentia_Jana + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 12 + Item: Poenitentia_Hasta + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 13 + Item: Poenitentia_Codex + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 14 + Item: Poenitentia_Liber + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 15 + Item: Poenitentia_Radius + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 16 + Item: Poenitentia_Scipio + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 17 + Item: Poenitentia_Crystallum + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 18 + Item: Poenitentia_Planta + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 19 + Item: Poenitentia_Ramus + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 20 + Item: Poenitentia_Ferrum + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 21 + Item: Poenitentia_Caestus + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 22 + Item: Poenitentia_Ungula + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 23 + Item: Poenitentia_Chorda + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 24 + Item: Poenitentia_Flagellum + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 25 + Item: Poenitentia_Clava + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 26 + Item: Poenitentia_Pendulus + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 27 + Item: Poenitentia_Ensis + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 28 + Item: Poenitentia_Manus + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 29 + Item: Poenitentia_Ascia + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 30 + Item: Poenitentia_Catapulta + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 31 + Item: Poenitentia_Termes + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 32 + Item: Poenitentia_Virga + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 33 + Item: Poenitentia_Tenon + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 34 + Item: Poenitentia_Nervus + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 35 + Item: Poenetentia_Attendo + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 36 + Item: Poenetentia_Vatia + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 37 + Item: Poenitentia_Foramen + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 38 + Item: Poenitentia_Penet + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 39 + Item: Poenitentia_Veloci + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 40 + Item: Poenitentia_Ruina + Rate: 25 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 41 + Item: Poenetentia_Aegis + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 42 + Item: Poenitentia_Gladius + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 43 + Item: Poenitentia_Ligula + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 44 + Item: Poenitentia_Orbis + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 45 + Item: Poenitentia_Mucro + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 46 + Item: Poenetentia_Dilacero + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 47 + Item: Poenitentia_Sol + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 48 + Item: Poenitentia_Jana + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 49 + Item: Poenitentia_Hasta + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 50 + Item: Poenitentia_Codex + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 51 + Item: Poenitentia_Liber + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 52 + Item: Poenitentia_Radius + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 53 + Item: Poenitentia_Scipio + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 54 + Item: Poenitentia_Crystallum + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 55 + Item: Poenitentia_Planta + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 56 + Item: Poenitentia_Ramus + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 57 + Item: Poenitentia_Ferrum + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 58 + Item: Poenitentia_Caestus + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 59 + Item: Poenitentia_Ungula + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 60 + Item: Poenitentia_Chorda + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 61 + Item: Poenitentia_Flagellum + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 62 + Item: Poenitentia_Clava + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 63 + Item: Poenitentia_Pendulus + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 64 + Item: Poenitentia_Ensis + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 65 + Item: Poenitentia_Manus + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 66 + Item: Poenitentia_Ascia + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 67 + Item: Poenitentia_Catapulta + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 68 + Item: Poenitentia_Termes + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 69 + Item: Poenitentia_Virga + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 70 + Item: Poenitentia_Tenon + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 71 + Item: Poenitentia_Nervus + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 72 + Item: Poenetentia_Attendo + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 73 + Item: Poenetentia_Vatia + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 74 + Item: Poenitentia_Foramen + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 75 + Item: Poenitentia_Penet + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 76 + Item: Poenitentia_Veloci + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 77 + Item: Poenitentia_Ruina + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 78 + Item: Poenetentia_Aegis + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 79 + Item: Poenitentia_Gladius + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 80 + Item: Poenitentia_Ligula + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 81 + Item: Poenitentia_Orbis + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 82 + Item: Poenitentia_Mucro + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 83 + Item: Poenetentia_Dilacero + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 84 + Item: Poenitentia_Sol + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 85 + Item: Poenitentia_Jana + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 86 + Item: Poenitentia_Hasta + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 87 + Item: Poenitentia_Codex + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 88 + Item: Poenitentia_Liber + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 89 + Item: Poenitentia_Radius + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 90 + Item: Poenitentia_Scipio + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 91 + Item: Poenitentia_Crystallum + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 92 + Item: Poenitentia_Planta + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 93 + Item: Poenitentia_Ramus + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 94 + Item: Poenitentia_Ferrum + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 95 + Item: Poenitentia_Caestus + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 96 + Item: Poenitentia_Ungula + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 97 + Item: Poenitentia_Chorda + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 98 + Item: Poenitentia_Flagellum + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 99 + Item: Poenitentia_Clava + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 100 + Item: Poenitentia_Pendulus + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 101 + Item: Poenitentia_Ensis + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 102 + Item: Poenitentia_Manus + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 103 + Item: Poenitentia_Ascia + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 104 + Item: Poenitentia_Catapulta + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 105 + Item: Poenitentia_Termes + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 106 + Item: Poenitentia_Virga + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 107 + Item: Poenitentia_Tenon + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 108 + Item: Poenitentia_Nervus + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 109 + Item: Poenetentia_Attendo + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 110 + Item: Poenetentia_Vatia + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 111 + Item: Poenitentia_Foramen + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 112 + Item: Poenitentia_Penet + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 113 + Item: Poenitentia_Veloci + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 114 + Item: Poenitentia_Ruina + Rate: 24 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 115 + Item: Poenetentia_Aegis + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 116 + Item: Poenitentia_Gladius + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 117 + Item: Poenitentia_Ligula + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 118 + Item: Poenitentia_Orbis + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 119 + Item: Poenitentia_Mucro + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 120 + Item: Poenetentia_Dilacero + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 121 + Item: Poenitentia_Sol + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 122 + Item: Poenitentia_Jana + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 123 + Item: Poenitentia_Hasta + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 124 + Item: Poenitentia_Codex + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 125 + Item: Poenitentia_Liber + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 126 + Item: Poenitentia_Radius + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 127 + Item: Poenitentia_Scipio + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 128 + Item: Poenitentia_Crystallum + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 129 + Item: Poenitentia_Planta + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 130 + Item: Poenitentia_Ramus + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 131 + Item: Poenitentia_Ferrum + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 132 + Item: Poenitentia_Caestus + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 133 + Item: Poenitentia_Ungula + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 134 + Item: Poenitentia_Chorda + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 135 + Item: Poenitentia_Flagellum + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 136 + Item: Poenitentia_Clava + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 137 + Item: Poenitentia_Pendulus + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 138 + Item: Poenitentia_Ensis + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 139 + Item: Poenitentia_Manus + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 140 + Item: Poenitentia_Ascia + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 141 + Item: Poenitentia_Catapulta + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 142 + Item: Poenitentia_Termes + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 143 + Item: Poenitentia_Virga + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 144 + Item: Poenitentia_Tenon + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 145 + Item: Poenitentia_Nervus + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 146 + Item: Poenetentia_Attendo + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 147 + Item: Poenetentia_Vatia + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 148 + Item: Poenitentia_Foramen + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 149 + Item: Poenitentia_Penet + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 150 + Item: Poenitentia_Veloci + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 151 + Item: Poenitentia_Ruina + Rate: 24 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 152 + Item: Poenetentia_Aegis + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 153 + Item: Poenitentia_Gladius + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 154 + Item: Poenitentia_Ligula + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 155 + Item: Poenitentia_Orbis + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 156 + Item: Poenitentia_Mucro + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 157 + Item: Poenetentia_Dilacero + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 158 + Item: Poenitentia_Sol + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 159 + Item: Poenitentia_Jana + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 160 + Item: Poenitentia_Hasta + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 161 + Item: Poenitentia_Codex + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 162 + Item: Poenitentia_Liber + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 163 + Item: Poenitentia_Radius + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 164 + Item: Poenitentia_Scipio + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 165 + Item: Poenitentia_Crystallum + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 166 + Item: Poenitentia_Planta + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 167 + Item: Poenitentia_Ramus + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 168 + Item: Poenitentia_Ferrum + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 169 + Item: Poenitentia_Caestus + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 170 + Item: Poenitentia_Ungula + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 171 + Item: Poenitentia_Chorda + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 172 + Item: Poenitentia_Flagellum + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 173 + Item: Poenitentia_Clava + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 174 + Item: Poenitentia_Pendulus + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 175 + Item: Poenitentia_Ensis + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 176 + Item: Poenitentia_Manus + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 177 + Item: Poenitentia_Ascia + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 178 + Item: Poenitentia_Catapulta + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 179 + Item: Poenitentia_Termes + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 180 + Item: Poenitentia_Virga + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 181 + Item: Poenitentia_Tenon + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 182 + Item: Poenitentia_Nervus + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 183 + Item: Poenetentia_Attendo + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 184 + Item: Poenetentia_Vatia + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 185 + Item: Poenitentia_Foramen + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 186 + Item: Poenitentia_Penet + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 187 + Item: Poenitentia_Veloci + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 188 + Item: Poenitentia_Ruina + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 189 + Item: Mine_As + Rate: 200 + Amount: 41 + - Index: 190 + Item: Mine_As + Rate: 200 + Amount: 42 + - Index: 191 + Item: Mine_As + Rate: 200 + Amount: 43 + - Index: 192 + Item: Mine_As + Rate: 200 + Amount: 44 + - Index: 193 + Item: Mine_As + Rate: 200 + Amount: 45 + - Index: 194 + Item: Mine_As + Rate: 200 + Amount: 46 + - Index: 195 + Item: Mine_As + Rate: 200 + Amount: 47 + - Index: 196 + Item: Mine_As + Rate: 200 + Amount: 48 + - Index: 197 + Item: Mine_As + Rate: 200 + Amount: 49 + - Index: 198 + Item: Mine_As + Rate: 200 + Amount: 50 + - Index: 199 + Item: Mine_As + Rate: 200 + Amount: 51 + - Index: 200 + Item: Mine_As + Rate: 200 + Amount: 52 + - Index: 201 + Item: Mine_As + Rate: 200 + Amount: 53 + - Index: 202 + Item: Mine_As + Rate: 200 + Amount: 54 + - Index: 203 + Item: Mine_As + Rate: 199 + Amount: 55 + - Index: 204 + Item: Sakray_Fury + Rate: 100 + Amount: 5 + - Index: 205 + Item: Sakray_Fury + Rate: 99 + Amount: 6 + - Index: 206 + Item: Sakray_Fury + Rate: 99 + Amount: 7 + - Index: 207 + Item: Sakray_Fury2 + Rate: 99 + Amount: 2 + - Index: 208 + Item: Sakray_Fury2 + Rate: 99 + Amount: 3 + - Index: 209 + Item: Sakray_Fury2 + Rate: 99 + Amount: 4 + - Index: 210 + Item: Sakray_Regret + Rate: 100 + Amount: 5 + - Index: 211 + Item: Sakray_Regret + Rate: 99 + Amount: 6 + - Index: 212 + Item: Sakray_Regret + Rate: 99 + Amount: 7 + - Index: 213 + Item: Sakray_Regret2 + Rate: 99 + Amount: 2 + - Index: 214 + Item: Sakray_Regret2 + Rate: 99 + Amount: 3 + - Index: 215 + Item: Sakray_Regret2 + Rate: 99 + Amount: 4 + - Group: AIRBOAT_ANTIQUITY + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: aegis_1001480 + Rate: 1000 + Amount: 5 + - Index: 1 + Item: aegis_1001480 + Rate: 1000 + Amount: 6 + - Index: 2 + Item: aegis_1001480 + Rate: 1000 + Amount: 7 + - Index: 3 + Item: aegis_1001480 + Rate: 1000 + Amount: 8 + - Index: 4 + Item: MD_Airboat_Boots + Rate: 120 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 5 + Item: MD_Airboat_Boots2 + Rate: 120 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 6 + Item: MD_Airboat_Boots3 + Rate: 120 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 7 + Item: MD_Airboat_Boots4 + Rate: 120 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 8 + Item: MD_Airboat_Boots5 + Rate: 120 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 9 + Item: MD_Airboat_Boots6 + Rate: 120 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 10 + Item: MD_Airboat_Boots + Rate: 105 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 11 + Item: MD_Airboat_Boots2 + Rate: 105 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 12 + Item: MD_Airboat_Boots3 + Rate: 105 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 13 + Item: MD_Airboat_Boots4 + Rate: 105 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 14 + Item: MD_Airboat_Boots5 + Rate: 105 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 15 + Item: MD_Airboat_Boots6 + Rate: 105 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 16 + Item: MD_Airboat_Boots + Rate: 65 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 17 + Item: MD_Airboat_Boots2 + Rate: 65 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 18 + Item: MD_Airboat_Boots3 + Rate: 65 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 19 + Item: MD_Airboat_Boots4 + Rate: 65 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 20 + Item: MD_Airboat_Boots5 + Rate: 65 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 21 + Item: MD_Airboat_Boots6 + Rate: 65 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 22 + Item: MD_Airboat_Boots + Rate: 40 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 23 + Item: MD_Airboat_Boots2 + Rate: 40 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 24 + Item: MD_Airboat_Boots3 + Rate: 40 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 25 + Item: MD_Airboat_Boots4 + Rate: 40 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 26 + Item: MD_Airboat_Boots5 + Rate: 40 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 27 + Item: MD_Airboat_Boots6 + Rate: 40 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 28 + Item: MD_Airboat_Boots + Rate: 5 + RefineMinimum: 13 + RefineMaximum: 13 + - Index: 29 + Item: MD_Airboat_Boots2 + Rate: 5 + RefineMinimum: 13 + RefineMaximum: 13 + - Index: 30 + Item: MD_Airboat_Boots3 + Rate: 5 + RefineMinimum: 13 + RefineMaximum: 13 + - Index: 31 + Item: MD_Airboat_Boots4 + Rate: 5 + RefineMinimum: 13 + RefineMaximum: 13 + - Index: 32 + Item: MD_Airboat_Boots5 + Rate: 5 + RefineMinimum: 13 + RefineMaximum: 13 + - Index: 33 + Item: MD_Airboat_Boots6 + Rate: 5 + RefineMinimum: 13 + RefineMaximum: 13 + - Index: 34 + Item: MD_Airboat_Tokken + Rate: 310 + Amount: 41 + - Index: 35 + Item: MD_Airboat_Tokken + Rate: 310 + Amount: 42 + - Index: 36 + Item: MD_Airboat_Tokken + Rate: 310 + Amount: 43 + - Index: 37 + Item: MD_Airboat_Tokken + Rate: 310 + Amount: 44 + - Index: 38 + Item: MD_Airboat_Tokken + Rate: 310 + Amount: 45 + - Index: 39 + Item: MD_Airboat_Tokken + Rate: 310 + Amount: 46 + - Index: 40 + Item: MD_Airboat_Tokken + Rate: 310 + Amount: 47 + - Index: 41 + Item: MD_Airboat_Tokken + Rate: 310 + Amount: 48 + - Index: 42 + Item: MD_Airboat_Tokken + Rate: 310 + Amount: 49 + - Index: 43 + Item: MD_Airboat_Tokken + Rate: 300 + Amount: 50 + - Index: 44 + Item: MD_Airboat_Reward + Rate: 300 + - Index: 45 + Item: MD_Airboat_Reward + Rate: 300 + Amount: 2 + - Index: 46 + Item: MD_Airboat_Reward + Rate: 300 + Amount: 3 + - Group: CELINE_KIMI_ANTIQUITY + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: aegis_1001478 + Rate: 1300 + Amount: 3 + - Index: 1 + Item: aegis_1001478 + Rate: 1300 + Amount: 4 + - Index: 2 + Item: aegis_1001478 + Rate: 1300 + Amount: 5 + - Index: 3 + Item: Celine_Dress + Rate: 300 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 4 + Item: Celine_Dress + Rate: 150 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 5 + Item: Celine_Dress + Rate: 50 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 6 + Item: Celine_Dress + Rate: 30 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 7 + Item: Celine_Dress + Rate: 15 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 8 + Item: Celine_Dress + Rate: 5 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 9 + Item: Celines_Ribbon + Rate: 300 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 10 + Item: Celines_Ribbon + Rate: 150 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 11 + Item: Celines_Ribbon + Rate: 50 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 12 + Item: Celines_Ribbon + Rate: 30 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 13 + Item: Celines_Ribbon + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 14 + Item: Evilspirit_Gloves + Rate: 400 + - Index: 15 + Item: Celine_Brooch_K + Rate: 400 + - Index: 16 + Item: Hurt_Mind + Rate: 400 + - Index: 17 + Item: KindHeart + Rate: 400 + - Index: 18 + Item: Red_Lantern + Rate: 400 + - Index: 19 + Item: Bloody_Coin + Rate: 200 + Amount: 31 + - Index: 20 + Item: Bloody_Coin + Rate: 200 + Amount: 32 + - Index: 21 + Item: Bloody_Coin + Rate: 200 + Amount: 33 + - Index: 22 + Item: Bloody_Coin + Rate: 200 + Amount: 34 + - Index: 23 + Item: Bloody_Coin + Rate: 200 + Amount: 35 + - Index: 24 + Item: Bloody_Coin + Rate: 200 + Amount: 36 + - Index: 25 + Item: Bloody_Coin + Rate: 200 + Amount: 37 + - Index: 26 + Item: Bloody_Coin + Rate: 200 + Amount: 38 + - Index: 27 + Item: Bloody_Coin + Rate: 200 + Amount: 39 + - Index: 28 + Item: Bloody_Coin + Rate: 200 + Amount: 40 + - Index: 29 + Item: Bloody_Coin + Rate: 200 + Amount: 41 + - Index: 30 + Item: Bloody_Coin + Rate: 200 + Amount: 42 + - Index: 31 + Item: Bloody_Coin + Rate: 200 + Amount: 43 + - Index: 32 + Item: Bloody_Coin + Rate: 200 + Amount: 44 + - Index: 33 + Item: Bloody_Coin + Rate: 200 + Amount: 45 + - Group: MIGUEL_ANTIQUITY + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: aegis_1001478 + Rate: 1000 + Amount: 3 + - Index: 1 + Item: aegis_1001478 + Rate: 1000 + Amount: 4 + - Index: 2 + Item: aegis_1001478 + Rate: 1000 + Amount: 5 + - Index: 3 + Item: Illusion_Armor_A + Rate: 155 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 4 + Item: Illusion_Armor_B + Rate: 155 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 5 + Item: Illusion_Leg_A + Rate: 155 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 6 + Item: Illusion_Leg_B + Rate: 155 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 7 + Item: Illusion_Engine_A + Rate: 155 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 8 + Item: Illusion_Engine_B + Rate: 155 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 9 + Item: Illusion_Armor_A + Rate: 105 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 10 + Item: Illusion_Armor_B + Rate: 105 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 11 + Item: Illusion_Leg_A + Rate: 105 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 12 + Item: Illusion_Leg_B + Rate: 105 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 13 + Item: Illusion_Engine_A + Rate: 105 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 14 + Item: Illusion_Engine_B + Rate: 105 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 15 + Item: Illusion_Armor_A + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 16 + Item: Illusion_Armor_B + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 17 + Item: Illusion_Leg_A + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 18 + Item: Illusion_Leg_B + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 19 + Item: Illusion_Engine_A + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 20 + Item: Illusion_Engine_B + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 21 + Item: Illusion_B_R + Rate: 80 + - Index: 22 + Item: Illusion_B_L + Rate: 80 + - Index: 23 + Item: Illusion_BC_R + Rate: 80 + - Index: 24 + Item: Illusion_BC_L + Rate: 80 + - Index: 25 + Item: EP17_1_EVT39 + Rate: 400 + Amount: 11 + - Index: 26 + Item: EP17_1_EVT39 + Rate: 400 + Amount: 12 + - Index: 27 + Item: EP17_1_EVT39 + Rate: 300 + Amount: 13 + - Index: 28 + Item: EP17_1_EVT39 + Rate: 300 + Amount: 14 + - Index: 29 + Item: EP17_1_EVT39 + Rate: 300 + Amount: 15 + - Index: 30 + Item: EP17_1_EVT39 + Rate: 300 + Amount: 16 + - Index: 31 + Item: EP17_1_EVT39 + Rate: 300 + Amount: 17 + - Index: 32 + Item: EP17_1_EVT39 + Rate: 200 + Amount: 18 + - Index: 33 + Item: EP17_1_EVT39 + Rate: 200 + Amount: 19 + - Index: 34 + Item: EP17_1_EVT39 + Rate: 200 + Amount: 20 + - Index: 35 + Item: EP17_1_EVT02 + Rate: 400 + Amount: 11 + - Index: 36 + Item: EP17_1_EVT02 + Rate: 400 + Amount: 12 + - Index: 37 + Item: EP17_1_EVT02 + Rate: 300 + Amount: 13 + - Index: 38 + Item: EP17_1_EVT02 + Rate: 300 + Amount: 14 + - Index: 39 + Item: EP17_1_EVT02 + Rate: 200 + Amount: 15 + - Index: 40 + Item: EP17_1_EVT02 + Rate: 100 + Amount: 16 + - Index: 41 + Item: EP17_1_EVT02 + Rate: 100 + Amount: 17 + - Index: 42 + Item: EP17_1_EVT02 + Rate: 100 + Amount: 18 + - Index: 43 + Item: EP17_1_EVT02 + Rate: 100 + Amount: 19 + - Index: 44 + Item: EP17_1_EVT02 + Rate: 100 + Amount: 20 + - Group: EL_A17T_ANTIQUITY + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: aegis_1001478 + Rate: 1000 + Amount: 3 + - Index: 1 + Item: aegis_1001478 + Rate: 1000 + Amount: 4 + - Index: 2 + Item: aegis_1001478 + Rate: 1000 + Amount: 5 + - Index: 3 + Item: Burning_Knuckle_OS + Rate: 90 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 4 + Item: Cannon_Rapier_OS + Rate: 90 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 5 + Item: Saphir_Hall_OS + Rate: 90 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 6 + Item: Ultio_Spes_OS + Rate: 90 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 7 + Item: Virtual_Bow_OS + Rate: 90 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 8 + Item: MH_P89_OS + Rate: 90 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 9 + Item: AC_B44_OS + Rate: 90 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 10 + Item: Beam_Claymore_OS + Rate: 90 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 11 + Item: Rutilus_Stick_OS + Rate: 90 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 12 + Item: Meuchler_OS + Rate: 90 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 13 + Item: Blasti_OS + Rate: 90 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 14 + Item: HR_S55_OS + Rate: 90 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 15 + Item: Circuit_Board_OS + Rate: 90 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 16 + Item: Kuroiro_OS + Rate: 90 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 17 + Item: Boost_Lance_OS + Rate: 90 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 18 + Item: ElectricFox_OS + Rate: 90 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 19 + Item: Burning_Knuckle_OS + Rate: 50 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 20 + Item: Cannon_Rapier_OS + Rate: 50 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 21 + Item: Saphir_Hall_OS + Rate: 50 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 22 + Item: Ultio_Spes_OS + Rate: 50 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 23 + Item: Virtual_Bow_OS + Rate: 50 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 24 + Item: MH_P89_OS + Rate: 50 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 25 + Item: AC_B44_OS + Rate: 50 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 26 + Item: Beam_Claymore_OS + Rate: 50 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 27 + Item: Rutilus_Stick_OS + Rate: 50 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 28 + Item: Meuchler_OS + Rate: 50 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 29 + Item: Blasti_OS + Rate: 50 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 30 + Item: HR_S55_OS + Rate: 50 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 31 + Item: Circuit_Board_OS + Rate: 50 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 32 + Item: Kuroiro_OS + Rate: 50 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 33 + Item: Boost_Lance_OS + Rate: 50 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 34 + Item: ElectricFox_OS + Rate: 50 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 35 + Item: Burning_Knuckle_OS + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 36 + Item: Cannon_Rapier_OS + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 37 + Item: Saphir_Hall_OS + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 38 + Item: Ultio_Spes_OS + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 39 + Item: Virtual_Bow_OS + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 40 + Item: MH_P89_OS + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 41 + Item: AC_B44_OS + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 42 + Item: Beam_Claymore_OS + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 43 + Item: Rutilus_Stick_OS + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 44 + Item: Meuchler_OS + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 45 + Item: Blasti_OS + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 46 + Item: HR_S55_OS + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 47 + Item: Circuit_Board_OS + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 48 + Item: Kuroiro_OS + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 49 + Item: Boost_Lance_OS + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 50 + Item: ElectricFox_OS + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 51 + Item: EP17_1_EVT01 + Rate: 180 + Amount: 3 + - Index: 52 + Item: EP17_1_EVT01 + Rate: 180 + Amount: 4 + - Index: 53 + Item: EP17_1_EVT01 + Rate: 170 + Amount: 5 + - Index: 54 + Item: EP17_1_EVT39 + Rate: 200 + Amount: 11 + - Index: 55 + Item: EP17_1_EVT39 + Rate: 200 + Amount: 12 + - Index: 56 + Item: EP17_1_EVT39 + Rate: 200 + Amount: 13 + - Index: 57 + Item: EP17_1_EVT39 + Rate: 200 + Amount: 14 + - Index: 58 + Item: EP17_1_EVT39 + Rate: 200 + Amount: 15 + - Index: 59 + Item: EP17_1_EVT39 + Rate: 200 + Amount: 16 + - Index: 60 + Item: EP17_1_EVT39 + Rate: 200 + Amount: 17 + - Index: 61 + Item: EP17_1_EVT39 + Rate: 200 + Amount: 18 + - Index: 62 + Item: EP17_1_EVT39 + Rate: 200 + Amount: 19 + - Index: 63 + Item: EP17_1_EVT39 + Rate: 200 + Amount: 20 + - Index: 64 + Item: EP17_1_EVT02 + Rate: 190 + Amount: 11 + - Index: 65 + Item: EP17_1_EVT02 + Rate: 190 + Amount: 12 + - Index: 66 + Item: EP17_1_EVT02 + Rate: 190 + Amount: 13 + - Index: 67 + Item: EP17_1_EVT02 + Rate: 190 + Amount: 14 + - Index: 68 + Item: EP17_1_EVT02 + Rate: 190 + Amount: 15 + - Index: 69 + Item: EP17_1_EVT02 + Rate: 190 + Amount: 16 + - Index: 70 + Item: EP17_1_EVT02 + Rate: 190 + Amount: 17 + - Index: 71 + Item: EP17_1_EVT02 + Rate: 190 + Amount: 18 + - Index: 72 + Item: EP17_1_EVT02 + Rate: 190 + Amount: 19 + - Index: 73 + Item: EP17_1_EVT02 + Rate: 190 + Amount: 20 + - Group: PITAYA_BOSS_ANTIQUITY + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: aegis_1001478 + Rate: 1000 + Amount: 3 + - Index: 1 + Item: aegis_1001478 + Rate: 1000 + Amount: 4 + - Index: 2 + Item: aegis_1001478 + Rate: 1000 + Amount: 5 + - Index: 3 + Item: Auto_Armor_A + Rate: 155 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 4 + Item: Auto_Armor_B + Rate: 155 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 5 + Item: Auto_Leg_A + Rate: 155 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 6 + Item: Auto_Leg_B + Rate: 155 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 7 + Item: Auto_Engine_A + Rate: 155 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 8 + Item: Auto_Engine_B + Rate: 155 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 9 + Item: Auto_Armor_A + Rate: 105 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 10 + Item: Auto_Armor_B + Rate: 105 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 11 + Item: Auto_Leg_A + Rate: 105 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 12 + Item: Auto_Leg_B + Rate: 105 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 13 + Item: Auto_Engine_A + Rate: 105 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 14 + Item: Auto_Engine_B + Rate: 105 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 15 + Item: Auto_Armor_A + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 16 + Item: Auto_Armor_B + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 17 + Item: Auto_Leg_A + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 18 + Item: Auto_Leg_B + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 19 + Item: Auto_Engine_A + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 20 + Item: Auto_Engine_B + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 21 + Item: Auto_B_R + Rate: 80 + - Index: 22 + Item: Auto_B_L + Rate: 80 + - Index: 23 + Item: Auto_BC_R + Rate: 80 + - Index: 24 + Item: Auto_BC_L + Rate: 80 + - Index: 25 + Item: Magical_Igni_Stone + Rate: 200 + - Index: 26 + Item: Magical_Igni_Stone + Rate: 200 + Amount: 2 + - Index: 27 + Item: Magical_Igni_Stone + Rate: 200 + Amount: 3 + - Index: 28 + Item: Magical_Igni_Stone + Rate: 200 + Amount: 4 + - Index: 29 + Item: Magical_Igni_Stone + Rate: 200 + Amount: 5 + - Index: 30 + Item: BarMealTicket + Rate: 400 + Amount: 11 + - Index: 31 + Item: BarMealTicket + Rate: 400 + Amount: 12 + - Index: 32 + Item: BarMealTicket + Rate: 400 + Amount: 13 + - Index: 33 + Item: BarMealTicket + Rate: 400 + Amount: 14 + - Index: 34 + Item: BarMealTicket + Rate: 400 + Amount: 15 + - Index: 35 + Item: BarMealTicket + Rate: 400 + Amount: 16 + - Index: 36 + Item: BarMealTicket + Rate: 400 + Amount: 17 + - Index: 37 + Item: BarMealTicket + Rate: 400 + Amount: 18 + - Index: 38 + Item: BarMealTicket + Rate: 400 + Amount: 19 + - Index: 39 + Item: BarMealTicket + Rate: 400 + Amount: 20 + - Group: SWEETY_ANTIQUITY + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: aegis_1001478 + Rate: 1000 + Amount: 3 + - Index: 1 + Item: aegis_1001478 + Rate: 1000 + Amount: 4 + - Index: 2 + Item: aegis_1001478 + Rate: 1000 + Amount: 5 + - Index: 3 + Item: Ep172_1h_Sword + Rate: 30 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 4 + Item: Ep172_1h_Wand + Rate: 30 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 5 + Item: Ep172_1h_Book + Rate: 30 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 6 + Item: Ep172_1h_Axe + Rate: 30 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 7 + Item: Ep172_1h_Sword2 + Rate: 30 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 8 + Item: Ep172_Bh_Bow + Rate: 30 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 9 + Item: Ep172_Bh_Bow2 + Rate: 30 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 10 + Item: Ep172_Bh_Knuck + Rate: 30 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 11 + Item: Ep172_1h_Spear + Rate: 30 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 12 + Item: Ep172_Bh_Spear + Rate: 30 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 13 + Item: Ep172_1h_Dagger + Rate: 30 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 14 + Item: Ep172_Bh_Katar + Rate: 30 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 15 + Item: Ep172_Bh_Staff + Rate: 30 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 16 + Item: Ep172_1h_Book2 + Rate: 30 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 17 + Item: Ep172_1h_Dagger2 + Rate: 30 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 18 + Item: Ep172_1h_Whip + Rate: 30 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 19 + Item: Ep172_1h_Inst + Rate: 30 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 20 + Item: Ep172_Bh_Huuma + Rate: 30 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 21 + Item: Ep172_1h_Hammer + Rate: 30 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 22 + Item: Ep172_1h_Foxtail + Rate: 30 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 23 + Item: Ep172_1h_Rifle + Rate: 30 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 24 + Item: Ep172_1h_Shotgun + Rate: 30 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 25 + Item: Ep172_1h_Gatling + Rate: 30 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 26 + Item: Ep172_1h_Grenade + Rate: 30 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 27 + Item: Ep172_Bh_Sword + Rate: 30 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 28 + Item: Ep172_Bh_Bow3 + Rate: 30 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 29 + Item: Ep172_1h_Sword + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 30 + Item: Ep172_1h_Wand + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 31 + Item: Ep172_1h_Book + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 32 + Item: Ep172_1h_Axe + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 33 + Item: Ep172_1h_Sword2 + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 34 + Item: Ep172_Bh_Bow + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 35 + Item: Ep172_Bh_Bow2 + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 36 + Item: Ep172_Bh_Knuck + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 37 + Item: Ep172_1h_Spear + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 38 + Item: Ep172_Bh_Spear + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 39 + Item: Ep172_1h_Dagger + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 40 + Item: Ep172_Bh_Katar + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 41 + Item: Ep172_Bh_Staff + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 42 + Item: Ep172_1h_Book2 + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 43 + Item: Ep172_1h_Dagger2 + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 44 + Item: Ep172_1h_Whip + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 45 + Item: Ep172_1h_Inst + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 46 + Item: Ep172_Bh_Huuma + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 47 + Item: Ep172_1h_Hammer + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 48 + Item: Ep172_1h_Foxtail + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 49 + Item: Ep172_1h_Rifle + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 50 + Item: Ep172_1h_Shotgun + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 51 + Item: Ep172_1h_Gatling + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 52 + Item: Ep172_1h_Grenade + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 53 + Item: Ep172_Bh_Sword + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 54 + Item: Ep172_Bh_Bow3 + Rate: 25 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 55 + Item: Ep172_1h_Sword + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 56 + Item: Ep172_1h_Wand + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 57 + Item: Ep172_1h_Book + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 58 + Item: Ep172_1h_Axe + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 59 + Item: Ep172_1h_Sword2 + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 60 + Item: Ep172_Bh_Bow + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 61 + Item: Ep172_Bh_Bow2 + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 62 + Item: Ep172_Bh_Knuck + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 63 + Item: Ep172_1h_Spear + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 64 + Item: Ep172_Bh_Spear + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 65 + Item: Ep172_1h_Dagger + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 66 + Item: Ep172_Bh_Katar + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 67 + Item: Ep172_Bh_Staff + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 68 + Item: Ep172_1h_Book2 + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 69 + Item: Ep172_1h_Dagger2 + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 70 + Item: Ep172_1h_Whip + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 71 + Item: Ep172_1h_Inst + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 72 + Item: Ep172_Bh_Huuma + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 73 + Item: Ep172_1h_Hammer + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 74 + Item: Ep172_1h_Foxtail + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 75 + Item: Ep172_1h_Rifle + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 76 + Item: Ep172_1h_Shotgun + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 77 + Item: Ep172_1h_Gatling + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 78 + Item: Ep172_1h_Grenade + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 79 + Item: Ep172_Bh_Sword + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 80 + Item: Ep172_Bh_Bow3 + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 81 + Item: Ep172_1h_Sword + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 82 + Item: Ep172_1h_Wand + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 83 + Item: Ep172_1h_Book + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 84 + Item: Ep172_1h_Axe + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 85 + Item: Ep172_1h_Sword2 + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 86 + Item: Ep172_Bh_Bow + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 87 + Item: Ep172_Bh_Bow2 + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 88 + Item: Ep172_Bh_Knuck + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 89 + Item: Ep172_1h_Spear + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 90 + Item: Ep172_Bh_Spear + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 91 + Item: Ep172_1h_Dagger + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 92 + Item: Ep172_Bh_Katar + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 93 + Item: Ep172_Bh_Staff + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 94 + Item: Ep172_1h_Book2 + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 95 + Item: Ep172_1h_Dagger2 + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 96 + Item: Ep172_1h_Whip + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 97 + Item: Ep172_1h_Inst + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 98 + Item: Ep172_Bh_Huuma + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 99 + Item: Ep172_1h_Hammer + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 100 + Item: Ep172_1h_Foxtail + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 101 + Item: Ep172_1h_Rifle + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 102 + Item: Ep172_1h_Shotgun + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 103 + Item: Ep172_1h_Gatling + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 104 + Item: Ep172_1h_Grenade + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 105 + Item: Ep172_Bh_Sword + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 106 + Item: Ep172_Bh_Bow3 + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 107 + Item: Ep172_1h_Sword + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 108 + Item: Ep172_1h_Wand + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 109 + Item: Ep172_1h_Book + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 110 + Item: Ep172_1h_Axe + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 111 + Item: Ep172_1h_Sword2 + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 112 + Item: Ep172_Bh_Bow + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 113 + Item: Ep172_Bh_Bow2 + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 114 + Item: Ep172_Bh_Knuck + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 115 + Item: Ep172_1h_Spear + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 116 + Item: Ep172_Bh_Spear + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 117 + Item: Ep172_1h_Dagger + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 118 + Item: Ep172_Bh_Katar + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 119 + Item: Ep172_Bh_Staff + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 120 + Item: Ep172_1h_Book2 + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 121 + Item: Ep172_1h_Dagger2 + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 122 + Item: Ep172_1h_Whip + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 123 + Item: Ep172_1h_Inst + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 124 + Item: Ep172_Bh_Huuma + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 125 + Item: Ep172_1h_Hammer + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 126 + Item: Ep172_1h_Foxtail + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 127 + Item: Ep172_1h_Rifle + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 128 + Item: Ep172_1h_Shotgun + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 129 + Item: Ep172_1h_Gatling + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 130 + Item: Ep172_1h_Grenade + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 131 + Item: Ep172_Bh_Sword + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 132 + Item: Ep172_Bh_Bow3 + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 133 + Item: Magical_Igni_Stone + Rate: 315 + - Index: 134 + Item: Magical_Igni_Stone + Rate: 300 + Amount: 2 + - Index: 135 + Item: Magical_Igni_Stone + Rate: 300 + Amount: 3 + - Index: 136 + Item: Magical_Igni_Stone + Rate: 300 + Amount: 4 + - Index: 137 + Item: Magical_Igni_Stone + Rate: 300 + Amount: 5 + - Index: 138 + Item: BarMealTicket + Rate: 300 + Amount: 11 + - Index: 139 + Item: BarMealTicket + Rate: 300 + Amount: 12 + - Index: 140 + Item: BarMealTicket + Rate: 300 + Amount: 13 + - Index: 141 + Item: BarMealTicket + Rate: 300 + Amount: 14 + - Index: 142 + Item: BarMealTicket + Rate: 300 + Amount: 15 + - Index: 143 + Item: BarMealTicket + Rate: 300 + Amount: 16 + - Index: 144 + Item: BarMealTicket + Rate: 300 + Amount: 17 + - Index: 145 + Item: BarMealTicket + Rate: 300 + Amount: 18 + - Index: 146 + Item: BarMealTicket + Rate: 300 + Amount: 19 + - Index: 147 + Item: BarMealTicket + Rate: 300 + Amount: 20 + - Group: REDPEPPER_ANTIQUITY + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: aegis_1001478 + Rate: 1000 + Amount: 4 + - Index: 1 + Item: aegis_1001478 + Rate: 1000 + Amount: 5 + - Index: 2 + Item: aegis_1001478 + Rate: 1000 + Amount: 6 + - Index: 3 + Item: aegis_1001478 + Rate: 1000 + Amount: 7 + - Index: 4 + Item: Ep172_1h_Sword + Rate: 32 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 5 + Item: Ep172_1h_Wand + Rate: 32 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 6 + Item: Ep172_1h_Book + Rate: 32 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 7 + Item: Ep172_1h_Axe + Rate: 32 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 8 + Item: Ep172_1h_Sword2 + Rate: 32 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 9 + Item: Ep172_Bh_Bow + Rate: 32 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 10 + Item: Ep172_Bh_Bow2 + Rate: 32 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 11 + Item: Ep172_Bh_Knuck + Rate: 32 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 12 + Item: Ep172_1h_Spear + Rate: 32 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 13 + Item: Ep172_Bh_Spear + Rate: 32 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 14 + Item: Ep172_1h_Dagger + Rate: 32 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 15 + Item: Ep172_Bh_Katar + Rate: 32 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 16 + Item: Ep172_Bh_Staff + Rate: 32 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 17 + Item: Ep172_1h_Book2 + Rate: 32 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 18 + Item: Ep172_1h_Dagger2 + Rate: 32 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 19 + Item: Ep172_1h_Whip + Rate: 32 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 20 + Item: Ep172_1h_Inst + Rate: 32 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 21 + Item: Ep172_Bh_Huuma + Rate: 32 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 22 + Item: Ep172_1h_Hammer + Rate: 32 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 23 + Item: Ep172_1h_Foxtail + Rate: 32 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 24 + Item: Ep172_1h_Rifle + Rate: 32 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 25 + Item: Ep172_1h_Shotgun + Rate: 32 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 26 + Item: Ep172_1h_Gatling + Rate: 32 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 27 + Item: Ep172_1h_Grenade + Rate: 32 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 28 + Item: Ep172_Bh_Sword + Rate: 32 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 29 + Item: Ep172_Bh_Bow3 + Rate: 32 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 30 + Item: Ep172_1h_Sword + Rate: 24 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 31 + Item: Ep172_1h_Wand + Rate: 24 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 32 + Item: Ep172_1h_Book + Rate: 24 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 33 + Item: Ep172_1h_Axe + Rate: 24 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 34 + Item: Ep172_1h_Sword2 + Rate: 24 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 35 + Item: Ep172_Bh_Bow + Rate: 24 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 36 + Item: Ep172_Bh_Bow2 + Rate: 24 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 37 + Item: Ep172_Bh_Knuck + Rate: 24 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 38 + Item: Ep172_1h_Spear + Rate: 24 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 39 + Item: Ep172_Bh_Spear + Rate: 24 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 40 + Item: Ep172_1h_Dagger + Rate: 24 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 41 + Item: Ep172_Bh_Katar + Rate: 24 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 42 + Item: Ep172_Bh_Staff + Rate: 24 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 43 + Item: Ep172_1h_Book2 + Rate: 24 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 44 + Item: Ep172_1h_Dagger2 + Rate: 24 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 45 + Item: Ep172_1h_Whip + Rate: 24 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 46 + Item: Ep172_1h_Inst + Rate: 24 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 47 + Item: Ep172_Bh_Huuma + Rate: 24 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 48 + Item: Ep172_1h_Hammer + Rate: 24 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 49 + Item: Ep172_1h_Foxtail + Rate: 24 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 50 + Item: Ep172_1h_Rifle + Rate: 24 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 51 + Item: Ep172_1h_Shotgun + Rate: 24 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 52 + Item: Ep172_1h_Gatling + Rate: 24 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 53 + Item: Ep172_1h_Grenade + Rate: 24 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 54 + Item: Ep172_Bh_Sword + Rate: 24 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 55 + Item: Ep172_Bh_Bow3 + Rate: 24 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 56 + Item: Ep172_1h_Sword + Rate: 15 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 57 + Item: Ep172_1h_Wand + Rate: 15 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 58 + Item: Ep172_1h_Book + Rate: 15 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 59 + Item: Ep172_1h_Axe + Rate: 15 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 60 + Item: Ep172_1h_Sword2 + Rate: 15 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 61 + Item: Ep172_Bh_Bow + Rate: 15 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 62 + Item: Ep172_Bh_Bow2 + Rate: 15 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 63 + Item: Ep172_Bh_Knuck + Rate: 15 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 64 + Item: Ep172_1h_Spear + Rate: 15 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 65 + Item: Ep172_Bh_Spear + Rate: 15 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 66 + Item: Ep172_1h_Dagger + Rate: 15 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 67 + Item: Ep172_Bh_Katar + Rate: 15 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 68 + Item: Ep172_Bh_Staff + Rate: 15 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 69 + Item: Ep172_1h_Book2 + Rate: 15 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 70 + Item: Ep172_1h_Dagger2 + Rate: 15 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 71 + Item: Ep172_1h_Whip + Rate: 15 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 72 + Item: Ep172_1h_Inst + Rate: 15 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 73 + Item: Ep172_Bh_Huuma + Rate: 15 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 74 + Item: Ep172_1h_Hammer + Rate: 15 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 75 + Item: Ep172_1h_Foxtail + Rate: 15 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 76 + Item: Ep172_1h_Rifle + Rate: 15 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 77 + Item: Ep172_1h_Shotgun + Rate: 15 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 78 + Item: Ep172_1h_Gatling + Rate: 15 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 79 + Item: Ep172_1h_Grenade + Rate: 15 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 80 + Item: Ep172_Bh_Sword + Rate: 15 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 81 + Item: Ep172_Bh_Bow3 + Rate: 15 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 82 + Item: Ep172_1h_Sword + Rate: 12 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 83 + Item: Ep172_1h_Wand + Rate: 12 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 84 + Item: Ep172_1h_Book + Rate: 12 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 85 + Item: Ep172_1h_Axe + Rate: 12 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 86 + Item: Ep172_1h_Sword2 + Rate: 12 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 87 + Item: Ep172_Bh_Bow + Rate: 12 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 88 + Item: Ep172_Bh_Bow2 + Rate: 12 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 89 + Item: Ep172_Bh_Knuck + Rate: 12 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 90 + Item: Ep172_1h_Spear + Rate: 12 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 91 + Item: Ep172_Bh_Spear + Rate: 12 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 92 + Item: Ep172_1h_Dagger + Rate: 12 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 93 + Item: Ep172_Bh_Katar + Rate: 12 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 94 + Item: Ep172_Bh_Staff + Rate: 12 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 95 + Item: Ep172_1h_Book2 + Rate: 12 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 96 + Item: Ep172_1h_Dagger2 + Rate: 12 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 97 + Item: Ep172_1h_Whip + Rate: 12 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 98 + Item: Ep172_1h_Inst + Rate: 12 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 99 + Item: Ep172_Bh_Huuma + Rate: 12 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 100 + Item: Ep172_1h_Hammer + Rate: 12 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 101 + Item: Ep172_1h_Foxtail + Rate: 12 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 102 + Item: Ep172_1h_Rifle + Rate: 12 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 103 + Item: Ep172_1h_Shotgun + Rate: 12 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 104 + Item: Ep172_1h_Gatling + Rate: 12 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 105 + Item: Ep172_1h_Grenade + Rate: 12 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 106 + Item: Ep172_Bh_Sword + Rate: 12 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 107 + Item: Ep172_Bh_Bow3 + Rate: 12 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 108 + Item: Ep172_1h_Sword + Rate: 8 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 109 + Item: Ep172_1h_Wand + Rate: 8 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 110 + Item: Ep172_1h_Book + Rate: 8 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 111 + Item: Ep172_1h_Axe + Rate: 8 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 112 + Item: Ep172_1h_Sword2 + Rate: 8 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 113 + Item: Ep172_Bh_Bow + Rate: 8 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 114 + Item: Ep172_Bh_Bow2 + Rate: 8 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 115 + Item: Ep172_Bh_Knuck + Rate: 8 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 116 + Item: Ep172_1h_Spear + Rate: 8 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 117 + Item: Ep172_Bh_Spear + Rate: 8 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 118 + Item: Ep172_1h_Dagger + Rate: 8 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 119 + Item: Ep172_Bh_Katar + Rate: 8 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 120 + Item: Ep172_Bh_Staff + Rate: 8 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 121 + Item: Ep172_1h_Book2 + Rate: 8 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 122 + Item: Ep172_1h_Dagger2 + Rate: 8 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 123 + Item: Ep172_1h_Whip + Rate: 8 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 124 + Item: Ep172_1h_Inst + Rate: 8 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 125 + Item: Ep172_Bh_Huuma + Rate: 8 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 126 + Item: Ep172_1h_Hammer + Rate: 8 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 127 + Item: Ep172_1h_Foxtail + Rate: 8 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 128 + Item: Ep172_1h_Rifle + Rate: 8 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 129 + Item: Ep172_1h_Shotgun + Rate: 8 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 130 + Item: Ep172_1h_Gatling + Rate: 8 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 131 + Item: Ep172_1h_Grenade + Rate: 8 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 132 + Item: Ep172_Bh_Sword + Rate: 8 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 133 + Item: Ep172_Bh_Bow3 + Rate: 8 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 134 + Item: Auto_Armor_A + Rate: 32 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 135 + Item: Auto_Armor_B + Rate: 32 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 136 + Item: Auto_Leg_A + Rate: 32 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 137 + Item: Auto_Leg_B + Rate: 32 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 138 + Item: Auto_Engine_A + Rate: 32 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 139 + Item: Auto_Engine_B + Rate: 32 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 140 + Item: Auto_Armor_A + Rate: 24 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 141 + Item: Auto_Armor_B + Rate: 24 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 142 + Item: Auto_Leg_A + Rate: 24 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 143 + Item: Auto_Leg_B + Rate: 24 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 144 + Item: Auto_Engine_A + Rate: 24 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 145 + Item: Auto_Engine_B + Rate: 24 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 146 + Item: Auto_Armor_A + Rate: 15 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 147 + Item: Auto_Armor_B + Rate: 15 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 148 + Item: Auto_Leg_A + Rate: 15 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 149 + Item: Auto_Leg_B + Rate: 15 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 150 + Item: Auto_Engine_A + Rate: 15 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 151 + Item: Auto_Engine_B + Rate: 15 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 152 + Item: Auto_Armor_A + Rate: 12 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 153 + Item: Auto_Armor_B + Rate: 12 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 154 + Item: Auto_Leg_A + Rate: 12 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 155 + Item: Auto_Leg_B + Rate: 12 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 156 + Item: Auto_Engine_A + Rate: 12 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 157 + Item: Auto_Engine_B + Rate: 12 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 158 + Item: Auto_Armor_A + Rate: 8 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 159 + Item: Auto_Armor_B + Rate: 8 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 160 + Item: Auto_Leg_A + Rate: 8 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 161 + Item: Auto_Leg_B + Rate: 8 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 162 + Item: Auto_Engine_A + Rate: 8 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 163 + Item: Auto_Engine_B + Rate: 8 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 164 + Item: Auto_B_R + Rate: 22 + - Index: 165 + Item: Auto_B_L + Rate: 22 + - Index: 166 + Item: Auto_BC_R + Rate: 22 + - Index: 167 + Item: Auto_BC_L + Rate: 22 + - Index: 168 + Item: Magical_Igni_Stone + Rate: 300 + Amount: 3 + - Index: 169 + Item: Magical_Igni_Stone + Rate: 300 + Amount: 4 + - Index: 170 + Item: Magical_Igni_Stone + Rate: 300 + Amount: 5 + - Index: 171 + Item: Magical_Igni_Stone + Rate: 300 + Amount: 6 + - Index: 172 + Item: Magical_Igni_Stone + Rate: 300 + Amount: 7 + - Index: 173 + Item: BarMealTicket + Rate: 300 + Amount: 21 + - Index: 174 + Item: BarMealTicket + Rate: 300 + Amount: 22 + - Index: 175 + Item: BarMealTicket + Rate: 300 + Amount: 23 + - Index: 176 + Item: BarMealTicket + Rate: 300 + Amount: 24 + - Index: 177 + Item: BarMealTicket + Rate: 300 + Amount: 25 + - Group: REDPEPPER_ANTIQUITY2 + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: aegis_1001479 + Rate: 800 + Amount: 3 + - Index: 1 + Item: aegis_1001479 + Rate: 800 + Amount: 4 + - Index: 2 + Item: aegis_1001479 + Rate: 800 + Amount: 5 + - Index: 3 + Item: aegis_1001479 + Rate: 800 + Amount: 6 + - Index: 4 + Item: aegis_1001479 + Rate: 800 + Amount: 7 + - Index: 5 + Item: Ep172_1h_Sword + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 6 + Item: Ep172_1h_Wand + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 7 + Item: Ep172_1h_Book + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 8 + Item: Ep172_1h_Axe + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 9 + Item: Ep172_1h_Sword2 + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 10 + Item: Ep172_Bh_Bow + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 11 + Item: Ep172_Bh_Bow2 + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 12 + Item: Ep172_Bh_Knuck + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 13 + Item: Ep172_1h_Spear + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 14 + Item: Ep172_Bh_Spear + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 15 + Item: Ep172_1h_Dagger + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 16 + Item: Ep172_Bh_Katar + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 17 + Item: Ep172_Bh_Staff + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 18 + Item: Ep172_1h_Book2 + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 19 + Item: Ep172_1h_Dagger2 + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 20 + Item: Ep172_1h_Whip + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 21 + Item: Ep172_1h_Inst + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 22 + Item: Ep172_Bh_Huuma + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 23 + Item: Ep172_1h_Hammer + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 24 + Item: Ep172_1h_Foxtail + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 25 + Item: Ep172_1h_Rifle + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 26 + Item: Ep172_1h_Shotgun + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 27 + Item: Ep172_1h_Gatling + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 28 + Item: Ep172_1h_Grenade + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 29 + Item: Ep172_Bh_Sword + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 30 + Item: Ep172_Bh_Bow3 + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 31 + Item: Ep172_1h_Sword + Rate: 25 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 32 + Item: Ep172_1h_Wand + Rate: 25 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 33 + Item: Ep172_1h_Book + Rate: 25 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 34 + Item: Ep172_1h_Axe + Rate: 25 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 35 + Item: Ep172_1h_Sword2 + Rate: 25 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 36 + Item: Ep172_Bh_Bow + Rate: 25 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 37 + Item: Ep172_Bh_Bow2 + Rate: 25 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 38 + Item: Ep172_Bh_Knuck + Rate: 25 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 39 + Item: Ep172_1h_Spear + Rate: 25 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 40 + Item: Ep172_Bh_Spear + Rate: 25 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 41 + Item: Ep172_1h_Dagger + Rate: 25 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 42 + Item: Ep172_Bh_Katar + Rate: 25 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 43 + Item: Ep172_Bh_Staff + Rate: 25 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 44 + Item: Ep172_1h_Book2 + Rate: 25 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 45 + Item: Ep172_1h_Dagger2 + Rate: 25 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 46 + Item: Ep172_1h_Whip + Rate: 25 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 47 + Item: Ep172_1h_Inst + Rate: 25 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 48 + Item: Ep172_Bh_Huuma + Rate: 25 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 49 + Item: Ep172_1h_Hammer + Rate: 25 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 50 + Item: Ep172_1h_Foxtail + Rate: 25 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 51 + Item: Ep172_1h_Rifle + Rate: 25 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 52 + Item: Ep172_1h_Shotgun + Rate: 25 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 53 + Item: Ep172_1h_Gatling + Rate: 25 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 54 + Item: Ep172_1h_Grenade + Rate: 25 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 55 + Item: Ep172_Bh_Sword + Rate: 25 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 56 + Item: Ep172_Bh_Bow3 + Rate: 25 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 57 + Item: Ep172_1h_Sword + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 58 + Item: Ep172_1h_Wand + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 59 + Item: Ep172_1h_Book + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 60 + Item: Ep172_1h_Axe + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 61 + Item: Ep172_1h_Sword2 + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 62 + Item: Ep172_Bh_Bow + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 63 + Item: Ep172_Bh_Bow2 + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 64 + Item: Ep172_Bh_Knuck + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 65 + Item: Ep172_1h_Spear + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 66 + Item: Ep172_Bh_Spear + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 67 + Item: Ep172_1h_Dagger + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 68 + Item: Ep172_Bh_Katar + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 69 + Item: Ep172_Bh_Staff + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 70 + Item: Ep172_1h_Book2 + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 71 + Item: Ep172_1h_Dagger2 + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 72 + Item: Ep172_1h_Whip + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 73 + Item: Ep172_1h_Inst + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 74 + Item: Ep172_Bh_Huuma + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 75 + Item: Ep172_1h_Hammer + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 76 + Item: Ep172_1h_Foxtail + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 77 + Item: Ep172_1h_Rifle + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 78 + Item: Ep172_1h_Shotgun + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 79 + Item: Ep172_1h_Gatling + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 80 + Item: Ep172_1h_Grenade + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 81 + Item: Ep172_Bh_Sword + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 82 + Item: Ep172_Bh_Bow3 + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 83 + Item: Auto_Armor_A + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 84 + Item: Auto_Armor_B + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 85 + Item: Auto_Leg_A + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 86 + Item: Auto_Leg_B + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 87 + Item: Auto_Engine_A + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 88 + Item: Auto_Engine_B + Rate: 40 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 89 + Item: Auto_Armor_A + Rate: 25 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 90 + Item: Auto_Armor_B + Rate: 25 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 91 + Item: Auto_Leg_A + Rate: 25 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 92 + Item: Auto_Leg_B + Rate: 25 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 93 + Item: Auto_Engine_A + Rate: 25 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 94 + Item: Auto_Engine_B + Rate: 25 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 95 + Item: Auto_Armor_A + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 96 + Item: Auto_Armor_B + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 97 + Item: Auto_Leg_A + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 98 + Item: Auto_Leg_B + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 99 + Item: Auto_Engine_A + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 100 + Item: Auto_Engine_B + Rate: 20 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 101 + Item: Auto_B_R + Rate: 70 + - Index: 102 + Item: Auto_B_L + Rate: 70 + - Index: 103 + Item: Auto_BC_R + Rate: 70 + - Index: 104 + Item: Auto_BC_L + Rate: 70 + - Index: 105 + Item: Magical_Igni_Stone + Rate: 300 + Amount: 3 + - Index: 106 + Item: Magical_Igni_Stone + Rate: 300 + Amount: 4 + - Index: 107 + Item: Magical_Igni_Stone + Rate: 300 + Amount: 5 + - Index: 108 + Item: Magical_Igni_Stone + Rate: 300 + Amount: 6 + - Index: 109 + Item: Magical_Igni_Stone + Rate: 300 + Amount: 7 + - Index: 110 + Item: BarMealTicket + Rate: 300 + Amount: 31 + - Index: 111 + Item: BarMealTicket + Rate: 300 + Amount: 32 + - Index: 112 + Item: BarMealTicket + Rate: 300 + Amount: 33 + - Index: 113 + Item: BarMealTicket + Rate: 300 + Amount: 34 + - Index: 114 + Item: BarMealTicket + Rate: 300 + Amount: 35 + - Group: DEMI_FREYJA_ANTIQUITY + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: aegis_1001478 + Rate: 800 + Amount: 8 + - Index: 1 + Item: aegis_1001478 + Rate: 800 + Amount: 9 + - Index: 2 + Item: aegis_1001478 + Rate: 800 + Amount: 10 + - Index: 3 + Item: aegis_1001478 + Rate: 800 + Amount: 11 + - Index: 4 + Item: aegis_1001478 + Rate: 800 + Amount: 12 + - Index: 5 + Item: Adulter_F_G_Sword + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 6 + Item: Adulter_F_Lapier + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 7 + Item: Adulter_F_Dagger + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 8 + Item: Adulter_F_Axe + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 9 + Item: Adulter_F_G_Spear + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 10 + Item: Adulter_F_M_Book + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 11 + Item: Adulter_F_P_Book + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 12 + Item: Adulter_F_Bible + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 13 + Item: Adulter_F_Moon_B + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 14 + Item: Adulter_F_Star_B + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 15 + Item: Adulter_F_Wand + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 16 + Item: Adulter_F_S_Stick + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 17 + Item: Adulter_F_D_Wand + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 18 + Item: Adulter_F_F_Wand + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 19 + Item: Adulter_F_F_model + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 20 + Item: Adulter_F_Knuckle + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 21 + Item: Adulter_F_Claw + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 22 + Item: Adulter_F_Violin + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 23 + Item: Adulter_F_Harp + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 24 + Item: Adulter_F_C_Rope + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 25 + Item: Adulter_F_Ribbon + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 26 + Item: Adulter_F_Mace + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 27 + Item: Adulter_F_Hall + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 28 + Item: Adulter_F_T_Sword + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 29 + Item: Adulter_F_Cakram + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 30 + Item: Adulter_F_Katar + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 31 + Item: Adulter_F_Lance + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 32 + Item: Adulter_F_T_Staff + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 33 + Item: Adulter_F_Rod + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 34 + Item: Adulter_F_Humma + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 35 + Item: Adulter_F_C_Humma + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 36 + Item: Adulter_F_C_Bow + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 37 + Item: Adulter_F_Ballista + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 38 + Item: Adulter_F_A_Bow + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 39 + Item: Adulter_F_Revolver + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 40 + Item: Adulter_F_Rifle + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 41 + Item: Adulter_F_Shotgun + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 42 + Item: Adulter_F_Gatling + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 43 + Item: Adulter_F_Launcher + Rate: 20 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 44 + Item: Adulter_F_G_Sword + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 45 + Item: Adulter_F_Lapier + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 46 + Item: Adulter_F_Dagger + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 47 + Item: Adulter_F_Axe + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 48 + Item: Adulter_F_G_Spear + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 49 + Item: Adulter_F_M_Book + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 50 + Item: Adulter_F_P_Book + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 51 + Item: Adulter_F_Bible + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 52 + Item: Adulter_F_Moon_B + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 53 + Item: Adulter_F_Star_B + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 54 + Item: Adulter_F_Wand + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 55 + Item: Adulter_F_S_Stick + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 56 + Item: Adulter_F_D_Wand + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 57 + Item: Adulter_F_F_Wand + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 58 + Item: Adulter_F_F_model + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 59 + Item: Adulter_F_Knuckle + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 60 + Item: Adulter_F_Claw + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 61 + Item: Adulter_F_Violin + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 62 + Item: Adulter_F_Harp + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 63 + Item: Adulter_F_C_Rope + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 64 + Item: Adulter_F_Ribbon + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 65 + Item: Adulter_F_Mace + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 66 + Item: Adulter_F_Hall + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 67 + Item: Adulter_F_T_Sword + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 68 + Item: Adulter_F_Cakram + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 69 + Item: Adulter_F_Katar + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 70 + Item: Adulter_F_Lance + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 71 + Item: Adulter_F_T_Staff + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 72 + Item: Adulter_F_Rod + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 73 + Item: Adulter_F_Humma + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 74 + Item: Adulter_F_C_Humma + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 75 + Item: Adulter_F_C_Bow + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 76 + Item: Adulter_F_Ballista + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 77 + Item: Adulter_F_A_Bow + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 78 + Item: Adulter_F_Revolver + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 79 + Item: Adulter_F_Rifle + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 80 + Item: Adulter_F_Shotgun + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 81 + Item: Adulter_F_Gatling + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 82 + Item: Adulter_F_Launcher + Rate: 16 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 83 + Item: Adulter_F_G_Sword + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 84 + Item: Adulter_F_Lapier + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 85 + Item: Adulter_F_Dagger + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 86 + Item: Adulter_F_Axe + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 87 + Item: Adulter_F_G_Spear + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 88 + Item: Adulter_F_M_Book + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 89 + Item: Adulter_F_P_Book + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 90 + Item: Adulter_F_Bible + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 91 + Item: Adulter_F_Moon_B + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 92 + Item: Adulter_F_Star_B + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 93 + Item: Adulter_F_Wand + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 94 + Item: Adulter_F_S_Stick + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 95 + Item: Adulter_F_D_Wand + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 96 + Item: Adulter_F_F_Wand + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 97 + Item: Adulter_F_F_model + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 98 + Item: Adulter_F_Knuckle + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 99 + Item: Adulter_F_Claw + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 100 + Item: Adulter_F_Violin + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 101 + Item: Adulter_F_Harp + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 102 + Item: Adulter_F_C_Rope + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 103 + Item: Adulter_F_Ribbon + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 104 + Item: Adulter_F_Mace + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 105 + Item: Adulter_F_Hall + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 106 + Item: Adulter_F_T_Sword + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 107 + Item: Adulter_F_Cakram + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 108 + Item: Adulter_F_Katar + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 109 + Item: Adulter_F_Lance + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 110 + Item: Adulter_F_T_Staff + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 111 + Item: Adulter_F_Rod + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 112 + Item: Adulter_F_Humma + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 113 + Item: Adulter_F_C_Humma + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 114 + Item: Adulter_F_C_Bow + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 115 + Item: Adulter_F_Ballista + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 116 + Item: Adulter_F_A_Bow + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 117 + Item: Adulter_F_Revolver + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 118 + Item: Adulter_F_Rifle + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 119 + Item: Adulter_F_Shotgun + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 120 + Item: Adulter_F_Gatling + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 121 + Item: Adulter_F_Launcher + Rate: 12 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 122 + Item: Adulter_F_G_Sword + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 123 + Item: Adulter_F_Lapier + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 124 + Item: Adulter_F_Dagger + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 125 + Item: Adulter_F_Axe + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 126 + Item: Adulter_F_G_Spear + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 127 + Item: Adulter_F_M_Book + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 128 + Item: Adulter_F_P_Book + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 129 + Item: Adulter_F_Bible + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 130 + Item: Adulter_F_Moon_B + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 131 + Item: Adulter_F_Star_B + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 132 + Item: Adulter_F_Wand + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 133 + Item: Adulter_F_S_Stick + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 134 + Item: Adulter_F_D_Wand + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 135 + Item: Adulter_F_F_Wand + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 136 + Item: Adulter_F_F_model + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 137 + Item: Adulter_F_Knuckle + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 138 + Item: Adulter_F_Claw + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 139 + Item: Adulter_F_Violin + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 140 + Item: Adulter_F_Harp + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 141 + Item: Adulter_F_C_Rope + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 142 + Item: Adulter_F_Ribbon + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 143 + Item: Adulter_F_Mace + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 144 + Item: Adulter_F_Hall + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 145 + Item: Adulter_F_T_Sword + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 146 + Item: Adulter_F_Cakram + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 147 + Item: Adulter_F_Katar + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 148 + Item: Adulter_F_Lance + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 149 + Item: Adulter_F_T_Staff + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 150 + Item: Adulter_F_Rod + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 151 + Item: Adulter_F_Humma + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 152 + Item: Adulter_F_C_Humma + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 153 + Item: Adulter_F_C_Bow + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 154 + Item: Adulter_F_Ballista + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 155 + Item: Adulter_F_A_Bow + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 156 + Item: Adulter_F_Revolver + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 157 + Item: Adulter_F_Rifle + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 158 + Item: Adulter_F_Shotgun + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 159 + Item: Adulter_F_Gatling + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 160 + Item: Adulter_F_Launcher + Rate: 8 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 161 + Item: Adulter_F_G_Sword + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 162 + Item: Adulter_F_Lapier + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 163 + Item: Adulter_F_Dagger + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 164 + Item: Adulter_F_Axe + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 165 + Item: Adulter_F_G_Spear + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 166 + Item: Adulter_F_M_Book + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 167 + Item: Adulter_F_P_Book + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 168 + Item: Adulter_F_Bible + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 169 + Item: Adulter_F_Moon_B + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 170 + Item: Adulter_F_Star_B + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 171 + Item: Adulter_F_Wand + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 172 + Item: Adulter_F_S_Stick + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 173 + Item: Adulter_F_D_Wand + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 174 + Item: Adulter_F_F_Wand + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 175 + Item: Adulter_F_F_model + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 176 + Item: Adulter_F_Knuckle + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 177 + Item: Adulter_F_Claw + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 178 + Item: Adulter_F_Violin + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 179 + Item: Adulter_F_Harp + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 180 + Item: Adulter_F_C_Rope + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 181 + Item: Adulter_F_Ribbon + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 182 + Item: Adulter_F_Mace + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 183 + Item: Adulter_F_Hall + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 184 + Item: Adulter_F_T_Sword + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 185 + Item: Adulter_F_Cakram + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 186 + Item: Adulter_F_Katar + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 187 + Item: Adulter_F_Lance + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 188 + Item: Adulter_F_T_Staff + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 189 + Item: Adulter_F_Rod + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 190 + Item: Adulter_F_Humma + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 191 + Item: Adulter_F_C_Humma + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 192 + Item: Adulter_F_C_Bow + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 193 + Item: Adulter_F_Ballista + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 194 + Item: Adulter_F_A_Bow + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 195 + Item: Adulter_F_Revolver + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 196 + Item: Adulter_F_Rifle + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 197 + Item: Adulter_F_Shotgun + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 198 + Item: Adulter_F_Gatling + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 199 + Item: Adulter_F_Launcher + Rate: 4 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 200 + Item: Adulter_F_G_Sword + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 201 + Item: Adulter_F_Lapier + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 202 + Item: Adulter_F_Dagger + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 203 + Item: Adulter_F_Axe + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 204 + Item: Adulter_F_G_Spear + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 205 + Item: Adulter_F_M_Book + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 206 + Item: Adulter_F_P_Book + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 207 + Item: Adulter_F_Bible + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 208 + Item: Adulter_F_Moon_B + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 209 + Item: Adulter_F_Star_B + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 210 + Item: Adulter_F_Wand + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 211 + Item: Adulter_F_S_Stick + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 212 + Item: Adulter_F_D_Wand + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 213 + Item: Adulter_F_F_Wand + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 214 + Item: Adulter_F_F_model + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 215 + Item: Adulter_F_Knuckle + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 216 + Item: Adulter_F_Claw + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 217 + Item: Adulter_F_Violin + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 218 + Item: Adulter_F_Harp + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 219 + Item: Adulter_F_C_Rope + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 220 + Item: Adulter_F_Ribbon + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 221 + Item: Adulter_F_Mace + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 222 + Item: Adulter_F_Hall + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 223 + Item: Adulter_F_T_Sword + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 224 + Item: Adulter_F_Cakram + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 225 + Item: Adulter_F_Katar + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 226 + Item: Adulter_F_Lance + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 227 + Item: Adulter_F_T_Staff + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 228 + Item: Adulter_F_Rod + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 229 + Item: Adulter_F_Humma + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 230 + Item: Adulter_F_C_Humma + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 231 + Item: Adulter_F_C_Bow + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 232 + Item: Adulter_F_Ballista + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 233 + Item: Adulter_F_A_Bow + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 234 + Item: Adulter_F_Revolver + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 235 + Item: Adulter_F_Rifle + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 236 + Item: Adulter_F_Shotgun + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 237 + Item: Adulter_F_Gatling + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 238 + Item: Adulter_F_Launcher + Rate: 2 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 239 + Item: Vivatus_F_G_Sword + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 240 + Item: Vivatus_F_Lapier + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 241 + Item: Vivatus_F_Dagger + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 242 + Item: Vivatus_F_Axe + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 243 + Item: Vivatus_F_G_Spear + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 244 + Item: Vivatus_F_M_Book + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 245 + Item: Vivatus_F_P_Book + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 246 + Item: Vivatus_F_Bible + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 247 + Item: Vivatus_F_Moon_B + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 248 + Item: Vivatus_F_Star_B + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 249 + Item: Vivatus_F_Wand + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 250 + Item: Vivatus_F_S_Stick + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 251 + Item: Vivatus_F_D_Wand + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 252 + Item: Vivatus_F_F_Wand + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 253 + Item: Vivatus_F_F_model + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 254 + Item: Vivatus_F_Knuckle + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 255 + Item: Vivatus_F_Claw + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 256 + Item: Vivatus_F_Violin + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 257 + Item: Vivatus_F_Harp + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 258 + Item: Vivatus_F_C_Rope + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 259 + Item: Vivatus_F_Ribbon + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 260 + Item: Vivatus_F_Mace + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 261 + Item: Vivatus_F_Hall + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 262 + Item: Vivatus_F_T_Sword + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 263 + Item: Vivatus_F_Cakram + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 264 + Item: Vivatus_F_Katar + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 265 + Item: Vivatus_F_Lance + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 266 + Item: Vivatus_F_T_Staff + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 267 + Item: Vivatus_F_Rod + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 268 + Item: Vivatus_F_Humma + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 269 + Item: Vivatus_F_C_Humma + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 270 + Item: Vivatus_F_C_Bow + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 271 + Item: Vivatus_F_Ballista + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 272 + Item: Vivatus_F_A_Bow + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 273 + Item: Vivatus_F_Revolver + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 274 + Item: Vivatus_F_Rifle + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 275 + Item: Vivatus_F_Shotgun + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 276 + Item: Vivatus_F_Gatling + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 277 + Item: Vivatus_F_Launcher + Rate: 10 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 278 + Item: Vivatus_F_G_Sword + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 279 + Item: Vivatus_F_Lapier + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 280 + Item: Vivatus_F_Dagger + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 281 + Item: Vivatus_F_Axe + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 282 + Item: Vivatus_F_G_Spear + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 283 + Item: Vivatus_F_M_Book + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 284 + Item: Vivatus_F_P_Book + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 285 + Item: Vivatus_F_Bible + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 286 + Item: Vivatus_F_Moon_B + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 287 + Item: Vivatus_F_Star_B + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 288 + Item: Vivatus_F_Wand + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 289 + Item: Vivatus_F_S_Stick + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 290 + Item: Vivatus_F_D_Wand + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 291 + Item: Vivatus_F_F_Wand + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 292 + Item: Vivatus_F_F_model + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 293 + Item: Vivatus_F_Knuckle + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 294 + Item: Vivatus_F_Claw + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 295 + Item: Vivatus_F_Violin + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 296 + Item: Vivatus_F_Harp + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 297 + Item: Vivatus_F_C_Rope + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 298 + Item: Vivatus_F_Ribbon + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 299 + Item: Vivatus_F_Mace + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 300 + Item: Vivatus_F_Hall + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 301 + Item: Vivatus_F_T_Sword + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 302 + Item: Vivatus_F_Cakram + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 303 + Item: Vivatus_F_Katar + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 304 + Item: Vivatus_F_Lance + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 305 + Item: Vivatus_F_T_Staff + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 306 + Item: Vivatus_F_Rod + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 307 + Item: Vivatus_F_Humma + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 308 + Item: Vivatus_F_C_Humma + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 309 + Item: Vivatus_F_C_Bow + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 310 + Item: Vivatus_F_Ballista + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 311 + Item: Vivatus_F_A_Bow + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 312 + Item: Vivatus_F_Revolver + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 313 + Item: Vivatus_F_Rifle + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 314 + Item: Vivatus_F_Shotgun + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 315 + Item: Vivatus_F_Gatling + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 316 + Item: Vivatus_F_Launcher + Rate: 8 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 317 + Item: Vivatus_F_G_Sword + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 318 + Item: Vivatus_F_Lapier + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 319 + Item: Vivatus_F_Dagger + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 320 + Item: Vivatus_F_Axe + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 321 + Item: Vivatus_F_G_Spear + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 322 + Item: Vivatus_F_M_Book + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 323 + Item: Vivatus_F_P_Book + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 324 + Item: Vivatus_F_Bible + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 325 + Item: Vivatus_F_Moon_B + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 326 + Item: Vivatus_F_Star_B + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 327 + Item: Vivatus_F_Wand + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 328 + Item: Vivatus_F_S_Stick + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 329 + Item: Vivatus_F_D_Wand + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 330 + Item: Vivatus_F_F_Wand + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 331 + Item: Vivatus_F_F_model + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 332 + Item: Vivatus_F_Knuckle + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 333 + Item: Vivatus_F_Claw + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 334 + Item: Vivatus_F_Violin + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 335 + Item: Vivatus_F_Harp + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 336 + Item: Vivatus_F_C_Rope + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 337 + Item: Vivatus_F_Ribbon + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 338 + Item: Vivatus_F_Mace + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 339 + Item: Vivatus_F_Hall + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 340 + Item: Vivatus_F_T_Sword + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 341 + Item: Vivatus_F_Cakram + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 342 + Item: Vivatus_F_Katar + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 343 + Item: Vivatus_F_Lance + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 344 + Item: Vivatus_F_T_Staff + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 345 + Item: Vivatus_F_Rod + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 346 + Item: Vivatus_F_Humma + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 347 + Item: Vivatus_F_C_Humma + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 348 + Item: Vivatus_F_C_Bow + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 349 + Item: Vivatus_F_Ballista + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 350 + Item: Vivatus_F_A_Bow + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 351 + Item: Vivatus_F_Revolver + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 352 + Item: Vivatus_F_Rifle + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 353 + Item: Vivatus_F_Shotgun + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 354 + Item: Vivatus_F_Gatling + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 355 + Item: Vivatus_F_Launcher + Rate: 6 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 356 + Item: Vivatus_F_G_Sword + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 357 + Item: Vivatus_F_Lapier + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 358 + Item: Vivatus_F_Dagger + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 359 + Item: Vivatus_F_Axe + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 360 + Item: Vivatus_F_G_Spear + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 361 + Item: Vivatus_F_M_Book + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 362 + Item: Vivatus_F_P_Book + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 363 + Item: Vivatus_F_Bible + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 364 + Item: Vivatus_F_Moon_B + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 365 + Item: Vivatus_F_Star_B + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 366 + Item: Vivatus_F_Wand + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 367 + Item: Vivatus_F_S_Stick + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 368 + Item: Vivatus_F_D_Wand + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 369 + Item: Vivatus_F_F_Wand + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 370 + Item: Vivatus_F_F_model + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 371 + Item: Vivatus_F_Knuckle + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 372 + Item: Vivatus_F_Claw + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 373 + Item: Vivatus_F_Violin + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 374 + Item: Vivatus_F_Harp + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 375 + Item: Vivatus_F_C_Rope + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 376 + Item: Vivatus_F_Ribbon + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 377 + Item: Vivatus_F_Mace + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 378 + Item: Vivatus_F_Hall + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 379 + Item: Vivatus_F_T_Sword + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 380 + Item: Vivatus_F_Cakram + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 381 + Item: Vivatus_F_Katar + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 382 + Item: Vivatus_F_Lance + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 383 + Item: Vivatus_F_T_Staff + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 384 + Item: Vivatus_F_Rod + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 385 + Item: Vivatus_F_Humma + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 386 + Item: Vivatus_F_C_Humma + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 387 + Item: Vivatus_F_C_Bow + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 388 + Item: Vivatus_F_Ballista + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 389 + Item: Vivatus_F_A_Bow + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 390 + Item: Vivatus_F_Revolver + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 391 + Item: Vivatus_F_Rifle + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 392 + Item: Vivatus_F_Shotgun + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 393 + Item: Vivatus_F_Gatling + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 394 + Item: Vivatus_F_Launcher + Rate: 4 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 395 + Item: Vivatus_F_G_Sword + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 396 + Item: Vivatus_F_Lapier + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 397 + Item: Vivatus_F_Dagger + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 398 + Item: Vivatus_F_Axe + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 399 + Item: Vivatus_F_G_Spear + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 400 + Item: Vivatus_F_M_Book + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 401 + Item: Vivatus_F_P_Book + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 402 + Item: Vivatus_F_Bible + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 403 + Item: Vivatus_F_Moon_B + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 404 + Item: Vivatus_F_Star_B + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 405 + Item: Vivatus_F_Wand + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 406 + Item: Vivatus_F_S_Stick + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 407 + Item: Vivatus_F_D_Wand + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 408 + Item: Vivatus_F_F_Wand + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 409 + Item: Vivatus_F_F_model + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 410 + Item: Vivatus_F_Knuckle + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 411 + Item: Vivatus_F_Claw + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 412 + Item: Vivatus_F_Violin + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 413 + Item: Vivatus_F_Harp + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 414 + Item: Vivatus_F_C_Rope + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 415 + Item: Vivatus_F_Ribbon + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 416 + Item: Vivatus_F_Mace + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 417 + Item: Vivatus_F_Hall + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 418 + Item: Vivatus_F_T_Sword + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 419 + Item: Vivatus_F_Cakram + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 420 + Item: Vivatus_F_Katar + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 421 + Item: Vivatus_F_Lance + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 422 + Item: Vivatus_F_T_Staff + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 423 + Item: Vivatus_F_Rod + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 424 + Item: Vivatus_F_Humma + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 425 + Item: Vivatus_F_C_Humma + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 426 + Item: Vivatus_F_C_Bow + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 427 + Item: Vivatus_F_Ballista + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 428 + Item: Vivatus_F_A_Bow + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 429 + Item: Vivatus_F_Revolver + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 430 + Item: Vivatus_F_Rifle + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 431 + Item: Vivatus_F_Shotgun + Rate: 2 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 432 + Item: Vivatus_F_Gatling + Rate: 8 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 433 + Item: Vivatus_F_Launcher + Rate: 8 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 434 + Item: Vivatus_F_G_Sword + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 435 + Item: Vivatus_F_Lapier + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 436 + Item: Vivatus_F_Dagger + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 437 + Item: Vivatus_F_Axe + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 438 + Item: Vivatus_F_G_Spear + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 439 + Item: Vivatus_F_M_Book + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 440 + Item: Vivatus_F_P_Book + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 441 + Item: Vivatus_F_Bible + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 442 + Item: Vivatus_F_Moon_B + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 443 + Item: Vivatus_F_Star_B + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 444 + Item: Vivatus_F_Wand + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 445 + Item: Vivatus_F_S_Stick + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 446 + Item: Vivatus_F_D_Wand + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 447 + Item: Vivatus_F_F_Wand + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 448 + Item: Vivatus_F_F_model + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 449 + Item: Vivatus_F_Knuckle + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 450 + Item: Vivatus_F_Claw + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 451 + Item: Vivatus_F_Violin + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 452 + Item: Vivatus_F_Harp + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 453 + Item: Vivatus_F_C_Rope + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 454 + Item: Vivatus_F_Ribbon + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 455 + Item: Vivatus_F_Mace + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 456 + Item: Vivatus_F_Hall + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 457 + Item: Vivatus_F_T_Sword + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 458 + Item: Vivatus_F_Cakram + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 459 + Item: Vivatus_F_Katar + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 460 + Item: Vivatus_F_Lance + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 461 + Item: Vivatus_F_T_Staff + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 462 + Item: Vivatus_F_Rod + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 463 + Item: Vivatus_F_Humma + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 464 + Item: Vivatus_F_C_Humma + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 465 + Item: Vivatus_F_C_Bow + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 466 + Item: Vivatus_F_Ballista + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 467 + Item: Vivatus_F_A_Bow + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 468 + Item: Vivatus_F_Revolver + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 469 + Item: Vivatus_F_Rifle + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 470 + Item: Vivatus_F_Shotgun + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 471 + Item: Vivatus_F_Gatling + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 472 + Item: Vivatus_F_Launcher + Rate: 1 + RefineMinimum: 12 + RefineMaximum: 12 + - Index: 473 + Item: Gray_W_Suits + Rate: 25 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 474 + Item: Gray_W_Robe + Rate: 25 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 475 + Item: Gray_W_Shoes + Rate: 25 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 476 + Item: Gray_W_Boots + Rate: 25 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 477 + Item: Gray_W_Manteau + Rate: 25 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 478 + Item: Gray_W_Muffler + Rate: 25 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 479 + Item: Gray_W_Suits + Rate: 10 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 480 + Item: Gray_W_Robe + Rate: 10 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 481 + Item: Gray_W_Shoes + Rate: 10 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 482 + Item: Gray_W_Boots + Rate: 10 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 483 + Item: Gray_W_Manteau + Rate: 10 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 484 + Item: Gray_W_Muffler + Rate: 10 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 485 + Item: Gray_W_Suits + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 486 + Item: Gray_W_Robe + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 487 + Item: Gray_W_Shoes + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 488 + Item: Gray_W_Boots + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 489 + Item: Gray_W_Manteau + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 490 + Item: Gray_W_Muffler + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 491 + Item: Gray_W_Pendant + Rate: 26 + - Index: 492 + Item: Gray_W_Ring + Rate: 26 + - Index: 493 + Item: Gray_W_Earing + Rate: 26 + - Index: 494 + Item: Gray_W_Necklace + Rate: 26 + - Index: 495 + Item: Ep18_Amethyst_Fragment + Rate: 201 + Amount: 36 + - Index: 496 + Item: Ep18_Amethyst_Fragment + Rate: 200 + Amount: 37 + - Index: 497 + Item: Ep18_Amethyst_Fragment + Rate: 100 + Amount: 38 + - Index: 498 + Item: Ep18_Amethyst_Fragment + Rate: 100 + Amount: 39 + - Index: 499 + Item: Ep18_Amethyst_Fragment + Rate: 100 + Amount: 40 + - Index: 500 + Item: Ep18_Amethyst_Fragment + Rate: 100 + Amount: 41 + - Index: 501 + Item: Ep18_Amethyst_Fragment + Rate: 100 + Amount: 42 + - Index: 502 + Item: Ep18_Amethyst_Fragment + Rate: 100 + Amount: 43 + - Index: 503 + Item: Ep18_Amethyst_Fragment + Rate: 100 + Amount: 44 + - Index: 504 + Item: Ep18_Amethyst_Fragment + Rate: 100 + Amount: 45 + - Index: 505 + Item: Ep18_Amethyst_Fragment + Rate: 100 + Amount: 46 + - Index: 506 + Item: Ep18_Amethyst_Fragment + Rate: 100 + Amount: 47 + - Index: 507 + Item: Ep18_Amethyst_Fragment + Rate: 100 + Amount: 48 + - Index: 508 + Item: Ep18_Amethyst_Fragment + Rate: 100 + Amount: 49 + - Index: 509 + Item: Ep18_Amethyst_Fragment + Rate: 100 + Amount: 50 + - Index: 510 + Item: Ep18_Amethyst_Fragment + Rate: 100 + Amount: 51 + - Index: 511 + Item: Ep18_Amethyst_Fragment + Rate: 100 + Amount: 52 + - Index: 512 + Item: Ep18_Amethyst_Fragment + Rate: 100 + Amount: 53 + - Group: JUNCEA_ANTIQUITY + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: aegis_1001479 + Rate: 800 + Amount: 6 + - Index: 1 + Item: aegis_1001479 + Rate: 800 + Amount: 7 + - Index: 2 + Item: aegis_1001479 + Rate: 800 + Amount: 8 + - Index: 3 + Item: aegis_1001479 + Rate: 800 + Amount: 9 + - Index: 4 + Item: aegis_1001479 + Rate: 800 + Amount: 10 + - Index: 5 + Item: Glacier_Sword + Rate: 45 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 6 + Item: Glacier_B_Sword + Rate: 45 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 7 + Item: Glacier_R_Knife + Rate: 45 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 8 + Item: Glacier_B_Knife + Rate: 45 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 9 + Item: Glacier_Axe + Rate: 45 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 10 + Item: Glacier_Spear + Rate: 45 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 11 + Item: Glacier_Book + Rate: 45 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 12 + Item: Glacier_Wand + Rate: 45 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 13 + Item: Glacier_Foxtail + Rate: 45 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 14 + Item: Glacier_Knuckle + Rate: 45 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 15 + Item: Glacier_Violin + Rate: 45 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 16 + Item: Glacier_Whip + Rate: 45 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 17 + Item: Glacier_Mace + Rate: 45 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 18 + Item: Glacier_M_Mace + Rate: 45 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 19 + Item: Glacier_T_Sword + Rate: 45 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 20 + Item: Glacier_Katar + Rate: 45 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 21 + Item: Glacier_T_Axe + Rate: 45 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 22 + Item: Glacier_Lance + Rate: 45 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 23 + Item: Glacier_Staff + Rate: 45 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 24 + Item: Glacier_Humma + Rate: 45 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 25 + Item: Glacier_Bow + Rate: 45 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 26 + Item: Glacier_Revolver + Rate: 45 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 27 + Item: Glacier_Rifle + Rate: 45 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 28 + Item: Glacier_Shotgun + Rate: 45 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 29 + Item: Glacier_Gatling + Rate: 45 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 30 + Item: Glacier_Launcher + Rate: 45 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 31 + Item: Glacier_Sword + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 32 + Item: Glacier_B_Sword + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 33 + Item: Glacier_R_Knife + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 34 + Item: Glacier_B_Knife + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 35 + Item: Glacier_Axe + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 36 + Item: Glacier_Spear + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 37 + Item: Glacier_Book + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 38 + Item: Glacier_Wand + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 39 + Item: Glacier_Foxtail + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 40 + Item: Glacier_Knuckle + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 41 + Item: Glacier_Violin + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 42 + Item: Glacier_Whip + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 43 + Item: Glacier_Mace + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 44 + Item: Glacier_M_Mace + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 45 + Item: Glacier_T_Sword + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 46 + Item: Glacier_Katar + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 47 + Item: Glacier_T_Axe + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 48 + Item: Glacier_Lance + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 49 + Item: Glacier_Staff + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 50 + Item: Glacier_Humma + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 51 + Item: Glacier_Bow + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 52 + Item: Glacier_Revolver + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 53 + Item: Glacier_Rifle + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 54 + Item: Glacier_Shotgun + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 55 + Item: Glacier_Gatling + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 56 + Item: Glacier_Launcher + Rate: 30 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 57 + Item: Glacier_Sword + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 58 + Item: Glacier_B_Sword + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 59 + Item: Glacier_R_Knife + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 60 + Item: Glacier_B_Knife + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 61 + Item: Glacier_Axe + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 62 + Item: Glacier_Spear + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 63 + Item: Glacier_Book + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 64 + Item: Glacier_Wand + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 65 + Item: Glacier_Foxtail + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 66 + Item: Glacier_Knuckle + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 67 + Item: Glacier_Violin + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 68 + Item: Glacier_Whip + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 69 + Item: Glacier_Mace + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 70 + Item: Glacier_M_Mace + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 71 + Item: Glacier_T_Sword + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 72 + Item: Glacier_Katar + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 73 + Item: Glacier_T_Axe + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 74 + Item: Glacier_Lance + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 75 + Item: Glacier_Staff + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 76 + Item: Glacier_Humma + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 77 + Item: Glacier_Bow + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 78 + Item: Glacier_Revolver + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 79 + Item: Glacier_Rifle + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 80 + Item: Glacier_Shotgun + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 81 + Item: Glacier_Gatling + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 82 + Item: Glacier_Launcher + Rate: 20 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 83 + Item: Glacier_Sword + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 84 + Item: Glacier_B_Sword + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 85 + Item: Glacier_R_Knife + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 86 + Item: Glacier_B_Knife + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 87 + Item: Glacier_Axe + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 88 + Item: Glacier_Spear + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 89 + Item: Glacier_Book + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 90 + Item: Glacier_Wand + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 91 + Item: Glacier_Foxtail + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 92 + Item: Glacier_Knuckle + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 93 + Item: Glacier_Violin + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 94 + Item: Glacier_Whip + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 95 + Item: Glacier_Mace + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 96 + Item: Glacier_M_Mace + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 97 + Item: Glacier_T_Sword + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 98 + Item: Glacier_Katar + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 99 + Item: Glacier_T_Axe + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 100 + Item: Glacier_Lance + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 101 + Item: Glacier_Staff + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 102 + Item: Glacier_Humma + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 103 + Item: Glacier_Bow + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 104 + Item: Glacier_Revolver + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 105 + Item: Glacier_Rifle + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 106 + Item: Glacier_Shotgun + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 107 + Item: Glacier_Gatling + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 108 + Item: Glacier_Launcher + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 109 + Item: Glacier_Sword + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 110 + Item: Glacier_B_Sword + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 111 + Item: Glacier_R_Knife + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 112 + Item: Glacier_B_Knife + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 113 + Item: Glacier_Axe + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 114 + Item: Glacier_Spear + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 115 + Item: Glacier_Book + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 116 + Item: Glacier_Wand + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 117 + Item: Glacier_Foxtail + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 118 + Item: Glacier_Knuckle + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 119 + Item: Glacier_Violin + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 120 + Item: Glacier_Whip + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 121 + Item: Glacier_Mace + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 122 + Item: Glacier_M_Mace + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 123 + Item: Glacier_T_Sword + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 124 + Item: Glacier_Katar + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 125 + Item: Glacier_T_Axe + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 126 + Item: Glacier_Lance + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 127 + Item: Glacier_Staff + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 128 + Item: Glacier_Humma + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 129 + Item: Glacier_Bow + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 130 + Item: Glacier_Revolver + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 131 + Item: Glacier_Rifle + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 132 + Item: Glacier_Shotgun + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 133 + Item: Glacier_Gatling + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 134 + Item: Glacier_Launcher + Rate: 5 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 135 + Item: Ep19_Snow_Flower + Rate: 160 + Amount: 16 + - Index: 136 + Item: Ep19_Snow_Flower + Rate: 150 + Amount: 17 + - Index: 137 + Item: Ep19_Snow_Flower + Rate: 150 + Amount: 18 + - Index: 138 + Item: Ep19_Snow_Flower + Rate: 150 + Amount: 19 + - Index: 139 + Item: Ep19_Snow_Flower + Rate: 150 + Amount: 20 + - Index: 140 + Item: Snow_F_Ore + Rate: 150 + Amount: 16 + - Index: 141 + Item: Snow_F_Ore + Rate: 150 + Amount: 17 + - Index: 142 + Item: Snow_F_Ore + Rate: 150 + Amount: 18 + - Index: 143 + Item: Snow_F_Ore + Rate: 150 + Amount: 19 + - Index: 144 + Item: Snow_F_Ore + Rate: 150 + Amount: 20 + - Index: 145 + Item: Snow_F_Stone1 + Rate: 150 + Amount: 6 + - Index: 146 + Item: Snow_F_Stone1 + Rate: 150 + Amount: 7 + - Index: 147 + Item: Snow_F_Stone1 + Rate: 150 + Amount: 8 + - Index: 148 + Item: Snow_F_Stone1 + Rate: 150 + Amount: 9 + - Index: 149 + Item: Snow_F_Stone1 + Rate: 150 + Amount: 10 + - Index: 150 + Item: Snow_F_Stone2 + Rate: 150 + Amount: 5 + - Index: 151 + Item: Snow_F_Stone2 + Rate: 150 + Amount: 6 + - Index: 152 + Item: Snow_F_Stone2 + Rate: 150 + Amount: 7 + - Index: 153 + Item: Snow_F_Stone3 + Rate: 150 + Amount: 4 + - Index: 154 + Item: Snow_F_Stone3 + Rate: 150 + Amount: 5 + - Group: AQUILA_ANTIQUITY + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: aegis_1001479 + Rate: 800 + Amount: 4 + - Index: 1 + Item: aegis_1001479 + Rate: 800 + Amount: 5 + - Index: 2 + Item: aegis_1001479 + Rate: 800 + Amount: 6 + - Index: 3 + Item: aegis_1001479 + Rate: 800 + Amount: 7 + - Index: 4 + Item: aegis_1001479 + Rate: 800 + Amount: 8 + - Index: 5 + Item: Snowflower_Armor + Rate: 100 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 6 + Item: Snowflower_Robe + Rate: 100 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 7 + Item: Snowflower_Boots + Rate: 100 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 8 + Item: Snowflower_Shoes + Rate: 100 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 9 + Item: Snowflower_Manteau + Rate: 100 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 10 + Item: Snowflower_Muffler + Rate: 100 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 11 + Item: Snowflower_Armor + Rate: 80 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 12 + Item: Snowflower_Robe + Rate: 80 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 13 + Item: Snowflower_Boots + Rate: 80 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 14 + Item: Snowflower_Shoes + Rate: 80 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 15 + Item: Snowflower_Manteau + Rate: 80 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 16 + Item: Snowflower_Muffler + Rate: 80 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 17 + Item: Snowflower_Armor + Rate: 50 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 18 + Item: Snowflower_Robe + Rate: 50 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 19 + Item: Snowflower_Boots + Rate: 50 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 20 + Item: Snowflower_Shoes + Rate: 50 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 21 + Item: Snowflower_Manteau + Rate: 50 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 22 + Item: Snowflower_Muffler + Rate: 50 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 23 + Item: Snowflower_Armor + Rate: 20 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 24 + Item: Snowflower_Robe + Rate: 20 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 25 + Item: Snowflower_Boots + Rate: 20 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 26 + Item: Snowflower_Shoes + Rate: 20 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 27 + Item: Snowflower_Manteau + Rate: 20 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 28 + Item: Snowflower_Muffler + Rate: 20 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 29 + Item: Snowflower_Armor + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 30 + Item: Snowflower_Robe + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 31 + Item: Snowflower_Boots + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 32 + Item: Snowflower_Shoes + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 33 + Item: Snowflower_Manteau + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 34 + Item: Snowflower_Muffler + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 35 + Item: Snowflower_Pendant + Rate: 110 + - Index: 36 + Item: Snowflower_Ring + Rate: 110 + - Index: 37 + Item: Snowflower_Necklace + Rate: 110 + - Index: 38 + Item: Snowflower_Earring + Rate: 110 + - Index: 39 + Item: Ep19_Snow_Flower + Rate: 100 + Amount: 16 + - Index: 40 + Item: Ep19_Snow_Flower + Rate: 100 + Amount: 17 + - Index: 41 + Item: Ep19_Snow_Flower + Rate: 100 + Amount: 18 + - Index: 42 + Item: Ep19_Snow_Flower + Rate: 100 + Amount: 19 + - Index: 43 + Item: Ep19_Snow_Flower + Rate: 100 + Amount: 20 + - Index: 44 + Item: EP19_D_P_Ore + Rate: 100 + Amount: 3 + - Index: 45 + Item: EP19_D_P_Ore + Rate: 100 + Amount: 4 + - Index: 46 + Item: EP19_D_P_Ore + Rate: 100 + Amount: 5 + - Index: 47 + Item: EP19_D_P_Ore + Rate: 100 + Amount: 6 + - Index: 48 + Item: EP19_D_P_Ore + Rate: 100 + Amount: 7 + - Index: 49 + Item: EP19_N_P_Ore + Rate: 100 + Amount: 3 + - Index: 50 + Item: EP19_N_P_Ore + Rate: 100 + Amount: 4 + - Index: 51 + Item: EP19_N_P_Ore + Rate: 100 + Amount: 5 + - Index: 52 + Item: EP19_N_P_Ore + Rate: 100 + Amount: 6 + - Index: 53 + Item: EP19_N_P_Ore + Rate: 100 + Amount: 7 + - Index: 54 + Item: EP19_D_P_Crystal + Rate: 100 + Amount: 3 + - Index: 55 + Item: EP19_D_P_Crystal + Rate: 100 + Amount: 4 + - Index: 56 + Item: EP19_D_P_Crystal + Rate: 100 + Amount: 5 + - Index: 57 + Item: EP19_D_P_Crystal + Rate: 100 + Amount: 6 + - Index: 58 + Item: EP19_D_P_Crystal + Rate: 100 + Amount: 7 + - Index: 59 + Item: EP19_N_P_Crystal + Rate: 100 + Amount: 3 + - Index: 60 + Item: EP19_N_P_Crystal + Rate: 100 + Amount: 4 + - Index: 61 + Item: EP19_N_P_Crystal + Rate: 100 + Amount: 5 + - Index: 62 + Item: EP19_N_P_Crystal + Rate: 100 + Amount: 6 + - Index: 63 + Item: EP19_N_P_Crystal + Rate: 100 + Amount: 7 + - Index: 64 + Item: EP19_Gla_Extract + Rate: 100 + Amount: 6 + - Index: 65 + Item: EP19_Gla_Extract + Rate: 100 + Amount: 7 + - Index: 66 + Item: EP19_Gla_Extract + Rate: 100 + Amount: 8 + - Index: 67 + Item: EP19_Gla_Extract + Rate: 100 + Amount: 9 + - Index: 68 + Item: EP19_Gla_Extract + Rate: 100 + Amount: 10 + - Index: 69 + Item: EP19_S_F_1_Extract + Rate: 100 + Amount: 6 + - Index: 70 + Item: EP19_S_F_1_Extract + Rate: 100 + Amount: 7 + - Index: 71 + Item: EP19_S_F_1_Extract + Rate: 100 + Amount: 8 + - Index: 72 + Item: EP19_S_F_1_Extract + Rate: 100 + Amount: 9 + - Index: 73 + Item: EP19_S_F_1_Extract + Rate: 100 + Amount: 10 + - Index: 74 + Item: EP19_S_F_2_Extract + Rate: 100 + Amount: 5 + - Index: 75 + Item: EP19_S_F_2_Extract + Rate: 100 + Amount: 6 + - Index: 76 + Item: EP19_S_F_2_Extract + Rate: 100 + Amount: 7 + - Index: 77 + Item: EP19_S_F_3_Extract + Rate: 100 + Amount: 4 + - Index: 78 + Item: EP19_S_F_3_Extract + Rate: 100 + Amount: 5 + - Group: AQUILA_ANTIQUITY2 + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: aegis_1001479 + Rate: 1000 + Amount: 7 + - Index: 1 + Item: aegis_1001479 + Rate: 1000 + Amount: 8 + - Index: 2 + Item: aegis_1001479 + Rate: 1000 + Amount: 9 + - Index: 3 + Item: aegis_1001479 + Rate: 1000 + Amount: 10 + - Index: 4 + Item: Glacier_Sword + Rate: 25 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 5 + Item: Glacier_B_Sword + Rate: 25 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 6 + Item: Glacier_R_Knife + Rate: 25 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 7 + Item: Glacier_B_Knife + Rate: 25 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 8 + Item: Glacier_Axe + Rate: 25 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 9 + Item: Glacier_Spear + Rate: 25 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 10 + Item: Glacier_Book + Rate: 25 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 11 + Item: Glacier_Wand + Rate: 25 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 12 + Item: Glacier_Foxtail + Rate: 25 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 13 + Item: Glacier_Knuckle + Rate: 25 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 14 + Item: Glacier_Violin + Rate: 25 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 15 + Item: Glacier_Whip + Rate: 25 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 16 + Item: Glacier_Mace + Rate: 25 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 17 + Item: Glacier_M_Mace + Rate: 25 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 18 + Item: Glacier_T_Sword + Rate: 25 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 19 + Item: Glacier_Katar + Rate: 25 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 20 + Item: Glacier_T_Axe + Rate: 25 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 21 + Item: Glacier_Lance + Rate: 25 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 22 + Item: Glacier_Staff + Rate: 25 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 23 + Item: Glacier_Humma + Rate: 25 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 24 + Item: Glacier_Bow + Rate: 25 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 25 + Item: Glacier_Revolver + Rate: 25 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 26 + Item: Glacier_Rifle + Rate: 25 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 27 + Item: Glacier_Shotgun + Rate: 25 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 28 + Item: Glacier_Gatling + Rate: 25 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 29 + Item: Glacier_Launcher + Rate: 25 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 30 + Item: Glacier_Sword + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 31 + Item: Glacier_B_Sword + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 32 + Item: Glacier_R_Knife + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 33 + Item: Glacier_B_Knife + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 34 + Item: Glacier_Axe + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 35 + Item: Glacier_Spear + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 36 + Item: Glacier_Book + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 37 + Item: Glacier_Wand + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 38 + Item: Glacier_Foxtail + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 39 + Item: Glacier_Knuckle + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 40 + Item: Glacier_Violin + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 41 + Item: Glacier_Whip + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 42 + Item: Glacier_Mace + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 43 + Item: Glacier_M_Mace + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 44 + Item: Glacier_T_Sword + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 45 + Item: Glacier_Katar + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 46 + Item: Glacier_T_Axe + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 47 + Item: Glacier_Lance + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 48 + Item: Glacier_Staff + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 49 + Item: Glacier_Humma + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 50 + Item: Glacier_Bow + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 51 + Item: Glacier_Revolver + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 52 + Item: Glacier_Rifle + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 53 + Item: Glacier_Shotgun + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 54 + Item: Glacier_Gatling + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 55 + Item: Glacier_Launcher + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 56 + Item: Glacier_Sword + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 57 + Item: Glacier_B_Sword + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 58 + Item: Glacier_R_Knife + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 59 + Item: Glacier_B_Knife + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 60 + Item: Glacier_Axe + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 61 + Item: Glacier_Spear + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 62 + Item: Glacier_Book + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 63 + Item: Glacier_Wand + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 64 + Item: Glacier_Foxtail + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 65 + Item: Glacier_Knuckle + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 66 + Item: Glacier_Violin + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 67 + Item: Glacier_Whip + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 68 + Item: Glacier_Mace + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 69 + Item: Glacier_M_Mace + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 70 + Item: Glacier_T_Sword + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 71 + Item: Glacier_Katar + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 72 + Item: Glacier_T_Axe + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 73 + Item: Glacier_Lance + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 74 + Item: Glacier_Staff + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 75 + Item: Glacier_Humma + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 76 + Item: Glacier_Bow + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 77 + Item: Glacier_Revolver + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 78 + Item: Glacier_Rifle + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 79 + Item: Glacier_Shotgun + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 80 + Item: Glacier_Gatling + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 81 + Item: Glacier_Launcher + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 82 + Item: D_Glacier_Sword + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 83 + Item: D_Glacier_B_Sword + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 84 + Item: D_Glacier_R_Knife + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 85 + Item: D_Glacier_B_Knife + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 86 + Item: D_Glacier_Axe + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 87 + Item: D_Glacier_Spear + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 88 + Item: D_Glacier_Book + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 89 + Item: D_Glacier_Wand + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 90 + Item: D_Glacier_Foxtail + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 91 + Item: D_Glacier_Knuckle + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 92 + Item: D_Glacier_Violin + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 93 + Item: D_Glacier_Whip + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 94 + Item: D_Glacier_Mace + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 95 + Item: D_Glacier_M_Mace + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 96 + Item: D_Glacier_T_Sword + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 97 + Item: D_Glacier_Katar + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 98 + Item: D_Glacier_T_Axe + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 99 + Item: D_Glacier_Lance + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 100 + Item: D_Glacier_Staff + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 101 + Item: D_Glacier_Humma + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 102 + Item: D_Glacier_Bow + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 103 + Item: D_Glacier_Revolver + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 104 + Item: D_Glacier_Rifle + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 105 + Item: D_Glacier_Shotgun + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 106 + Item: D_Glacier_Gatling + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 107 + Item: D_Glacier_Launcher + Rate: 30 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 108 + Item: D_Glacier_Sword + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 109 + Item: D_Glacier_B_Sword + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 110 + Item: D_Glacier_R_Knife + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 111 + Item: D_Glacier_B_Knife + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 112 + Item: D_Glacier_Axe + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 113 + Item: D_Glacier_Spear + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 114 + Item: D_Glacier_Book + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 115 + Item: D_Glacier_Wand + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 116 + Item: D_Glacier_Foxtail + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 117 + Item: D_Glacier_Knuckle + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 118 + Item: D_Glacier_Violin + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 119 + Item: D_Glacier_Whip + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 120 + Item: D_Glacier_Mace + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 121 + Item: D_Glacier_M_Mace + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 122 + Item: D_Glacier_T_Sword + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 123 + Item: D_Glacier_Katar + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 124 + Item: D_Glacier_T_Axe + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 125 + Item: D_Glacier_Lance + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 126 + Item: D_Glacier_Staff + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 127 + Item: D_Glacier_Humma + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 128 + Item: D_Glacier_Bow + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 129 + Item: D_Glacier_Revolver + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 130 + Item: D_Glacier_Rifle + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 131 + Item: D_Glacier_Shotgun + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 132 + Item: D_Glacier_Gatling + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 133 + Item: D_Glacier_Launcher + Rate: 15 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 134 + Item: D_Glacier_Sword + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 135 + Item: D_Glacier_B_Sword + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 136 + Item: D_Glacier_R_Knife + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 137 + Item: D_Glacier_B_Knife + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 138 + Item: D_Glacier_Axe + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 139 + Item: D_Glacier_Spear + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 140 + Item: D_Glacier_Book + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 141 + Item: D_Glacier_Wand + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 142 + Item: D_Glacier_Foxtail + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 143 + Item: D_Glacier_Knuckle + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 144 + Item: D_Glacier_Violin + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 145 + Item: D_Glacier_Whip + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 146 + Item: D_Glacier_Mace + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 147 + Item: D_Glacier_M_Mace + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 148 + Item: D_Glacier_T_Sword + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 149 + Item: D_Glacier_Katar + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 150 + Item: D_Glacier_T_Axe + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 151 + Item: D_Glacier_Lance + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 152 + Item: D_Glacier_Staff + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 153 + Item: D_Glacier_Humma + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 154 + Item: D_Glacier_Bow + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 155 + Item: D_Glacier_Revolver + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 156 + Item: D_Glacier_Rifle + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 157 + Item: D_Glacier_Shotgun + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 158 + Item: D_Glacier_Gatling + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 159 + Item: D_Glacier_Launcher + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 160 + Item: Snowflower_Armor + Rate: 50 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 161 + Item: Snowflower_Robe + Rate: 50 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 162 + Item: Snowflower_Boots + Rate: 50 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 163 + Item: Snowflower_Shoes + Rate: 50 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 164 + Item: Snowflower_Manteau + Rate: 50 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 165 + Item: Snowflower_Muffler + Rate: 50 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 166 + Item: Snowflower_Armor + Rate: 20 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 167 + Item: Snowflower_Robe + Rate: 20 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 168 + Item: Snowflower_Boots + Rate: 20 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 169 + Item: Snowflower_Shoes + Rate: 20 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 170 + Item: Snowflower_Manteau + Rate: 20 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 171 + Item: Snowflower_Muffler + Rate: 20 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 172 + Item: Snowflower_Armor + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 173 + Item: Snowflower_Robe + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 174 + Item: Snowflower_Boots + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 175 + Item: Snowflower_Shoes + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 176 + Item: Snowflower_Manteau + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 177 + Item: Snowflower_Muffler + Rate: 10 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 178 + Item: Ep19_Snow_Flower + Rate: 60 + Amount: 21 + - Index: 179 + Item: Ep19_Snow_Flower + Rate: 60 + Amount: 22 + - Index: 180 + Item: Ep19_Snow_Flower + Rate: 60 + Amount: 23 + - Index: 181 + Item: Ep19_Snow_Flower + Rate: 60 + Amount: 24 + - Index: 182 + Item: Ep19_Snow_Flower + Rate: 50 + Amount: 25 + - Index: 183 + Item: EP19_D_P_Ore + Rate: 50 + Amount: 7 + - Index: 184 + Item: EP19_D_P_Ore + Rate: 50 + Amount: 8 + - Index: 185 + Item: EP19_D_P_Ore + Rate: 50 + Amount: 9 + - Index: 186 + Item: EP19_D_P_Ore + Rate: 50 + Amount: 10 + - Index: 187 + Item: EP19_N_P_Ore + Rate: 50 + Amount: 7 + - Index: 188 + Item: EP19_N_P_Ore + Rate: 50 + Amount: 8 + - Index: 189 + Item: EP19_N_P_Ore + Rate: 50 + Amount: 9 + - Index: 190 + Item: EP19_N_P_Ore + Rate: 50 + Amount: 10 + - Index: 191 + Item: EP19_D_P_Crystal + Rate: 50 + Amount: 7 + - Index: 192 + Item: EP19_D_P_Crystal + Rate: 50 + Amount: 8 + - Index: 193 + Item: EP19_D_P_Crystal + Rate: 50 + Amount: 9 + - Index: 194 + Item: EP19_D_P_Crystal + Rate: 50 + Amount: 10 + - Index: 195 + Item: EP19_N_P_Crystal + Rate: 50 + Amount: 7 + - Index: 196 + Item: EP19_N_P_Crystal + Rate: 50 + Amount: 8 + - Index: 197 + Item: EP19_N_P_Crystal + Rate: 50 + Amount: 9 + - Index: 198 + Item: EP19_N_P_Crystal + Rate: 50 + Amount: 10 + - Index: 199 + Item: EP19_D_P_Stone + Rate: 50 + Amount: 3 + - Index: 200 + Item: EP19_D_P_Stone + Rate: 50 + Amount: 4 + - Index: 201 + Item: EP19_D_P_Stone + Rate: 50 + Amount: 5 + - Index: 202 + Item: EP19_D_P_Stone + Rate: 50 + Amount: 6 + - Index: 203 + Item: Snow_F_Ore + Rate: 50 + Amount: 26 + - Index: 204 + Item: Snow_F_Ore + Rate: 50 + Amount: 27 + - Index: 205 + Item: Snow_F_Ore + Rate: 50 + Amount: 28 + - Index: 206 + Item: Snow_F_Ore + Rate: 50 + Amount: 29 + - Index: 207 + Item: Snow_F_Ore + Rate: 50 + Amount: 30 + - Index: 208 + Item: Snow_F_Stone1 + Rate: 50 + Amount: 11 + - Index: 209 + Item: Snow_F_Stone1 + Rate: 50 + Amount: 12 + - Index: 210 + Item: Snow_F_Stone1 + Rate: 50 + Amount: 13 + - Index: 211 + Item: Snow_F_Stone1 + Rate: 50 + Amount: 14 + - Index: 212 + Item: Snow_F_Stone1 + Rate: 50 + Amount: 15 + - Index: 213 + Item: Snow_F_Stone2 + Rate: 50 + Amount: 8 + - Index: 214 + Item: Snow_F_Stone2 + Rate: 50 + Amount: 9 + - Index: 215 + Item: Snow_F_Stone2 + Rate: 50 + Amount: 10 + - Index: 216 + Item: Snow_F_Stone3 + Rate: 50 + Amount: 6 + - Index: 217 + Item: Snow_F_Stone3 + Rate: 50 + Amount: 7 + - Index: 218 + Item: EP19_Gla_Extract + Rate: 50 + Amount: 11 + - Index: 219 + Item: EP19_Gla_Extract + Rate: 50 + Amount: 12 + - Index: 220 + Item: EP19_Gla_Extract + Rate: 50 + Amount: 13 + - Index: 221 + Item: EP19_Gla_Extract + Rate: 50 + Amount: 14 + - Index: 222 + Item: EP19_Gla_Extract + Rate: 50 + Amount: 15 + - Index: 223 + Item: EP19_S_F_1_Extract + Rate: 50 + Amount: 11 + - Index: 224 + Item: EP19_S_F_1_Extract + Rate: 50 + Amount: 12 + - Index: 225 + Item: EP19_S_F_1_Extract + Rate: 50 + Amount: 13 + - Index: 226 + Item: EP19_S_F_1_Extract + Rate: 50 + Amount: 14 + - Index: 227 + Item: EP19_S_F_1_Extract + Rate: 50 + Amount: 15 + - Index: 228 + Item: EP19_S_F_2_Extract + Rate: 50 + Amount: 8 + - Index: 229 + Item: EP19_S_F_2_Extract + Rate: 50 + Amount: 9 + - Index: 230 + Item: EP19_S_F_2_Extract + Rate: 50 + Amount: 10 + - Index: 231 + Item: EP19_S_F_3_Extract + Rate: 50 + Amount: 6 + - Index: 232 + Item: EP19_S_F_3_Extract + Rate: 50 + Amount: 7 + - Group: F_ICESLUG_ANTIQUIY + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: aegis_1001480 + Rate: 1000 + Amount: 3 + - Index: 1 + Item: aegis_1001480 + Rate: 1000 + Amount: 4 + - Index: 2 + Item: aegis_1001480 + Rate: 1000 + Amount: 5 + - Index: 3 + Item: Glacier_Armor + Rate: 100 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 4 + Item: Glacier_Robe + Rate: 100 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 5 + Item: Glacier_Boots + Rate: 100 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 6 + Item: Glacier_Shoes + Rate: 100 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 7 + Item: Glacier_Manteau + Rate: 100 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 8 + Item: Glacier_Muffler + Rate: 100 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 9 + Item: Glacier_Armor + Rate: 80 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 10 + Item: Glacier_Robe + Rate: 80 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 11 + Item: Glacier_Boots + Rate: 80 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 12 + Item: Glacier_Shoes + Rate: 80 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 13 + Item: Glacier_Manteau + Rate: 80 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 14 + Item: Glacier_Muffler + Rate: 80 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 15 + Item: Glacier_Armor + Rate: 50 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 16 + Item: Glacier_Robe + Rate: 50 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 17 + Item: Glacier_Boots + Rate: 50 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 18 + Item: Glacier_Shoes + Rate: 50 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 19 + Item: Glacier_Manteau + Rate: 50 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 20 + Item: Glacier_Muffler + Rate: 50 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 21 + Item: Glacier_Guard + Rate: 100 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 22 + Item: Glacier_Guard + Rate: 80 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 23 + Item: Glacier_Guard + Rate: 50 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 24 + Item: Glacier_Pendant + Rate: 95 + - Index: 25 + Item: Glacier_Ring + Rate: 95 + - Index: 26 + Item: Glacier_Earring + Rate: 95 + - Index: 27 + Item: Glacier_Necklace + Rate: 95 + - Index: 28 + Item: Ep20_Cat_Whiskers + Rate: 100 + Amount: 16 + - Index: 29 + Item: Ep20_Cat_Whiskers + Rate: 100 + Amount: 17 + - Index: 30 + Item: Ep20_Cat_Whiskers + Rate: 100 + Amount: 18 + - Index: 31 + Item: Ep20_Cat_Whiskers + Rate: 100 + Amount: 19 + - Index: 32 + Item: Ep20_Cat_Whiskers + Rate: 100 + Amount: 20 + - Index: 33 + Item: EP20_D_P_Ore + Rate: 150 + Amount: 3 + - Index: 34 + Item: EP20_D_P_Ore + Rate: 150 + Amount: 4 + - Index: 35 + Item: EP20_D_P_Ore + Rate: 150 + Amount: 5 + - Index: 36 + Item: EP20_D_P_Ore + Rate: 150 + Amount: 6 + - Index: 37 + Item: EP20_D_P_Ore + Rate: 150 + Amount: 7 + - Index: 38 + Item: EP20_D_P_Crystal + Rate: 150 + Amount: 3 + - Index: 39 + Item: EP20_D_P_Crystal + Rate: 150 + Amount: 4 + - Index: 40 + Item: EP20_D_P_Crystal + Rate: 150 + Amount: 5 + - Index: 41 + Item: EP20_D_P_Crystal + Rate: 150 + Amount: 6 + - Index: 42 + Item: EP20_D_P_Crystal + Rate: 150 + Amount: 7 + - Index: 43 + Item: EP20_D_P_Extract + Rate: 150 + Amount: 3 + - Index: 44 + Item: EP20_D_P_Extract + Rate: 150 + Amount: 4 + - Index: 45 + Item: EP20_D_P_Extract + Rate: 150 + Amount: 5 + - Index: 46 + Item: EP20_D_P_Extract + Rate: 150 + Amount: 6 + - Index: 47 + Item: EP20_D_P_Extract + Rate: 150 + Amount: 7 + - Index: 48 + Item: EP19_Gla_Extract + Rate: 150 + Amount: 6 + - Index: 49 + Item: EP19_Gla_Extract + Rate: 150 + Amount: 7 + - Index: 50 + Item: EP19_Gla_Extract + Rate: 150 + Amount: 8 + - Index: 51 + Item: EP19_Gla_Extract + Rate: 150 + Amount: 9 + - Index: 52 + Item: EP19_Gla_Extract + Rate: 150 + Amount: 10 + - Index: 53 + Item: EP19_S_F_1_Extract + Rate: 150 + Amount: 6 + - Index: 54 + Item: EP19_S_F_1_Extract + Rate: 150 + Amount: 7 + - Index: 55 + Item: EP19_S_F_1_Extract + Rate: 150 + Amount: 8 + - Index: 56 + Item: EP19_S_F_1_Extract + Rate: 150 + Amount: 9 + - Index: 57 + Item: EP19_S_F_1_Extract + Rate: 150 + Amount: 10 + - Index: 58 + Item: EP19_S_F_2_Extract + Rate: 150 + Amount: 5 + - Index: 59 + Item: EP19_S_F_2_Extract + Rate: 150 + Amount: 6 + - Index: 60 + Item: EP19_S_F_2_Extract + Rate: 150 + Amount: 7 + - Index: 61 + Item: EP19_S_F_3_Extract + Rate: 150 + Amount: 4 + - Index: 62 + Item: EP19_S_F_3_Extract + Rate: 150 + Amount: 5 + - Group: LASGAND_ANTIQUITY + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: aegis_1001480 + Rate: 500 + Amount: 4 + - Index: 1 + Item: aegis_1001480 + Rate: 500 + Amount: 5 + - Index: 2 + Item: aegis_1001480 + Rate: 500 + Amount: 6 + - Index: 3 + Item: aegis_1001480 + Rate: 500 + Amount: 7 + - Index: 4 + Item: Glacier_Armor + Rate: 120 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 5 + Item: Glacier_Robe + Rate: 120 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 6 + Item: Glacier_Boots + Rate: 120 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 7 + Item: Glacier_Shoes + Rate: 120 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 8 + Item: Glacier_Manteau + Rate: 120 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 9 + Item: Glacier_Muffler + Rate: 120 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 10 + Item: Glacier_Armor + Rate: 110 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 11 + Item: Glacier_Robe + Rate: 110 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 12 + Item: Glacier_Boots + Rate: 110 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 13 + Item: Glacier_Shoes + Rate: 110 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 14 + Item: Glacier_Manteau + Rate: 110 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 15 + Item: Glacier_Muffler + Rate: 110 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 16 + Item: Glacier_Armor + Rate: 90 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 17 + Item: Glacier_Robe + Rate: 90 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 18 + Item: Glacier_Boots + Rate: 90 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 19 + Item: Glacier_Shoes + Rate: 90 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 20 + Item: Glacier_Manteau + Rate: 90 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 21 + Item: Glacier_Muffler + Rate: 90 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 22 + Item: Glacier_Armor + Rate: 80 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 23 + Item: Glacier_Robe + Rate: 80 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 24 + Item: Glacier_Boots + Rate: 80 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 25 + Item: Glacier_Shoes + Rate: 80 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 26 + Item: Glacier_Manteau + Rate: 80 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 27 + Item: Glacier_Muffler + Rate: 80 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 28 + Item: Glacier_Guard + Rate: 120 + RefineMinimum: 7 + RefineMaximum: 7 + - Index: 29 + Item: Glacier_Guard + Rate: 110 + RefineMinimum: 8 + RefineMaximum: 8 + - Index: 30 + Item: Glacier_Guard + Rate: 90 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 31 + Item: Glacier_Guard + Rate: 80 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 32 + Item: D_Glacier_Armor + Rate: 120 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 33 + Item: D_Glacier_Robe + Rate: 120 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 34 + Item: D_Glacier_Boots + Rate: 120 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 35 + Item: D_Glacier_Shoes + Rate: 120 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 36 + Item: D_Glacier_Manteau + Rate: 120 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 37 + Item: D_Glacier_Muffler + Rate: 120 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 38 + Item: D_Glacier_Armor + Rate: 100 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 39 + Item: D_Glacier_Robe + Rate: 100 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 40 + Item: D_Glacier_Boots + Rate: 100 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 41 + Item: D_Glacier_Shoes + Rate: 100 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 42 + Item: D_Glacier_Manteau + Rate: 100 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 43 + Item: D_Glacier_Muffler + Rate: 100 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 44 + Item: D_Glacier_Armor + Rate: 80 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 45 + Item: D_Glacier_Robe + Rate: 80 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 46 + Item: D_Glacier_Boots + Rate: 80 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 47 + Item: D_Glacier_Shoes + Rate: 80 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 48 + Item: D_Glacier_Manteau + Rate: 80 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 49 + Item: D_Glacier_Muffler + Rate: 80 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 50 + Item: Glacier_Pendant + Rate: 125 + - Index: 51 + Item: Glacier_Ring + Rate: 125 + - Index: 52 + Item: Glacier_Earring + Rate: 125 + - Index: 53 + Item: Glacier_Necklace + Rate: 125 + - Index: 54 + Item: Ep20_Cat_Whiskers + Rate: 100 + Amount: 21 + - Index: 55 + Item: Ep20_Cat_Whiskers + Rate: 100 + Amount: 22 + - Index: 56 + Item: Ep20_Cat_Whiskers + Rate: 100 + Amount: 23 + - Index: 57 + Item: Ep20_Cat_Whiskers + Rate: 100 + Amount: 24 + - Index: 58 + Item: Ep20_Cat_Whiskers + Rate: 100 + Amount: 25 + - Index: 59 + Item: EP20_D_P_Ore + Rate: 100 + Amount: 5 + - Index: 60 + Item: EP20_D_P_Ore + Rate: 100 + Amount: 6 + - Index: 61 + Item: EP20_D_P_Ore + Rate: 100 + Amount: 7 + - Index: 62 + Item: EP20_D_P_Crystal + Rate: 100 + Amount: 5 + - Index: 63 + Item: EP20_D_P_Crystal + Rate: 100 + Amount: 6 + - Index: 64 + Item: EP20_D_P_Crystal + Rate: 100 + Amount: 7 + - Index: 65 + Item: EP20_D_P_Extract + Rate: 100 + Amount: 5 + - Index: 66 + Item: EP20_D_P_Extract + Rate: 100 + Amount: 6 + - Index: 67 + Item: EP20_D_P_Extract + Rate: 100 + Amount: 7 + - Index: 68 + Item: EP19_Gla_Extract + Rate: 100 + Amount: 8 + - Index: 69 + Item: EP19_Gla_Extract + Rate: 100 + Amount: 9 + - Index: 70 + Item: EP19_Gla_Extract + Rate: 100 + Amount: 10 + - Index: 71 + Item: EP19_Gla_Extract + Rate: 100 + Amount: 11 + - Index: 72 + Item: EP19_Gla_Extract + Rate: 100 + Amount: 12 + - Index: 73 + Item: EP19_S_F_1_Extract + Rate: 100 + Amount: 8 + - Index: 74 + Item: EP19_S_F_1_Extract + Rate: 100 + Amount: 9 + - Index: 75 + Item: EP19_S_F_1_Extract + Rate: 100 + Amount: 10 + - Index: 76 + Item: EP19_S_F_1_Extract + Rate: 100 + Amount: 11 + - Index: 77 + Item: EP19_S_F_1_Extract + Rate: 100 + Amount: 12 + - Index: 78 + Item: EP19_S_F_2_Extract + Rate: 100 + Amount: 5 + - Index: 79 + Item: EP19_S_F_2_Extract + Rate: 100 + Amount: 6 + - Index: 80 + Item: EP19_S_F_2_Extract + Rate: 100 + Amount: 7 + - Index: 81 + Item: EP19_S_F_3_Extract + Rate: 100 + Amount: 5 + - Index: 82 + Item: EP19_S_F_3_Extract + Rate: 100 + Amount: 6 + - Group: LASGAND_ANTIQUITY2 + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: aegis_1001480 + Rate: 500 + Amount: 7 + - Index: 1 + Item: aegis_1001480 + Rate: 500 + Amount: 8 + - Index: 2 + Item: aegis_1001480 + Rate: 500 + Amount: 9 + - Index: 3 + Item: aegis_1001480 + Rate: 500 + Amount: 10 + - Index: 4 + Item: aegis_1001480 + Rate: 500 + Amount: 11 + - Index: 5 + Item: Glacier_Armor + Rate: 80 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 6 + Item: Glacier_Robe + Rate: 80 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 7 + Item: Glacier_Boots + Rate: 80 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 8 + Item: Glacier_Shoes + Rate: 80 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 9 + Item: Glacier_Manteau + Rate: 80 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 10 + Item: Glacier_Muffler + Rate: 80 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 11 + Item: Glacier_Armor + Rate: 80 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 12 + Item: Glacier_Robe + Rate: 80 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 13 + Item: Glacier_Boots + Rate: 80 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 14 + Item: Glacier_Shoes + Rate: 80 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 15 + Item: Glacier_Manteau + Rate: 80 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 16 + Item: Glacier_Muffler + Rate: 80 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 17 + Item: Glacier_Guard + Rate: 80 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 18 + Item: Glacier_Guard + Rate: 80 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 19 + Item: D_Glacier_Armor + Rate: 80 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 20 + Item: D_Glacier_Robe + Rate: 80 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 21 + Item: D_Glacier_Boots + Rate: 80 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 22 + Item: D_Glacier_Shoes + Rate: 80 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 23 + Item: D_Glacier_Manteau + Rate: 80 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 24 + Item: D_Glacier_Muffler + Rate: 80 + RefineMinimum: 9 + RefineMaximum: 9 + - Index: 25 + Item: D_Glacier_Armor + Rate: 70 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 26 + Item: D_Glacier_Robe + Rate: 70 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 27 + Item: D_Glacier_Boots + Rate: 70 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 28 + Item: D_Glacier_Shoes + Rate: 70 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 29 + Item: D_Glacier_Manteau + Rate: 70 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 30 + Item: D_Glacier_Muffler + Rate: 70 + RefineMinimum: 10 + RefineMaximum: 10 + - Index: 31 + Item: D_Glacier_Armor + Rate: 65 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 32 + Item: D_Glacier_Robe + Rate: 65 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 33 + Item: D_Glacier_Boots + Rate: 65 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 34 + Item: D_Glacier_Shoes + Rate: 65 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 35 + Item: D_Glacier_Manteau + Rate: 65 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 36 + Item: D_Glacier_Muffler + Rate: 65 + RefineMinimum: 11 + RefineMaximum: 11 + - Index: 37 + Item: Glacier_Pendant + Rate: 70 + - Index: 38 + Item: Glacier_Ring + Rate: 70 + - Index: 39 + Item: Glacier_Earring + Rate: 70 + - Index: 40 + Item: Glacier_Necklace + Rate: 70 + - Index: 41 + Item: Ep20_Cat_Whiskers + Rate: 150 + Amount: 31 + - Index: 42 + Item: Ep20_Cat_Whiskers + Rate: 150 + Amount: 32 + - Index: 43 + Item: Ep20_Cat_Whiskers + Rate: 150 + Amount: 33 + - Index: 44 + Item: Ep20_Cat_Whiskers + Rate: 150 + Amount: 34 + - Index: 45 + Item: Ep20_Cat_Whiskers + Rate: 150 + Amount: 35 + - Index: 46 + Item: EP20_D_P_Ore + Rate: 150 + Amount: 7 + - Index: 47 + Item: EP20_D_P_Ore + Rate: 150 + Amount: 8 + - Index: 48 + Item: EP20_D_P_Ore + Rate: 150 + Amount: 9 + - Index: 49 + Item: EP20_D_P_Ore + Rate: 150 + Amount: 10 + - Index: 50 + Item: EP20_D_P_Crystal + Rate: 150 + Amount: 7 + - Index: 51 + Item: EP20_D_P_Crystal + Rate: 150 + Amount: 8 + - Index: 52 + Item: EP20_D_P_Crystal + Rate: 150 + Amount: 9 + - Index: 53 + Item: EP20_D_P_Crystal + Rate: 150 + Amount: 10 + - Index: 54 + Item: EP20_D_P_Extract + Rate: 150 + Amount: 7 + - Index: 55 + Item: EP20_D_P_Extract + Rate: 150 + Amount: 8 + - Index: 56 + Item: EP20_D_P_Extract + Rate: 150 + Amount: 9 + - Index: 57 + Item: EP20_D_P_Extract + Rate: 150 + Amount: 10 + - Index: 58 + Item: EP19_Gla_Extract + Rate: 151 + Amount: 11 + - Index: 59 + Item: EP19_Gla_Extract + Rate: 151 + Amount: 12 + - Index: 60 + Item: EP19_Gla_Extract + Rate: 151 + Amount: 13 + - Index: 61 + Item: EP19_Gla_Extract + Rate: 151 + Amount: 14 + - Index: 62 + Item: EP19_Gla_Extract + Rate: 151 + Amount: 15 + - Index: 63 + Item: EP19_S_F_1_Extract + Rate: 151 + Amount: 11 + - Index: 64 + Item: EP19_S_F_1_Extract + Rate: 151 + Amount: 12 + - Index: 65 + Item: EP19_S_F_1_Extract + Rate: 151 + Amount: 13 + - Index: 66 + Item: EP19_S_F_1_Extract + Rate: 151 + Amount: 14 + - Index: 67 + Item: EP19_S_F_1_Extract + Rate: 151 + Amount: 15 + - Index: 68 + Item: EP19_S_F_2_Extract + Rate: 150 + Amount: 7 + - Index: 69 + Item: EP19_S_F_2_Extract + Rate: 150 + Amount: 8 + - Index: 70 + Item: EP19_S_F_2_Extract + Rate: 150 + Amount: 9 + - Index: 71 + Item: EP19_S_F_3_Extract + Rate: 150 + Amount: 8 + - Index: 72 + Item: EP19_S_F_3_Extract + Rate: 150 + Amount: 9 + - Group: THANATOS_ANTIQUITY + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: aegis_1001479 + Rate: 800 + Amount: 4 + - Index: 1 + Item: aegis_1001479 + Rate: 800 + Amount: 5 + - Index: 2 + Item: aegis_1001479 + Rate: 800 + Amount: 6 + - Index: 3 + Item: aegis_1001479 + Rate: 800 + Amount: 7 + - Index: 4 + Item: aegis_1001479 + Rate: 800 + Amount: 8 + - Index: 5 + Item: Sin_Ring_R + Rate: 100 + - Index: 6 + Item: Sin_Ring_E + Rate: 100 + - Index: 7 + Item: Sin_Ring_T + Rate: 100 + - Index: 8 + Item: Sin_Ring_A + Rate: 100 + - Index: 9 + Item: Sin_Ring_S + Rate: 100 + - Index: 10 + Item: Sin_Ring_O + Rate: 100 + - Index: 11 + Item: Sin_Necklace_R + Rate: 100 + - Index: 12 + Item: Sin_Necklace_E + Rate: 100 + - Index: 13 + Item: Sin_Necklace_T + Rate: 100 + - Index: 14 + Item: Sin_Necklace_A + Rate: 100 + - Index: 15 + Item: Sin_Necklace_S + Rate: 100 + - Index: 16 + Item: Sin_Necklace_O + Rate: 100 + - Index: 17 + Item: Shine_Ring_R + Rate: 100 + - Index: 18 + Item: Shine_Ring_E + Rate: 100 + - Index: 19 + Item: Shine_Ring_AQ + Rate: 100 + - Index: 20 + Item: Shine_Ring_A + Rate: 100 + - Index: 21 + Item: Shine_Ring_S + Rate: 100 + - Index: 22 + Item: Shine_Ring_Z + Rate: 100 + - Index: 23 + Item: Shine_Ring_R + Rate: 100 + - Index: 24 + Item: Shine_Necklace_R + Rate: 100 + - Index: 25 + Item: Shine_Necklace_E + Rate: 100 + - Index: 26 + Item: Shine_Necklace_AQ + Rate: 100 + - Index: 27 + Item: Shine_Necklace_A + Rate: 100 + - Index: 28 + Item: Shine_Necklace_S + Rate: 100 + - Index: 29 + Item: Shine_Necklace_Z + Rate: 100 + - Index: 30 + Item: Sin_Fragment + Rate: 240 + Amount: 10 + - Index: 31 + Item: Sin_Fragment + Rate: 230 + Amount: 11 + - Index: 32 + Item: Sin_Fragment + Rate: 230 + Amount: 12 + - Index: 33 + Item: Sin_Fragment + Rate: 220 + Amount: 13 + - Index: 34 + Item: Sin_Fragment + Rate: 220 + Amount: 14 + - Index: 35 + Item: Sin_Fragment + Rate: 220 + Amount: 15 + - Index: 36 + Item: Sin_Fragment + Rate: 220 + Amount: 16 + - Index: 37 + Item: Sin_Fragment + Rate: 220 + Amount: 17 + - Index: 38 + Item: Fate_Fragment + Rate: 240 + Amount: 10 + - Index: 39 + Item: Fate_Fragment + Rate: 230 + Amount: 11 + - Index: 40 + Item: Fate_Fragment + Rate: 230 + Amount: 12 + - Index: 41 + Item: Fate_Fragment + Rate: 220 + Amount: 13 + - Index: 42 + Item: Fate_Fragment + Rate: 220 + Amount: 14 + - Index: 43 + Item: Fate_Fragment + Rate: 220 + Amount: 15 + - Index: 44 + Item: Fate_Fragment + Rate: 150 + Amount: 16 + - Index: 45 + Item: Fate_Fragment + Rate: 150 + Amount: 17 + - Group: CINNAMON_PACK1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Cinnamon_Costume_Box + - Index: 1 + Item: Cos_EnchantStone_Box1 + Amount: 2 + - Group: CINNAMON_PACK2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Cinnamon_Costume_Box + - Index: 1 + Item: Cos_EnchantStone_Box2 + Amount: 2 + - Group: CINNAMON_PACK3 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Cinnamon_Costume_Box + - Index: 1 + Item: Cos_EnchantStone_Box3 + Amount: 2 + - Group: CINNAMON_PACK4 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: aegis_480245 + - Group: T_GARDEN_EV_1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Energy_Of_Flame + Amount: 15 + - Index: 1 + Item: Energy_Of_Water + Amount: 15 + - Index: 2 + Item: Energy_Of_Wind + Amount: 15 + - Index: 3 + Item: Energy_Of_Ground + Amount: 15 + - Index: 4 + Item: Grace_Of_Spirit + Amount: 5 + - Group: T_GARDEN_EV_2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Energy_Of_Spring + Amount: 5 + - Index: 1 + Item: Energy_Of_Summer + Amount: 5 + - Index: 2 + Item: Energy_Of_Autumn + Amount: 5 + - Index: 3 + Item: Energy_Of_Winter + Amount: 5 + - Group: T_GARDEN_EV_3 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Circul_Of_Life + Amount: 30 + - Index: 1 + Item: Fruit_Of_Birth + Amount: 15 + - Index: 2 + Item: Fruit_Of_Extinction + Amount: 15 + - Index: 3 + Item: Truth_Of_Life + Amount: 10 + - Index: 4 + Item: Light_Of_Life + Amount: 3 + - Group: LI_NYANGVINE_BOX1_33 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 100 + - Index: 1 + Item: aegis_102605 + Amount: 2 + - Index: 2 + Item: Comp_Bubble_Gum + Amount: 3 + - Group: LI_NYANGVINE_BOX2_33 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 200 + - Index: 1 + Item: Battle_Manual100 + Amount: 2 + - Index: 2 + Item: aegis_102605 + Amount: 5 + - Group: LI_NYANGVINE_BOX3_33 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 400 + - Index: 1 + Item: Comp_Bubble_Gum + Amount: 5 + - Index: 2 + Item: Battle_Manual100 + Amount: 5 + - Index: 3 + Item: aegis_102605 + Amount: 10 + - Group: LI_NYANG_CINNA_BOX1_33 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 100 + - Index: 1 + Item: aegis_102605 + Amount: 2 + - Index: 2 + Item: Comp_Bubble_Gum + Amount: 3 + - Index: 3 + Item: Cinnamon_Pack1 + - Group: LI_NYANG_CINNA_BOX2_33 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 200 + - Index: 1 + Item: Battle_Manual100 + Amount: 2 + - Index: 2 + Item: aegis_102605 + Amount: 5 + - Index: 3 + Item: Cinnamon_Pack2 + - Group: LI_NYANG_CINNA_BOX3_33 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 400 + - Index: 1 + Item: Comp_Bubble_Gum + Amount: 5 + - Index: 2 + Item: Battle_Manual100 + Amount: 5 + - Index: 3 + Item: aegis_102605 + Amount: 10 + - Index: 4 + Item: Cinnamon_Pack3 + - Group: BL_DEPTH_EV_1 + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Bar_D_Fl_Rune + Rate: 1250 + Amount: 10 + - Index: 1 + Item: Bar_D_Ea_Rune + Rate: 1250 + Amount: 10 + - Index: 2 + Item: Bar_D_Ic_Rune + Rate: 1250 + Amount: 10 + - Index: 3 + Item: Bar_D_St_Rune + Rate: 1250 + Amount: 10 + - Index: 4 + Item: Bar_D_So_Rune + Rate: 1250 + Amount: 10 + - Index: 5 + Item: Bar_D_Pu_Rune + Rate: 1250 + Amount: 10 + - Index: 6 + Item: Bar_D_Co_Rune + Rate: 1250 + Amount: 10 + - Index: 7 + Item: Bar_D_Po_Rune + Rate: 1250 + Amount: 10 + - Group: BL_DEPTH_EV_2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Abyss_Rune + Amount: 30 + - Index: 1 + Item: Time_D_Ma_Rune + Amount: 10 + - Group: KR_B_SPECIAL09 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Cachua_Coupon + Amount: 10 + - Index: 1 + Item: Evt_Cos_Coin + Amount: 10 + - Group: LI_A_ELUNIUM_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Enriched_Elunium + Amount: 200 + UniqueId: true + - Index: 1 + Item: K_Secret_Key + Amount: 20 + - Index: 2 + Item: Blacksmith_Blessing + Amount: 10 + - Group: LI_A_ORIDECON_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Enriched_Oridecon + Amount: 200 + UniqueId: true + - Index: 1 + Item: K_Secret_Key + Amount: 20 + - Index: 2 + Item: Blacksmith_Blessing + Amount: 10 + - Group: PRESENTBOX_EP17_2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: BarMealTicket + Amount: 20 + - Index: 1 + Item: Magical_Igni_Stone + Amount: 10 + - Index: 2 + Item: Kr_B_Special01 + - Group: PRESENTBOX_EP18 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Ep18_Amethyst_Fragment + Amount: 20 + - Index: 1 + Item: Purificatory_Holy_O + Amount: 3 + - Index: 2 + Item: Purificatory_Holy_W + Amount: 3 + - Index: 3 + Item: Kr_B_Special01 + - Group: REFINE_EVENT_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Blacksmith_Blessing + Amount: 14 + - Index: 1 + Item: High_Refine_Guarantee + - Group: PRESENTBOX_EP19 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Snow_F_Stone1 + Amount: 10 + - Index: 1 + Item: Ep19_Snow_Flower + Amount: 10 + - Index: 2 + Item: Kr_B_Special01 + - Group: PRESENTBOX_EP20 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: EP19_S_F_3_Extract + Amount: 10 + - Index: 1 + Item: Ep20_Cat_Whiskers + Amount: 10 + - Index: 2 + Item: Kr_B_Special01 + - Group: PRESENTBOX_GLASTHEIM + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: GH_Cursed_Crystal + Amount: 10 + - Index: 1 + Item: GH_Cursed_Gemstone + Amount: 10 + - Index: 2 + Item: Kr_B_Special01 + - Group: BROWN_DIA_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: aegis_1001480 + Amount: 15 + - Group: COSTUMEMILEPACK_33_1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 100 + - Index: 1 + Item: Evt_Cos_Coin + Amount: 12 + - Index: 2 + Item: aegis_102605 + Amount: 3 + - Group: COSTUMEMILEPACK_33_2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 200 + - Index: 1 + Item: Evt_Cos_Coin + Amount: 25 + - Index: 2 + Item: aegis_102605 + Amount: 5 + - Group: COSTUMEMILEPACK_33_3 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 400 + - Index: 1 + Item: Evt_Cos_Coin + Amount: 50 + - Index: 2 + Item: aegis_102605 + Amount: 10 + - Group: 2023_XMAX_PACK_1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: EXP_Drop_Up_7days + - Index: 1 + Item: Almighty + Amount: 20 + - Index: 2 + Item: Limit_Power_Booster + Amount: 20 + - Index: 3 + Item: Infinity_Drink + Amount: 20 + - Index: 4 + Item: M_DEFScroll + Amount: 100 + - Index: 5 + Item: 2023_Xmas_Costume + - Index: 6 + Item: K_Secret_Key + Amount: 15 + - Group: 2023_XMAX_PACK_2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Small_Mana_Potion + Amount: 250 + - Index: 1 + Item: aegis_420304 + - Index: 2 + Item: K_Secret_Key + Amount: 30 + - Group: A_FORCE_BOOSTER_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Force_Booster + Amount: 10 + - Index: 1 + Item: K_Secret_Key + - Group: A_FORCE_BOOSTER_10_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Force_Booster + Amount: 100 + - Index: 1 + Item: K_Secret_Key + Amount: 11 + - Group: 2401_EV_LUNCH_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: 2401_ev_Rice_Soup + Amount: 5 + - Index: 1 + Item: 2401_ev_Galbi + Amount: 5 + - Index: 2 + Item: 2401_ev_LinTteok + Amount: 5 + - Group: BLACK_DIA_3_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: aegis_1001479 + Amount: 3 + - Group: LI_NYANGVINE_BOX1_34 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 100 + - Index: 1 + Item: Enchant_Stone_Box34 + Amount: 2 + - Index: 2 + Item: Comp_Bubble_Gum + Amount: 3 + - Group: LI_NYANGVINE_BOX2_34 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 200 + - Index: 1 + Item: Battle_Manual100 + Amount: 2 + - Index: 2 + Item: Enchant_Stone_Box34 + Amount: 5 + - Group: LI_NYANGVINE_BOX3_34 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Nyangvine_Fruit + Amount: 400 + - Index: 1 + Item: Comp_Bubble_Gum + Amount: 5 + - Index: 2 + Item: Battle_Manual100 + Amount: 5 + - Index: 3 + Item: Enchant_Stone_Box34 + Amount: 10 + - Group: S_BADGE_PACK + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: VR_RING + Amount: 8 + - Index: 1 + Item: S_Badge + Amount: 8 + - Group: SUPER_SONIC_PACK + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: VR_RING + Amount: 8 + - Index: 1 + Item: S_Badge + Amount: 8 + - Index: 2 + Item: C_Super_Sonic_Mini + - Group: CHAOS_EMERALD_PACK + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: VR_RING + Amount: 8 + - Index: 1 + Item: S_Badge + Amount: 8 + - Index: 2 + Item: C_Chaos_Emerald + - Group: VIP_BIRTHDAY_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: E_EXP_Drop_Up_7days + - Index: 1 + Item: C_VIP_Poring_Cake_Cap + Duration: 40320 + - Group: R_EP17_ALBUM + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Bellare_Card + Rate: 162 + - Index: 1 + Item: High_Bellare_Card + Rate: 162 + - Index: 2 + Item: Sanare_Card + Rate: 162 + - Index: 3 + Item: High_Sanare_Card + Rate: 162 + - Index: 4 + Item: Plaga_Card + Rate: 162 + - Index: 5 + Item: Mutant_Plaga_Card + Rate: 162 + - Index: 6 + Item: Venenum_Card + Rate: 162 + - Index: 7 + Item: Mt_Venenum_Card + Rate: 162 + - Index: 8 + Item: Dolor_Card + Rate: 162 + - Index: 9 + Item: Mt_Dolor_Card + Rate: 162 + - Index: 10 + Item: Caput_Card + Rate: 161 + - Index: 11 + Item: E_EA1L_Card + Rate: 161 + - Index: 12 + Item: E_EA2S_Card + Rate: 161 + - Index: 13 + Item: Assistant_Card + Rate: 161 + - Index: 14 + Item: Assistant_H_Card + Rate: 161 + - Index: 15 + Item: Plaga3_Card + Rate: 161 + - Index: 16 + Item: Sanare3_Card + Rate: 161 + - Index: 17 + Item: Plasma_R_Card + Rate: 161 + - Index: 18 + Item: Plasma_R2_Card + Rate: 161 + - Index: 19 + Item: Dolor3_Card + Rate: 161 + - Index: 20 + Item: Plasma_Y_Card + Rate: 161 + - Index: 21 + Item: Beta_Baths_A_Card + Rate: 161 + - Index: 22 + Item: Beta_Cleaner_Card + Rate: 161 + - Index: 23 + Item: Bath_Mermaid_Card + Rate: 161 + - Index: 24 + Item: Papila_Ruba_H_Card + Rate: 161 + - Index: 25 + Item: Papila_Cae_H_Card + Rate: 161 + - Index: 26 + Item: Papila_H_Card + Rate: 161 + - Index: 27 + Item: Bookworm_Card + Rate: 161 + - Index: 28 + Item: Roaming_Splbook_Card + Rate: 161 + - Index: 29 + Item: B_Scissore_Ng_H_Card + Rate: 161 + - Index: 30 + Item: Beta_Scissore_Ng_Card + Rate: 161 + - Index: 31 + Item: Bellare3_Card + Rate: 161 + - Index: 32 + Item: Venenum3_Card + Rate: 161 + - Index: 33 + Item: EP17_2_Cramp_Card + Rate: 161 + - Index: 34 + Item: Waterfall_Card + Rate: 161 + - Index: 35 + Item: EP17_2_Phen_Card + Rate: 161 + - Index: 36 + Item: EP17_2_Sword_Fish_Card + Rate: 161 + - Index: 37 + Item: EP17_2_Piranha_Card + Rate: 161 + - Index: 38 + Item: EP17_2_Marc_Card + Rate: 161 + - Index: 39 + Item: Pitaya_R_Card + Rate: 161 + - Index: 40 + Item: Pitaya_Y_Card + Rate: 161 + - Index: 41 + Item: Pitaya_B_Card + Rate: 161 + - Index: 42 + Item: Pitaya_V_Card + Rate: 162 + - Index: 43 + Item: Pitaya_G_Card + Rate: 162 + - Index: 44 + Item: Verporte_H_Card + Rate: 162 + - Index: 45 + Item: Verporta_Card + Rate: 161 + - Index: 46 + Item: Aries_Card + Rate: 161 + - Index: 47 + Item: Aries_H_Card + Rate: 161 + - Index: 48 + Item: Beta_Guards_Ng_Card + Rate: 161 + - Index: 49 + Item: O_Cleaner_Ng_Card + Rate: 161 + - Index: 50 + Item: EP18_Rakehand_Card + Rate: 161 + - Index: 51 + Item: EP18_Spark_Card + Rate: 161 + - Index: 52 + Item: EP18_Ashhopper_Card + Rate: 161 + - Index: 53 + Item: EP18_Ashring_Card + Rate: 161 + - Index: 54 + Item: EP18_Tumble_Ring_Card + Rate: 161 + - Index: 55 + Item: EP18_Firewind_Kite_Card + Rate: 161 + - Index: 56 + Item: EP18_Phantom_Wolf_Card + Rate: 161 + - Index: 57 + Item: EP18_Grey_Wolf_Card + Rate: 161 + - Index: 58 + Item: EP18_Lava_Toad_Card + Rate: 161 + - Index: 59 + Item: EP18_Ash_Toad_Card + Rate: 161 + - Index: 60 + Item: EP18_Hot_Molar_Card + Rate: 161 + - Index: 61 + Item: EP18_Volcaring_Card + Rate: 161 + - Index: 62 + Item: R_Ep178_boss + Rate: 5 + Announced: true + - Group: SONIC_PREMIUM_PACK1 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Sonic_Costume_Pack + - Index: 1 + Item: Premium_Box + - Index: 2 + Item: EXP_Drop_Up_7days + - Index: 3 + Item: K_Secret_Key + Amount: 15 + - Group: SONIC_PREMIUM_PACK2 + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Sonic_Costume_Pack + - Index: 1 + Item: Nyangvine_Fruit + Amount: 150 + - Index: 2 + Item: Booster_Call_Package + - Group: S_BADGE_PACK_ + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: VR_RING + Amount: 8 + - Index: 1 + Item: S_Badge + Amount: 8 + - Group: SUPER_SONIC_PACK_ + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: VR_RING + Amount: 8 + - Index: 1 + Item: S_Badge + Amount: 8 + - Index: 2 + Item: C_Super_Sonic_Mini + - Group: CHAOS_EMERALD_PACK_ + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: VR_RING + Amount: 8 + - Index: 1 + Item: S_Badge + Amount: 8 + - Index: 2 + Item: C_Chaos_Emerald + - Group: E_BOARDING_HALTER_BOX + SubGroups: + - SubGroup: 0 + List: + - Index: 0 + Item: Boarding_Halter + - Group: SHADOW_SELECT_BOX_SET + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: M_Blitz_Select_Box + Rate: 10 + - Index: 1 + Item: EXP_Select_Box + Rate: 10 + - Index: 2 + Item: Infinity_Select_Box + Rate: 10 + - Index: 3 + Item: MAutoSpell_Select_Box + Rate: 10 + - Index: 4 + Item: Hasty_Select_Box + Rate: 10 + - Index: 5 + Item: R_Bearers_Select_Box + Rate: 10 + - Index: 6 + Item: Absorb_Select_Box + Rate: 10 + - Index: 7 + Item: SpellCaster_Select_Box + Rate: 10 + - Index: 8 + Item: Mammoth_Select_Box + Rate: 10 + - Index: 9 + Item: PerfectSize_Select_Box + Rate: 10 + - Index: 10 + Item: TrueGem_Select_Box + Rate: 10 + - Index: 11 + Item: AllMighty_Select_Box + Rate: 10 + - Index: 12 + Item: Clever_Select_Box + Rate: 10 + - Index: 13 + Item: Durable_Select_Box + Rate: 10 + - Index: 14 + Item: FullTemp_Select_Box + Rate: 10 + - Index: 15 + Item: FullPene_Select_Box + Rate: 10 + - Index: 16 + Item: S_Reload_Shield_Box + Rate: 10 + - Group: REFINE_HAMMER_BOX + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Helm_Of_Faith_Hammer + Rate: 10 + - Index: 1 + Item: Clock_Tower_W_Hammer + Rate: 10 + - Index: 2 + Item: OS_Weapon_Hammer + Rate: 10 + - Index: 3 + Item: OS_Helm_Hammer + Rate: 10 + - Index: 4 + Item: Poenitentia_Hammer + Rate: 10 + - Index: 5 + Item: Barmund_Hammer + Rate: 10 + - Index: 6 + Item: Special_Hat_Hammer + Rate: 10 + - Index: 7 + Item: Vivatus_Weapon_Hammer + Rate: 10 + - Index: 8 + Item: Justice_Weapon_Hammer + Rate: 10 + - Index: 9 + Item: Injustice_Weapon_Hammer + Rate: 10 + - Index: 10 + Item: GoodnEvil_Helm_Hammer + Rate: 10 + - Index: 11 + Item: F_Ein_Weapon_Hammer + Rate: 10 + - Group: COS_ENCHANTSTONE_BOX1 + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: SmatkStone_Robe + Rate: 115 + - Index: 1 + Item: M_PATKStone_Robe + Rate: 115 + - Index: 2 + Item: R_PATKStone_Robe + Rate: 115 + - Index: 3 + Item: ResistDefStone_Robe + Rate: 115 + - Index: 4 + Item: MinorCastStone_Robe_D + Rate: 116 + - Index: 5 + Item: Range_Stone_Robe_D + Rate: 116 + - Index: 6 + Item: SPdrainStone_Robe_D + Rate: 116 + - Index: 7 + Item: ASPDStone_Robe_D + Rate: 116 + - Index: 8 + Item: CastStone_Robe_D + Rate: 116 + - Index: 9 + Item: Melee_Stone_Robe_D + Rate: 116 + - Index: 10 + Item: HPdrainStone_Robe_D + Rate: 116 + - Index: 11 + Item: RuneknightStone_Top3 + Rate: 105 + - Index: 12 + Item: WarlockStone_Top3 + Rate: 105 + - Index: 13 + Item: RoyalguardStone_Top3 + Rate: 105 + - Index: 14 + Item: WanderMinsStone_Top3 + Rate: 105 + - Index: 15 + Item: GeneticStone_Top3 + Rate: 105 + - Index: 16 + Item: SorcererStone_Top3 + Rate: 105 + - Index: 17 + Item: ArchbishopStone_Top3 + Rate: 105 + - Index: 18 + Item: RangerStone_Top3 + Rate: 105 + - Index: 19 + Item: ShadowchasStone_Top3 + Rate: 105 + - Index: 20 + Item: SuraStone_Top3 + Rate: 105 + - Index: 21 + Item: MechanicStone_Top3 + Rate: 105 + - Index: 22 + Item: GuillcrossStone_Top3 + Rate: 105 + - Index: 23 + Item: StarStone_Top3 + Rate: 105 + - Index: 24 + Item: RebelStone_Top3 + Rate: 105 + - Index: 25 + Item: ReaperStone_Top3 + Rate: 106 + - Index: 26 + Item: KagerouStone_Top3 + Rate: 106 + - Index: 27 + Item: OboroStone_Top3 + Rate: 106 + - Index: 28 + Item: DoramStone_Top3 + Rate: 106 + - Index: 29 + Item: SuNoviceStone_Top + Rate: 106 + - Index: 30 + Item: Magic_Stone_Top + Rate: 200 + - Index: 31 + Item: Range_Stone_Top + Rate: 200 + - Index: 32 + Item: Melee_Stone_Top + Rate: 200 + - Index: 33 + Item: RuneknightStone_Top2 + Rate: 200 + - Index: 34 + Item: GeneticStone_Top2 + Rate: 200 + - Index: 35 + Item: WanderMinsStone_Top2 + Rate: 200 + - Index: 36 + Item: WarlockStone_Top2 + Rate: 200 + - Index: 37 + Item: PaladinStone_Top2 + Rate: 200 + - Index: 38 + Item: AssacrossStone_Top2 + Rate: 200 + - Index: 39 + Item: RangerStone_Top2 + Rate: 200 + - Index: 40 + Item: MechanicStone_Top2 + Rate: 200 + - Index: 41 + Item: HighpriestStone_Top2 + Rate: 200 + - Index: 42 + Item: SoullinkerStone_Top + Rate: 200 + - Index: 43 + Item: GladiatorStone_Top + Rate: 200 + - Index: 44 + Item: NinjaStone_Top + Rate: 200 + - Index: 45 + Item: GunslingerStone_Top + Rate: 200 + - Index: 46 + Item: DoramStone_Top + Rate: 200 + - Index: 47 + Item: SuraStone_Top2 + Rate: 200 + - Index: 48 + Item: SorcererStone_Top2 + Rate: 200 + - Index: 49 + Item: ShadowchaserStone_Top2 + Rate: 200 + - Index: 50 + Item: HighpriestStone_Top + Rate: 200 + - Index: 51 + Item: PaladinStone_Top + Rate: 200 + - Index: 52 + Item: AssacrossStone_Top + Rate: 200 + - Index: 53 + Item: ShadowchaserStone_Top + Rate: 200 + - Index: 54 + Item: MechanicStone_Top + Rate: 200 + - Index: 55 + Item: WanderMinstrelStone_Top + Rate: 200 + - Index: 56 + Item: RuneknightStone_Top + Rate: 200 + - Index: 57 + Item: GeneticStone_Top + Rate: 200 + - Index: 58 + Item: WarlockStone_Top + Rate: 200 + - Index: 59 + Item: SuraStone_Top + Rate: 200 + - Index: 60 + Item: RangerStone_Top + Rate: 200 + - Index: 61 + Item: SorcererStone_Top + Rate: 200 + - Index: 62 + Item: Critical_Stone_Top + Rate: 200 + - Index: 63 + Item: EXPStone_Top + Rate: 200 + - Index: 64 + Item: CastingStone_Top + Rate: 200 + - Index: 65 + Item: ASPDStone_Top + Rate: 200 + - Index: 66 + Item: ReloadStone_Top + Rate: 200 + - Index: 67 + Item: HPdrainStone_Top + Rate: 200 + - Index: 68 + Item: SPdrainStone_Top + Rate: 200 + - Index: 69 + Item: DefenseStone_Top + Rate: 200 + - SubGroup: 2 + List: + - Index: 0 + Item: WaterFieldEffect_Bottom + Rate: 910 + - Index: 1 + Item: GreenFloor_Bottom + Rate: 909 + - Index: 2 + Item: WhiteBodyEffect_Middle + Rate: 909 + - Index: 3 + Item: ExplodingEffect_Middle + Rate: 909 + - Index: 4 + Item: BlueAuraEffect_Middle + Rate: 909 + - Index: 5 + Item: ShadowEffect_Middle + Rate: 909 + - Index: 6 + Item: PinkGlowEffect_Middle + Rate: 909 + - Index: 7 + Item: ElectricEffect_Middle + Rate: 909 + - Index: 8 + Item: ShrinkEffect_Middle + Rate: 909 + - Index: 9 + Item: GhostEffect_Middle + Rate: 909 + - Index: 10 + Item: TwinkleEffect_Top + Rate: 909 + - Group: COS_ENCHANTSTONE_BOX2 + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: SmatkStone_Robe + Rate: 115 + - Index: 1 + Item: M_PATKStone_Robe + Rate: 115 + - Index: 2 + Item: R_PATKStone_Robe + Rate: 115 + - Index: 3 + Item: ResistDefStone_Robe + Rate: 115 + - Index: 4 + Item: MinorCastStone_Robe_D + Rate: 116 + - Index: 5 + Item: Range_Stone_Robe_D + Rate: 116 + - Index: 6 + Item: SPdrainStone_Robe_D + Rate: 116 + - Index: 7 + Item: ASPDStone_Robe_D + Rate: 116 + - Index: 8 + Item: CastStone_Robe_D + Rate: 116 + - Index: 9 + Item: Melee_Stone_Robe_D + Rate: 116 + - Index: 10 + Item: HPdrainStone_Robe_D + Rate: 116 + - Index: 11 + Item: RuneknightStone_Middle3 + Rate: 105 + - Index: 12 + Item: WarlockStone_Middle3 + Rate: 105 + - Index: 13 + Item: RoyalguardStone_Middle3 + Rate: 105 + - Index: 14 + Item: WanderMinsStone_Middle3 + Rate: 105 + - Index: 15 + Item: GeneticStone_Middle3 + Rate: 105 + - Index: 16 + Item: SorcererStone_Middle3 + Rate: 105 + - Index: 17 + Item: ArchbishopStone_Middle3 + Rate: 105 + - Index: 18 + Item: RangerStone_Middle3 + Rate: 105 + - Index: 19 + Item: ShadowchasStone_Middle3 + Rate: 105 + - Index: 20 + Item: SuraStone_Middle3 + Rate: 105 + - Index: 21 + Item: MechanicStone_Middle3 + Rate: 105 + - Index: 22 + Item: GuillcrossStone_Middle3 + Rate: 105 + - Index: 23 + Item: StarStone_Middle3 + Rate: 105 + - Index: 24 + Item: RebelStone_Middle3 + Rate: 105 + - Index: 25 + Item: ReaperStone_Middle3 + Rate: 106 + - Index: 26 + Item: KagerouStone_Middle3 + Rate: 106 + - Index: 27 + Item: OboroStone_Middle3 + Rate: 106 + - Index: 28 + Item: DoramStone_Middle3 + Rate: 106 + - Index: 29 + Item: SuNoviceStone_Middle + Rate: 106 + - Index: 30 + Item: Magic_Stone_Middle + Rate: 210 + - Index: 31 + Item: Melee_Stone_Middle + Rate: 210 + - Index: 32 + Item: RuneknightStone_Middle2 + Rate: 210 + - Index: 33 + Item: GeneticStone_Middle2 + Rate: 210 + - Index: 34 + Item: WanderMinsStone_Middle2 + Rate: 210 + - Index: 35 + Item: WarlockStone_Middle2 + Rate: 210 + - Index: 36 + Item: PaladinStone_Middle2 + Rate: 210 + - Index: 37 + Item: AssacrossStone_Middle2 + Rate: 210 + - Index: 38 + Item: RangerStone_Middle2 + Rate: 210 + - Index: 39 + Item: MechanicStone_Middle2 + Rate: 210 + - Index: 40 + Item: HighpriestStone_Middle2 + Rate: 210 + - Index: 41 + Item: SoullinkerStone_Middle + Rate: 210 + - Index: 42 + Item: GladiatorStone_Middle + Rate: 210 + - Index: 43 + Item: NinjaStone_Middle + Rate: 210 + - Index: 44 + Item: GunslingerStone_Middle + Rate: 210 + - Index: 45 + Item: DoramStone_Middle + Rate: 210 + - Index: 46 + Item: SuraStone_Middle2 + Rate: 210 + - Index: 47 + Item: SorcererStone_Middle2 + Rate: 210 + - Index: 48 + Item: ShadowchasStone_Middle2 + Rate: 211 + - Index: 49 + Item: HighpriestStone_Middle + Rate: 211 + - Index: 50 + Item: PaladinStone_Middle + Rate: 211 + - Index: 51 + Item: AssacrossStone_Middle + Rate: 211 + - Index: 52 + Item: ShadowchaseStone_Middle + Rate: 211 + - Index: 53 + Item: MechanicStone_Middle + Rate: 211 + - Index: 54 + Item: WanderMinstStone_Middle + Rate: 211 + - Index: 55 + Item: RuneknightStone_Middle + Rate: 211 + - Index: 56 + Item: GeneticStone_Middle + Rate: 211 + - Index: 57 + Item: WarlockStone_Middle + Rate: 211 + - Index: 58 + Item: SuraStone_Middle + Rate: 211 + - Index: 59 + Item: RangerStone_Middle + Rate: 211 + - Index: 60 + Item: SorcererStone_Middle + Rate: 211 + - Index: 61 + Item: CastingStone_Middle + Rate: 211 + - Index: 62 + Item: LexAeternaStone_Middle + Rate: 211 + - Index: 63 + Item: EXPStone_Middle + Rate: 211 + - Index: 64 + Item: Critical_Stone + Rate: 211 + - Index: 65 + Item: Range_Stone + Rate: 211 + - Index: 66 + Item: ReloadStone_Middle + Rate: 211 + - Index: 67 + Item: DefenseStone_Middle + Rate: 211 + - SubGroup: 2 + List: + - Index: 0 + Item: WaterFieldEffect_Bottom + Rate: 910 + - Index: 1 + Item: GreenFloor_Bottom + Rate: 909 + - Index: 2 + Item: WhiteBodyEffect_Middle + Rate: 909 + - Index: 3 + Item: ExplodingEffect_Middle + Rate: 909 + - Index: 4 + Item: BlueAuraEffect_Middle + Rate: 909 + - Index: 5 + Item: ShadowEffect_Middle + Rate: 909 + - Index: 6 + Item: PinkGlowEffect_Middle + Rate: 909 + - Index: 7 + Item: ElectricEffect_Middle + Rate: 909 + - Index: 8 + Item: ShrinkEffect_Middle + Rate: 909 + - Index: 9 + Item: GhostEffect_Middle + Rate: 909 + - Index: 10 + Item: TwinkleEffect_Top + Rate: 909 + - Group: COS_ENCHANTSTONE_BOX3 + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: SmatkStone_Robe + Rate: 115 + - Index: 1 + Item: M_PATKStone_Robe + Rate: 115 + - Index: 2 + Item: R_PATKStone_Robe + Rate: 115 + - Index: 3 + Item: ResistDefStone_Robe + Rate: 115 + - Index: 4 + Item: MinorCastStone_Robe_D + Rate: 116 + - Index: 5 + Item: Range_Stone_Robe_D + Rate: 116 + - Index: 6 + Item: SPdrainStone_Robe_D + Rate: 116 + - Index: 7 + Item: ASPDStone_Robe_D + Rate: 116 + - Index: 8 + Item: CastStone_Robe_D + Rate: 116 + - Index: 9 + Item: Melee_Stone_Robe_D + Rate: 116 + - Index: 10 + Item: HPdrainStone_Robe_D + Rate: 116 + - Index: 11 + Item: RuneknightStone_Bottom3 + Rate: 105 + - Index: 12 + Item: WarlockStone_Bottom3 + Rate: 105 + - Index: 13 + Item: RoyalguardStone_Bottom3 + Rate: 105 + - Index: 14 + Item: WanderMinsStone_Bottom3 + Rate: 105 + - Index: 15 + Item: GeneticStone_Bottom3 + Rate: 105 + - Index: 16 + Item: SorcererStone_Bottom3 + Rate: 105 + - Index: 17 + Item: ArchbishopStone_Bottom3 + Rate: 105 + - Index: 18 + Item: RangerStone_Bottom3 + Rate: 105 + - Index: 19 + Item: ShadowchasStone_Bottom3 + Rate: 105 + - Index: 20 + Item: SuraStone_Bottom3 + Rate: 105 + - Index: 21 + Item: MechanicStone_Bottom3 + Rate: 105 + - Index: 22 + Item: GuillcrossStone_Bottom3 + Rate: 105 + - Index: 23 + Item: StarStone_Bottom3 + Rate: 105 + - Index: 24 + Item: RebelStone_Bottom3 + Rate: 105 + - Index: 25 + Item: ReaperStone_Bottom3 + Rate: 106 + - Index: 26 + Item: KagerouStone_Bottom3 + Rate: 106 + - Index: 27 + Item: OboroStone_Bottom3 + Rate: 106 + - Index: 28 + Item: DoramStone_Bottom3 + Rate: 106 + - Index: 29 + Item: SuNoviceStone_Bottom + Rate: 106 + - Index: 30 + Item: Magic_Stone_Bottom + Rate: 216 + - Index: 31 + Item: Range_Stone_Bottom + Rate: 216 + - Index: 32 + Item: Melee_Stone_Bottom + Rate: 216 + - Index: 33 + Item: RuneknightStone_Bottom2 + Rate: 216 + - Index: 34 + Item: GeneticStone_Bottom2 + Rate: 216 + - Index: 35 + Item: WanderMinsStone_Bottom2 + Rate: 216 + - Index: 36 + Item: WarlockStone_Bottom2 + Rate: 216 + - Index: 37 + Item: PaladinStone_Bottom2 + Rate: 216 + - Index: 38 + Item: AssacrossStone_Bottom2 + Rate: 216 + - Index: 39 + Item: RangerStone_Bottom2 + Rate: 216 + - Index: 40 + Item: MechanicStone_Bottom2 + Rate: 216 + - Index: 41 + Item: HighpriestStone_Bottom2 + Rate: 216 + - Index: 42 + Item: SoullinkerStone_Bottom + Rate: 216 + - Index: 43 + Item: GladiatorStone_Bottom + Rate: 216 + - Index: 44 + Item: NinjaStone_Bottom + Rate: 216 + - Index: 45 + Item: GunslingerStone_Bottom + Rate: 216 + - Index: 46 + Item: DoramStone_Bottom + Rate: 216 + - Index: 47 + Item: SuraStone_Bottom2 + Rate: 216 + - Index: 48 + Item: SorcererStone_Bottom2 + Rate: 216 + - Index: 49 + Item: ShadowchasStone_Bottom2 + Rate: 216 + - Index: 50 + Item: HighpriestStone_Bottom + Rate: 216 + - Index: 51 + Item: PaladinStone_Bottom + Rate: 216 + - Index: 52 + Item: AssacrossStone_Bottom + Rate: 216 + - Index: 53 + Item: ShadowchaseStone_Bottom + Rate: 216 + - Index: 54 + Item: MechanicStone_Bottom + Rate: 216 + - Index: 55 + Item: WanderMinstStone_Bottom + Rate: 216 + - Index: 56 + Item: RuneknightStone_Bottom + Rate: 216 + - Index: 57 + Item: GeneticStone_Bottom + Rate: 216 + - Index: 58 + Item: WarlockStone_Bottom + Rate: 216 + - Index: 59 + Item: SuraStone_Bottom + Rate: 217 + - Index: 60 + Item: RangerStone_Bottom + Rate: 217 + - Index: 61 + Item: SorcererStone_Bottom + Rate: 217 + - Index: 62 + Item: Critical_Stone_Bottom + Rate: 217 + - Index: 63 + Item: CastingStone_Bottom + Rate: 217 + - Index: 64 + Item: ReloadStone_Bottom + Rate: 217 + - Index: 65 + Item: EXPStone_Bottom + Rate: 217 + - Index: 66 + Item: DefenseStone_Bottom + Rate: 217 + - SubGroup: 2 + List: + - Index: 0 + Item: WaterFieldEffect_Bottom + Rate: 910 + - Index: 1 + Item: GreenFloor_Bottom + Rate: 909 + - Index: 2 + Item: WhiteBodyEffect_Middle + Rate: 909 + - Index: 3 + Item: ExplodingEffect_Middle + Rate: 909 + - Index: 4 + Item: BlueAuraEffect_Middle + Rate: 909 + - Index: 5 + Item: ShadowEffect_Middle + Rate: 909 + - Index: 6 + Item: PinkGlowEffect_Middle + Rate: 909 + - Index: 7 + Item: ElectricEffect_Middle + Rate: 909 + - Index: 8 + Item: ShrinkEffect_Middle + Rate: 909 + - Index: 9 + Item: GhostEffect_Middle + Rate: 909 + - Index: 10 + Item: TwinkleEffect_Top + Rate: 909 + - Group: ENCHANT_STONE_BOX34 + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: Range_Stone_Robe_D + Rate: 1 + Announced: true + - Index: 1 + Item: Melee_Stone_Robe_D + Rate: 1 + Announced: true + - Index: 2 + Item: Magic_Stone_Robe_D + Rate: 1 + Announced: true + - Index: 3 + Item: SmatkStone_Robe + Rate: 1 + Announced: true + - Index: 4 + Item: M_PATKStone_Robe + Rate: 1 + Announced: true + - Index: 5 + Item: R_PATKStone_Robe + Rate: 1 + Announced: true + - Index: 6 + Item: ResistDefStone_Robe + Rate: 1 + Announced: true + - Index: 7 + Item: StaminaWISStone_Robe_D + Rate: 1 + Announced: true + - Index: 8 + Item: POWStone_Robe_D + Rate: 1 + Announced: true + - Index: 9 + Item: SplStone_Robe_D + Rate: 1 + Announced: true + - Index: 10 + Item: ConStone_Robe_D + Rate: 1 + Announced: true + - Index: 11 + Item: CrtStone_Robe_D + Rate: 1 + Announced: true + - Index: 12 + Item: MinorCastStone_Robe_D + Rate: 1 + Announced: true + - Index: 13 + Item: aegis_1001604 + Rate: 1 + Announced: true + - Index: 14 + Item: aegis_1001603 + Rate: 1 + Announced: true + - Index: 15 + Item: aegis_1001605 + Rate: 1 + Announced: true + - Index: 16 + Item: ReloadStone_Robe_D + Rate: 1 + Announced: true + - Index: 17 + Item: CriticalStone_Robe_D + Rate: 1 + Announced: true + - Index: 18 + Item: DoubleAttack_Stone + Rate: 2 + Announced: true + - Index: 19 + Item: Critical_Stone_Robe + Rate: 2 + Announced: true + - Index: 20 + Item: CastStone_Robe_D + Rate: 4 + Announced: true + - Index: 21 + Item: SPdrainStone_Robe_D + Rate: 4 + Announced: true + - Index: 22 + Item: HPdrainStone_Robe_D + Rate: 8 + Announced: true + - Index: 23 + Item: ASPDStone_Robe_D + Rate: 8 + Announced: true + - Index: 24 + Item: CastStone_Robe + Rate: 8 + Announced: true + - Index: 25 + Item: RuneknightStone_Top3 + Rate: 8 + Announced: true + - Index: 26 + Item: RuneknightStone_Middle3 + Rate: 8 + Announced: true + - Index: 27 + Item: RuneknightStone_Bottom3 + Rate: 8 + Announced: true + - Index: 28 + Item: RoyalguardStone_Top3 + Rate: 8 + Announced: true + - Index: 29 + Item: RoyalguardStone_Middle3 + Rate: 8 + Announced: true + - Index: 30 + Item: RoyalguardStone_Bottom3 + Rate: 8 + Announced: true + - Index: 31 + Item: RebelStone_Top3 + Rate: 8 + Announced: true + - Index: 32 + Item: RebelStone_Middle3 + Rate: 8 + Announced: true + - Index: 33 + Item: RebelStone_Bottom3 + Rate: 8 + Announced: true + - Index: 34 + Item: Stone_Robe_Box + Rate: 17 + - Index: 35 + Item: Stone_Robe3_Box + Rate: 17 + - Index: 36 + Item: Magic_Stone_Top + Rate: 20 + - Index: 37 + Item: Magic_Stone_Middle + Rate: 20 + - Index: 38 + Item: Magic_Stone_Bottom + Rate: 20 + - Index: 39 + Item: Range_Stone_Top + Rate: 20 + - Index: 40 + Item: Range_Stone + Rate: 20 + - Index: 41 + Item: Range_Stone_Bottom + Rate: 20 + - Index: 42 + Item: Melee_Stone_Top + Rate: 20 + - Index: 43 + Item: Melee_Stone_Middle + Rate: 20 + - Index: 44 + Item: Melee_Stone_Bottom + Rate: 20 + - Index: 45 + Item: DefenseStone_Top + Rate: 20 + - Index: 46 + Item: DefenseStone_Middle + Rate: 20 + - Index: 47 + Item: DefenseStone_Bottom + Rate: 20 + - Index: 48 + Item: ReloadStone_Top + Rate: 20 + - Index: 49 + Item: ReloadStone_Middle + Rate: 20 + - Index: 50 + Item: ReloadStone_Bottom + Rate: 20 + - Index: 51 + Item: EXPStone_Middle + Rate: 20 + - Index: 52 + Item: EXPStone_Bottom + Rate: 20 + - Index: 53 + Item: EXPStone_Top + Rate: 20 + - Index: 54 + Item: Stone_Top_Box + Rate: 40 + - Index: 55 + Item: Stone_Top2_Box + Rate: 40 + - Index: 56 + Item: Stone_Middle_Box + Rate: 40 + - Index: 57 + Item: Stone_Middle2_Box + Rate: 40 + - Index: 58 + Item: Stone_Bottom_Box + Rate: 40 + - Index: 59 + Item: Stone_Bottom2_Box + Rate: 40 + - Index: 60 + Item: CastingStone_Top + Rate: 40 + - Index: 61 + Item: CastingStone_Middle + Rate: 40 + - Index: 62 + Item: CastingStone_Bottom + Rate: 40 + - Index: 63 + Item: Critical_Stone + Rate: 40 + - Index: 64 + Item: Critical_Stone_Top + Rate: 40 + - Index: 65 + Item: Critical_Stone_Bottom + Rate: 40 + - Group: R_EP178_BOSS + SubGroups: + - SubGroup: 1 + List: + - Index: 0 + Item: R48_85_Bestia_Card + Rate: 909 + Announced: true + - Index: 1 + Item: EL_A17T_Card + Rate: 909 + Announced: true + - Index: 2 + Item: Redpepper_Card + Rate: 909 + Announced: true + - Index: 3 + Item: Silva_Papilia_Card + Rate: 909 + Announced: true + - Index: 4 + Item: Gran_Papilia_Card + Rate: 909 + Announced: true + - Index: 5 + Item: Sweety_Card + Rate: 909 + Announced: true + - Index: 6 + Item: Pitaya_Boss_Card + Rate: 910 + Announced: true + - Index: 7 + Item: Miguel_Card + Rate: 909 + Announced: true + - Index: 8 + Item: EP18_Burning_Fang_Card + Rate: 909 + Announced: true + - Index: 9 + Item: EP18_Demi_Freyja_Card + Rate: 909 + Announced: true + - Index: 10 + Item: EP18_Schulang_Card + Rate: 909 + Announced: true diff --git a/db/re/item_packages.yml b/db/re/item_packages.yml index a9508bb3ca..077313eb81 100644 --- a/db/re/item_packages.yml +++ b/db/re/item_packages.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2022 rAthena Development Team +# Copyright(C) 2024 rAthena Development Team # https://rathena.org - https://github.com/rathena # # This program is free software: you can redistribute it and/or modify @@ -159,77 +159,153 @@ Body: RentalHours: 1 - Group: 9 Items: - - Item: Red_Potion - Amount: 10 - - Item: Red_Potion - Amount: 5 - - Item: Red_Potion - Item: Red_Potion Amount: 3 RentalHours: 1 - Group: 10 Items: - Item: Guard_ - - Item: Guard_ - - Item: Guard_ - Group: 11 Items: - Item: Orange_Potion Amount: 800 - - Item: Boost_Armor_Box + - Item: Minus_Status_Box_ Groups: - Group: 0 Items: - - Item: Atker_Plate - - Item: Atker_Manteau - - Item: Atker_Greave - - Item: Atker_Ring - - Item: Boost_Up_1 - Amount: 3 + - Item: Minus_Str + Amount: 6 - Group: 1 Items: - - Item: Ran_Suits - - Item: Ran_Manteau - - Item: Ran_Boots - - Item: Ran_Brooch - - Item: Boost_Up_1 - Amount: 3 + - Item: Minus_Agi + Amount: 6 - Group: 2 Items: - - Item: Ele_Robe - - Item: Ele_Muffler - - Item: Ele_Shoes - - Item: Ele_Earing - - Item: Boost_Up_1 - Amount: 3 + - Item: Minus_Vit + Amount: 6 - Group: 3 Items: - - Item: Defn_Robe - - Item: Defn_Muffler - - Item: Defn_Shoes - - Item: Defn_Earing - - Item: Boost_Up_1 - Amount: 3 - - Item: Special_Coin_Pack + - Item: Minus_Int + Amount: 6 + - Group: 4 + Items: + - Item: Minus_Dex + Amount: 6 + - Group: 5 + Items: + - Item: Minus_Luk + Amount: 6 + - Group: 6 + Items: + - Item: Minus_Str + - Item: Minus_Agi + - Item: Minus_Vit + - Item: Minus_Int + - Item: Minus_Dex + - Item: Minus_Luk + - Item: Alchemist_Box_ Groups: - Group: 0 Items: - - Item: EP17_1_EVT39 - Amount: 3 - - Item: EP17_1_EVT02 - Amount: 18 + - Item: Fire_Bottle + Amount: 50 - Group: 1 Items: - - Item: BarMealTicket - Amount: 20 + - Item: Acid_Bottle + Amount: 50 - Group: 2 Items: - - Item: Ep18_Amethyst_Fragment - Amount: 20 + - Item: MenEater_Plant_Bottle + Amount: 50 - Group: 3 Items: - - Item: Ep19_Snow_Flower - Amount: 20 + - Item: Coating_Bottle + Amount: 50 + - Group: 4 + Items: + - Item: Mini_Bottle + Amount: 50 + - Item: FullPene_Select_Box + Groups: + - Group: 0 + Items: + - Item: FullPene_Earring_Box + - Group: 1 + Items: + - Item: FullPene_Pendant_Box + - Group: 2 + Items: + - Item: FullPene_Armor_Box + - Group: 3 + Items: + - Item: FullPene_Shoes_Box + - Item: FullTemp_Select_Box + Groups: + - Group: 0 + Items: + - Item: FullTemp_Earring_Box + - Group: 1 + Items: + - Item: FullTemp_Pendant_Box + - Group: 2 + Items: + - Item: FullTemp_Armor_Box + - Group: 3 + Items: + - Item: FullTemp_Shoes_Box + - Item: Durable_Select_Box + Groups: + - Group: 0 + Items: + - Item: Durable_Weapon_Box + - Group: 1 + Items: + - Item: Durable_Shield_Box + - Item: Clever_Select_Box + Groups: + - Group: 0 + Items: + - Item: Clever_Weapon_Box + - Group: 1 + Items: + - Item: Clever_Shield_Box + - Item: OS_Helm_Box_ + Groups: + - Group: 0 + Items: + - Item: Ignis_CapK + - Group: 1 + Items: + - Item: Phantom_Cap + - Group: 2 + Items: + - Item: Stripe_Hat + - Group: 3 + Items: + - Item: Clock_Casket_RD + - Group: 4 + Items: + - Item: Large_Sorcerer_Crown + - Group: 5 + Items: + - Item: Scorpio_Diadem_K + - Group: 6 + Items: + - Item: Sagittarius_DiademK + - Item: Shadow_R_M_Box_ + Groups: + - Group: 0 + Items: + - Item: Class_Sha_R_M_Melee + - Group: 1 + Items: + - Item: Class_Sha_R_M_Magic + - Group: 2 + Items: + - Item: Skill_Sha_R_M_Melee + - Group: 3 + Items: + - Item: Skill_Sha_R_M_Magic - Item: Metal_W_Box Groups: - Group: 0 @@ -326,206 +402,581 @@ Body: - Group: 3 Items: - Item: C_School_Bag_PU - - Item: aegis_101470 + - Item: Special_Coin_Pack Groups: - Group: 0 Items: - - Item: Minus_Str - Amount: 6 + - Item: EP17_1_EVT39 + Amount: 3 + - Item: EP17_1_EVT02 + Amount: 18 - Group: 1 Items: - - Item: Minus_Agi - Amount: 6 + - Item: BarMealTicket + Amount: 20 - Group: 2 Items: - - Item: Minus_Vit - Amount: 6 + - Item: Ep18_Amethyst_Fragment + Amount: 20 - Group: 3 Items: - - Item: Minus_Int - Amount: 6 + - Item: Ep19_Snow_Flower + Amount: 20 + - Item: Boost_Armor_Box + Groups: + - Group: 0 + Items: + - Item: Atker_Plate + - Item: Atker_Manteau + - Item: Atker_Greave + - Item: Atker_Ring + - Item: Boost_Up_1 + Amount: 3 + - Group: 1 + Items: + - Item: Ran_Suits + - Item: Ran_Manteau + - Item: Ran_Boots + - Item: Ran_Brooch + - Item: Boost_Up_1 + Amount: 3 + - Group: 2 + Items: + - Item: Ele_Robe + - Item: Ele_Muffler + - Item: Ele_Shoes + - Item: Ele_Earing + - Item: Boost_Up_1 + Amount: 3 + - Group: 3 + Items: + - Item: Defn_Robe + - Item: Defn_Muffler + - Item: Defn_Shoes + - Item: Defn_Earing + - Item: Boost_Up_1 + Amount: 3 + - Item: AllMighty_Select_Box + Groups: + - Group: 0 + Items: + - Item: AllMighty_Earring_Box + - Group: 1 + Items: + - Item: AllMighty_Pendant_Box + - Item: TrueGem_Select_Box + Groups: + - Group: 0 + Items: + - Item: TrueGem_Earring_Box + - Group: 1 + Items: + - Item: TrueGem_Pendant_Box + - Group: 2 + Items: + - Item: TrueGem_Shoes_Box + - Group: 3 + Items: + - Item: TrueGem_Armor_Box + - Item: PerfectSize_Select_Box + Groups: + - Group: 0 + Items: + - Item: PerfectSize_Weapon_Box + - Group: 1 + Items: + - Item: PerfectSize_Armor_Box + - Item: Mammoth_Select_Box + Groups: + - Group: 0 + Items: + - Item: Mammoth_Earring_Box + - Group: 1 + Items: + - Item: Mammoth_Pendant_Box + - Group: 2 + Items: + - Item: Mammoth_Armor_Box + - Group: 3 + Items: + - Item: Mammoth_Shoes_Box + - Item: SpellCaster_Select_Box + Groups: + - Group: 0 + Items: + - Item: SpellCaster_Earring_Box + - Group: 1 + Items: + - Item: SpellCaster_Pendant_Box + - Group: 2 + Items: + - Item: SpellCaster_Armor_Box + - Group: 3 + Items: + - Item: SpellCaster_Shoes_Box + - Item: Absorb_Select_Box + Groups: + - Group: 0 + Items: + - Item: Absorb_Weapon_Box + - Group: 1 + Items: + - Item: Absorb_Shield_Box + - Item: R_Bearers_Select_Box + Groups: + - Group: 0 + Items: + - Item: R_Bearers_Earring_Box + - Group: 1 + Items: + - Item: R_Bearers_Pendant_Box + - Group: 2 + Items: + - Item: R_Bearers_Armor_Box + - Group: 3 + Items: + - Item: R_Bearers_Shoes_Box + - Item: Hasty_Select_Box + Groups: + - Group: 0 + Items: + - Item: Hasty_Weapon_Box + - Group: 1 + Items: + - Item: Hasty_Shield_Box + - Item: MAutoSpell_Select_Box + Groups: + - Group: 0 + Items: + - Item: MAutoSpell_Earring_Box + - Group: 1 + Items: + - Item: MAutoSpell_Pendant_Box + - Group: 2 + Items: + - Item: MAutoSpell_Armor_Box + - Group: 3 + Items: + - Item: MAutoSpell_Shoes_Box + - Item: Infinity_Select_Box + Groups: + - Group: 0 + Items: + - Item: Infinity_Weapon_Box + - Group: 1 + Items: + - Item: Infinity_Shield_Box + - Item: EXP_Select_Box + Groups: + - Group: 0 + Items: + - Item: EXP_Weapon_Box + - Group: 1 + Items: + - Item: EXP_Shield_Box + - Item: M_Blitz_Select_Box + Groups: + - Group: 0 + Items: + - Item: M_Blitz_Weapon_Box + - Group: 1 + Items: + - Item: M_Blitz_Shield_Box + - Item: GoodnEvil_Circlet_Box + Groups: + - Group: 0 + Items: + - Item: GoodnEvil_Circlet_NW + - Group: 1 + Items: + - Item: GoodnEvil_Circlet_NW2 + - Group: 2 + Items: + - Item: GoodnEvil_Circlet_NW3 + - Group: 3 + Items: + - Item: GoodnEvil_Circlet_NW4 - Group: 4 Items: - - Item: Minus_Dex - Amount: 6 + - Item: GoodnEvil_Circlet_NW5 + - Item: Hero_Weapon_Up_S_Box + Groups: + - Group: 0 + Items: + - Item: Hero_Weapon_Up_Box_1 + - Group: 1 + Items: + - Item: Hero_Weapon_Up_Box_2 + - Group: 2 + Items: + - Item: Hero_Weapon_Up_Box_3 + - Group: 3 + Items: + - Item: Hero_Weapon_Up_Box_4 + - Group: 4 + Items: + - Item: Hero_Weapon_Up_Box_5 - Group: 5 Items: - - Item: Minus_Luk - Amount: 6 - - Group: 6 - Items: - - Item: Minus_Str - - Item: Minus_Agi - - Item: Minus_Vit - - Item: Minus_Int - - Item: Minus_Dex - - Item: Minus_Luk - - Item: aegis_101471 + - Item: Hero_Weapon_Up_Box_6 + - Item: Hero_Weapon_Hammer_S Groups: - Group: 0 Items: - - Item: Fire_Bottle - Amount: 50 + - Item: Hero_Weapon_Hammer_1 - Group: 1 Items: - - Item: Acid_Bottle - Amount: 50 + - Item: Hero_Weapon_Hammer_2 - Group: 2 Items: - - Item: MenEater_Plant_Bottle - Amount: 50 + - Item: Hero_Weapon_Hammer_3 - Group: 3 Items: - - Item: Coating_Bottle - Amount: 50 + - Item: Hero_Weapon_Hammer_4 - Group: 4 Items: - - Item: Mini_Bottle - Amount: 50 - - Item: aegis_101542 - Groups: - - Group: 0 - Items: - - Item: aegis_101543 - - Group: 1 - Items: - - Item: aegis_101544 - - Group: 2 - Items: - - Item: aegis_101545 - - Group: 3 - Items: - - Item: aegis_101546 - - Item: aegis_101547 - Groups: - - Group: 0 - Items: - - Item: aegis_101548 - - Group: 1 - Items: - - Item: aegis_101549 - - Group: 2 - Items: - - Item: aegis_101550 - - Group: 3 - Items: - - Item: aegis_101551 - - Item: aegis_101552 - Groups: - - Group: 0 - Items: - - Item: aegis_101553 - - Group: 1 - Items: - - Item: aegis_101554 - - Item: aegis_101555 - Groups: - - Group: 0 - Items: - - Item: aegis_101556 - - Group: 1 - Items: - - Item: aegis_101557 - - Item: aegis_101563 - Groups: - - Group: 0 - Items: - - Item: Ignis_CapK - - Group: 1 - Items: - - Item: Phantom_Cap - - Group: 2 - Items: - - Item: Stripe_Hat - - Group: 3 - Items: - - Item: Clock_Casket_RD - - Group: 4 - Items: - - Item: Large_Sorcerer_Crown + - Item: Hero_Weapon_Hammer_5 - Group: 5 Items: - - Item: Scorpio_Diadem_K - - Group: 6 - Items: - - Item: Sagittarius_DiademK - - Item: aegis_101565 + - Item: Hero_Weapon_Hammer_6 + - Item: aegis_102215 Groups: - Group: 0 Items: - - Item: Class_Sha_R_M_Melee + - Item: Bio_Weapon_Refine_Cube - Group: 1 Items: - - Item: Class_Sha_R_M_Magic + - Item: Old_Refine_Cube - Group: 2 Items: - - Item: Skill_Sha_R_M_Melee - - Group: 3 - Items: - - Item: Skill_Sha_R_M_Magic - - Item: aegis_101654 + - Item: Geffen_Refine_Cube + - Item: aegis_102216 Groups: - Group: 0 Items: - - Item: aegis_101655 + - Item: Bio_Helm_Refine_Cube - Group: 1 Items: - - Item: aegis_101656 - - Item: aegis_101657 - Groups: - - Group: 0 - Items: - - Item: aegis_101658 - - Group: 1 - Items: - - Item: aegis_101659 + - Item: Circlet_Refine_Cube - Group: 2 Items: - - Item: aegis_101660 + - Item: Auto_Armor_Refine_Cube - Group: 3 Items: - - Item: aegis_101661 - - Item: aegis_101662 + - Item: Racecap_Refine_Cube + - Group: 4 + Items: + - Item: OS_Weapon_Refine_Cube + - Group: 5 + Items: + - Item: Temporal_Refine_Cube + - Item: Hero_Weapon_S_Box_1 Groups: - Group: 0 Items: - - Item: aegis_101663 + - Item: Royal_Bow_K + Refine: 11 - Group: 1 Items: - - Item: aegis_101664 - - Item: aegis_101727 - Groups: - - Group: 0 - Items: - - Item: aegis_101717 - - Group: 1 - Items: - - Item: aegis_101718 + - Item: Shadow_Staff_K + Refine: 11 - Group: 2 Items: - - Item: aegis_101719 + - Item: Iron_Nail_K + Refine: 11 - Group: 3 Items: - - Item: aegis_101720 - - Item: aegis_101728 + - Item: Blue_Crystal_Staff + Refine: 11 + - Group: 4 + Items: + - Item: Freezing_Rod + Refine: 11 + - Group: 5 + Items: + - Item: Ancient_Hero_Boots + Refine: 11 + - Item: Hero_Weapon_S_Box_2 Groups: - Group: 0 Items: - - Item: aegis_101721 + - Item: Sword_Of_Bluefire + Refine: 11 - Group: 1 Items: - - Item: aegis_101722 + - Item: Iron_Staff + Refine: 11 - Group: 2 Items: - - Item: aegis_101723 + - Item: Oriental_Sword + Refine: 11 - Group: 3 Items: - - Item: aegis_101724 - - Item: aegis_101729 + - Item: Fog_Dew_Sword + Refine: 11 + - Group: 4 + Items: + - Item: Sharp_Wind_Sword + Refine: 11 + - Group: 5 + Items: + - Item: Humma_Clear + Refine: 11 + - Item: Hero_Weapon_S_Box_3 Groups: - Group: 0 Items: - - Item: aegis_101725 + - Item: Narcis_Bow + Refine: 11 - Group: 1 Items: - - Item: aegis_101726 + - Item: Magic_Sword + Refine: 11 + - Group: 2 + Items: + - Item: Avenger + Refine: 11 + - Group: 3 + Items: + - Item: Undine_Spear_K + Refine: 11 + - Group: 4 + Items: + - Item: Demon_Hunting_Bible_K + Refine: 11 + - Group: 5 + Items: + - Item: Shiver_Katar_K + Refine: 11 + - Item: Hero_Weapon_S_Box_4 + Groups: + - Group: 0 + Items: + - Item: OneSkyOneSun + Refine: 11 + - Group: 1 + Items: + - Item: SoulWeight + Refine: 11 + - Group: 2 + Items: + - Item: MeawFoxtail + Refine: 11 + - Group: 3 + Items: + - Item: Freedom_Stick + Refine: 11 + - Group: 4 + Items: + - Item: Blessed_Knife + Refine: 11 + - Item: Hero_Weapon_S_Box_5 + Groups: + - Group: 0 + Items: + - Item: Dragonic_Slayer + Refine: 11 + - Group: 1 + Items: + - Item: Light_Blade + Refine: 11 + - Group: 2 + Items: + - Item: Slate_Sword + Refine: 11 + - Group: 3 + Items: + - Item: Trumpet_Shell_K + Refine: 11 + - Group: 4 + Items: + - Item: Barb_Wire_K + Refine: 11 + - Group: 5 + Items: + - Item: Meteor_Striker + Refine: 11 + - Item: Hero_Weapon_S_Box_6 + Groups: + - Group: 0 + Items: + - Item: Saint_Hall + Refine: 11 + - Group: 1 + Items: + - Item: Ray_Knuckle + Refine: 11 + - Group: 2 + Items: + - Item: Blade_Katar + Refine: 11 + - Group: 3 + Items: + - Item: Fatalist + Refine: 11 + - Group: 4 + Items: + - Item: Scalet_Dragon_L_Bow + Refine: 11 + - Item: Hero_Weapon_S_Box_7 + Groups: + - Group: 0 + Items: + - Item: Crimson_Rose + Refine: 11 + - Group: 1 + Items: + - Item: Master_Soul_Rifle + Refine: 11 + - Group: 2 + Items: + - Item: Demon_S_Shot + Refine: 11 + - Group: 3 + Items: + - Item: Golden_L_Launcher + Refine: 11 + - Group: 4 + Items: + - Item: The_Black_Gatling + Refine: 11 + - Item: 2023_Spring_Select + Groups: + - Group: 0 + Items: + - Item: C_Lop_Bunny_Cloak + - Group: 1 + Items: + - Item: C_Heart_Chiffon_Rabbit + - Group: 2 + Items: + - Item: C_Teaparty_Wonderland + - Group: 3 + Items: + - Item: C_Chocolat_Rabbit_Hair + - Item: RO_Concert_Scroll2 + Groups: + - Group: 0 + Items: + - Item: C_Headset_OST + - Group: 1 + Items: + - Item: C_Music_Decoration + - Group: 2 + Items: + - Item: C_Whistle + - Item: 21th_Costume_Select + Groups: + - Group: 0 + Items: + - Item: C_Ocean_Color_Long + - Group: 1 + Items: + - Item: C_Aqua_Fin_Decoration + - Group: 2 + Items: + - Item: C_Sailor_Cap + - Item: Cinnamon_Costume_Box + Groups: + - Group: 0 + Items: + - Item: C_Cinnamon2 + - Group: 1 + Items: + - Item: C_Cinnamon + - Group: 2 + Items: + - Item: C_JP_EV16 + - Group: 3 + Items: + - Item: C_JP_EV17 + - Item: IsgardCrown_Box + Groups: + - Group: 0 + Items: + - Item: Glacier_Helm_1 + - Group: 1 + Items: + - Item: Glacier_Helm_2 + - Group: 2 + Items: + - Item: Glacier_Helm_3 + - Item: AceCard_Box + Groups: + - Group: 0 + Items: + - Item: Heart_Ace_Melee + - Group: 1 + Items: + - Item: Spade_Ace_Melee + - Group: 2 + Items: + - Item: Diamond_Ace_Range + - Group: 3 + Items: + - Item: Clover_Ace_Defense + - Item: Loki_Coin_Box + Groups: + - Group: 0 + Items: + - Item: Loki_Coin + Amount: 10 + - Group: 1 + Items: + - Item: Loki_Coin_2 + Amount: 10 + - Group: 2 + Items: + - Item: Loki_Coin_3 + Amount: 10 + - Group: 3 + Items: + - Item: Loki_Coin_4 + Amount: 10 + - Item: Loki_Advice_Box + Groups: + - Group: 0 + Items: + - Item: Loki_Advice + Amount: 10 + - Group: 1 + Items: + - Item: Loki_Advice_2 + Amount: 10 + - Group: 2 + Items: + - Item: Loki_Advice_3 + Amount: 10 + - Group: 3 + Items: + - Item: Loki_Advice_4 + Amount: 10 + - Item: 2023_Xmas_Costume + Groups: + - Group: 0 + Items: + - Item: C_SnowmanHat + - Group: 1 + Items: + - Item: C_WinterNightBells + - Group: 2 + Items: + - Item: C_SantaTeddyBear + - Item: 10AllMighty_Select_Box + Groups: + - Group: 0 + Items: + - Item: S_AllMighty_Earring + Refine: 10 + - Group: 1 + Items: + - Item: S_AllMighty_Pendant + Refine: 10 + - Item: Sonic_Costume_Pack + Groups: + - Group: 0 + Items: + - Item: C_Super_Sonic_Mini + - Group: 1 + Items: + - Item: C_Chaos_Emerald diff --git a/db/re/pet_db.yml b/db/re/pet_db.yml index 30c6033452..04038d0184 100644 --- a/db/re/pet_db.yml +++ b/db/re/pet_db.yml @@ -2306,7 +2306,7 @@ Body: # HungryDelay: 120 # unknown # IntimacyFed: 15 # unknown # CaptureRate: 0 # unknown -# SpecialPerformance: false unknown +# SpecialPerformance: false # unknown # AllowAutoFeed: true # Script: > # .@i = getpetinfo(PETINFO_INTIMATE); @@ -2381,7 +2381,7 @@ Body: # SpecialPerformance: false # unknown # - Mob: SCATLETON # EggItem: Scatletoncarrier -# EquipItem: 10040 +# EquipItem: Red_Chorker_Bell # FoodItem: Delicious_Fish # Fullness: 2 # unknown # HungryDelay: 120 # unknown @@ -2439,7 +2439,7 @@ Body: } # - Mob: SKELION # EggItem: Roost_Of_Skelion -# EquipItem: 10042 +# EquipItem: Dark_Mane # FoodItem: Yummy_Meat # Fullness: 2 # unknown # HungryDelay: 120 # unknown @@ -2483,8 +2483,9 @@ Body: # } # # - Mob: WANDERING_DUCK +# TameItem: E_Glittering_Doll_B # EggItem: E_Duckling_Egg -# EquipItem: 10045 +# EquipItem: C_Twinkle_Star_Button # FoodItem: Wad_Of_Cotton # Fullness: 2 # unknown # HungryDelay: 120 # unknown diff --git a/src/map/itemdb.hpp b/src/map/itemdb.hpp index 9a48e909fc..4e3287f873 100644 --- a/src/map/itemdb.hpp +++ b/src/map/itemdb.hpp @@ -307,7 +307,6 @@ enum e_random_item_group { IG_CARDALBUM_GARMENT, IG_FLAMEL_CARD, IG_SPECIAL_BOX, - IG_TRESURE_BOX_WOE_, IG_RWC_PARTI_BOX, IG_RWC_FINAL_COMP_BOX, IG_GIFT_BUNDLE, @@ -2030,6 +2029,737 @@ enum e_random_item_group { IG_DUN_VOUCHER_BOX2, IG_BLUEBOXOFQUESTIONS, IG_ENCHANT_STONE_BOX33, + IG_PC_BANG_COIN_BOX3, + IG_PCBANG_GIFT_BOX, + IG_PCBANG_COUPON_BOX2, + IG_PCBANG_COUPON_BOX3, + IG_CHANCE_BOX, + IG_ATTEND_3DAY_BOX, + IG_ATTEND_7DAY_BOX, + IG_ATTEND_10DAY_BOX, + IG_ATTEND_15DAY_BOX, + IG_ATTEND_20DAY_BOX, + IG_ATTEND_25DAY_BOX, + IG_GOLDPC_FIRST_BOX, + IG_TICKET_GIFT_BOX, + IG_TICKET_GIFT_BOX2, + IG_ASSORTED_SCROLL_BOX, + IG_DROOPING_KITTY_BOX, + IG_MAGESTIC_GOAT_BOX, + IG_DEVIRUCHI_CAP_BOX, + IG_EXECUTIONER_BOX, + IG_BROOD_AXE_BOX, + IG_TOMAHAWK_BOX, + IG_BOW_OF_RUDRA_BOX, + IG_CUTLAS_BOX, + IG_SOLAR_SWORD_BOX, + IG_SWORD_BREAKER_BOX, + IG_MAIL_BREAKER_BOX, + IG_MOONLIGHT_SWORD_BOX, + IG_SPANNER_BOX, + IG_WEAPON_CARD_SCROLL, + IG_ARMOR_CARD_SCROLL, + IG_HELMET_CARD_SCROLL, + IG_HOOD_CARD_SCROLL, + IG_HOOD_CARD_SCROLL2, + IG_SHOES_CARD_SCROLL, + IG_ACCY_CARD_SCROLL, + IG_WEAPON_CARD_SCROLL2, + IG_WEAPON_CARD_SCROLL3, + IG_ARMOR_CARD_SCROLL2, + IG_ACCY_CARD_SCROLL2, + IG_ASPERSIO_5_BOX30, + IG_ASPERSIO_5_BOX50, + IG_HANDCUFF_BOX, + IG_INFILTRATOR_BOX1, + IG_MURAMASA_BOX1, + IG_EXCALIBUR_BOX1, + IG_COMBAT_KNIFE_BOX1, + IG_COUNTER_DAGGER_BOX1, + IG_KAISER_KNUCKLE_BOX1, + IG_POLE_AXE_BOX1, + IG_MIGHTY_STAFF_BOX1, + IG_RIGHT_EPSILON_BOX1, + IG_BALISTAR_BOX1, + IG_DIARY_OF_SAGE_BOX1, + IG_ASURA_BOX1, + IG_APPLE_OF_ARCHER_BOX1, + IG_BUNNY_BAND_BOX1, + IG_SAHKKAT_BOX1, + IG_LORD_CIRCLET_BOX1, + IG_ELVEN_EARS_BOX1, + IG_STEEL_FLOWER_BOX1, + IG_CRITICAL_RING_BOX1, + IG_EARRING_BOX1, + IG_RING_BOX1, + IG_NECKLACE_BOX1, + IG_GLOVE_BOX1, + IG_BROOCH_BOX1, + IG_ROSARY_BOX1, + IG_SAFETY_RING_BOX1, + IG_VESPER_CORE01_BOX1, + IG_VESPER_CORE02_BOX1, + IG_VESPER_CORE03_BOX1, + IG_VESPER_CORE04_BOX1, + IG_DROOPING_KITTY_BOX1, + IG_MAGESTIC_GOAT_BOX1, + IG_DEVIRUCHI_CAP_BOX1, + IG_EXECUTIONER_BOX1, + IG_BROOD_AXE_BOX1, + IG_TOMAHAWK_BOX1, + IG_CUTLAS_BOX1, + IG_SOLAR_SWORD_BOX1, + IG_MOONLIGHT_SWORD_BOX1, + IG_SPANNER_BOX1, + IG_FREYJA_OVERCOAT_BOX, + IG_FREYJA_BOOTS_BOX, + IG_FREYJA_CAPE_BOX, + IG_FREYJA_CROWN_BOX, + IG_BRO_PACKAGE1, + IG_PECOPECO_HAIRBAND_BOX, + IG_RED_GLASSES_BOX, + IG_WHISPER_MASK_BOX, + IG_GOLD_BOX_, + IG_SILVER_BOX_, + IG_PECOPECO_HAIRBAND_BOX1, + IG_RED_GLASSES_BOX1, + IG_WHISPER_MASK_BOX1, + IG_RAMEN_HAT_BOX1, + IG_5_ANNIVERSARY_COIN_BOX, + IG_CERTIFICATE_TW_BOX, + IG_NAGAN_BOX, + IG_SKEWER_BOX, + IG_SURVIVAL_ROD_BOX, + IG_QUADRILLE_BOX, + IG_GREAT_AXE_BOX, + IG_BLOODY_ROAR_BOX, + IG_HARDBACK_BOX, + IG_IMMATERIAL_SWORD_BOX, + IG_UNHOLY_TOUCH_BOX, + IG_CLOAK_OF_SURVIVAL_BOX, + IG_MASQUERADE_BOX, + IG_ORC_HERO_HELM_BOX, + IG_EVIL_WING_EARS_BOX, + IG_DARK_BLINDFOLD_BOX, + IG_KRO_DROOPING_KITTY_BOX, + IG_CORSAIR_BOX, + IG_BLOODY_IRON_BALL_BOX, + IG_SPIRITUAL_RING_BOX, + IG_NAGAN_BOX1, + IG_SKEWER_BOX1, + IG_SURVIVAL_ROD_BOX1, + IG_QUADRILLE_BOX1, + IG_GREAT_AXE_BOX1, + IG_FIRE_BRAND_BOX1, + IG_IMMATERIAL_SWORD_BOX1, + IG_UNHOLY_TOUCH_BOX1, + IG_CLOAK_OF_SURVIVAL_BOX1, + IG_MASQUERADE_BOX1, + IG_ORC_HERO_HELM_BOX1, + IG_EVIL_WING_EARS_BOX1, + IG_DARK_BLINDFOLD_BOX1, + IG_KRO_DROOPING_KITTY_BOX1, + IG_CORSAIR_BOX1, + IG_SPIRITUAL_RING_BOX1, + IG_INDONESIA_BOX, + IG_GREEN_BOX_, + IG_RESIST_BOX1, + IG_RESIST_BOX2, + IG_STAT_BOOST1, + IG_STAT_BOOST2, + IG_STAT_BOOST3, + IG_STAT_BOOST4, + IG_OBSERVER_BOX, + IG_LUCKY_CLIP_BOX, + IG_F_LEVER_ACTION_RIFLE_BO, + IG_F_REFRESH_SHOES_BOX, + IG_F_PECOPECO_HAIRBAND_BOX, + IG_F_RED_GLASSES_BOX, + IG_F_WHISPER_MASK_BOX, + IG_F_RAMEN_HAT_BOX, + IG_F_VIGORGRA_PACKAGE3, + IG_F_VIGORGRA_PACKAGE4, + IG_NOVICE_SET_BOX, + IG_BEHOLDER_RING_BOX2, + IG_HALLOW_RING_BOX2, + IG_CLAMOROUS_RING_BOX2, + IG_CHEMICAL_RING_BOX2, + IG_INSECTICIDE_RING_BOX2, + IG_FISHER_RING_BOX2, + IG_DECUSSATE_RING_BOX2, + IG_BLOODY_RING_BOX2, + IG_SATANIC_RING_BOX2, + IG_DRAGOON_RING_BOX2, + IG_FPICTURE_DIARY_BOX, + IG_FMINI_HEART_BOX, + IG_FNEWCOMER_BOX, + IG_FKID_BOX, + IG_FMAGIC_CASTLE_BOX, + IG_FBULGING_HEAD_BOX, + IG_FPICTURE_DIARY_BOX_1M, + IG_FMINI_HEART_BOX_1M, + IG_FNEWCOMER_BOX_1M, + IG_FKID_BOX_1M, + IG_FMAGIC_CASTLE_BOX_1M, + IG_FBULGING_HEAD_BOX_1M, + IG_FHEALING_STAFF_BOX, + IG_FPRAXINUS_BOX, + IG_MUFFLER_C_BOX, + IG_VALKYRJA_S_SHIELD_C_BOX, + IG_SKUL_RING_C_BOX, + IG_S_BARRICADE_REPAIR_KIT, + IG_S_GSTONE_REPAIR_KIT, + IG_ARDOR_SCROLL, + IG_HOLY_SABER_BOX, + IG_BOOK_OF_PRAYER_BOX, + IG_PHENOMENA_WHIP_BOX, + IG_STAFF_OF_DARKNESS_BOX, + IG_MONK_KNUCKLE_BOX, + IG_MACE_OF_MADNESS_BOX, + IG_SPEAR_OF_EXCELLENT_BOX, + IG_BOW_OF_EVIL_BOX, + IG_KATAR_OF_SPEED_BOX, + IG_SS_REVOLVER_BOX, + IG_XMAS_SCROLL, + IG_FORTUNE_SWORD_BOX_I, + IG_HOUSE_AUGER_BOX_I, + IG_KAMAITACHI_BOX_I, + IG_BERSERK_GUITAR_BOX_I, + IG_DOOM_SLAYER_BOX_I, + IG_HUUMA_BLAZE_BOX_I, + IG_ODIN_S_BLESSING_BOX_I, + IG_RING_OF_F_LORD_BOX_I, + IG_RING_OF_RESON_BOX_I, + IG_BOY_S_CAP_BOX_I, + IG_ULLE_CAP_BOX_I, + IG_SPINX_HELM_BOX_I, + IG_POWER_OF_THOR_BOX, + IG_ACTI_POTION_BOX, + IG_ACTI_POTION_BOX2, + IG_HALF_ASPRIKA_BOX, + IG_HALF_BRYNHILD_BOX, + IG_SPIKED_SCARF_BOX, + IG_RAINBOW_SCARF_BOX, + IG_3D_GLASSES_BOX, + IG_CHEER_SCARF_BOX, + IG_CHEER_SCARF2_BOX, + IG_CHEER_SCARF3_BOX, + IG_CHEER_SCARF4_BOX, + IG_CHEER_SCARF6_BOX, + IG_CHEER_SCARF8_BOX, + IG_CHEER_SCARF10_BOX, + IG_CHEER_SCARF10_BOX2, + IG_RING_OF_VALKYRIE_BOX, + IG_RAPID_LIFE_WATER_BOX, + IG_LOLLI_POP_BOX, + IG_SPECIAL_BOX1, + IG_SPECIAL_BOX2, + IG_SPECIAL_BOX3, + IG_SPECIAL_BOX4, + IG_SPECIAL_BOX5, + IG_PCBANG_COUPON_BOX, + IG_B_HALTER_BOX_30DAYS, + IG_PCBANG_COUPON_BOX4, + IG_OLD_HAT_BOX, + IG_SAPA_FEAT_CERT_PACK, + IG_ARCHANGEL_WING_BOX, + IG_TRANS_BOX_DEVI, + IG_TRANS_BOX_RAY_ARCH, + IG_TRANS_BOX_MAVKA, + IG_TRANS_BOX_MARDUK, + IG_TRANS_BOX_BANSHEE, + IG_TRANS_BOX_GOLEM, + IG_UPG_REVOLVER_BOX2, + IG_UPG_TWOHAND_SWORD_BOX2, + IG_UPG_KATAR_BOX2, + IG_UPG_TWO_HANDED_AXE_BOX2, + IG_UPG_LANCE_BOX2, + IG_UPG_BOOK_BOX2, + IG_UPG_STAFF_BOX2, + IG_UPG_DAGGER_BOX2, + IG_UPG_MACE_BOX2, + IG_UPG_BOW_BOX2, + IG_GRYPHON_EGG_SCROLL, + IG_ASPD_POTION_BOX10, + IG_DRAGON_EGG_SCROLL, + IG_2011_RWC_SCROLL_KR, + IG_CHANGE_NAME_CARD_BOX2, + IG_PCBANG_COUPON_BOX5, + IG_CRU_SCROLL, + IG_EVENT_GIFT_BOX, + IG_EVENT_GIFT_BOX_, + IG_TIME_GUARDIAN_BOX, + IG_BEGINNER_KIT_BOX, + IG_MOTHER_LOVE_BOX, + IG_OLD_ORE_BOX_, + IG_BOARDING_HALTER_BOX3, + IG_UNDEAD_EGG, + IG_GIRLS_HEART, + IG_C_CENTER_POT_BOX, + IG_C_AWAKENING_POT_BOX, + IG_C_BERSERK_POT_BOX, + IG_C_WING_OF_FLY_BOX, + IG_REFINE_ORE_BOX3, + IG_GUARANTEE7_BOX, + IG_WOLFKING_SCROLL, + IG_ALMIGHTY_BOX2, + IG_HD_ELUNIUM_BOX30, + IG_HD_ORIDECON_BOX30, + IG_KINGS_GIFT, + IG_C_CENTER_POT_3D_BOX, + IG_C_AWAKENING_POT_3D_BOX, + IG_C_BERSERK_POT_3D_BOX, + IG_BM_LIMIT_PACK, + IG_GOLDENTREASUREBOX, + IG_UNLIMITED_10_BOX, + IG_XMAX_EGG_KR, + IG_C_FESTIVAL_TICKET, + IG_REFINE_ORE_BOX4, + IG_REFINE_ORE_BOX4_SET10, + IG_REFINE_ORE_BOX4_SET20, + IG_NEW_YEAR_GIFT_BOX, + IG_PCBANG_COUPON_BOX6, + IG_SEALED_D_LORD_SCROLL, + IG_STEALFIGHTER_20LV, + IG_STEALFIGHTER_25LV, + IG_KINGS_GIFT2, + IG_HAPPY_CALL_BOX, + IG_SEALED_KNIGHT_WS_SCROLL, + IG_C_WING_OF_FLY_1DAY_BOX, + IG_SILVERVINE_BOX10_, + IG_SILVERVINE_BOX110, + IG_SEALED_BERZ_SCROLL, + IG_3_LIFE_POTION_PACK, + IG_3_LIFE_POTION_10PACK, + IG_CLEARBOX_S, + IG_SEALED_KIEL_SCROLL, + IG_SEALED_GLOOM_SCROLL, + IG_REFINE_ORE_BOX5, + IG_REFINE_ORE_BOX5_SET10, + IG_ANGELING_PACKAGE, + IG_DEVILING_PACKAGE, + IG_OLD_HAT_BOX_, + IG_MEMORIAL_BOX, + IG_WET_CARDALBUM, + IG_GOLDEN_CARD, + IG_SHADOW_BOX3, + IG_11TH_S_PACKAGE, + IG_SILVERVINE_BOX10_2, + IG_SILVERVINE_BOX110_2, + IG_GEMSTONE_SHADOW_BOX, + IG_SEALED_F_BISHOP_SCROLL, + IG_HANGULDAY_BOX, + IG_3_LIFE_POTION_PACK2, + IG_3_LIFE_POTION_10PACK2, + IG_SEALED_IFRIT_SCROLL, + IG_BISCUIT_STICK_SET, + IG_PREMIUM_BOOK_BOX, + IG_LI_EMPELIUM_BOX, + IG_LI_UPG_BUCKLER_BOX, + IG_REFINE_ORE_BOX6, + IG_REFINE_ORE_BOX6_SET10, + IG_SEALED_TURTLEG_SCROLL, + IG_SEALED_BACSOJIN_SCROLL, + IG_GREED_SHADOW_BOX, + IG_HEAL_SHADOW_BOX, + IG_HIDING_SHADOW_BOX, + IG_CLOAKING_SHADOW_BOX, + IG_COSTUME_FESTIVAL_BOX2, + IG_C_WING_OF_FLY_5DAY_BOX, + IG_TELEPORT_SHADOW_BOX, + IG_STEAL_SHADOW_BOX, + IG_SEALED_PHARAOH_SCROLL, + IG_QUESTION_BOX, + IG_SEALED_M_FLOWER_SCROLL, + IG_SEALED_B_YGNIZEM_SCROLL, + IG_REFINE_ORE_BOX7, + IG_REFINE_ORE_BOX7_SET10, + IG_SEALED_APO_H_SCROLL, + IG_PC_NOMALBOX, + IG_PC_WOODENBOX, + IG_PC_GOLDENBOX, + IG_PC_PLATINUMBOX, + IG_3_LIFE_POTION_PACK4, + IG_3_LIFE_POTION_10PACK4, + IG_SEALED_DRACULA_SCROLL, + IG_BEARERS_SHADOW_BOX, + IG_VIGORGRA_PACKAGE_V4, + IG_VIGORGRA_PACKAGE_SET_V4, + IG_SEALED_B_SHECIL_SCROLL, + IG_NYANGVINE_BOX4, + IG_NYANGVINE_BOX10, + IG_NYANGVINE_BOX40, + IG_REFINE_ORE_BOX8, + IG_REFINE_ORE_BOX8_SET10, + IG_SEALED_CARD, + IG_LI_HD_ELUNIUM_BOX30, + IG_LI_HD_ORIDECON_BOX30, + IG_UNLIMITED_BOX3, + IG_UNLIMITED_10_BOX3, + IG_GUARANTEE_RELAX_SCROLL, + IG_LIMIT_MANUAL_BOX, + IG_SEALED_DRACULA_SCROLL2, + IG_3_LIFE_POTION_10PACK5, + IG_3_LIFE_POTION_PACK5, + IG_SEALED_MYSTERIOUS_EGG, + IG_SEALED_DRACULA_ALBUM, + IG_LIMIT_POWER_BOOSTER_BOX, + IG_LIMIT_POWER_BOOSTER100, + IG_SEALED_BERZ_ALBUM, + IG_SEALED_BERZ_SCROLL2, + IG_NYANGVINE_BOX200, + IG_APRILGIFTBOX, + IG_NOVEMBERGIFTBOX, + IG_SEPTEMBERGIFTBOX, + IG_REFINE_ORE_BOX9, + IG_REFINE_ORE_BOX9_SET10, + IG_2015_NEW_YEAR_SCROLL, + IG_NEW_YEAR_SHADOW_CUBE, + IG_2015GOLDPCBOX, + IG_ALMIGHTY_BOX4, + IG_ALMIGHTY100_BOX2, + IG_SEALED_SCROLL2, + IG_INVISIBLE_BOX, + IG_FREEZE_DREAM, + IG_LAPINE_DDUKDDAKBOX, + IG_GUNSLINGER_BOX, + IG_MINI_FAN_BOX, + IG_KAFRA_BOX, + IG_CANDY_BOX_MELEE, + IG_CANDY_BOX_RANGE, + IG_CANDY_BOX_MAGIC, + IG_BLOODYKNIGHT_SHIELD_BOX, + IG_E_WING_OF_FLY_3DAY_BOX, + IG_REBEGINER_BOX, + IG_REBEGINER_S_BOX, + IG_OVERWHELM_ARMOR_BOX, + IG_POWERFUL_HELM_BOX, + IG_MYSTERIOUS_PLASTIC, + IG_80LVUP, + IG_JUMPING_KIT_BOX, + IG_MAIN_LUCKY_BOX_, + IG_SILLIT_PONG_BOX, + IG_KUNAI_SCROLL_OF_FLAME, + IG_KUNAI_SCROLL_OF_ICICLE, + IG_KUNAI_SCROLL_OF_POISON, + IG_KUNAI_SCROLL_OF_SOIL, + IG_KUNAI_SCROLL_OF_WIND, + IG_C_CATPAW_7DAY_BOX_, + IG_CANNON_BALL_BOX, + IG_IRON_CANNON_BALL_BOX, + IG_SOUL_CANNON_BALL_BOX, + IG_DARK_CANNON_BALL_BOX, + IG_HOLY_CANNON_BALL_BOX, + IG_CANNON_BOX_6, + IG_MAGIC_GEAR_FUEL_BOX, + IG_REPAIRA_BOX, + IG_REPAIRB_BOX, + IG_REPAIRC_BOX, + IG_FLAME_STONE_BUNDLE, + IG_ICE_STONE_BUNDLE, + IG_WIND_STONE_BUNDLE, + IG_SHADOW_ORB_BUNDLE, + IG_CHARM_FIRE_BUNDLE, + IG_CHARM_ICE_BUNDLE, + IG_CHARM_WIND_BUNDLE, + IG_CHARM_EARTH_BUNDLE, + IG_KUNAI_SCROLL_EXPLOSIVE, + IG_GEMSTONE_BLUE, + IG_GEMSTONE_YL, + IG_GEMSTONE_RED, + IG_BULLET_CASE_FULL, + IG_BULLET_CASE_MINE, + IG_BULLET_CASE_TAIL, + IG_C_BRAID_HALF_UP_BOX, + IG_POENETENTIA_BOX3, + IG_POENETENTIA_BOX4, + IG_CHUSEOG_PRESENT_BOX, + IG_LI_NYANGVINE_BOX100_2, + IG_BARMUND_RUNE_BOX, + IG_SEALED_CARD3, + IG_LI_NYANGVINE_STONE_BOX3, + IG_RO_LIVE_SHOP_BOX, + IG_RO_LIVE_SHOP_EX_BOX, + IG_SEASON_EVT_REWARD_11, + IG_CANNON_BOX_ICE, + IG_CANNON_BOX_LIGHTNING, + IG_CANNON_BOX_STONE, + IG_CANNON_BOX_FLARE, + IG_CANNON_BOX_POISONING, + IG_KUNAI_SCROLL, + IG_KUNAI_SCROLL_NOTHING, + IG_KUNAI_SCROLL_SHADOW, + IG_KUNAI_SCROLL_HAMAYA, + IG_NW_GRENADE_BOX, + IG_SOA_CHARM_BUNDLE, + IG_SS_CHARM_BOX, + IG_SS_CHARM_F_BOX, + IG_SS_CHARM_W_BOX, + IG_SS_CHARM_G_BOX, + IG_SS_CHARM_L_BOX, + IG_PAYMENT_COSTUME_BOX1, + IG_PAYMENT_COSTUME_BOX2, + IG_2021_PROMO_PACKAGE_1, + IG_2021_PROMO_PACKAGE_2, + IG_E_BOARDING_HALTER_BOX, + IG_COSTUMEMILEAGE_PACKAGE4, + IG_COSTUMEMILEAGE_PACKAGE5, + IG_COSTUMEMILEAGE_PACKAGE6, + IG_EVT_RAGFES_BOX, + IG_KR_B_SPECIAL08, + IG_KR_B_SPECIAL05, + IG_SEASON_EVT_REWARD_12, + IG_SECURITY_CAMPAIGN_BOX, + IG_HERO_HAMMER_PACKAGE_6, + IG_HERO_UP_PACKAGE_6, + IG_HERO_TOKEN_BOX, + IG_JANUARYGIFTBOX_, + IG_FEBRUARYGIFTBOX_, + IG_MARCHGIFTBOX_, + IG_APRILGIFTBOX_, + IG_MAYGIFTBOX_, + IG_JUNEGIFTBOX_, + IG_JULYGIFTBOX_, + IG_AUGUSTGIFTBOX_, + IG_SEPTEMBERGIFTBOX_, + IG_OCTOBERGIFTBOX_, + IG_NOVEMBERGIFTBOX_, + IG_DECEMBERGIFTBOX_, + IG_SEASON_EVT_REWARD_1, + IG_2021_WINTER_EVENT_BOX1, + IG_2021_WINTER_EVENT_BOX2, + IG_ICE_F_STONE_BOX, + IG_BS_MAKING_S, + IG_MONTHLY_PACKAGE_1, + IG_MONTHLY_PACKAGE_2, + IG_MONTHLY_PACKAGE_3, + IG_MONTHLY_BUFF_PACKAGE, + IG_MONTHLY_BATTLE_PACKAGE, + IG_MD_AIRBOAT_EXPBOX, + IG_ENCHANT_TICKET_3, + IG_FAN_GREED_1HOUR_BOX, + IG_KAKAO_PLUS_BOX, + IG_COSTUMEMILEPACK_27_1, + IG_COSTUMEMILEPACK_27_2, + IG_COSTUMEMILEPACK_27_3, + IG_P_BOOSTER230_GIFT, + IG_BOOSTER230_GIFT, + IG_BOOSTER_PACK_10, + IG_BOOSTER_PACK_20, + IG_BOOSTER_PACK_40, + IG_BOOSTER_PACK_50, + IG_BOOSTER_PACK_70, + IG_BOOSTER_PACK_80, + IG_BOOSTER_PACK_110, + IG_BOOSTER_PACK_120, + IG_BOOSTER_PACK_140, + IG_BOOSTER_PACK_150, + IG_BOOSTER_PACK_170, + IG_BOOSTER_PACK_180, + IG_BOOSTER_PACK_210, + IG_BOOSTER_PACK_220, + IG_BOOSTER_PACK_240, + IG_BOOSTER_PACK_250, + IG_BOOSTER_CALL_PACKAGE, + IG_E_BOARDING_HALTER_BOX2, + IG_SHADOW_UP_BOX, + IG_VIVA_ADUL_HAT_BOX_11, + IG_EVT_MAKINGMATERIALS_BOX, + IG_LI_NYANGVINE_BOX1_28, + IG_LI_NYANGVINE_BOX2_28, + IG_LI_NYANGVINE_BOX3_28, + IG_EVT_20TH_WHITEGOLD, + IG_EVT_20TH_GOLD, + IG_EVT_20TH_SILVER, + IG_EVT_20TH_BRONZE, + IG_EVT_20TH_RETURN, + IG_EVT_20TH_RETURN2, + IG_E_CLOTH_DYE_BOX, + IG_PLAIN_RUNE_BOX5, + IG_FLAME_RUNE_BOX5, + IG_ICE_RUNE_BOX5, + IG_DEATH_RUNE_BOX5, + IG_RO_FESTIVAL_BOX, + IG_SERVICE1_M_01_BOX, + IG_SERVICE1_M_05_BOX, + IG_SERVICE1_M_07_BOX, + IG_SERVICE1_M_10_BOX, + IG_SERVICE1P_M_01_BOX, + IG_SERVICE1P_M_05_BOX, + IG_SERVICE1P_M_07_BOX, + IG_SERVICE1P_M_10_BOX, + IG_SERVICE1_F_01_BOX, + IG_SERVICE1_F_05_BOX, + IG_SERVICE1_F_07_BOX, + IG_SERVICE1_F_10_BOX, + IG_SERVICE1P_F_01_BOX, + IG_SERVICE1P_F_05_BOX, + IG_SERVICE1P_F_07_BOX, + IG_SERVICE1P_F_10_BOX, + IG_R_BEARERS_EARRING_BOX, + IG_R_BEARERS_PENDANT_BOX, + IG_R_BEARERS_ARMOR_BOX, + IG_R_BEARERS_SHOES_BOX, + IG_HASTY_WEAPON_BOX, + IG_HASTY_SHIELD_BOX, + IG_S_RELOAD_SHIELD_BOX, + IG_RO_ARENA_BOX, + IG_RO_ARENA_BOX2, + IG_HEROSRIA_GIFT, + IG_MAUTOSPELL_EARRING_BOX, + IG_MAUTOSPELL_PENDANT_BOX, + IG_MAUTOSPELL_ARMOR_BOX, + IG_MAUTOSPELL_SHOES_BOX, + IG_INFINITY_WEAPON_BOX, + IG_INFINITY_SHIELD_BOX, + IG_LUXURIOUS_BLUE_BOX, + IG_VR_BOOK_EVENT, + IG_LI_NYANGVINE_BOX1_29, + IG_LI_NYANGVINE_BOX2_29, + IG_LI_NYANGVINE_BOX3_29, + IG_EXP_WEAPON_BOX, + IG_EXP_SHIELD_BOX, + IG_M_BLITZ_WEAPON_BOX, + IG_M_BLITZ_SHIELD_BOX, + IG_CVT_WING_BOX, + IG_TEMPLE_RUNE_BOX5, + IG_VENOM_RUNE_BOX5, + IG_SOUL_RUNE_BOX5, + IG_CASH_BOOSTER_BOX, + IG_A_BUBBLE_GUM_BOX10, + IG_COSTUMEMILEPACK_29_1, + IG_COSTUMEMILEPACK_29_2, + IG_COSTUMEMILEPACK_29_3, + IG_S_BEARERS_CUBE, + IG_PENE_SET_CUBE, + IG_TEMP_SET_CUBE, + IG_JUSTICE_WEAPON_BOX, + IG_INJUSTICE_WEAPON_BOX, + IG_GOODNEVIL_HELM_BOX, + IG_F_EIN_1HDAGGER_BOX, + IG_SHADOW_SELECT_BOX_SET, + IG_REFINE_HAMMER_BOX, + IG_LI_NYANGVINE_BOX1_30, + IG_LI_NYANGVINE_BOX2_30, + IG_LI_NYANGVINE_BOX3_30, + IG_SLD_BOSS_CARD_ALBUM, + IG_COSTUMEMILEPACK_30_1, + IG_COSTUMEMILEPACK_30_2, + IG_COSTUMEMILEPACK_30_3, + IG_VIP_GIFT, + IG_VVIP_GIFT, + IG_SVIP_GIFT, + IG_2023_SPRING_COLLECTION, + IG_KR_B_SPECIAL04, + IG_LI_NYANGVINE_BOX1_31, + IG_LI_NYANGVINE_BOX2_31, + IG_LI_NYANGVINE_BOX3_31, + IG_STONE_ROBE3_BOX, + IG_RO_CONCERT_SCROLL, + IG_RO_CONCERT_SCROLL_BOX, + IG_FAN_UPGRADE_KIT_EX_10, + IG_KR_B_SPECIAL06, + IG_COSTUMEMILEPACK_31_1, + IG_COSTUMEMILEPACK_31_2, + IG_COSTUMEMILEPACK_31_3, + IG_CATPAW_1DAY_BOX, + IG_MILEAGE_COUPON, + IG_LI_NYANGVINE_BOX1_32, + IG_LI_NYANGVINE_BOX2_32, + IG_LI_NYANGVINE_BOX3_32, + IG_21TH_PRESENT_BOX, + IG_21TH_COSTUME_COLLECTION, + IG_S_ENCHANT_ESSENCE_BOX_3, + IG_SEASON_EVT_REWARD_8, + IG_COSTUMEMILEPACK_32_1, + IG_COSTUMEMILEPACK_32_2, + IG_COSTUMEMILEPACK_32_3, + IG_M_ARMOR_BOX, + IG_M_SHOES_BOX, + IG_M_PENDANT_BOX, + IG_M_EARRING_BOX, + IG_EIN_ORE_BOX, + IG_FATE_FRAGMENT_BOX, + IG_SIN_FRAGMENT_BOX, + IG_AMETHYST_FRAGMENT_BOX, + IG_SNOW_F_ORE_BOX, + IG_SCHMIDT_ANTIQUITY, + IG_SCHMIDT_ANTIQUITY2, + IG_AMDARAIS_ANTIQUITY, + IG_AMDARAIS_ANTIQUITY2, + IG_C_AMDARAIS_ANTIQUITY, + IG_C_HIMEL_ANTIQUITY, + IG_UNKNOWN_ANTIQUITY, + IG_SAKRAY_ANTIQUITY, + IG_AIRBOAT_ANTIQUITY, + IG_CELINE_KIMI_ANTIQUITY, + IG_MIGUEL_ANTIQUITY, + IG_EL_A17T_ANTIQUITY, + IG_PITAYA_BOSS_ANTIQUITY, + IG_SWEETY_ANTIQUITY, + IG_REDPEPPER_ANTIQUITY, + IG_REDPEPPER_ANTIQUITY2, + IG_DEMI_FREYJA_ANTIQUITY, + IG_JUNCEA_ANTIQUITY, + IG_AQUILA_ANTIQUITY, + IG_AQUILA_ANTIQUITY2, + IG_F_ICESLUG_ANTIQUIY, + IG_LASGAND_ANTIQUITY, + IG_LASGAND_ANTIQUITY2, + IG_THANATOS_ANTIQUITY, + IG_CINNAMON_PACK1, + IG_CINNAMON_PACK2, + IG_CINNAMON_PACK3, + IG_CINNAMON_PACK4, + IG_COS_ENCHANTSTONE_BOX1, + IG_COS_ENCHANTSTONE_BOX2, + IG_COS_ENCHANTSTONE_BOX3, + IG_T_GARDEN_EV_1, + IG_T_GARDEN_EV_2, + IG_T_GARDEN_EV_3, + IG_LI_NYANGVINE_BOX1_33, + IG_LI_NYANGVINE_BOX2_33, + IG_LI_NYANGVINE_BOX3_33, + IG_LI_NYANG_CINNA_BOX1_33, + IG_LI_NYANG_CINNA_BOX2_33, + IG_LI_NYANG_CINNA_BOX3_33, + IG_BL_DEPTH_EV_1, + IG_BL_DEPTH_EV_2, + IG_KR_B_SPECIAL09, + IG_LI_A_ELUNIUM_BOX, + IG_LI_A_ORIDECON_BOX, + IG_PRESENTBOX_EP17_2, + IG_PRESENTBOX_EP18, + IG_REFINE_EVENT_BOX, + IG_PRESENTBOX_EP19, + IG_PRESENTBOX_EP20, + IG_PRESENTBOX_GLASTHEIM, + IG_BROWN_DIA_BOX, + IG_COSTUMEMILEPACK_33_1, + IG_COSTUMEMILEPACK_33_2, + IG_COSTUMEMILEPACK_33_3, + IG_2023_XMAX_PACK_1, + IG_2023_XMAX_PACK_2, + IG_A_FORCE_BOOSTER_BOX, + IG_A_FORCE_BOOSTER_10_BOX, + IG_BROWN_DIA_BOX_3_7, + IG_2401_EV_LUNCH_BOX, + IG_BLACK_DIA_3_BOX, + IG_LI_NYANGVINE_BOX1_34, + IG_LI_NYANGVINE_BOX2_34, + IG_LI_NYANGVINE_BOX3_34, + IG_ENCHANT_STONE_BOX34, + IG_S_BADGE_PACK, + IG_SUPER_SONIC_PACK, + IG_CHAOS_EMERALD_PACK, + IG_VIP_BIRTHDAY_BOX, + IG_R_EP17_ALBUM, + IG_R_EP178_BOSS, + IG_SONIC_PREMIUM_PACK1, + IG_SONIC_PREMIUM_PACK2, + IG_S_BADGE_PACK_, + IG_SUPER_SONIC_PACK_, + IG_CHAOS_EMERALD_PACK_, IG_MAX, }; diff --git a/src/map/script_constants.hpp b/src/map/script_constants.hpp index dcd2ab17d2..b263f2b8a4 100644 --- a/src/map/script_constants.hpp +++ b/src/map/script_constants.hpp @@ -5269,7 +5269,6 @@ export_constant(IG_CARDALBUM_GARMENT); export_constant(IG_FLAMEL_CARD); export_constant(IG_SPECIAL_BOX); - export_constant(IG_TRESURE_BOX_WOE_); export_constant(IG_RWC_PARTI_BOX); export_constant(IG_RWC_FINAL_COMP_BOX); export_constant(IG_GIFT_BUNDLE); @@ -6992,6 +6991,737 @@ export_constant(IG_DUN_VOUCHER_BOX2); export_constant(IG_BLUEBOXOFQUESTIONS); export_constant(IG_ENCHANT_STONE_BOX33); + export_constant(IG_PC_BANG_COIN_BOX3); + export_constant(IG_PCBANG_GIFT_BOX); + export_constant(IG_PCBANG_COUPON_BOX2); + export_constant(IG_PCBANG_COUPON_BOX3); + export_constant(IG_CHANCE_BOX); + export_constant(IG_ATTEND_3DAY_BOX); + export_constant(IG_ATTEND_7DAY_BOX); + export_constant(IG_ATTEND_10DAY_BOX); + export_constant(IG_ATTEND_15DAY_BOX); + export_constant(IG_ATTEND_20DAY_BOX); + export_constant(IG_ATTEND_25DAY_BOX); + export_constant(IG_GOLDPC_FIRST_BOX); + export_constant(IG_TICKET_GIFT_BOX); + export_constant(IG_TICKET_GIFT_BOX2); + export_constant(IG_ASSORTED_SCROLL_BOX); + export_constant(IG_DROOPING_KITTY_BOX); + export_constant(IG_MAGESTIC_GOAT_BOX); + export_constant(IG_DEVIRUCHI_CAP_BOX); + export_constant(IG_EXECUTIONER_BOX); + export_constant(IG_BROOD_AXE_BOX); + export_constant(IG_TOMAHAWK_BOX); + export_constant(IG_BOW_OF_RUDRA_BOX); + export_constant(IG_CUTLAS_BOX); + export_constant(IG_SOLAR_SWORD_BOX); + export_constant(IG_SWORD_BREAKER_BOX); + export_constant(IG_MAIL_BREAKER_BOX); + export_constant(IG_MOONLIGHT_SWORD_BOX); + export_constant(IG_SPANNER_BOX); + export_constant(IG_WEAPON_CARD_SCROLL); + export_constant(IG_ARMOR_CARD_SCROLL); + export_constant(IG_HELMET_CARD_SCROLL); + export_constant(IG_HOOD_CARD_SCROLL); + export_constant(IG_HOOD_CARD_SCROLL2); + export_constant(IG_SHOES_CARD_SCROLL); + export_constant(IG_ACCY_CARD_SCROLL); + export_constant(IG_WEAPON_CARD_SCROLL2); + export_constant(IG_WEAPON_CARD_SCROLL3); + export_constant(IG_ARMOR_CARD_SCROLL2); + export_constant(IG_ACCY_CARD_SCROLL2); + export_constant(IG_ASPERSIO_5_BOX30); + export_constant(IG_ASPERSIO_5_BOX50); + export_constant(IG_HANDCUFF_BOX); + export_constant(IG_INFILTRATOR_BOX1); + export_constant(IG_MURAMASA_BOX1); + export_constant(IG_EXCALIBUR_BOX1); + export_constant(IG_COMBAT_KNIFE_BOX1); + export_constant(IG_COUNTER_DAGGER_BOX1); + export_constant(IG_KAISER_KNUCKLE_BOX1); + export_constant(IG_POLE_AXE_BOX1); + export_constant(IG_MIGHTY_STAFF_BOX1); + export_constant(IG_RIGHT_EPSILON_BOX1); + export_constant(IG_BALISTAR_BOX1); + export_constant(IG_DIARY_OF_SAGE_BOX1); + export_constant(IG_ASURA_BOX1); + export_constant(IG_APPLE_OF_ARCHER_BOX1); + export_constant(IG_BUNNY_BAND_BOX1); + export_constant(IG_SAHKKAT_BOX1); + export_constant(IG_LORD_CIRCLET_BOX1); + export_constant(IG_ELVEN_EARS_BOX1); + export_constant(IG_STEEL_FLOWER_BOX1); + export_constant(IG_CRITICAL_RING_BOX1); + export_constant(IG_EARRING_BOX1); + export_constant(IG_RING_BOX1); + export_constant(IG_NECKLACE_BOX1); + export_constant(IG_GLOVE_BOX1); + export_constant(IG_BROOCH_BOX1); + export_constant(IG_ROSARY_BOX1); + export_constant(IG_SAFETY_RING_BOX1); + export_constant(IG_VESPER_CORE01_BOX1); + export_constant(IG_VESPER_CORE02_BOX1); + export_constant(IG_VESPER_CORE03_BOX1); + export_constant(IG_VESPER_CORE04_BOX1); + export_constant(IG_DROOPING_KITTY_BOX1); + export_constant(IG_MAGESTIC_GOAT_BOX1); + export_constant(IG_DEVIRUCHI_CAP_BOX1); + export_constant(IG_EXECUTIONER_BOX1); + export_constant(IG_BROOD_AXE_BOX1); + export_constant(IG_TOMAHAWK_BOX1); + export_constant(IG_CUTLAS_BOX1); + export_constant(IG_SOLAR_SWORD_BOX1); + export_constant(IG_MOONLIGHT_SWORD_BOX1); + export_constant(IG_SPANNER_BOX1); + export_constant(IG_FREYJA_OVERCOAT_BOX); + export_constant(IG_FREYJA_BOOTS_BOX); + export_constant(IG_FREYJA_CAPE_BOX); + export_constant(IG_FREYJA_CROWN_BOX); + export_constant(IG_BRO_PACKAGE1); + export_constant(IG_PECOPECO_HAIRBAND_BOX); + export_constant(IG_RED_GLASSES_BOX); + export_constant(IG_WHISPER_MASK_BOX); + export_constant(IG_GOLD_BOX_); + export_constant(IG_SILVER_BOX_); + export_constant(IG_PECOPECO_HAIRBAND_BOX1); + export_constant(IG_RED_GLASSES_BOX1); + export_constant(IG_WHISPER_MASK_BOX1); + export_constant(IG_RAMEN_HAT_BOX1); + export_constant(IG_5_ANNIVERSARY_COIN_BOX); + export_constant(IG_CERTIFICATE_TW_BOX); + export_constant(IG_NAGAN_BOX); + export_constant(IG_SKEWER_BOX); + export_constant(IG_SURVIVAL_ROD_BOX); + export_constant(IG_QUADRILLE_BOX); + export_constant(IG_GREAT_AXE_BOX); + export_constant(IG_BLOODY_ROAR_BOX); + export_constant(IG_HARDBACK_BOX); + export_constant(IG_IMMATERIAL_SWORD_BOX); + export_constant(IG_UNHOLY_TOUCH_BOX); + export_constant(IG_CLOAK_OF_SURVIVAL_BOX); + export_constant(IG_MASQUERADE_BOX); + export_constant(IG_ORC_HERO_HELM_BOX); + export_constant(IG_EVIL_WING_EARS_BOX); + export_constant(IG_DARK_BLINDFOLD_BOX); + export_constant(IG_KRO_DROOPING_KITTY_BOX); + export_constant(IG_CORSAIR_BOX); + export_constant(IG_BLOODY_IRON_BALL_BOX); + export_constant(IG_SPIRITUAL_RING_BOX); + export_constant(IG_NAGAN_BOX1); + export_constant(IG_SKEWER_BOX1); + export_constant(IG_SURVIVAL_ROD_BOX1); + export_constant(IG_QUADRILLE_BOX1); + export_constant(IG_GREAT_AXE_BOX1); + export_constant(IG_FIRE_BRAND_BOX1); + export_constant(IG_IMMATERIAL_SWORD_BOX1); + export_constant(IG_UNHOLY_TOUCH_BOX1); + export_constant(IG_CLOAK_OF_SURVIVAL_BOX1); + export_constant(IG_MASQUERADE_BOX1); + export_constant(IG_ORC_HERO_HELM_BOX1); + export_constant(IG_EVIL_WING_EARS_BOX1); + export_constant(IG_DARK_BLINDFOLD_BOX1); + export_constant(IG_KRO_DROOPING_KITTY_BOX1); + export_constant(IG_CORSAIR_BOX1); + export_constant(IG_SPIRITUAL_RING_BOX1); + export_constant(IG_INDONESIA_BOX); + export_constant(IG_GREEN_BOX_); + export_constant(IG_RESIST_BOX1); + export_constant(IG_RESIST_BOX2); + export_constant(IG_STAT_BOOST1); + export_constant(IG_STAT_BOOST2); + export_constant(IG_STAT_BOOST3); + export_constant(IG_STAT_BOOST4); + export_constant(IG_OBSERVER_BOX); + export_constant(IG_LUCKY_CLIP_BOX); + export_constant(IG_F_LEVER_ACTION_RIFLE_BO); + export_constant(IG_F_REFRESH_SHOES_BOX); + export_constant(IG_F_PECOPECO_HAIRBAND_BOX); + export_constant(IG_F_RED_GLASSES_BOX); + export_constant(IG_F_WHISPER_MASK_BOX); + export_constant(IG_F_RAMEN_HAT_BOX); + export_constant(IG_F_VIGORGRA_PACKAGE3); + export_constant(IG_F_VIGORGRA_PACKAGE4); + export_constant(IG_NOVICE_SET_BOX); + export_constant(IG_BEHOLDER_RING_BOX2); + export_constant(IG_HALLOW_RING_BOX2); + export_constant(IG_CLAMOROUS_RING_BOX2); + export_constant(IG_CHEMICAL_RING_BOX2); + export_constant(IG_INSECTICIDE_RING_BOX2); + export_constant(IG_FISHER_RING_BOX2); + export_constant(IG_DECUSSATE_RING_BOX2); + export_constant(IG_BLOODY_RING_BOX2); + export_constant(IG_SATANIC_RING_BOX2); + export_constant(IG_DRAGOON_RING_BOX2); + export_constant(IG_FPICTURE_DIARY_BOX); + export_constant(IG_FMINI_HEART_BOX); + export_constant(IG_FNEWCOMER_BOX); + export_constant(IG_FKID_BOX); + export_constant(IG_FMAGIC_CASTLE_BOX); + export_constant(IG_FBULGING_HEAD_BOX); + export_constant(IG_FPICTURE_DIARY_BOX_1M); + export_constant(IG_FMINI_HEART_BOX_1M); + export_constant(IG_FNEWCOMER_BOX_1M); + export_constant(IG_FKID_BOX_1M); + export_constant(IG_FMAGIC_CASTLE_BOX_1M); + export_constant(IG_FBULGING_HEAD_BOX_1M); + export_constant(IG_FHEALING_STAFF_BOX); + export_constant(IG_FPRAXINUS_BOX); + export_constant(IG_MUFFLER_C_BOX); + export_constant(IG_VALKYRJA_S_SHIELD_C_BOX); + export_constant(IG_SKUL_RING_C_BOX); + export_constant(IG_S_BARRICADE_REPAIR_KIT); + export_constant(IG_S_GSTONE_REPAIR_KIT); + export_constant(IG_ARDOR_SCROLL); + export_constant(IG_HOLY_SABER_BOX); + export_constant(IG_BOOK_OF_PRAYER_BOX); + export_constant(IG_PHENOMENA_WHIP_BOX); + export_constant(IG_STAFF_OF_DARKNESS_BOX); + export_constant(IG_MONK_KNUCKLE_BOX); + export_constant(IG_MACE_OF_MADNESS_BOX); + export_constant(IG_SPEAR_OF_EXCELLENT_BOX); + export_constant(IG_BOW_OF_EVIL_BOX); + export_constant(IG_KATAR_OF_SPEED_BOX); + export_constant(IG_SS_REVOLVER_BOX); + export_constant(IG_XMAS_SCROLL); + export_constant(IG_FORTUNE_SWORD_BOX_I); + export_constant(IG_HOUSE_AUGER_BOX_I); + export_constant(IG_KAMAITACHI_BOX_I); + export_constant(IG_BERSERK_GUITAR_BOX_I); + export_constant(IG_DOOM_SLAYER_BOX_I); + export_constant(IG_HUUMA_BLAZE_BOX_I); + export_constant(IG_ODIN_S_BLESSING_BOX_I); + export_constant(IG_RING_OF_F_LORD_BOX_I); + export_constant(IG_RING_OF_RESON_BOX_I); + export_constant(IG_BOY_S_CAP_BOX_I); + export_constant(IG_ULLE_CAP_BOX_I); + export_constant(IG_SPINX_HELM_BOX_I); + export_constant(IG_POWER_OF_THOR_BOX); + export_constant(IG_ACTI_POTION_BOX); + export_constant(IG_ACTI_POTION_BOX2); + export_constant(IG_HALF_ASPRIKA_BOX); + export_constant(IG_HALF_BRYNHILD_BOX); + export_constant(IG_SPIKED_SCARF_BOX); + export_constant(IG_RAINBOW_SCARF_BOX); + export_constant(IG_3D_GLASSES_BOX); + export_constant(IG_CHEER_SCARF_BOX); + export_constant(IG_CHEER_SCARF2_BOX); + export_constant(IG_CHEER_SCARF3_BOX); + export_constant(IG_CHEER_SCARF4_BOX); + export_constant(IG_CHEER_SCARF6_BOX); + export_constant(IG_CHEER_SCARF8_BOX); + export_constant(IG_CHEER_SCARF10_BOX); + export_constant(IG_CHEER_SCARF10_BOX2); + export_constant(IG_RING_OF_VALKYRIE_BOX); + export_constant(IG_RAPID_LIFE_WATER_BOX); + export_constant(IG_LOLLI_POP_BOX); + export_constant(IG_SPECIAL_BOX1); + export_constant(IG_SPECIAL_BOX2); + export_constant(IG_SPECIAL_BOX3); + export_constant(IG_SPECIAL_BOX4); + export_constant(IG_SPECIAL_BOX5); + export_constant(IG_PCBANG_COUPON_BOX); + export_constant(IG_B_HALTER_BOX_30DAYS); + export_constant(IG_PCBANG_COUPON_BOX4); + export_constant(IG_OLD_HAT_BOX); + export_constant(IG_SAPA_FEAT_CERT_PACK); + export_constant(IG_ARCHANGEL_WING_BOX); + export_constant(IG_TRANS_BOX_DEVI); + export_constant(IG_TRANS_BOX_RAY_ARCH); + export_constant(IG_TRANS_BOX_MAVKA); + export_constant(IG_TRANS_BOX_MARDUK); + export_constant(IG_TRANS_BOX_BANSHEE); + export_constant(IG_TRANS_BOX_GOLEM); + export_constant(IG_UPG_REVOLVER_BOX2); + export_constant(IG_UPG_TWOHAND_SWORD_BOX2); + export_constant(IG_UPG_KATAR_BOX2); + export_constant(IG_UPG_TWO_HANDED_AXE_BOX2); + export_constant(IG_UPG_LANCE_BOX2); + export_constant(IG_UPG_BOOK_BOX2); + export_constant(IG_UPG_STAFF_BOX2); + export_constant(IG_UPG_DAGGER_BOX2); + export_constant(IG_UPG_MACE_BOX2); + export_constant(IG_UPG_BOW_BOX2); + export_constant(IG_GRYPHON_EGG_SCROLL); + export_constant(IG_ASPD_POTION_BOX10); + export_constant(IG_DRAGON_EGG_SCROLL); + export_constant(IG_2011_RWC_SCROLL_KR); + export_constant(IG_CHANGE_NAME_CARD_BOX2); + export_constant(IG_PCBANG_COUPON_BOX5); + export_constant(IG_CRU_SCROLL); + export_constant(IG_EVENT_GIFT_BOX); + export_constant(IG_EVENT_GIFT_BOX_); + export_constant(IG_TIME_GUARDIAN_BOX); + export_constant(IG_BEGINNER_KIT_BOX); + export_constant(IG_MOTHER_LOVE_BOX); + export_constant(IG_OLD_ORE_BOX_); + export_constant(IG_BOARDING_HALTER_BOX3); + export_constant(IG_UNDEAD_EGG); + export_constant(IG_GIRLS_HEART); + export_constant(IG_C_CENTER_POT_BOX); + export_constant(IG_C_AWAKENING_POT_BOX); + export_constant(IG_C_BERSERK_POT_BOX); + export_constant(IG_C_WING_OF_FLY_BOX); + export_constant(IG_REFINE_ORE_BOX3); + export_constant(IG_GUARANTEE7_BOX); + export_constant(IG_WOLFKING_SCROLL); + export_constant(IG_ALMIGHTY_BOX2); + export_constant(IG_HD_ELUNIUM_BOX30); + export_constant(IG_HD_ORIDECON_BOX30); + export_constant(IG_KINGS_GIFT); + export_constant(IG_C_CENTER_POT_3D_BOX); + export_constant(IG_C_AWAKENING_POT_3D_BOX); + export_constant(IG_C_BERSERK_POT_3D_BOX); + export_constant(IG_BM_LIMIT_PACK); + export_constant(IG_GOLDENTREASUREBOX); + export_constant(IG_UNLIMITED_10_BOX); + export_constant(IG_XMAX_EGG_KR); + export_constant(IG_C_FESTIVAL_TICKET); + export_constant(IG_REFINE_ORE_BOX4); + export_constant(IG_REFINE_ORE_BOX4_SET10); + export_constant(IG_REFINE_ORE_BOX4_SET20); + export_constant(IG_NEW_YEAR_GIFT_BOX); + export_constant(IG_PCBANG_COUPON_BOX6); + export_constant(IG_SEALED_D_LORD_SCROLL); + export_constant(IG_STEALFIGHTER_20LV); + export_constant(IG_STEALFIGHTER_25LV); + export_constant(IG_KINGS_GIFT2); + export_constant(IG_HAPPY_CALL_BOX); + export_constant(IG_SEALED_KNIGHT_WS_SCROLL); + export_constant(IG_C_WING_OF_FLY_1DAY_BOX); + export_constant(IG_SILVERVINE_BOX10_); + export_constant(IG_SILVERVINE_BOX110); + export_constant(IG_SEALED_BERZ_SCROLL); + export_constant(IG_3_LIFE_POTION_PACK); + export_constant(IG_3_LIFE_POTION_10PACK); + export_constant(IG_CLEARBOX_S); + export_constant(IG_SEALED_KIEL_SCROLL); + export_constant(IG_SEALED_GLOOM_SCROLL); + export_constant(IG_REFINE_ORE_BOX5); + export_constant(IG_REFINE_ORE_BOX5_SET10); + export_constant(IG_ANGELING_PACKAGE); + export_constant(IG_DEVILING_PACKAGE); + export_constant(IG_OLD_HAT_BOX_); + export_constant(IG_MEMORIAL_BOX); + export_constant(IG_WET_CARDALBUM); + export_constant(IG_GOLDEN_CARD); + export_constant(IG_SHADOW_BOX3); + export_constant(IG_11TH_S_PACKAGE); + export_constant(IG_SILVERVINE_BOX10_2); + export_constant(IG_SILVERVINE_BOX110_2); + export_constant(IG_GEMSTONE_SHADOW_BOX); + export_constant(IG_SEALED_F_BISHOP_SCROLL); + export_constant(IG_HANGULDAY_BOX); + export_constant(IG_3_LIFE_POTION_PACK2); + export_constant(IG_3_LIFE_POTION_10PACK2); + export_constant(IG_SEALED_IFRIT_SCROLL); + export_constant(IG_BISCUIT_STICK_SET); + export_constant(IG_PREMIUM_BOOK_BOX); + export_constant(IG_LI_EMPELIUM_BOX); + export_constant(IG_LI_UPG_BUCKLER_BOX); + export_constant(IG_REFINE_ORE_BOX6); + export_constant(IG_REFINE_ORE_BOX6_SET10); + export_constant(IG_SEALED_TURTLEG_SCROLL); + export_constant(IG_SEALED_BACSOJIN_SCROLL); + export_constant(IG_GREED_SHADOW_BOX); + export_constant(IG_HEAL_SHADOW_BOX); + export_constant(IG_HIDING_SHADOW_BOX); + export_constant(IG_CLOAKING_SHADOW_BOX); + export_constant(IG_COSTUME_FESTIVAL_BOX2); + export_constant(IG_C_WING_OF_FLY_5DAY_BOX); + export_constant(IG_TELEPORT_SHADOW_BOX); + export_constant(IG_STEAL_SHADOW_BOX); + export_constant(IG_SEALED_PHARAOH_SCROLL); + export_constant(IG_QUESTION_BOX); + export_constant(IG_SEALED_M_FLOWER_SCROLL); + export_constant(IG_SEALED_B_YGNIZEM_SCROLL); + export_constant(IG_REFINE_ORE_BOX7); + export_constant(IG_REFINE_ORE_BOX7_SET10); + export_constant(IG_SEALED_APO_H_SCROLL); + export_constant(IG_PC_NOMALBOX); + export_constant(IG_PC_WOODENBOX); + export_constant(IG_PC_GOLDENBOX); + export_constant(IG_PC_PLATINUMBOX); + export_constant(IG_3_LIFE_POTION_PACK4); + export_constant(IG_3_LIFE_POTION_10PACK4); + export_constant(IG_SEALED_DRACULA_SCROLL); + export_constant(IG_BEARERS_SHADOW_BOX); + export_constant(IG_VIGORGRA_PACKAGE_V4); + export_constant(IG_VIGORGRA_PACKAGE_SET_V4); + export_constant(IG_SEALED_B_SHECIL_SCROLL); + export_constant(IG_NYANGVINE_BOX4); + export_constant(IG_NYANGVINE_BOX10); + export_constant(IG_NYANGVINE_BOX40); + export_constant(IG_REFINE_ORE_BOX8); + export_constant(IG_REFINE_ORE_BOX8_SET10); + export_constant(IG_SEALED_CARD); + export_constant(IG_LI_HD_ELUNIUM_BOX30); + export_constant(IG_LI_HD_ORIDECON_BOX30); + export_constant(IG_UNLIMITED_BOX3); + export_constant(IG_UNLIMITED_10_BOX3); + export_constant(IG_GUARANTEE_RELAX_SCROLL); + export_constant(IG_LIMIT_MANUAL_BOX); + export_constant(IG_SEALED_DRACULA_SCROLL2); + export_constant(IG_3_LIFE_POTION_10PACK5); + export_constant(IG_3_LIFE_POTION_PACK5); + export_constant(IG_SEALED_MYSTERIOUS_EGG); + export_constant(IG_SEALED_DRACULA_ALBUM); + export_constant(IG_LIMIT_POWER_BOOSTER_BOX); + export_constant(IG_LIMIT_POWER_BOOSTER100); + export_constant(IG_SEALED_BERZ_ALBUM); + export_constant(IG_SEALED_BERZ_SCROLL2); + export_constant(IG_NYANGVINE_BOX200); + export_constant(IG_APRILGIFTBOX); + export_constant(IG_NOVEMBERGIFTBOX); + export_constant(IG_SEPTEMBERGIFTBOX); + export_constant(IG_REFINE_ORE_BOX9); + export_constant(IG_REFINE_ORE_BOX9_SET10); + export_constant(IG_2015_NEW_YEAR_SCROLL); + export_constant(IG_NEW_YEAR_SHADOW_CUBE); + export_constant(IG_2015GOLDPCBOX); + export_constant(IG_ALMIGHTY_BOX4); + export_constant(IG_ALMIGHTY100_BOX2); + export_constant(IG_SEALED_SCROLL2); + export_constant(IG_INVISIBLE_BOX); + export_constant(IG_FREEZE_DREAM); + export_constant(IG_LAPINE_DDUKDDAKBOX); + export_constant(IG_GUNSLINGER_BOX); + export_constant(IG_MINI_FAN_BOX); + export_constant(IG_KAFRA_BOX); + export_constant(IG_CANDY_BOX_MELEE); + export_constant(IG_CANDY_BOX_RANGE); + export_constant(IG_CANDY_BOX_MAGIC); + export_constant(IG_BLOODYKNIGHT_SHIELD_BOX); + export_constant(IG_E_WING_OF_FLY_3DAY_BOX); + export_constant(IG_REBEGINER_BOX); + export_constant(IG_REBEGINER_S_BOX); + export_constant(IG_OVERWHELM_ARMOR_BOX); + export_constant(IG_POWERFUL_HELM_BOX); + export_constant(IG_MYSTERIOUS_PLASTIC); + export_constant(IG_80LVUP); + export_constant(IG_JUMPING_KIT_BOX); + export_constant(IG_MAIN_LUCKY_BOX_); + export_constant(IG_SILLIT_PONG_BOX); + export_constant(IG_KUNAI_SCROLL_OF_FLAME); + export_constant(IG_KUNAI_SCROLL_OF_ICICLE); + export_constant(IG_KUNAI_SCROLL_OF_POISON); + export_constant(IG_KUNAI_SCROLL_OF_SOIL); + export_constant(IG_KUNAI_SCROLL_OF_WIND); + export_constant(IG_C_CATPAW_7DAY_BOX_); + export_constant(IG_CANNON_BALL_BOX); + export_constant(IG_IRON_CANNON_BALL_BOX); + export_constant(IG_SOUL_CANNON_BALL_BOX); + export_constant(IG_DARK_CANNON_BALL_BOX); + export_constant(IG_HOLY_CANNON_BALL_BOX); + export_constant(IG_CANNON_BOX_6); + export_constant(IG_MAGIC_GEAR_FUEL_BOX); + export_constant(IG_REPAIRA_BOX); + export_constant(IG_REPAIRB_BOX); + export_constant(IG_REPAIRC_BOX); + export_constant(IG_FLAME_STONE_BUNDLE); + export_constant(IG_ICE_STONE_BUNDLE); + export_constant(IG_WIND_STONE_BUNDLE); + export_constant(IG_SHADOW_ORB_BUNDLE); + export_constant(IG_CHARM_FIRE_BUNDLE); + export_constant(IG_CHARM_ICE_BUNDLE); + export_constant(IG_CHARM_WIND_BUNDLE); + export_constant(IG_CHARM_EARTH_BUNDLE); + export_constant(IG_KUNAI_SCROLL_EXPLOSIVE); + export_constant(IG_GEMSTONE_BLUE); + export_constant(IG_GEMSTONE_YL); + export_constant(IG_GEMSTONE_RED); + export_constant(IG_BULLET_CASE_FULL); + export_constant(IG_BULLET_CASE_MINE); + export_constant(IG_BULLET_CASE_TAIL); + export_constant(IG_C_BRAID_HALF_UP_BOX); + export_constant(IG_POENETENTIA_BOX3); + export_constant(IG_POENETENTIA_BOX4); + export_constant(IG_CHUSEOG_PRESENT_BOX); + export_constant(IG_LI_NYANGVINE_BOX100_2); + export_constant(IG_BARMUND_RUNE_BOX); + export_constant(IG_SEALED_CARD3); + export_constant(IG_LI_NYANGVINE_STONE_BOX3); + export_constant(IG_RO_LIVE_SHOP_BOX); + export_constant(IG_RO_LIVE_SHOP_EX_BOX); + export_constant(IG_SEASON_EVT_REWARD_11); + export_constant(IG_CANNON_BOX_ICE); + export_constant(IG_CANNON_BOX_LIGHTNING); + export_constant(IG_CANNON_BOX_STONE); + export_constant(IG_CANNON_BOX_FLARE); + export_constant(IG_CANNON_BOX_POISONING); + export_constant(IG_KUNAI_SCROLL); + export_constant(IG_KUNAI_SCROLL_NOTHING); + export_constant(IG_KUNAI_SCROLL_SHADOW); + export_constant(IG_KUNAI_SCROLL_HAMAYA); + export_constant(IG_NW_GRENADE_BOX); + export_constant(IG_SOA_CHARM_BUNDLE); + export_constant(IG_SS_CHARM_BOX); + export_constant(IG_SS_CHARM_F_BOX); + export_constant(IG_SS_CHARM_W_BOX); + export_constant(IG_SS_CHARM_G_BOX); + export_constant(IG_SS_CHARM_L_BOX); + export_constant(IG_PAYMENT_COSTUME_BOX1); + export_constant(IG_PAYMENT_COSTUME_BOX2); + export_constant(IG_2021_PROMO_PACKAGE_1); + export_constant(IG_2021_PROMO_PACKAGE_2); + export_constant(IG_E_BOARDING_HALTER_BOX); + export_constant(IG_COSTUMEMILEAGE_PACKAGE4); + export_constant(IG_COSTUMEMILEAGE_PACKAGE5); + export_constant(IG_COSTUMEMILEAGE_PACKAGE6); + export_constant(IG_EVT_RAGFES_BOX); + export_constant(IG_KR_B_SPECIAL08); + export_constant(IG_KR_B_SPECIAL05); + export_constant(IG_SEASON_EVT_REWARD_12); + export_constant(IG_SECURITY_CAMPAIGN_BOX); + export_constant(IG_HERO_HAMMER_PACKAGE_6); + export_constant(IG_HERO_UP_PACKAGE_6); + export_constant(IG_HERO_TOKEN_BOX); + export_constant(IG_JANUARYGIFTBOX_); + export_constant(IG_FEBRUARYGIFTBOX_); + export_constant(IG_MARCHGIFTBOX_); + export_constant(IG_APRILGIFTBOX_); + export_constant(IG_MAYGIFTBOX_); + export_constant(IG_JUNEGIFTBOX_); + export_constant(IG_JULYGIFTBOX_); + export_constant(IG_AUGUSTGIFTBOX_); + export_constant(IG_SEPTEMBERGIFTBOX_); + export_constant(IG_OCTOBERGIFTBOX_); + export_constant(IG_NOVEMBERGIFTBOX_); + export_constant(IG_DECEMBERGIFTBOX_); + export_constant(IG_SEASON_EVT_REWARD_1); + export_constant(IG_2021_WINTER_EVENT_BOX1); + export_constant(IG_2021_WINTER_EVENT_BOX2); + export_constant(IG_ICE_F_STONE_BOX); + export_constant(IG_BS_MAKING_S); + export_constant(IG_MONTHLY_PACKAGE_1); + export_constant(IG_MONTHLY_PACKAGE_2); + export_constant(IG_MONTHLY_PACKAGE_3); + export_constant(IG_MONTHLY_BUFF_PACKAGE); + export_constant(IG_MONTHLY_BATTLE_PACKAGE); + export_constant(IG_MD_AIRBOAT_EXPBOX); + export_constant(IG_ENCHANT_TICKET_3); + export_constant(IG_FAN_GREED_1HOUR_BOX); + export_constant(IG_KAKAO_PLUS_BOX); + export_constant(IG_COSTUMEMILEPACK_27_1); + export_constant(IG_COSTUMEMILEPACK_27_2); + export_constant(IG_COSTUMEMILEPACK_27_3); + export_constant(IG_P_BOOSTER230_GIFT); + export_constant(IG_BOOSTER230_GIFT); + export_constant(IG_BOOSTER_PACK_10); + export_constant(IG_BOOSTER_PACK_20); + export_constant(IG_BOOSTER_PACK_40); + export_constant(IG_BOOSTER_PACK_50); + export_constant(IG_BOOSTER_PACK_70); + export_constant(IG_BOOSTER_PACK_80); + export_constant(IG_BOOSTER_PACK_110); + export_constant(IG_BOOSTER_PACK_120); + export_constant(IG_BOOSTER_PACK_140); + export_constant(IG_BOOSTER_PACK_150); + export_constant(IG_BOOSTER_PACK_170); + export_constant(IG_BOOSTER_PACK_180); + export_constant(IG_BOOSTER_PACK_210); + export_constant(IG_BOOSTER_PACK_220); + export_constant(IG_BOOSTER_PACK_240); + export_constant(IG_BOOSTER_PACK_250); + export_constant(IG_BOOSTER_CALL_PACKAGE); + export_constant(IG_E_BOARDING_HALTER_BOX2); + export_constant(IG_SHADOW_UP_BOX); + export_constant(IG_VIVA_ADUL_HAT_BOX_11); + export_constant(IG_EVT_MAKINGMATERIALS_BOX); + export_constant(IG_LI_NYANGVINE_BOX1_28); + export_constant(IG_LI_NYANGVINE_BOX2_28); + export_constant(IG_LI_NYANGVINE_BOX3_28); + export_constant(IG_EVT_20TH_WHITEGOLD); + export_constant(IG_EVT_20TH_GOLD); + export_constant(IG_EVT_20TH_SILVER); + export_constant(IG_EVT_20TH_BRONZE); + export_constant(IG_EVT_20TH_RETURN); + export_constant(IG_EVT_20TH_RETURN2); + export_constant(IG_E_CLOTH_DYE_BOX); + export_constant(IG_PLAIN_RUNE_BOX5); + export_constant(IG_FLAME_RUNE_BOX5); + export_constant(IG_ICE_RUNE_BOX5); + export_constant(IG_DEATH_RUNE_BOX5); + export_constant(IG_RO_FESTIVAL_BOX); + export_constant(IG_SERVICE1_M_01_BOX); + export_constant(IG_SERVICE1_M_05_BOX); + export_constant(IG_SERVICE1_M_07_BOX); + export_constant(IG_SERVICE1_M_10_BOX); + export_constant(IG_SERVICE1P_M_01_BOX); + export_constant(IG_SERVICE1P_M_05_BOX); + export_constant(IG_SERVICE1P_M_07_BOX); + export_constant(IG_SERVICE1P_M_10_BOX); + export_constant(IG_SERVICE1_F_01_BOX); + export_constant(IG_SERVICE1_F_05_BOX); + export_constant(IG_SERVICE1_F_07_BOX); + export_constant(IG_SERVICE1_F_10_BOX); + export_constant(IG_SERVICE1P_F_01_BOX); + export_constant(IG_SERVICE1P_F_05_BOX); + export_constant(IG_SERVICE1P_F_07_BOX); + export_constant(IG_SERVICE1P_F_10_BOX); + export_constant(IG_R_BEARERS_EARRING_BOX); + export_constant(IG_R_BEARERS_PENDANT_BOX); + export_constant(IG_R_BEARERS_ARMOR_BOX); + export_constant(IG_R_BEARERS_SHOES_BOX); + export_constant(IG_HASTY_WEAPON_BOX); + export_constant(IG_HASTY_SHIELD_BOX); + export_constant(IG_S_RELOAD_SHIELD_BOX); + export_constant(IG_RO_ARENA_BOX); + export_constant(IG_RO_ARENA_BOX2); + export_constant(IG_HEROSRIA_GIFT); + export_constant(IG_MAUTOSPELL_EARRING_BOX); + export_constant(IG_MAUTOSPELL_PENDANT_BOX); + export_constant(IG_MAUTOSPELL_ARMOR_BOX); + export_constant(IG_MAUTOSPELL_SHOES_BOX); + export_constant(IG_INFINITY_WEAPON_BOX); + export_constant(IG_INFINITY_SHIELD_BOX); + export_constant(IG_LUXURIOUS_BLUE_BOX); + export_constant(IG_VR_BOOK_EVENT); + export_constant(IG_LI_NYANGVINE_BOX1_29); + export_constant(IG_LI_NYANGVINE_BOX2_29); + export_constant(IG_LI_NYANGVINE_BOX3_29); + export_constant(IG_EXP_WEAPON_BOX); + export_constant(IG_EXP_SHIELD_BOX); + export_constant(IG_M_BLITZ_WEAPON_BOX); + export_constant(IG_M_BLITZ_SHIELD_BOX); + export_constant(IG_CVT_WING_BOX); + export_constant(IG_TEMPLE_RUNE_BOX5); + export_constant(IG_VENOM_RUNE_BOX5); + export_constant(IG_SOUL_RUNE_BOX5); + export_constant(IG_CASH_BOOSTER_BOX); + export_constant(IG_A_BUBBLE_GUM_BOX10); + export_constant(IG_COSTUMEMILEPACK_29_1); + export_constant(IG_COSTUMEMILEPACK_29_2); + export_constant(IG_COSTUMEMILEPACK_29_3); + export_constant(IG_S_BEARERS_CUBE); + export_constant(IG_PENE_SET_CUBE); + export_constant(IG_TEMP_SET_CUBE); + export_constant(IG_JUSTICE_WEAPON_BOX); + export_constant(IG_INJUSTICE_WEAPON_BOX); + export_constant(IG_GOODNEVIL_HELM_BOX); + export_constant(IG_F_EIN_1HDAGGER_BOX); + export_constant(IG_SHADOW_SELECT_BOX_SET); + export_constant(IG_REFINE_HAMMER_BOX); + export_constant(IG_LI_NYANGVINE_BOX1_30); + export_constant(IG_LI_NYANGVINE_BOX2_30); + export_constant(IG_LI_NYANGVINE_BOX3_30); + export_constant(IG_SLD_BOSS_CARD_ALBUM); + export_constant(IG_COSTUMEMILEPACK_30_1); + export_constant(IG_COSTUMEMILEPACK_30_2); + export_constant(IG_COSTUMEMILEPACK_30_3); + export_constant(IG_VIP_GIFT); + export_constant(IG_VVIP_GIFT); + export_constant(IG_SVIP_GIFT); + export_constant(IG_2023_SPRING_COLLECTION); + export_constant(IG_KR_B_SPECIAL04); + export_constant(IG_LI_NYANGVINE_BOX1_31); + export_constant(IG_LI_NYANGVINE_BOX2_31); + export_constant(IG_LI_NYANGVINE_BOX3_31); + export_constant(IG_STONE_ROBE3_BOX); + export_constant(IG_RO_CONCERT_SCROLL); + export_constant(IG_RO_CONCERT_SCROLL_BOX); + export_constant(IG_FAN_UPGRADE_KIT_EX_10); + export_constant(IG_KR_B_SPECIAL06); + export_constant(IG_COSTUMEMILEPACK_31_1); + export_constant(IG_COSTUMEMILEPACK_31_2); + export_constant(IG_COSTUMEMILEPACK_31_3); + export_constant(IG_CATPAW_1DAY_BOX); + export_constant(IG_MILEAGE_COUPON); + export_constant(IG_LI_NYANGVINE_BOX1_32); + export_constant(IG_LI_NYANGVINE_BOX2_32); + export_constant(IG_LI_NYANGVINE_BOX3_32); + export_constant(IG_21TH_PRESENT_BOX); + export_constant(IG_21TH_COSTUME_COLLECTION); + export_constant(IG_S_ENCHANT_ESSENCE_BOX_3); + export_constant(IG_SEASON_EVT_REWARD_8); + export_constant(IG_COSTUMEMILEPACK_32_1); + export_constant(IG_COSTUMEMILEPACK_32_2); + export_constant(IG_COSTUMEMILEPACK_32_3); + export_constant(IG_M_ARMOR_BOX); + export_constant(IG_M_SHOES_BOX); + export_constant(IG_M_PENDANT_BOX); + export_constant(IG_M_EARRING_BOX); + export_constant(IG_EIN_ORE_BOX); + export_constant(IG_FATE_FRAGMENT_BOX); + export_constant(IG_SIN_FRAGMENT_BOX); + export_constant(IG_AMETHYST_FRAGMENT_BOX); + export_constant(IG_SNOW_F_ORE_BOX); + export_constant(IG_SCHMIDT_ANTIQUITY); + export_constant(IG_SCHMIDT_ANTIQUITY2); + export_constant(IG_AMDARAIS_ANTIQUITY); + export_constant(IG_AMDARAIS_ANTIQUITY2); + export_constant(IG_C_AMDARAIS_ANTIQUITY); + export_constant(IG_C_HIMEL_ANTIQUITY); + export_constant(IG_UNKNOWN_ANTIQUITY); + export_constant(IG_SAKRAY_ANTIQUITY); + export_constant(IG_AIRBOAT_ANTIQUITY); + export_constant(IG_CELINE_KIMI_ANTIQUITY); + export_constant(IG_MIGUEL_ANTIQUITY); + export_constant(IG_EL_A17T_ANTIQUITY); + export_constant(IG_PITAYA_BOSS_ANTIQUITY); + export_constant(IG_SWEETY_ANTIQUITY); + export_constant(IG_REDPEPPER_ANTIQUITY); + export_constant(IG_REDPEPPER_ANTIQUITY2); + export_constant(IG_DEMI_FREYJA_ANTIQUITY); + export_constant(IG_JUNCEA_ANTIQUITY); + export_constant(IG_AQUILA_ANTIQUITY); + export_constant(IG_AQUILA_ANTIQUITY2); + export_constant(IG_F_ICESLUG_ANTIQUIY); + export_constant(IG_LASGAND_ANTIQUITY); + export_constant(IG_LASGAND_ANTIQUITY2); + export_constant(IG_THANATOS_ANTIQUITY); + export_constant(IG_CINNAMON_PACK1); + export_constant(IG_CINNAMON_PACK2); + export_constant(IG_CINNAMON_PACK3); + export_constant(IG_CINNAMON_PACK4); + export_constant(IG_COS_ENCHANTSTONE_BOX1); + export_constant(IG_COS_ENCHANTSTONE_BOX2); + export_constant(IG_COS_ENCHANTSTONE_BOX3); + export_constant(IG_T_GARDEN_EV_1); + export_constant(IG_T_GARDEN_EV_2); + export_constant(IG_T_GARDEN_EV_3); + export_constant(IG_LI_NYANGVINE_BOX1_33); + export_constant(IG_LI_NYANGVINE_BOX2_33); + export_constant(IG_LI_NYANGVINE_BOX3_33); + export_constant(IG_LI_NYANG_CINNA_BOX1_33); + export_constant(IG_LI_NYANG_CINNA_BOX2_33); + export_constant(IG_LI_NYANG_CINNA_BOX3_33); + export_constant(IG_BL_DEPTH_EV_1); + export_constant(IG_BL_DEPTH_EV_2); + export_constant(IG_KR_B_SPECIAL09); + export_constant(IG_LI_A_ELUNIUM_BOX); + export_constant(IG_LI_A_ORIDECON_BOX); + export_constant(IG_PRESENTBOX_EP17_2); + export_constant(IG_PRESENTBOX_EP18); + export_constant(IG_REFINE_EVENT_BOX); + export_constant(IG_PRESENTBOX_EP19); + export_constant(IG_PRESENTBOX_EP20); + export_constant(IG_PRESENTBOX_GLASTHEIM); + export_constant(IG_BROWN_DIA_BOX); + export_constant(IG_COSTUMEMILEPACK_33_1); + export_constant(IG_COSTUMEMILEPACK_33_2); + export_constant(IG_COSTUMEMILEPACK_33_3); + export_constant(IG_2023_XMAX_PACK_1); + export_constant(IG_2023_XMAX_PACK_2); + export_constant(IG_A_FORCE_BOOSTER_BOX); + export_constant(IG_A_FORCE_BOOSTER_10_BOX); + export_constant(IG_BROWN_DIA_BOX_3_7); + export_constant(IG_2401_EV_LUNCH_BOX); + export_constant(IG_BLACK_DIA_3_BOX); + export_constant(IG_LI_NYANGVINE_BOX1_34); + export_constant(IG_LI_NYANGVINE_BOX2_34); + export_constant(IG_LI_NYANGVINE_BOX3_34); + export_constant(IG_ENCHANT_STONE_BOX34); + export_constant(IG_S_BADGE_PACK); + export_constant(IG_SUPER_SONIC_PACK); + export_constant(IG_CHAOS_EMERALD_PACK); + export_constant(IG_VIP_BIRTHDAY_BOX); + export_constant(IG_R_EP17_ALBUM); + export_constant(IG_R_EP178_BOSS); + export_constant(IG_SONIC_PREMIUM_PACK1); + export_constant(IG_SONIC_PREMIUM_PACK2); + export_constant(IG_S_BADGE_PACK_); + export_constant(IG_SUPER_SONIC_PACK_); + export_constant(IG_CHAOS_EMERALD_PACK_); /* unit stop walking */ export_constant(USW_NONE); From 3627377d49d5bb5984b18ee3ce943ad0af5b35dc Mon Sep 17 00:00:00 2001 From: Atemo Date: Fri, 22 Mar 2024 19:52:30 +0100 Subject: [PATCH 39/44] Updated items DB (#8178) * Updated items Trade, Flags, EquipLevelMin, ArmorLevel, WeaponLevel, Slot and Gradable --- db/re/item_db_equip.yml | 196 +++++- db/re/item_db_etc.yml | 648 ++++++++++++++++-- db/re/item_db_usable.yml | 1343 +++++++++++++++++++++++++++++++++++--- 3 files changed, 2022 insertions(+), 165 deletions(-) diff --git a/db/re/item_db_equip.yml b/db/re/item_db_equip.yml index 895fc23e6a..34e991ec9d 100644 --- a/db/re/item_db_equip.yml +++ b/db/re/item_db_equip.yml @@ -22174,6 +22174,14 @@ Body: WeaponLevel: 3 EquipLevelMin: 100 Refineable: true + Trade: + NoDrop: true + NoTrade: true + NoStorage: true + NoCart: true + NoMail: true + NoAuction: true + NoGuildStorage: true Script: | bonus bMatkRate,5; .@r = getrefine(); @@ -22440,6 +22448,14 @@ Body: WeaponLevel: 4 EquipLevelMin: 99 Refineable: true + Trade: + NoDrop: true + NoTrade: true + NoStorage: true + NoCart: true + NoMail: true + NoAuction: true + NoGuildStorage: true Script: | bonus bUnbreakableWeapon; .@r = getrefine(); @@ -33760,6 +33776,7 @@ Body: Locations: Both_Accessory: true ArmorLevel: 1 + EquipLevelMin: 20 Script: | bonus bAllStats,5; - Id: 2673 @@ -38440,6 +38457,7 @@ Body: Locations: Both_Accessory: true ArmorLevel: 1 + EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true @@ -42064,6 +42082,7 @@ Body: Locations: Head_Top: true ArmorLevel: 1 + EquipLevelMin: 38 View: 204 Trade: NoDrop: true @@ -42334,6 +42353,7 @@ Body: Type: Armor Weight: 200 Defense: 5 + Slots: 1 Locations: Head_Top: true ArmorLevel: 1 @@ -43142,7 +43162,6 @@ Body: Buy: 800 Weight: 100 Defense: 1 - Slots: 1 Locations: Head_Top: true ArmorLevel: 1 @@ -43158,7 +43177,6 @@ Body: Buy: 800 Weight: 100 Defense: 1 - Slots: 1 Locations: Head_Top: true ArmorLevel: 1 @@ -43173,7 +43191,6 @@ Body: Buy: 800 Weight: 100 Defense: 1 - Slots: 1 Locations: Head_Top: true ArmorLevel: 1 @@ -43188,7 +43205,6 @@ Body: Buy: 800 Weight: 100 Defense: 1 - Slots: 1 Locations: Head_Top: true ArmorLevel: 1 @@ -43203,7 +43219,6 @@ Body: Buy: 800 Weight: 100 Defense: 1 - Slots: 1 Locations: Head_Top: true ArmorLevel: 1 @@ -43218,7 +43233,6 @@ Body: Buy: 800 Weight: 100 Defense: 1 - Slots: 1 Locations: Head_Top: true ArmorLevel: 1 @@ -43233,7 +43247,6 @@ Body: Buy: 800 Weight: 100 Defense: 1 - Slots: 1 Locations: Head_Top: true ArmorLevel: 1 @@ -48900,6 +48913,7 @@ Body: Type: Armor Weight: 100 Defense: 6 + Slots: 1 Locations: Head_Top: true ArmorLevel: 1 @@ -50135,6 +50149,7 @@ Body: Buy: 20 Weight: 1000 Defense: 4 + Slots: 1 Locations: Head_Mid: true Head_Top: true @@ -52169,6 +52184,7 @@ Body: Buy: 20 Weight: 300 Defense: 3 + Slots: 1 Locations: Head_Top: true ArmorLevel: 1 @@ -52353,6 +52369,7 @@ Body: Buy: 20 Weight: 300 Defense: 1 + Slots: 1 Locations: Head_Top: true ArmorLevel: 1 @@ -52385,6 +52402,7 @@ Body: Buy: 20 Weight: 10 Defense: 1 + Slots: 1 Locations: Head_Top: true ArmorLevel: 1 @@ -53774,6 +53792,7 @@ Body: Buy: 20 Weight: 800 Defense: 3 + Slots: 1 Locations: Head_Top: true ArmorLevel: 1 @@ -54057,6 +54076,7 @@ Body: Buy: 20 Weight: 100 Defense: 3 + Slots: 1 Locations: Head_Top: true ArmorLevel: 1 @@ -54073,6 +54093,7 @@ Body: Buy: 20 Weight: 100 Defense: 3 + Slots: 1 Locations: Head_Top: true ArmorLevel: 1 @@ -54944,6 +54965,7 @@ Body: Buy: 20 Weight: 300 Defense: 6 + Slots: 1 Locations: Head_Top: true ArmorLevel: 1 @@ -61683,7 +61705,7 @@ Body: Rebellion: true Locations: Both_Hand: true - WeaponLevel: 1 + WeaponLevel: 2 EquipLevelMin: 26 Trade: NoDrop: true @@ -61707,7 +61729,7 @@ Body: Rebellion: true Locations: Both_Hand: true - WeaponLevel: 1 + WeaponLevel: 2 EquipLevelMin: 40 Trade: NoDrop: true @@ -62121,7 +62143,7 @@ Body: Buy: 20 Attack: 60 Range: 7 - Slots: 2 + Slots: 1 Jobs: Gunslinger: true Rebellion: true @@ -67103,6 +67125,14 @@ Body: WeaponLevel: 3 EquipLevelMin: 100 Refineable: true + Trade: + NoDrop: true + NoTrade: true + NoStorage: true + NoCart: true + NoMail: true + NoAuction: true + NoGuildStorage: true Script: | .@r = getrefine(); bonus bVariableCastrate,-10; @@ -67266,6 +67296,14 @@ Body: WeaponLevel: 4 EquipLevelMin: 99 Refineable: true + Trade: + NoDrop: true + NoTrade: true + NoStorage: true + NoCart: true + NoMail: true + NoAuction: true + NoGuildStorage: true Script: | .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); @@ -72251,6 +72289,14 @@ Body: Armor: true ArmorLevel: 1 EquipLevelMin: 100 + Trade: + NoDrop: true + NoTrade: true + NoStorage: true + NoCart: true + NoMail: true + NoAuction: true + NoGuildStorage: true Script: | bonus bAllStats,1; bonus bMaxHP,400; @@ -78757,7 +78803,7 @@ Body: Fourth: true Locations: Right_Hand: true - WeaponLevel: 3 + WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | @@ -84575,6 +84621,7 @@ Body: Locations: Head_Top: true ArmorLevel: 1 + EquipLevelMin: 70 Refineable: true View: 759 Trade: @@ -89958,6 +90005,13 @@ Body: ArmorLevel: 1 EquipLevelMin: 1 View: 1039 + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoMail: true + NoAuction: true + NoGuildStorage: true Script: | bonus bAllStats,1; bonus bUnbreakableHelm; @@ -92195,6 +92249,7 @@ Body: Locations: Head_Mid: true ArmorLevel: 1 + EquipLevelMin: 10 View: 92 - Id: 19093 AegisName: Spinning_Eyes_ @@ -95554,6 +95609,14 @@ Body: ArmorLevel: 1 EquipLevelMin: 100 View: 102 + Trade: + NoDrop: true + NoTrade: true + NoStorage: true + NoCart: true + NoMail: true + NoAuction: true + NoGuildStorage: true Script: | bonus bAllStats,1; bonus bMaxHP,200; @@ -98053,6 +98116,7 @@ Body: AegisName: T_Spinx_Helm Name: T Spinx Helm Type: Armor + Slots: 1 Locations: Costume_Head_Top: true ArmorLevel: 1 @@ -99492,6 +99556,7 @@ Body: Locations: Costume_Head_Top: true ArmorLevel: 1 + EquipLevelMin: 20 View: 15 - Id: 19626 AegisName: C_Chullos @@ -101948,8 +102013,6 @@ Body: Costume_Head_Mid: true ArmorLevel: 1 View: 1074 - Trade: - NoDrop: true EquipScript: | sc_start SC_DECORATION_OF_MUSIC,INFINITE_TICK,0; UnEquipScript: | @@ -103132,13 +103195,6 @@ Body: ArmorLevel: 1 EquipLevelMin: 1 View: 1189 - Trade: - NoDrop: true - NoTrade: true - NoCart: true - NoGuildStorage: true - NoMail: true - NoAuction: true - Id: 19997 AegisName: C_Bomb_Hat Name: Costume Bomb Hat @@ -111592,6 +111648,8 @@ Body: EquipLevelMin: 99 Refineable: true View: 3 + Trade: + NoDrop: true Script: | bonus bBaseAtk,readparam(bStr)/20; bonus bMatk,readparam(bInt)/20; @@ -112627,6 +112685,14 @@ Body: Garment: true ArmorLevel: 1 EquipLevelMin: 100 + Trade: + NoDrop: true + NoTrade: true + NoStorage: true + NoCart: true + NoMail: true + NoAuction: true + NoGuildStorage: true Script: | bonus2 bSubEle,Ele_Neutral,20; bonus bVariableCastrate,-5; @@ -118936,6 +119002,14 @@ Body: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 + Trade: + NoDrop: true + NoTrade: true + NoStorage: true + NoCart: true + NoMail: true + NoAuction: true + NoGuildStorage: true Script: | bonus bMaxHP,300; bonus bMaxSP,50; @@ -134750,7 +134824,7 @@ Body: Fourth: true Locations: Both_Hand: true - WeaponLevel: 3 + WeaponLevel: 4 EquipLevelMin: 175 Refineable: true Flags: @@ -138660,7 +138734,7 @@ Body: Rebellion: true Locations: Both_Hand: true - WeaponLevel: 4 + WeaponLevel: 3 EquipLevelMin: 110 Refineable: true Script: | @@ -138679,7 +138753,7 @@ Body: Rebellion: true Locations: Both_Hand: true - WeaponLevel: 4 + WeaponLevel: 3 EquipLevelMin: 141 Refineable: true Script: | @@ -138699,7 +138773,7 @@ Body: Rebellion: true Locations: Both_Hand: true - WeaponLevel: 4 + WeaponLevel: 3 EquipLevelMin: 141 Refineable: true Script: | @@ -142992,6 +143066,14 @@ Body: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 + Trade: + NoDrop: true + NoTrade: true + NoStorage: true + NoCart: true + NoMail: true + NoAuction: true + NoGuildStorage: true Script: | bonus bAspdRate,10; bonus bVariableCastrate,-10; @@ -144043,7 +144125,7 @@ Body: StarGladiator: true Locations: Right_Hand: true - WeaponLevel: 3 + WeaponLevel: 4 EquipLevelMin: 175 Refineable: true Script: | @@ -155054,6 +155136,14 @@ Body: ArmorLevel: 1 EquipLevelMin: 1 View: 1942 + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoSell: true + NoMail: true + NoAuction: true + NoGuildStorage: true - Id: 31841 AegisName: C_BJ_HeadsetB Name: Costume OnAir BJ Headset @@ -155063,6 +155153,14 @@ Body: ArmorLevel: 1 EquipLevelMin: 1 View: 1943 + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoSell: true + NoMail: true + NoAuction: true + NoGuildStorage: true - Id: 31842 AegisName: C_Striking_hat Name: Costume Striking Hat @@ -179969,7 +180067,7 @@ Body: Slots: 1 Locations: Armor: true - ArmorLevel: 1 + ArmorLevel: 2 Refineable: true - Id: 450155 AegisName: JP_Armor06_L @@ -183703,7 +183801,7 @@ Body: Slots: 1 Locations: Left_Hand: true - ArmorLevel: 1 + ArmorLevel: 2 Refineable: true View: 1 - Id: 460013 @@ -191328,6 +191426,7 @@ Body: Locations: Garment: true ArmorLevel: 1 + EquipLevelMin: 10 Trade: NoDrop: true NoTrade: true @@ -193565,6 +193664,14 @@ Body: ArmorLevel: 1 EquipLevelMin: 1 Refineable: true + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoSell: true + NoMail: true + NoAuction: true + NoGuildStorage: true Script: | .@r = getrefine(); bonus2 bSubEle,Ele_Neutral,20; @@ -195696,6 +195803,14 @@ Body: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 + Trade: + NoDrop: true + NoTrade: true + NoStorage: true + NoCart: true + NoMail: true + NoAuction: true + NoGuildStorage: true Script: | bonus bAspdRate,10; bonus bVariableCastrate,-10; @@ -195710,6 +195825,14 @@ Body: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 + Trade: + NoDrop: true + NoTrade: true + NoStorage: true + NoCart: true + NoMail: true + NoAuction: true + NoGuildStorage: true Script: | bonus bAspdRate,10; bonus bVariableCastrate,-10; @@ -195728,6 +195851,14 @@ Body: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 + Trade: + NoDrop: true + NoTrade: true + NoStorage: true + NoCart: true + NoMail: true + NoAuction: true + NoGuildStorage: true Script: | bonus bAspdRate,10; bonus bVariableCastrate,-10; @@ -195746,6 +195877,14 @@ Body: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 + Trade: + NoDrop: true + NoTrade: true + NoStorage: true + NoCart: true + NoMail: true + NoAuction: true + NoGuildStorage: true Script: | bonus bAspdRate,10; bonus bVariableCastrate,-10; @@ -213344,7 +213483,6 @@ Body: Attack: 100 MagicAttack: 180 Range: 1 - Slots: 1 Jobs: SuperNovice: true Locations: @@ -228911,7 +229049,7 @@ Body: KagerouOboro: true Locations: Both_Hand: true - WeaponLevel: 1 + WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true diff --git a/db/re/item_db_etc.yml b/db/re/item_db_etc.yml index 24ee86c1fd..3a2591ff97 100644 --- a/db/re/item_db_etc.yml +++ b/db/re/item_db_etc.yml @@ -2619,7 +2619,7 @@ Body: Thief: true Locations: Ammo: true - EquipLevelMin: 130 + EquipLevelMin: 95 - Id: 1776 AegisName: Siege_Arrow_A Name: Siege Arrow A @@ -12688,6 +12688,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bBreakArmorRate,5000; @@ -12701,6 +12702,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bSkillAtk,"NC_AXEBOOMERANG",30+((getrefine() >= 10)*30); @@ -12713,6 +12715,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bSkillAtk,"NC_ARMSCANNON",20+((getrefine()>=10)*20); @@ -21108,13 +21111,6 @@ Body: Buy: 10 Flags: BuyingStore: true - Trade: - NoDrop: true - NoTrade: true - NoCart: true - NoGuildStorage: true - NoMail: true - NoAuction: true - Id: 6672 AegisName: Gray_Shard Name: Gray Shard @@ -21123,13 +21119,6 @@ Body: Weight: 1 Flags: BuyingStore: true - Trade: - NoDrop: true - NoTrade: true - NoCart: true - NoGuildStorage: true - NoMail: true - NoAuction: true - Id: 6673 AegisName: Bossnia_Ticket Name: Bossnia Tickets @@ -21853,13 +21842,6 @@ Body: Weight: 10 Flags: BuyingStore: true - Trade: - NoDrop: true - NoTrade: true - NoCart: true - NoGuildStorage: true - NoMail: true - NoAuction: true - Id: 6753 AegisName: Sign_Of_Destruction Name: Token Of Destruction @@ -21892,34 +21874,18 @@ Body: Type: Etc Buy: 20 Weight: 10 + Flags: + BuyingStore: true - Id: 6756 AegisName: Condensed_Energy Name: Cohesive Energy Type: Etc Buy: 20 - Trade: - NoDrop: true - NoTrade: true - NoSell: true - NoCart: true - NoStorage: true - NoGuildStorage: true - NoMail: true - NoAuction: true - Id: 6757 AegisName: Memory_Record Name: The Memory Recorder Type: Etc Buy: 20 - Trade: - NoDrop: true - NoTrade: true - NoSell: true - NoCart: true - NoStorage: true - NoGuildStorage: true - NoMail: true - NoAuction: true - Id: 6762 AegisName: Banana_Can Name: Banana Can @@ -23169,9 +23135,6 @@ Body: Buy: 2 Flags: BuyingStore: true - Trade: - NoMail: true - NoAuction: true - Id: 6906 AegisName: LI_HD_Carnium Name: (Limited)High Density Kalunium @@ -25868,6 +25831,15 @@ Body: Name: Golden Korean Flag Type: Etc Weight: 10 + Trade: + NoDrop: true + NoTrade: true + NoStorage: true + NoCart: true + NoSell: true + NoMail: true + NoAuction: true + NoGuildStorage: true - Id: 7254 AegisName: Digital_Print_Ticket Name: Digital Picture Printing Coupon @@ -30701,6 +30673,14 @@ Body: Type: Etc Buy: 10 Weight: 100 + Trade: + NoDrop: true + NoTrade: true + NoStorage: true + NoCart: true + NoMail: true + NoAuction: true + NoGuildStorage: true - Id: 7869 AegisName: RicePouch Name: Rice Pouch @@ -31245,6 +31225,8 @@ Body: Name: Essence of a Powerful Dimension Type: Etc Buy: 20 + Flags: + BuyingStore: true - Id: 7926 AegisName: Break_Box_CN Name: Incense @@ -33915,8 +33897,6 @@ Body: Head_Low: true Head_Mid: true Head_Top: true - Flags: - DropEffect: CLIENT Trade: NoDrop: true NoTrade: true @@ -34579,22 +34559,32 @@ Body: AegisName: Particles_Of_Energy1 Name: Silent Energy Particle Type: Etc + Flags: + BuyingStore: true - Id: 25128 AegisName: Particles_Of_Energy2 Name: Weak Energy Particle Type: Etc + Flags: + BuyingStore: true - Id: 25129 AegisName: Particles_Of_Energy3 Name: Unstable Energy Particle Type: Etc + Flags: + BuyingStore: true - Id: 25130 AegisName: Particles_Of_Energy4 Name: Sinister Energy Particle Type: Etc + Flags: + BuyingStore: true - Id: 25131 AegisName: Particles_Of_Energy5 Name: Fallen Energy Particle Type: Etc + Flags: + BuyingStore: true - Id: 25132 AegisName: Pumpkin_Decorations Name: Pumpkin Deco @@ -35475,42 +35465,56 @@ Body: Type: Etc Buy: 900 Weight: 10 + Flags: + BuyingStore: true - Id: 25262 AegisName: Dried_Clover Name: Well-dried Clover Type: Etc Buy: 1200 Weight: 10 + Flags: + BuyingStore: true - Id: 25263 AegisName: Short_Bat_Fur Name: Short Bat Hair Type: Etc Buy: 790 Weight: 10 + Flags: + BuyingStore: true - Id: 25264 AegisName: NightmareOfLump Name: Cluster of Nightmares Type: Etc Buy: 822 Weight: 10 + Flags: + BuyingStore: true - Id: 25265 AegisName: Shining_Spore Name: Shining Spore Type: Etc Buy: 342 Weight: 10 + Flags: + BuyingStore: true - Id: 25266 AegisName: Dried_Leaf_Of_Ygg Name: Dried Yggdrasil Leaf Type: Etc Buy: 450 Weight: 10 + Flags: + BuyingStore: true - Id: 25267 AegisName: SuspiciousMagicCircle Name: Suspicious Pentacle Type: Etc Buy: 970 Weight: 10 + Flags: + BuyingStore: true - Id: 25268 AegisName: Sticky_Blood Name: Sticky Blood @@ -35554,7 +35558,6 @@ Body: Buy: 10 Flags: BuyingStore: true - DropEffect: CLIENT - Id: 25272 AegisName: IllusoryStone Name: Illusion Gemstone @@ -35585,60 +35588,80 @@ Body: Type: Etc Buy: 348 Weight: 10 + Flags: + BuyingStore: true - Id: 25277 AegisName: DeadlyPoisonPowder Name: Deadly Poison Powder Type: Etc Buy: 644 Weight: 10 + Flags: + BuyingStore: true - Id: 25278 AegisName: BanditsScarf Name: Bandit's Scarf Type: Etc Buy: 330 Weight: 10 + Flags: + BuyingStore: true - Id: 25279 AegisName: CrudeAmmo Name: Crude Ammo Type: Etc Buy: 300 Weight: 10 + Flags: + BuyingStore: true - Id: 25280 AegisName: BrokenShotgun Name: Broken Shotgun Type: Etc Buy: 910 Weight: 10 + Flags: + BuyingStore: true - Id: 25281 AegisName: CrudeScimiter Name: Crude Scimitar Type: Etc Buy: 970 Weight: 10 + Flags: + BuyingStore: true - Id: 25282 AegisName: WornRevolver Name: Worn Revolver Type: Etc Buy: 820 Weight: 10 + Flags: + BuyingStore: true - Id: 25283 AegisName: BrownMuffler Name: Brown Muffler Type: Etc Buy: 420 Weight: 10 + Flags: + BuyingStore: true - Id: 25284 AegisName: SwampBugPeelings Name: Swamp Bug Shell Type: Etc Buy: 230 Weight: 10 + Flags: + BuyingStore: true - Id: 25285 AegisName: BrownRatTail Name: Brown Rat Tail Type: Etc Buy: 210 Weight: 10 + Flags: + BuyingStore: true - Id: 25286 AegisName: Octo_Octo_Fluid Name: Octopus Octopus Liquid @@ -35659,6 +35682,8 @@ Body: AegisName: Sweets_Coin Name: Sweets Festival Coin Type: Etc + Flags: + BuyingStore: true - Id: 25291 AegisName: Fac_Choco Name: Product Chocolate @@ -35708,21 +35733,29 @@ Body: Name: Frozen Stone Fragment Type: Etc Weight: 10 + Flags: + BuyingStore: true - Id: 25298 AegisName: SpritJewel Name: Spirit Jewel Type: Etc Weight: 10 + Flags: + BuyingStore: true - Id: 25299 AegisName: Snowball Name: Snowball Type: Etc Weight: 10 + Flags: + BuyingStore: true - Id: 25300 AegisName: KTULLANUXsEye Name: Ktullanux Eye Type: Etc Weight: 10 + Flags: + BuyingStore: true - Id: 25302 AegisName: DoubleAttack_Stone Name: Double Attack Stone (Garment) @@ -35809,16 +35842,22 @@ Body: Name: Piece of Black Horn Type: Etc Weight: 10 + Flags: + BuyingStore: true - Id: 25312 AegisName: OldDoll Name: Fine Old Doll Type: Etc Weight: 10 + Flags: + BuyingStore: true - Id: 25313 AegisName: OldShell Name: Old Shell Type: Etc Weight: 10 + Flags: + BuyingStore: true - Id: 25314 AegisName: ShipsLog Name: Logbooks @@ -35979,6 +36018,8 @@ Body: AegisName: Mightysoul_Essence Name: Powerful Soul Essence Type: Etc + Flags: + BuyingStore: true - Id: 25376 AegisName: Pet_Coin Name: Cupet Coin @@ -36392,6 +36433,8 @@ Body: Name: World Tour Ticket Type: Etc Buy: 20 + Flags: + BuyingStore: true - Id: 25479 AegisName: Dogly_Bottle Name: Dogly Bottle @@ -37356,6 +37399,7 @@ Body: Type: Etc Weight: 10 Flags: + BuyingStore: true DropEffect: CLIENT - Id: 25729 AegisName: Shadowdecon @@ -37363,6 +37407,7 @@ Body: Type: Etc Weight: 20 Flags: + BuyingStore: true DropEffect: CLIENT - Id: 25730 AegisName: Zelunium_Ore @@ -37370,6 +37415,7 @@ Body: Type: Etc Weight: 10 Flags: + BuyingStore: true DropEffect: CLIENT - Id: 25731 AegisName: Zelunium @@ -37377,6 +37423,7 @@ Body: Type: Etc Weight: 20 Flags: + BuyingStore: true DropEffect: CLIENT - Id: 25733 AegisName: EP17_1_Open_Event @@ -38130,6 +38177,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMaxHPrate,8; @@ -38145,6 +38193,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bSkillAtk,"NC_VULCANARM",10+((getrefine()>=10)*20); @@ -38157,6 +38206,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMaxHPrate,2; @@ -38172,6 +38222,7 @@ Body: Head_Mid: true Head_Top: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bHPrecovRate,25; @@ -38188,6 +38239,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bCriticalAddRace,RC_Formless,30; @@ -38200,6 +38252,7 @@ Body: Locations: Garment: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | if (getrefine()<7) @@ -38220,6 +38273,7 @@ Body: Locations: Both_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bAspdRate,-(1+(BaseLevel>=90)+(BaseLevel>=120)); @@ -38232,6 +38286,7 @@ Body: Locations: Both_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bHit,1+(BaseLevel>=90)+(BaseLevel>=120); @@ -38244,6 +38299,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bAddClass,Class_All,10; @@ -38271,6 +38327,7 @@ Body: Locations: Both_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bVariableCastrate,"MG_FIREBALL",-50; @@ -38284,6 +38341,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bDef,50; @@ -38297,6 +38355,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@r = getrefine(); @@ -38310,6 +38369,7 @@ Body: Locations: Left_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bSubEle,Ele_Fire,20; @@ -38325,6 +38385,7 @@ Body: Head_Mid: true Head_Top: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus3 bAddEff,Eff_Burning,700,ATF_WEAPON|ATF_MAGIC; @@ -38791,6 +38852,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | skill "PA_PRESSURE",4; @@ -38803,6 +38865,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@val = 5; @@ -38820,6 +38883,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bBaseAtk,20; @@ -38833,6 +38897,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMatk,10; @@ -38848,6 +38913,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bBaseAtk,15; @@ -38861,6 +38927,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | if (getiteminfo(getequipid(EQI_COMPOUND_ON), ITEMINFO_VIEW) == W_BOW) { @@ -38878,6 +38945,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMatk,25; @@ -38893,6 +38961,7 @@ Body: Head_Mid: true Head_Top: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bAtkRate,2; @@ -38936,6 +39005,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMatk,20; @@ -38951,6 +39021,7 @@ Body: Head_Mid: true Head_Top: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bResEff,Eff_Burning,10000; @@ -38963,6 +39034,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bBaseAtk,20; @@ -38977,6 +39049,7 @@ Body: Locations: Garment: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | skill "PF_HPCONVERSION",1; @@ -38989,6 +39062,7 @@ Body: Locations: Right_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | skill "HW_NAPALMVULCAN",4; @@ -39001,6 +39075,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | if (BaseJob == Job_Bard || BaseJob == Job_Dancer) { @@ -39015,6 +39090,7 @@ Body: Locations: Right_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bAddEle,Ele_Neutral,20; @@ -39027,6 +39103,7 @@ Body: Locations: Left_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bMagicAddEle,Ele_Neutral,20; @@ -39041,6 +39118,7 @@ Body: Head_Mid: true Head_Top: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bSubEle,Ele_Neutral,10; @@ -39054,6 +39132,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bLongAtkDef,20; @@ -39066,6 +39145,7 @@ Body: Locations: Both_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bAddItemHealRate,11522,50; @@ -39080,6 +39160,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bDef,(5*(1+getrefine())); @@ -39092,6 +39173,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bMagicAtkEle,Ele_Water,(20+(3*getrefine())); @@ -39104,6 +39186,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMaxHPrate,(10+(getrefine()/3)); @@ -39124,6 +39207,7 @@ Body: Head_Mid: true Head_Top: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@r = getrefine(); @@ -39141,6 +39225,7 @@ Body: Locations: Both_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bCritical,3; @@ -39154,6 +39239,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@type = getiteminfo(getequipid(EQI_COMPOUND_ON), ITEMINFO_VIEW); @@ -39172,6 +39258,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMaxHPrate,10; @@ -39195,6 +39282,7 @@ Body: Locations: Left_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bDef,30; @@ -39209,6 +39297,7 @@ Body: Locations: Both_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | skill "PR_STRECOVERY",1; @@ -39221,6 +39310,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@val = 10; @@ -39238,6 +39328,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@val = 3; @@ -39260,6 +39351,7 @@ Body: Head_Mid: true Head_Top: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@val = 10; @@ -39278,6 +39370,7 @@ Body: Head_Mid: true Head_Top: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@val = 10; @@ -39295,6 +39388,7 @@ Body: Locations: Both_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bMagicAtkEle,Ele_Water,20; @@ -39308,6 +39402,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bAddEle,Ele_Wind,40; @@ -39664,6 +39759,7 @@ Body: Locations: Both_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bHit,(BaseLevel >= 90 ? 15 : 5); @@ -39676,6 +39772,7 @@ Body: Locations: Both_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bFlee,(BaseLevel >= 90 ? 20 : 10); @@ -39688,6 +39785,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@type = getiteminfo(getequipid(EQI_COMPOUND_ON), ITEMINFO_VIEW); @@ -39704,6 +39802,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMaxHP,1000; @@ -39721,6 +39820,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bAddEffWhenHit,Eff_Freezing,3000 + (readparam(bInt) >= 110 ? 1000 : 0); @@ -39734,6 +39834,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMaxHPrate,10; @@ -39749,6 +39850,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@r = getrefine(); @@ -39765,6 +39867,7 @@ Body: Locations: Left_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bSubEle,Ele_Wind,30; @@ -39779,6 +39882,7 @@ Body: Head_Mid: true Head_Top: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bMagicAddRace,RC_Demon,(getrefine() >= 9 ? 15 : 10); @@ -39791,6 +39895,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bFlee,getrefine()*2; @@ -39803,6 +39908,7 @@ Body: Locations: Both_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bMagicAtkEle,Ele_Fire,20; @@ -39818,6 +39924,7 @@ Body: Head_Mid: true Head_Top: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bSPDrainValue,5; @@ -39831,6 +39938,7 @@ Body: Locations: Both_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bAgi,-1; @@ -39845,6 +39953,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMaxHPrate,-10; @@ -39860,6 +39969,7 @@ Body: Locations: Both_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bVit,-1; @@ -39874,6 +39984,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@r = getrefine(); @@ -39888,6 +39999,7 @@ Body: Locations: Garment: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bSubEle,Ele_Neutral,15; @@ -39901,6 +40013,7 @@ Body: Locations: Garment: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bHit,10 + 5 * (getrefine()/3); @@ -39913,6 +40026,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@atk = 5; @@ -39935,6 +40049,7 @@ Body: Locations: Left_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bAgi,7; @@ -39948,6 +40063,7 @@ Body: Locations: Right_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bStr,4; @@ -39961,6 +40077,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@bonus = 5; @@ -39985,6 +40102,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@bonus = 10; @@ -40005,6 +40123,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@bonus = 10; @@ -40025,6 +40144,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bAddSize,Size_Small,10; @@ -40038,6 +40158,7 @@ Body: Locations: Garment: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@str = readparam(bStr); @@ -40056,6 +40177,7 @@ Body: Locations: Garment: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@int = readparam(bInt); @@ -40074,6 +40196,7 @@ Body: Locations: Left_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bSubClass,Class_Normal,25; @@ -40087,6 +40210,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bNoCastCancel; @@ -40107,6 +40231,7 @@ Body: Locations: Left_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bBreakWeaponRate,1000; @@ -40120,6 +40245,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@r = getrefine(); @@ -40134,6 +40260,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bBaseAtk,30; @@ -40149,6 +40276,7 @@ Body: Locations: Left_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bBaseAtk,20; @@ -40165,6 +40293,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bBaseAtk,20; @@ -40192,6 +40321,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bMagicAddSize,Size_Small,15; @@ -40204,6 +40334,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bAddSize,Size_Small,15; @@ -40216,6 +40347,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bAddRace,RC_Brute,15; @@ -40229,6 +40361,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bMagicAddRace,RC_Brute,15; @@ -40241,6 +40374,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT - Id: 27201 AegisName: Agnes_Card @@ -40250,6 +40384,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT - Id: 27202 AegisName: Jurgen_Card @@ -40259,6 +40394,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT - Id: 27203 AegisName: Spica_Card @@ -40268,6 +40404,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT - Id: 27209 AegisName: SLD_Q_Scaraba_Card @@ -40277,6 +40414,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bAddMonsterDropItem,12806,30; @@ -40309,6 +40447,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bSplashRange,1; @@ -40326,6 +40465,7 @@ Body: Locations: Left_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | if (getrefine()>=15) { @@ -40342,6 +40482,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | if (getrefine()>=15) { @@ -40364,6 +40505,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | if (getrefine()<15) { @@ -40382,6 +40524,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | if (getrefine()<15) { @@ -40400,6 +40543,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | if (getrefine()<15) { @@ -40418,6 +40562,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | if (getrefine()<15) { @@ -40435,6 +40580,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | if (getrefine()<15) { @@ -40453,6 +40599,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | if (getrefine()<15) { @@ -40475,6 +40622,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | if (getrefine()<15) { @@ -40495,6 +40643,7 @@ Body: Locations: Garment: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | if (getrefine()<15) { @@ -40515,6 +40664,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | if (getrefine()<15) { @@ -40533,6 +40683,7 @@ Body: Locations: Garment: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bSubEle,Ele_Holy,-100; @@ -40561,6 +40712,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | if (getrefine()<15) { @@ -40658,6 +40810,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMatkRate,3; @@ -40672,6 +40825,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bCritAtkRate,3; @@ -40685,6 +40839,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bCritAtkRate,5; @@ -40698,6 +40853,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMatkRate,3; @@ -40712,6 +40868,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bSPrecovRate,10; @@ -40725,6 +40882,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMatkRate,3; @@ -40739,6 +40897,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bAtkRate,3; @@ -40752,6 +40911,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bVariableCastrate,-3; @@ -40768,6 +40928,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bAtkRate,3; @@ -40781,6 +40942,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMatkRate,3; @@ -40795,6 +40957,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bAspdRate,3; @@ -40808,6 +40971,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@rate = 10 + (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_BOOK ? 20 : 0) + (getrefine() >= 14 ? 20 : 0); @@ -40823,6 +40987,7 @@ Body: Locations: Both_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bMagicAtkEle,Ele_Dark,20; @@ -40836,6 +41001,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | autobonus "{ bonus bDef,300; }",20,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; active_transform 1040,10000; }"; @@ -40848,6 +41014,7 @@ Body: Locations: Left_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bSubEle,Ele_Dark,30; @@ -40863,6 +41030,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bAddEle,Ele_Dark,30; @@ -40882,6 +41050,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMatk,5; @@ -40895,6 +41064,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bUseSPrate,10; @@ -40908,6 +41078,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@val = 10; @@ -40925,6 +41096,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMatk,5; @@ -40938,6 +41110,7 @@ Body: Locations: Garment: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@agi = readparam(bAgi); @@ -40957,6 +41130,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bBaseAtk,30; @@ -40970,6 +41144,7 @@ Body: Locations: Garment: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@vit = readparam(bVit); @@ -40989,6 +41164,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMatk,30; @@ -41004,6 +41180,7 @@ Body: Head_Mid: true Head_Top: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@val = 30; @@ -41020,6 +41197,7 @@ Body: Locations: Garment: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@luk = readparam(bLuk); @@ -41038,6 +41216,7 @@ Body: Locations: Garment: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@dex = readparam(bDex); @@ -41057,6 +41236,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bCritical,5; @@ -41070,6 +41250,7 @@ Body: Locations: Left_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@val = 30; @@ -41098,6 +41279,7 @@ Body: Locations: Both_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bHPrecovRate,50; @@ -41110,6 +41292,7 @@ Body: Locations: Both_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus4 bAutoSpell,"WL_HELLINFERNO",3,20,1; @@ -41122,6 +41305,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | if (getiteminfo(getequipid(EQI_COMPOUND_ON), ITEMINFO_VIEW) == W_REVOLVER) { @@ -41141,6 +41325,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | if (getiteminfo(getequipid(EQI_COMPOUND_ON), ITEMINFO_VIEW) == W_GATLING) { @@ -41160,6 +41345,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@r = getrefine(); @@ -41182,6 +41368,7 @@ Body: Head_Mid: true Head_Top: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMatk,10; @@ -41201,6 +41388,7 @@ Body: Head_Mid: true Head_Top: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMatk,10; @@ -41218,6 +41406,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | if (getiteminfo(getequipid(EQI_COMPOUND_ON), ITEMINFO_VIEW) == W_KNUCKLE) { @@ -41238,6 +41427,7 @@ Body: Locations: Both_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bAddRace,RC_Demon,5; @@ -41250,6 +41440,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | if (getiteminfo(getequipid(EQI_COMPOUND_ON), ITEMINFO_VIEW) == W_KATAR) { @@ -41270,6 +41461,7 @@ Body: Locations: Garment: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bAddRace,RC_Brute,15; @@ -41283,6 +41475,7 @@ Body: Locations: Garment: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bMagicAddRace,RC_Brute,15; @@ -41296,6 +41489,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bDef,50; @@ -41309,6 +41503,7 @@ Body: Locations: Both_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bAddRace,RC_Formless,5; @@ -41321,6 +41516,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bCritAtkRate,20; @@ -41334,6 +41530,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bAddEle,Ele_Poison,40; @@ -41346,6 +41543,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@r = getrefine(); @@ -41366,6 +41564,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bAtkRate,10; @@ -41384,6 +41583,7 @@ Body: Locations: Both_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMaxSPrate,5; @@ -41396,6 +41596,7 @@ Body: Locations: Both_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMaxHPrate,5; @@ -41408,6 +41609,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bMagicAtkEle,Ele_Water,15; @@ -41420,6 +41622,7 @@ Body: Locations: Left_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bSubEle,Ele_Fire,30; @@ -41432,6 +41635,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bBaseAtk,100; @@ -41448,6 +41652,7 @@ Body: Head_Mid: true Head_Top: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@r = getrefine(); @@ -41466,6 +41671,7 @@ Body: Head_Mid: true Head_Top: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMaxHP,500; @@ -41490,6 +41696,9 @@ Body: Weight: 10 Locations: Right_Accessory: true + Flags: + BuyingStore: true + DropEffect: CLIENT - Id: 27331 AegisName: S_Kronecker_Card Name: Kronecker G. Heine Card @@ -41499,6 +41708,7 @@ Body: Locations: Right_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bVariableCastrate,-5; @@ -41510,6 +41720,9 @@ Body: Weight: 10 Locations: Left_Accessory: true + Flags: + BuyingStore: true + DropEffect: CLIENT - Id: 27333 AegisName: S_Skia_Card Name: Skia Nerius Card @@ -41519,6 +41732,7 @@ Body: Locations: Left_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bAspdRate,5; @@ -42387,6 +42601,7 @@ Body: Head_Mid: true Head_Low: true Flags: + BuyingStore: true DropEffect: CLIENT - Id: 27394 AegisName: S_Kathryn_Card @@ -42398,6 +42613,7 @@ Body: Head_Mid: true Head_Low: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bVariableCastrate,-5; @@ -42411,6 +42627,7 @@ Body: Head_Mid: true Head_Low: true Flags: + BuyingStore: true DropEffect: CLIENT - Id: 27396 AegisName: S_Issac_Card @@ -42422,6 +42639,7 @@ Body: Head_Mid: true Head_Low: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bDelayrate,-5; @@ -47032,6 +47250,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMaxHP,1000; @@ -47046,6 +47265,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@r = getrefine()/2; @@ -47061,6 +47281,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMaxHP,-1225; @@ -47074,6 +47295,7 @@ Body: Locations: Both_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMaxHPrate,-13; @@ -47087,6 +47309,7 @@ Body: Locations: Both_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMaxHPrate,-13; @@ -47100,6 +47323,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bAspdRate,10; @@ -47113,6 +47337,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMaxSPrate,20; @@ -47126,6 +47351,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMatkRate,10; @@ -47210,6 +47436,7 @@ Body: Weight: 10 Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bAgi,1; - Id: 300001 @@ -48326,6 +48553,9 @@ Body: Weight: 10 Locations: Right_Hand: true + Flags: + BuyingStore: true + DropEffect: CLIENT - Id: 300128 AegisName: S_Wolf_Card Name: Wolf Lugenburg Card @@ -48334,6 +48564,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bAddRace,RC_Insect,15; @@ -48345,6 +48576,9 @@ Body: Weight: 10 Locations: Right_Hand: true + Flags: + BuyingStore: true + DropEffect: CLIENT - Id: 300130 AegisName: S_Poe_Card Name: Poe Richard Card @@ -48352,6 +48586,9 @@ Body: Weight: 10 Locations: Right_Hand: true + Flags: + BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddRace,RC_Plant,15; bonus2 bMagicAddRace,RC_Plant,15; @@ -48869,6 +49106,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bHPrecovRate,100; @@ -48882,6 +49120,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | if (getiteminfo(getequipid(EQI_HAND_R),11) == W_STAFF || getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSTAFF) { @@ -48899,6 +49138,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMaxHPrate,-15; @@ -48912,6 +49152,7 @@ Body: Locations: Both_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bVariableCastrate,-7; @@ -48926,6 +49167,7 @@ Body: Head_Mid: true Head_Low: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMaxHPrate,10; @@ -48945,6 +49187,7 @@ Body: Locations: Right_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bMagicAtkEle,Ele_Poison,30; @@ -48958,6 +49201,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | if (getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSWORD) { @@ -49380,6 +49624,7 @@ Body: Locations: Left_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bMagicAtkEle,Ele_Earth,35; @@ -49392,6 +49637,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bSubEle,Ele_Dark,10; @@ -49404,6 +49650,7 @@ Body: Locations: Garment: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bBaseAtk,5; @@ -49418,6 +49665,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | if (getiteminfo(getequipid(EQI_HAND_R),11) == W_KATAR) { @@ -49431,6 +49679,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@r = getrefine(); @@ -49444,6 +49693,7 @@ Body: Locations: Left_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bMagicAtkEle,Ele_Fire,35; @@ -49456,6 +49706,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bSubEle,Ele_All,-15; @@ -49468,6 +49719,7 @@ Body: Locations: Left_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bMagicAtkEle,Ele_Neutral,35; @@ -49480,6 +49732,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@r = getequiprefinerycnt(EQI_HAND_R); @@ -49500,6 +49753,7 @@ Body: Locations: Left_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bShortAtkRate,6; @@ -49511,6 +49765,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@r = getrefine(); @@ -49524,6 +49779,7 @@ Body: Locations: Left_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bMagicAtkEle,Ele_Wind,35; @@ -49536,6 +49792,7 @@ Body: Locations: Right_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bShortAtkRate,6; @@ -49587,6 +49844,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bMagicAddRace,RC_Angel,75; @@ -49599,6 +49857,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bMagicAddRace,RC_Demon,75; @@ -49620,6 +49879,7 @@ Body: Locations: Left_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bSubRace,RC_Insect,20; @@ -49632,6 +49892,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bAddSize,Size_Small,20; @@ -49657,6 +49918,7 @@ Body: Locations: Left_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bSubRace,RC_Insect,20; @@ -49669,6 +49931,7 @@ Body: Locations: Left_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bIgnoreDefRaceRate,RC_Plant,15; @@ -49681,6 +49944,7 @@ Body: Locations: Left_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMaxSPrate,10; @@ -49695,6 +49959,7 @@ Body: Head_Mid: true Head_Low: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bResEff,Eff_Confusion,10000; @@ -49708,6 +49973,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bIgnoreMdefRaceRate,RC_Brute,15; @@ -49722,6 +49988,7 @@ Body: Head_Mid: true Head_Top: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bMagicAtkEle,Ele_Poison,5; @@ -49737,6 +50004,7 @@ Body: Locations: Left_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bMagicAddRace,RC_Brute,50; @@ -49751,6 +50019,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bBaseAtk,15; @@ -49766,6 +50035,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bBaseAtk,15; @@ -49781,6 +50051,7 @@ Body: Locations: Both_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | if (BaseJob == JOB_NOVICE) { @@ -49795,6 +50066,7 @@ Body: Locations: Both_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | if (BaseJob == JOB_NOVICE) { @@ -49811,6 +50083,7 @@ Body: Head_Mid: true Head_Low: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@r = getrefine(); @@ -49831,6 +50104,7 @@ Body: Head_Mid: true Head_Low: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@r = getrefine(); @@ -49851,6 +50125,7 @@ Body: Head_Mid: true Head_Low: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@r = getrefine(); @@ -49872,6 +50147,7 @@ Body: Head_Mid: true Head_Low: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@r = getrefine(); @@ -49890,6 +50166,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bUseSPrate,50; @@ -49904,6 +50181,7 @@ Body: Locations: Both_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bAddRace,RC_Formless,5; @@ -49918,6 +50196,7 @@ Body: Locations: Both_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bAddRace,RC_Demon,5; @@ -49934,6 +50213,7 @@ Body: Head_Mid: true Head_Low: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMatk,15; @@ -49949,6 +50229,7 @@ Body: Head_Mid: true Head_Low: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMatk,15; @@ -49964,6 +50245,7 @@ Body: Head_Mid: true Head_Low: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMatk,15; @@ -49977,6 +50259,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMaxHPrate,10; @@ -49993,6 +50276,7 @@ Body: Head_Mid: true Head_Low: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMatk,15; @@ -50008,6 +50292,7 @@ Body: Head_Mid: true Head_Low: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMatk,15; @@ -50023,6 +50308,7 @@ Body: Head_Mid: true Head_Low: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMatk,15; @@ -50038,6 +50324,7 @@ Body: Head_Mid: true Head_Low: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMatk,15; @@ -50053,6 +50340,7 @@ Body: Head_Mid: true Head_Low: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMatk,15; @@ -50066,6 +50354,7 @@ Body: Locations: Garment: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMatk,5*(readparam(bInt)/10); @@ -50080,6 +50369,7 @@ Body: Locations: Garment: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bCritical,2*(readparam(bLuk)/10); @@ -50094,6 +50384,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bUseSPrate,50; @@ -50108,6 +50399,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@r = getrefine(); @@ -50126,6 +50418,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@r = getrefine(); @@ -50144,6 +50437,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@r = getrefine(); @@ -50162,6 +50456,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMaxHPrate,15; @@ -50173,6 +50468,7 @@ Body: Locations: Left_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bAspdRate,5; @@ -50188,6 +50484,7 @@ Body: Locations: Right_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bMatkRate,5; @@ -50203,6 +50500,7 @@ Body: Locations: Garment: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bMagicAtkEle,Ele_Ghost,10; @@ -50215,6 +50513,7 @@ Body: Locations: Garment: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bLongAtkRate,10; @@ -50227,6 +50526,7 @@ Body: Locations: Garment: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bShortAtkRate,10; @@ -50239,6 +50539,7 @@ Body: Locations: Garment: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bMagicAtkEle,Ele_Holy,10; @@ -50251,6 +50552,7 @@ Body: Locations: Garment: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bMagicAtkEle,Ele_Neutral,10; @@ -50263,6 +50565,7 @@ Body: Locations: Left_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@r = getrefine(); @@ -50278,6 +50581,7 @@ Body: Locations: Left_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@r = getrefine(); @@ -50293,6 +50597,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bMagicAddRace,RC_Angel,10; @@ -50307,6 +50612,7 @@ Body: Locations: Left_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bShortWeaponDamageReturn,15; @@ -50318,6 +50624,7 @@ Body: Locations: Both_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bCritAtkRate,15; @@ -50329,6 +50636,7 @@ Body: Locations: Right_Hand: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bSkillAtk,"WL_SOULEXPANSION",30; @@ -50340,6 +50648,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bAddRace,RC_Demon,40; @@ -50354,6 +50663,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bUseSPrate,50; @@ -50561,6 +50871,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@r = getrefine(); @@ -50577,6 +50888,7 @@ Body: Locations: Garment: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bSubEle,Ele_Neutral,15; @@ -50589,6 +50901,7 @@ Body: Locations: Both_Accessory: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus2 bMagicAtkEle,Ele_Poison,20; @@ -50601,6 +50914,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@r = getrefine(); @@ -50619,6 +50933,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@r = getrefine(); @@ -50635,6 +50950,7 @@ Body: Locations: Shoes: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bAtkRate,10; @@ -50656,6 +50972,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT - Id: 300308 AegisName: S_Meyer_Card @@ -50666,6 +50983,7 @@ Body: Armor: true Refineable: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | bonus bUseSPrate,10; @@ -50678,6 +50996,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT - Id: 300310 AegisName: S_Helmut_Card @@ -50687,6 +51006,7 @@ Body: Locations: Armor: true Flags: + BuyingStore: true DropEffect: CLIENT Script: | .@r = getrefine(); @@ -52310,8 +52630,6 @@ Body: Name: Glacier Flower Meow Power (Vital) Type: Card SubType: Enchant - Flags: - DropEffect: CLIENT Script: | .@r = getrefine(); bonus bMaxHP,2500; @@ -77643,28 +77961,28 @@ Body: bonus bPerfectHitAddRate,3; - Id: 312911 AegisName: Z_Bijou_MDamage_1 - Name: Intelligence â…  + Name: Intelligence I Type: Card SubType: Enchant Script: | bonus2 bMagicAtkEle,Ele_All,4; - Id: 312912 AegisName: Z_Bijou_MDamage_2 - Name: Intelligence â… I + Name: Intelligence II Type: Card SubType: Enchant Script: | bonus2 bMagicAtkEle,Ele_All,7; - Id: 312913 AegisName: Z_Bijou_MDamage_3 - Name: Intelligence â… II + Name: Intelligence III Type: Card SubType: Enchant Script: | bonus2 bMagicAtkEle,Ele_All,10; - Id: 312914 AegisName: Z_Bijou_MDamage_4 - Name: Intelligence â… V + Name: Intelligence IV Type: Card SubType: Enchant Script: | @@ -79730,6 +80048,8 @@ Body: AegisName: Elite_Hunter_Token Name: Elite Hunter Token Type: Etc + Flags: + BuyingStore: true - Id: 1000243 AegisName: Sin_Shard_A Name: Fragment of Anger @@ -79993,6 +80313,14 @@ Body: AegisName: EpisodClear18 Name: Episode 18 Clear Ticket Type: Etc + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoSell: true + NoMail: true + NoAuction: true + NoGuildStorage: true - Id: 1000289 AegisName: Device_Capsule Name: Device Capsule @@ -80158,6 +80486,7 @@ Body: Weight: 10 Flags: BuyingStore: true + DropEffect: CLIENT - Id: 1000325 AegisName: Etel_Skyblue_Jewel Name: Etel Aquamarine @@ -80165,6 +80494,7 @@ Body: Weight: 10 Flags: BuyingStore: true + DropEffect: CLIENT - Id: 1000326 AegisName: Etel_Topaz Name: Etel Topaz @@ -80172,6 +80502,7 @@ Body: Weight: 10 Flags: BuyingStore: true + DropEffect: CLIENT - Id: 1000327 AegisName: Etel_Violet_Jewel Name: Etel Amethyst @@ -80179,6 +80510,7 @@ Body: Weight: 10 Flags: BuyingStore: true + DropEffect: CLIENT - Id: 1000328 AegisName: Etel_Amber Name: Etel Amber @@ -80186,6 +80518,7 @@ Body: Weight: 10 Flags: BuyingStore: true + DropEffect: CLIENT - Id: 1000331 AegisName: Ethernium Name: Etherium @@ -80256,6 +80589,8 @@ Body: Name: Ymir Fragment Type: Etc Weight: 1 + Flags: + BuyingStore: true - Id: 1000364 AegisName: MD_Airboat_Ore Name: Ymir Ore @@ -80329,11 +80664,15 @@ Body: Name: Meteorite Powder Type: Etc Weight: 1 + Flags: + BuyingStore: true - Id: 1000373 AegisName: Meteorite_Fragment Name: Meteorite Fragment Type: Etc Weight: 10 + Flags: + BuyingStore: true - Id: 1000374 AegisName: Brilliant_Soda Name: Ultra-Low Carbonated Soda @@ -80380,44 +80719,62 @@ Body: AegisName: Naght_Sieger_Soul Name: Naght Sieger Soul Type: Etc + Flags: + BuyingStore: true - Id: 1000397 AegisName: Betelgeuse_Soul Name: Beteleuse Soul Type: Etc + Flags: + BuyingStore: true - Id: 1000398 AegisName: Pow_Meteorite_Dust Name: Power Meteorite Powder Type: Etc Weight: 1 + Flags: + BuyingStore: true - Id: 1000399 AegisName: Sta_Meteorite_Dust Name: Stamina Meteorite Powder Type: Etc Weight: 1 + Flags: + BuyingStore: true - Id: 1000400 AegisName: Con_Meteorite_Dust Name: Agile Meteorite Powder Type: Etc Weight: 1 + Flags: + BuyingStore: true - Id: 1000401 AegisName: Crt_Meteorite_Dust Name: Lucky Meteorite Powder Type: Etc Weight: 1 + Flags: + BuyingStore: true - Id: 1000402 AegisName: Spl_Meteorite_Dust Name: Meteorite Powder of Spell Type: Etc Weight: 1 + Flags: + BuyingStore: true - Id: 1000403 AegisName: Wis_Meteorite_Dust Name: Meteorite Powder of Wisdom Type: Etc Weight: 1 + Flags: + BuyingStore: true - Id: 1000405 AegisName: Ep18_Amethyst_Fragment Name: Amethyst Fragment Type: Etc + Flags: + BuyingStore: true - Id: 1000406 AegisName: Ep18_Very_Ddan_Crystal Name: Very Unusual Crystal @@ -80531,290 +80888,385 @@ Body: Name: Weapon Enhancement Ore(Lower) Type: Etc Flags: + BuyingStore: true DropEffect: CLIENT - Id: 1000420 AegisName: Weapon_Ore_2 Name: Weapon Enhancement Ore(Intermediate) Type: Etc Flags: + BuyingStore: true DropEffect: CLIENT - Id: 1000421 AegisName: Weapon_Ore_3 Name: Weapon Enhancement Ore(High) Type: Etc Flags: + BuyingStore: true DropEffect: CLIENT - Id: 1000422 AegisName: Weapon_Ore_4 Name: Weapon Enhancement Ore(Superior) Type: Etc Flags: + BuyingStore: true DropEffect: CLIENT - Id: 1000423 AegisName: Armor_Ore_1 Name: Armor Enhancement Ore(Lower) Type: Etc Flags: + BuyingStore: true DropEffect: CLIENT - Id: 1000424 AegisName: Armor_Ore_2 Name: Armor Enhancement Ore(Intermediate) Type: Etc Flags: + BuyingStore: true DropEffect: CLIENT - Id: 1000425 AegisName: Armor_Ore_4 Name: Armor Enhancement Ore(Superior) Type: Etc Flags: + BuyingStore: true DropEffect: CLIENT - Id: 1000426 AegisName: Acc_Ore_1 Name: Accessory Enhancement Ore(Lower) Type: Etc Flags: + BuyingStore: true DropEffect: CLIENT - Id: 1000427 AegisName: Acc_Ore_2 Name: Accessory Enhancement Ore(Intermediate) Type: Etc Flags: + BuyingStore: true DropEffect: CLIENT - Id: 1000428 AegisName: Acc_Ore_3 Name: Accessory Enhancement Ore(High) Type: Etc Flags: + BuyingStore: true DropEffect: CLIENT - Id: 1000429 AegisName: Acc_Ore_4 Name: Accessory Enhancement Ore(Superior) Type: Etc Flags: + BuyingStore: true DropEffect: CLIENT - Id: 1000430 AegisName: Weapon_Stone_1 Name: Weapon Upgrade Stone(Lower) Type: Etc Flags: + BuyingStore: true DropEffect: CLIENT - Id: 1000431 AegisName: Weapon_Stone_2 Name: Weapon Upgrade Stone(Intermediate) Type: Etc Flags: + BuyingStore: true DropEffect: CLIENT - Id: 1000432 AegisName: Weapon_Stone_3 Name: Weapon Upgrade Stone(High) Type: Etc Flags: + BuyingStore: true DropEffect: CLIENT - Id: 1000433 AegisName: Weapon_Stone_4 Name: Weapon Upgrade Stone(Superior) Type: Etc Flags: + BuyingStore: true DropEffect: CLIENT - Id: 1000434 AegisName: Armor_Stone_1 Name: Armor Upgrade Stone(Lower) Type: Etc Flags: + BuyingStore: true DropEffect: CLIENT - Id: 1000435 AegisName: Armor_Stone_2 Name: Armor Upgrade Stone(Intermediate) Type: Etc Flags: + BuyingStore: true DropEffect: CLIENT - Id: 1000436 AegisName: Armor_Stone_3 Name: Armor Upgrade Stone(High) Type: Etc Flags: + BuyingStore: true DropEffect: CLIENT - Id: 1000437 AegisName: Armor_Stone_4 Name: Armor Upgrade Stone(Superior) Type: Etc Flags: + BuyingStore: true DropEffect: CLIENT - Id: 1000438 AegisName: Acc_Stone_1 Name: Accessory Upgrade Stone(Lower) Type: Etc Flags: + BuyingStore: true DropEffect: CLIENT - Id: 1000439 AegisName: Acc_Stone_2 Name: Accessory Upgrade Stone(Intermediate) Type: Etc Flags: + BuyingStore: true DropEffect: CLIENT - Id: 1000440 AegisName: Acc_Stone_3 Name: Accessory Upgrade Stone(High) Type: Etc Flags: + BuyingStore: true DropEffect: CLIENT - Id: 1000441 AegisName: Acc_Stone_4 Name: Accessory Upgrade Stone(Superior) Type: Etc Flags: + BuyingStore: true DropEffect: CLIENT - Id: 1000442 AegisName: Pow_Meteorite_Fragment Name: Power Meteorite Fragment Type: Etc Weight: 1 + Flags: + BuyingStore: true - Id: 1000443 AegisName: Sta_Meteorite_Fragment Name: Stamina Meteorite Fragment Type: Etc Weight: 1 + Flags: + BuyingStore: true - Id: 1000444 AegisName: Con_Meteorite_Fragment Name: Agile Meteorite Fragment Type: Etc Weight: 1 + Flags: + BuyingStore: true - Id: 1000445 AegisName: Crt_Meteorite_Fragment Name: Lucky Meteorite Fragment Type: Etc Weight: 1 + Flags: + BuyingStore: true - Id: 1000446 AegisName: Spl_Meteorite_Fragment Name: Meteorite Fragment of Spell Type: Etc Weight: 1 + Flags: + BuyingStore: true - Id: 1000447 AegisName: Wis_Meteorite_Fragment Name: Meteorite Fragment of Wisdom Type: Etc Weight: 1 + Flags: + BuyingStore: true - Id: 1000471 AegisName: Vila_Basement_Key Name: Villa Basement Key Type: Etc Weight: 10 + Flags: + BuyingStore: true - Id: 1000475 AegisName: Conse_F_T_Sword Name: Fides Two-Handed Sword Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000476 AegisName: Conse_F_Lance Name: Fides Lance Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000477 AegisName: Conse_F_G_Sword Name: Fides Guardian Sword Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000478 AegisName: Conse_F_G_Spear Name: Fides Guardian Spear Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000479 AegisName: Conse_F_Axe Name: Fides Axe Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000480 AegisName: Conse_F_Mace Name: Fides Mace Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000481 AegisName: Conse_F_Lapier Name: Fides Rapier Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000482 AegisName: Conse_F_Hall Name: Fides Hall Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000483 AegisName: Conse_F_Cakram Name: Fides Chakram Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000484 AegisName: Conse_F_Katar Name: Fides Katar Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000485 AegisName: Conse_F_Dagger Name: Fides Dagger Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000486 AegisName: Conse_F_C_Bow Name: Fides Crossbow Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000487 AegisName: Conse_F_T_Staff Name: Fides Two-Handed Staff Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000488 AegisName: Conse_F_Rod Name: Fides Rod Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000489 AegisName: Conse_F_M_Book Name: Fides Magic Book Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000490 AegisName: Conse_F_P_Book Name: Fides Poison Book Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000491 AegisName: Conse_F_Bible Name: Fides Bible Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000492 AegisName: Conse_F_Wand Name: Fides Wand Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000493 AegisName: Conse_F_Knuckle Name: Fides Knuckle Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000494 AegisName: Conse_F_Claw Name: Fides Claw Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000495 AegisName: Conse_F_Ballista Name: Fides Ballista Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000496 AegisName: Conse_F_A_Bow Name: Fides Aiming Bow Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000497 AegisName: Conse_F_Violin Name: Fides Violin Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000498 AegisName: Conse_F_C_Rope Name: Fides Chain Rope Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000499 AegisName: Conse_F_Harp Name: Fides Harp Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000500 AegisName: Conse_F_Ribbon Name: Fides Ribbon Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000501 AegisName: Purificatory_Holy_O Name: Holy Oil of Purification Type: Etc + Flags: + BuyingStore: true - Id: 1000502 AegisName: Purificatory_Holy_W Name: Holy Water of Purification Type: Etc + Flags: + BuyingStore: true - Id: 1000503 AegisName: Sanctuary_Sudarium Name: Sabbatical Handkerchief Type: Etc + Flags: + BuyingStore: true - Id: 1000504 AegisName: Dry_Sand Name: Dry Sand @@ -80958,6 +81410,8 @@ Body: Name: Evil Water Type: Etc Weight: 10 + Flags: + BuyingStore: true - Id: 1000563 AegisName: Soa_Charm Name: Soa Charm @@ -81003,10 +81457,26 @@ Body: AegisName: Noodle_Fes_Ticket Name: Noodle Festival Development Fund Certificate Type: Etc + Trade: + NoDrop: true + NoTrade: true + NoStorage: true + NoCart: true + NoMail: true + NoAuction: true + NoGuildStorage: true - Id: 1000571 AegisName: E_Star_Button Name: Is it a star button?! Type: Etc + Trade: + NoDrop: true + NoTrade: true + NoStorage: true + NoCart: true + NoMail: true + NoAuction: true + NoGuildStorage: true - Id: 1000604 AegisName: Ep19_Juncea_Tube Name: Juncea Test Tube @@ -81067,6 +81537,8 @@ Body: AegisName: Mad_Bunny_Ticket Name: Mad Bunny-LT Enchantment Ticket Type: Etc + Flags: + BuyingStore: true - Id: 1000610 AegisName: RuneknightStone_Top3 Name: Rune Knight Stone (Upper) @@ -81124,12 +81596,21 @@ Body: AegisName: 19th_Anniv_Invitation Name: 19th Anniversary Thank You Letter Type: Etc + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoSell: true + NoMail: true + NoAuction: true + NoGuildStorage: true - Id: 1000636 AegisName: Plain_Barmund_Rune Name: Glade Rune Fragment Type: Etc Weight: 1 Flags: + BuyingStore: true DropEffect: CLIENT - Id: 1000637 AegisName: Flame_Barmund_Rune @@ -81137,6 +81618,7 @@ Body: Type: Etc Weight: 1 Flags: + BuyingStore: true DropEffect: CLIENT - Id: 1000638 AegisName: Ice_Barmund_Rune @@ -81144,6 +81626,7 @@ Body: Type: Etc Weight: 1 Flags: + BuyingStore: true DropEffect: CLIENT - Id: 1000639 AegisName: Death_Barmund_Rune @@ -81151,6 +81634,7 @@ Body: Type: Etc Weight: 1 Flags: + BuyingStore: true DropEffect: CLIENT - Id: 1000640 AegisName: Plain_Barmund_Rune2 @@ -81158,6 +81642,7 @@ Body: Type: Etc Weight: 10 Flags: + BuyingStore: true DropEffect: CLIENT - Id: 1000641 AegisName: Flame_Barmund_Rune2 @@ -81165,6 +81650,7 @@ Body: Type: Etc Weight: 10 Flags: + BuyingStore: true DropEffect: CLIENT - Id: 1000642 AegisName: Ice_Barmund_Rune2 @@ -81172,6 +81658,7 @@ Body: Type: Etc Weight: 10 Flags: + BuyingStore: true DropEffect: CLIENT - Id: 1000643 AegisName: Death_Barmund_Rune2 @@ -81179,6 +81666,7 @@ Body: Type: Etc Weight: 10 Flags: + BuyingStore: true DropEffect: CLIENT - Id: 1000644 AegisName: Evt_RagFes_Stamp @@ -81196,10 +81684,20 @@ Body: AegisName: Hero_Enchant_Ticket Name: Hero's Enchantment Ticket Type: Etc + Flags: + BuyingStore: true - Id: 1000657 AegisName: Evt_Soul_Skein Name: Soul Thread Type: Etc + Trade: + NoDrop: true + NoTrade: true + NoStorage: true + NoCart: true + NoMail: true + NoAuction: true + NoGuildStorage: true - Id: 1000666 AegisName: WanderMinsStone_Top3 Name: Wander Mins Stone (Upper) @@ -81260,12 +81758,14 @@ Body: Name: Lead Type: Etc Flags: + BuyingStore: true DropEffect: CLIENT - Id: 1000681 AegisName: ClockTower_Gear Name: Clock Gear Type: Etc Flags: + BuyingStore: true DropEffect: CLIENT - Id: 1000682 AegisName: ClockTower_key @@ -81279,54 +81779,80 @@ Body: AegisName: Conse_F_Humma Name: Fides Huuma Shuriken Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000686 AegisName: Conse_F_C_Humma Name: Fides Cross-Shaped Huuma Shuriken Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000687 AegisName: Conse_F_Revolver Name: Fides Revolver Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000688 AegisName: Conse_F_Shotgun Name: Fides Shotgun Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000689 AegisName: Conse_F_Rifle Name: Fides Rifle Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000690 AegisName: Conse_F_Gatling Name: Fides Gatling Gun Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000691 AegisName: Conse_F_Launcher Name: Fides Launcher Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000692 AegisName: Conse_F_Moon_B Name: Fides Moon Book Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000693 AegisName: Conse_F_Star_B Name: Fides Stardust Book Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000694 AegisName: Conse_F_S_Stick Name: Fides Soul Stick Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000695 AegisName: Conse_F_D_Wand Name: Fides Dark Wand Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000696 AegisName: Conse_F_F_Wand Name: Fides Foxtail Wand Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000697 AegisName: Conse_F_F_model Name: Fides Foxtail Model Blueprint Type: Etc + Flags: + BuyingStore: true - Id: 1000705 AegisName: Ep19_Rgan_Core Name: Rgan Magic Core @@ -81789,28 +82315,24 @@ Body: Weight: 1 Flags: BuyingStore: true - DropEffect: CLIENT - Id: 1000812 AegisName: Snow_F_Stone1 Name: Snowflower Gem Weight: 1 Flags: BuyingStore: true - DropEffect: CLIENT - Id: 1000813 AegisName: Snow_F_Stone2 Name: Shining Snowflower Gem Weight: 1 Flags: BuyingStore: true - DropEffect: CLIENT - Id: 1000814 AegisName: Snow_F_Stone3 Name: Brilliant Snowflower Gem Weight: 1 Flags: BuyingStore: true - DropEffect: CLIENT - Id: 1000822 AegisName: EP19_Shell_Of_Rgan Name: Rgan Shell @@ -81903,10 +82425,14 @@ Body: AegisName: EP19_Luminant Name: Mysterious Luminant Weight: 10 + Flags: + BuyingStore: true - Id: 1000834 AegisName: EP19_Sharp_Bone Name: Long Sharp Bone Weight: 10 + Flags: + BuyingStore: true - Id: 1000842 AegisName: Ep19_HS_FEELER Name: High-sensitivity Feeler @@ -82259,6 +82785,8 @@ Body: AegisName: VR_Reading_Card Name: Fantasy Book Completion Card Type: Etc + Flags: + BuyingStore: true - Id: 1000926 AegisName: VR_Navi_Sticker Name: Butterfly Sticker @@ -82690,6 +83218,14 @@ Body: Name: Fresh CREAM # !todo check english name Type: Etc Weight: 10 + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoSell: true + NoMail: true + NoAuction: true + NoGuildStorage: true - Id: 1001023 AegisName: aegis_1001023 Name: "[Event] Shard of Infinity Star" diff --git a/db/re/item_db_usable.yml b/db/re/item_db_usable.yml index 77ff7d8b31..bacd7a75f0 100644 --- a/db/re/item_db_usable.yml +++ b/db/re/item_db_usable.yml @@ -4656,6 +4656,8 @@ Body: Name: Lotto Box 01 Type: Usable Weight: 20 + Flags: + Container: true Script: | getrandgroupitem(IG_LottoBox1,1); - Id: 12036 @@ -4663,6 +4665,8 @@ Body: Name: Lotto Box 02 Type: Usable Weight: 20 + Flags: + Container: true Script: | getrandgroupitem(IG_LottoBox2,1); - Id: 12037 @@ -4670,6 +4674,8 @@ Body: Name: Lotto Box 03 Type: Usable Weight: 20 + Flags: + Container: true Script: | getrandgroupitem(IG_LottoBox3,1); - Id: 12038 @@ -4686,6 +4692,8 @@ Body: Name: Lotto Box 05 Type: Usable Weight: 20 + Flags: + Container: true Script: | getrandgroupitem(IG_LottoBox5,1); - Id: 12040 @@ -7738,6 +7746,8 @@ Body: Name: PC-Room Coin Box Type: Usable Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -7754,6 +7764,8 @@ Body: Name: PC-Room Coin Box Type: Usable Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -7788,6 +7800,8 @@ Body: Name: PC-Room Coin Box Type: Usable Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -8050,6 +8064,8 @@ Body: Name: Adventurer Returns Support Box Type: Usable Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -10618,6 +10634,7 @@ Body: Weight: 100 Flags: BuyingStore: true + Container: true Script: | getgroupitem(IG_Splendid_Box); - Id: 12540 @@ -10755,6 +10772,8 @@ Body: AegisName: Poison_Bottle_Box2 Name: Deadly Poison Box Type: Usable + Flags: + BuyingStore: true Script: | getitem 678,30; - Id: 12551 @@ -11445,6 +11464,7 @@ Body: Weight: 100 Flags: BuyingStore: true + Container: true Script: | getgroupitem(IG_Old_Ore_Box); - Id: 12610 @@ -11870,6 +11890,8 @@ Body: Type: Usable Buy: 20 Weight: 30 + Flags: + Container: true Script: | getgroupitem(IG_Ink_Ball); - Id: 12648 @@ -12251,6 +12273,8 @@ Body: Type: Usable Buy: 20 Weight: 500 + Flags: + Container: true Script: | getgroupitem(IG_God_Material_Box); - Id: 12675 @@ -13116,6 +13140,14 @@ Body: Name: Chinese Pastel Type: Usable Weight: 10 + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoSell: true + NoMail: true + NoAuction: true + NoGuildStorage: true Script: | percentheal 50,50; - Id: 12755 @@ -13759,6 +13791,8 @@ Body: Name: Old Card Album Type: Usable EquipLevelMin: 80 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -13776,6 +13810,8 @@ Body: Name: High Weapon Box Type: Usable EquipLevelMin: 100 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -14069,6 +14105,12 @@ Body: Name: Falcon Flute Type: DelayConsume Weight: 10 + Trade: + NoDrop: true + NoTrade: true + NoCart: true + NoMail: true + NoAuction: true Script: | if (getskilllv("HT_FALCON")) { if (!checkoption(Option_Wug) && !checkoption(Option_Wugrider)) @@ -19495,6 +19537,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -19549,6 +19592,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -19567,6 +19611,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -21387,6 +21432,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -21405,6 +21451,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -21603,6 +21650,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -21765,6 +21813,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -21783,6 +21832,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -21801,6 +21851,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -22027,6 +22078,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -22045,6 +22097,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -22677,6 +22730,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -22695,6 +22749,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -22713,6 +22768,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -22954,6 +23010,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -22972,6 +23029,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -22990,6 +23048,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -23008,6 +23067,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -23026,6 +23086,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -23277,6 +23338,7 @@ Body: Type: Cash Buy: 20 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -23643,6 +23705,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -23661,6 +23724,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -23679,6 +23743,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -23841,6 +23906,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -23859,6 +23925,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -23877,6 +23944,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -23895,6 +23963,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -23913,6 +23982,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -23931,6 +24001,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -24129,6 +24200,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -24147,6 +24219,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -24165,6 +24238,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -24291,6 +24365,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -24309,6 +24384,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -24346,6 +24422,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -24364,6 +24441,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -24382,6 +24460,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -24400,6 +24479,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -24418,6 +24498,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -24436,6 +24517,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -24598,6 +24680,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -24724,6 +24807,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -24742,6 +24826,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -24760,6 +24845,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -24778,6 +24864,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -24796,6 +24883,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -24814,6 +24902,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -24832,6 +24921,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -24850,6 +24940,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -24868,6 +24959,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -24886,6 +24978,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -24904,6 +24997,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -24922,6 +25016,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -25340,6 +25435,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -25358,6 +25454,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -25376,6 +25473,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -25394,6 +25492,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -25412,6 +25511,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -25430,6 +25530,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -25448,6 +25549,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -25484,6 +25586,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -25502,6 +25605,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -25520,6 +25624,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -25538,6 +25643,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -25556,6 +25662,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -25592,6 +25699,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -25844,6 +25952,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -25862,6 +25971,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -25880,6 +25990,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -25898,6 +26009,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -26168,6 +26280,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -26186,6 +26299,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -26204,6 +26318,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -26222,6 +26337,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -26240,6 +26356,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -26258,6 +26375,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -26276,6 +26394,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -26294,6 +26413,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -26312,6 +26432,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -26330,6 +26451,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -26348,6 +26470,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -26366,6 +26489,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -26384,6 +26508,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -26402,6 +26527,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -26420,6 +26546,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -26438,6 +26565,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -26456,6 +26584,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -26474,6 +26603,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -26492,6 +26622,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27248,6 +27379,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27266,6 +27398,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27284,6 +27417,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27302,6 +27436,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27320,6 +27455,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27338,6 +27474,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27356,6 +27493,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27374,6 +27512,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27392,6 +27531,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27410,6 +27550,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27428,6 +27569,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27446,6 +27588,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27464,6 +27607,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27482,6 +27626,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27500,6 +27645,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27518,6 +27664,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27536,6 +27683,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27554,6 +27702,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27572,6 +27721,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27590,6 +27740,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27608,6 +27759,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27626,6 +27778,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27644,6 +27797,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27662,6 +27816,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27680,6 +27835,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27698,6 +27854,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27716,6 +27873,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27734,6 +27892,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27752,6 +27911,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27770,6 +27930,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27788,6 +27949,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27842,6 +28004,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27860,6 +28023,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27878,6 +28042,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27896,6 +28061,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27914,6 +28080,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27932,6 +28099,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27950,6 +28118,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -27968,6 +28137,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -28256,6 +28426,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -28760,6 +28931,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -28778,6 +28950,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -29264,6 +29437,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -29282,6 +29456,7 @@ Body: Buy: 20 Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -30887,6 +31062,8 @@ Body: Buy: 20 Weight: 10 EquipLevelMin: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -30904,6 +31081,8 @@ Body: Buy: 20 Weight: 10 EquipLevelMin: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -30921,6 +31100,8 @@ Body: Buy: 20 Weight: 10 EquipLevelMin: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -30938,6 +31119,8 @@ Body: Buy: 20 Weight: 10 EquipLevelMin: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -30955,6 +31138,8 @@ Body: Buy: 20 Weight: 10 EquipLevelMin: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -30972,6 +31157,8 @@ Body: Buy: 20 Weight: 10 EquipLevelMin: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -30989,6 +31176,8 @@ Body: Buy: 20 Weight: 10 EquipLevelMin: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -31006,6 +31195,8 @@ Body: Buy: 20 Weight: 10 EquipLevelMin: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -31023,6 +31214,8 @@ Body: Buy: 20 Weight: 10 EquipLevelMin: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -31040,6 +31233,8 @@ Body: Buy: 20 Weight: 10 EquipLevelMin: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -31057,6 +31252,8 @@ Body: Buy: 20 Weight: 10 EquipLevelMin: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -31547,6 +31744,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -31563,6 +31762,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -31579,6 +31780,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -31595,6 +31798,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -31611,6 +31816,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -31627,6 +31834,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -31643,6 +31852,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -31659,6 +31870,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -31675,6 +31888,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -31691,6 +31906,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -31743,6 +31960,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -31759,6 +31978,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -31775,6 +31996,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -31791,6 +32014,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -31807,6 +32032,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -31823,6 +32050,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -31839,6 +32068,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -31855,6 +32086,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -31871,6 +32104,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -31887,6 +32122,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -32280,6 +32517,8 @@ Body: Type: Cash Buy: 10 Weight: 2000 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -32296,6 +32535,8 @@ Body: Type: Cash Buy: 10 Weight: 2000 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -34804,6 +35045,8 @@ Body: Type: Usable Buy: 10 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -35151,6 +35394,8 @@ Body: Name: Soul Plunger Scroll Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -35166,6 +35411,8 @@ Body: Name: Happy Balloon Scroll Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -35571,6 +35818,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -35587,6 +35836,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -35603,6 +35854,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -35619,6 +35872,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -35635,6 +35890,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -35651,6 +35908,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -35667,6 +35926,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -35683,6 +35944,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -35699,6 +35962,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -35715,6 +35980,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -35731,6 +35998,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -35747,6 +36016,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -35763,6 +36034,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -35779,6 +36052,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -35795,6 +36070,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -35811,6 +36088,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -35827,6 +36106,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -35843,6 +36124,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -35859,6 +36142,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -35875,6 +36160,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -35891,6 +36178,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -35907,6 +36196,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -35923,6 +36214,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -35939,6 +36232,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -35955,6 +36250,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -35971,6 +36268,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -35987,6 +36286,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -36003,6 +36304,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -36019,6 +36322,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -36035,6 +36340,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -36051,6 +36358,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -36193,6 +36502,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -36271,6 +36582,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -36287,6 +36600,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -36303,6 +36618,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -36319,6 +36636,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -36335,6 +36654,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -36351,6 +36672,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -36721,6 +37044,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -36737,6 +37062,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true Script: | @@ -36939,6 +37266,8 @@ Body: Buy: 20 Weight: 10 EquipLevelMin: 50 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -36956,6 +37285,8 @@ Body: Buy: 20 Weight: 10 EquipLevelMin: 35 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -36972,6 +37303,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -36988,6 +37321,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -37004,6 +37339,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -37020,6 +37357,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -37036,6 +37375,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -37052,6 +37393,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -37068,6 +37411,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -37084,6 +37429,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -37100,6 +37447,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -37116,6 +37465,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -37132,6 +37483,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -37149,6 +37502,8 @@ Body: Buy: 20 Weight: 10 EquipLevelMin: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -37166,6 +37521,8 @@ Body: Buy: 20 Weight: 10 EquipLevelMin: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -37183,6 +37540,8 @@ Body: Buy: 20 Weight: 10 EquipLevelMin: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -37200,6 +37559,8 @@ Body: Buy: 20 Weight: 10 EquipLevelMin: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -37217,6 +37578,8 @@ Body: Buy: 20 Weight: 10 EquipLevelMin: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -37233,6 +37596,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -37249,6 +37614,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -37265,6 +37632,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -37281,6 +37650,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -37297,6 +37668,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -37313,6 +37686,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -37329,6 +37704,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -37345,6 +37722,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -37361,6 +37740,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -37377,6 +37758,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -37393,6 +37776,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -37409,6 +37794,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -37425,6 +37812,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -37441,6 +37830,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -37457,6 +37848,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -38163,6 +38556,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -38179,6 +38574,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -38195,6 +38592,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -38211,6 +38610,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -38227,6 +38628,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -38243,6 +38646,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -38259,6 +38664,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -38275,6 +38682,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -38291,6 +38700,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -38307,6 +38718,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -38323,6 +38736,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -38339,6 +38754,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Script: | getgroupitem(IG_7TH_ANNI_RANDOM_BOX); - Id: 16360 @@ -38433,6 +38850,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -38449,6 +38868,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -38493,6 +38914,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -38528,6 +38951,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -38662,6 +39087,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -38678,6 +39105,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -38732,6 +39161,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -38748,6 +39179,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -38924,6 +39357,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -38940,6 +39375,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -39138,6 +39575,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -39154,6 +39593,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -39170,6 +39611,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -39186,6 +39629,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -39378,6 +39823,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -39394,6 +39841,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -39410,6 +39859,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -39426,6 +39877,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -39473,6 +39926,8 @@ Body: Name: Bunny Band Box Type: Cash Weight: 10 + Flags: + Container: true Script: | getgroupitem(IG_E_BUNNY_BAND_BOX); - Id: 16503 @@ -39940,6 +40395,8 @@ Body: Type: Usable Buy: 20 Weight: 10 + Flags: + Container: true Script: | getgroupitem(IG_THOUGHTFUL_HAT_BOX); - Id: 16589 @@ -39948,6 +40405,8 @@ Body: Type: Usable Buy: 20 Weight: 10 + Flags: + Container: true Script: | getgroupitem(IG_F_THOUGHTFUL_HAT_BOX); - Id: 16590 @@ -39956,6 +40415,8 @@ Body: Type: Usable Buy: 20 Weight: 10 + Flags: + Container: true Script: | getgroupitem(IG_E_THOUGHTFUL_HAT_BOX); - Id: 16591 @@ -39964,6 +40425,8 @@ Body: Type: Cash Buy: 20 Weight: 100 + Flags: + Container: true Script: | getgroupitem(IG_SUMMER_SCROLL2); - Id: 16598 @@ -39990,6 +40453,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -40109,6 +40574,8 @@ Body: Buy: 20 Weight: 10 EquipLevelMin: 47 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -40126,6 +40593,8 @@ Body: Buy: 20 Weight: 10 EquipLevelMin: 47 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -40179,6 +40648,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -40195,6 +40666,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -40211,6 +40684,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -40227,6 +40702,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -40297,6 +40774,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -40313,6 +40792,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -40329,6 +40810,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -40345,6 +40828,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -40361,6 +40846,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -40377,6 +40864,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -40393,6 +40882,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -40409,6 +40900,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -40425,6 +40918,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -41543,6 +42038,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -41735,6 +42232,8 @@ Body: Type: Cash Sell: 10 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -41817,6 +42316,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -41833,6 +42334,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -41897,6 +42400,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -41945,6 +42450,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -41979,6 +42486,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -41995,6 +42504,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42011,6 +42522,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42027,6 +42540,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42043,6 +42558,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42059,6 +42576,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42075,6 +42594,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42091,6 +42612,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42107,6 +42630,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42123,6 +42648,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42139,6 +42666,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42155,6 +42684,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42171,6 +42702,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42187,6 +42720,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42203,6 +42738,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42237,6 +42774,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42253,6 +42792,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42269,6 +42810,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42285,6 +42828,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42302,6 +42847,8 @@ Body: Buy: 20 Weight: 10 EquipLevelMin: 50 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42319,6 +42866,8 @@ Body: Buy: 20 Weight: 10 EquipLevelMin: 35 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42335,6 +42884,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42351,6 +42902,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42367,6 +42920,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42383,6 +42938,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42399,6 +42956,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42415,6 +42974,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42431,6 +42992,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42447,6 +43010,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42463,6 +43028,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42479,6 +43046,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42495,6 +43064,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42511,6 +43082,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42527,6 +43100,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42543,6 +43118,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42559,6 +43136,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42575,6 +43154,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42591,6 +43172,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42607,6 +43190,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42623,6 +43208,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42639,6 +43226,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42655,6 +43244,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42671,6 +43262,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42687,6 +43280,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42703,6 +43298,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42719,6 +43316,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42735,6 +43334,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42751,6 +43352,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42767,6 +43370,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42783,6 +43388,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42799,6 +43406,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42815,6 +43424,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42831,6 +43442,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42847,6 +43460,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42863,6 +43478,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42879,6 +43496,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42895,6 +43514,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42911,6 +43532,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42927,6 +43550,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42943,6 +43568,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42959,6 +43586,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42975,6 +43604,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -42991,6 +43622,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -43007,6 +43640,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -43023,6 +43658,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -43039,6 +43676,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -43055,6 +43694,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -43071,6 +43712,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -43087,6 +43730,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -43103,6 +43748,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -43119,6 +43766,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -43135,6 +43784,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -43151,6 +43802,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -43167,6 +43820,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -44915,6 +45570,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -44931,6 +45588,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true Script: | @@ -44971,6 +45630,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -45064,6 +45725,7 @@ Body: Type: Cash Weight: 10 Flags: + Container: true UniqueId: true Trade: NoDrop: true @@ -45081,6 +45743,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -45108,6 +45772,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -45124,6 +45790,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -45140,6 +45808,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -45156,6 +45826,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -45172,6 +45844,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -45206,6 +45880,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -45222,6 +45898,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -45238,6 +45916,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -45270,6 +45950,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -45285,6 +45967,8 @@ Body: Name: RG Red Potion Box Type: Cash Weight: 400 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -45300,6 +45984,8 @@ Body: Name: RG Blue Potion Box Type: Cash Weight: 900 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -45315,6 +46001,8 @@ Body: Name: RG Golden Apple Slice Box Type: Cash Weight: 3000 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -45330,6 +46018,8 @@ Body: Name: RG Golden Apple Box Type: Cash Weight: 3000 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -45345,6 +46035,8 @@ Body: Name: RG Golden Potion Box Type: Cash Weight: 300 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -45388,6 +46080,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -45403,6 +46097,8 @@ Body: Name: Battle Manual Limit Box Type: Cash Buy: 20 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -46040,6 +46736,8 @@ Body: Type: Cash Buy: 10 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -46074,6 +46772,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -46161,6 +46861,8 @@ Body: Name: Customization Box Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -46209,6 +46911,8 @@ Body: Type: Cash Buy: 10 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -46225,6 +46929,8 @@ Body: Type: Cash Buy: 10 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -46241,6 +46947,8 @@ Body: Type: Cash Buy: 10 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -46257,6 +46965,8 @@ Body: Type: Cash Buy: 10 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -46273,6 +46983,8 @@ Body: Type: Cash Buy: 10 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -46499,6 +47211,8 @@ Body: Type: Cash Buy: 10 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -46515,6 +47229,8 @@ Body: Type: Cash Buy: 10 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -47101,6 +47817,8 @@ Body: Type: Cash Buy: 10 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -47117,6 +47835,8 @@ Body: Type: Cash Buy: 10 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -47273,6 +47993,8 @@ Body: Type: Cash Buy: 10 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -47289,6 +48011,8 @@ Body: Type: Cash Buy: 10 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -47339,6 +48063,8 @@ Body: Type: Cash Buy: 10 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -47355,6 +48081,8 @@ Body: Type: Cash Buy: 10 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -47408,6 +48136,8 @@ Body: Type: Cash Buy: 10 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -47424,6 +48154,8 @@ Body: Type: Cash Buy: 10 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -47513,6 +48245,8 @@ Body: Type: Cash Buy: 10 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -47529,6 +48263,8 @@ Body: Type: Cash Buy: 10 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48105,6 +48841,8 @@ Body: Type: Usable Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48121,6 +48859,8 @@ Body: Type: Usable Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48146,6 +48886,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48162,6 +48904,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48178,6 +48922,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48194,6 +48940,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48210,6 +48958,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48226,6 +48976,8 @@ Body: Type: Cash Buy: 20 Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48250,6 +49002,8 @@ Body: Name: Smelting Ore Box X Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48265,6 +49019,8 @@ Body: Name: Smelting Ore Box X (10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48289,6 +49045,8 @@ Body: Name: Edward Zonda Service Box Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48304,6 +49062,8 @@ Body: Name: Elysee Zonda Owner EX Box Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48319,6 +49079,8 @@ Body: Name: Cheer Up Package V Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48334,6 +49096,8 @@ Body: Name: Cheer Up Package V (10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48358,6 +49122,8 @@ Body: Name: Endless Greed Scroll Box (1h) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48373,6 +49139,8 @@ Body: Name: Infinite Cat's Hand Ticket Box(1 day) Type: Cash Weight: 10 + Flags: + Container: true Script: | getgroupitem(IG_C_CATPAW_1DAY_BOX); - Id: 17601 @@ -48380,6 +49148,8 @@ Body: Name: Unlimited Box IV Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48395,6 +49165,8 @@ Body: Name: Unlimited Box IV (10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48419,6 +49191,8 @@ Body: Name: Infinite Giant Fly Wing Box 1Day Type: Cash Weight: 10 + Flags: + Container: true Script: | getgroupitem(IG_C_GIANT_FLY_1DAY_BOX); - Id: 17609 @@ -48426,6 +49200,8 @@ Body: Name: Refine Ore Box XI Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48441,6 +49217,8 @@ Body: Name: Refine Ore Box XI(10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48465,6 +49243,8 @@ Body: Name: Three Master Package VII Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48480,6 +49260,8 @@ Body: Name: Three Master Package VII (10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48504,6 +49286,8 @@ Body: Name: Almighty Plus Box Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48519,6 +49303,8 @@ Body: Name: Almighty Plus Box(10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48543,6 +49329,8 @@ Body: Name: Limited Power Booster Box 2 Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48558,6 +49346,8 @@ Body: Name: Limited Power Booster Box 2 (100) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48573,6 +49363,8 @@ Body: Name: Halter Lead Box Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48605,6 +49397,8 @@ Body: Name: Refining Ore Box XII Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48620,6 +49414,8 @@ Body: Name: Refining Ore Box XII (10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48652,6 +49448,8 @@ Body: Name: Cheer Up Plus Package Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48667,6 +49465,8 @@ Body: Name: Cheer Up Plus Package (10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48699,6 +49499,8 @@ Body: Name: Three Master Package VIII Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48714,6 +49516,8 @@ Body: Name: Three Master Package VIII (10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48746,6 +49550,8 @@ Body: Name: Unlimited Box V Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48761,6 +49567,8 @@ Body: Name: Ultimate Box V (10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48793,6 +49601,8 @@ Body: Name: Refining Ore Box XIII Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48808,6 +49618,8 @@ Body: Name: Refining Ore Box XIII (10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48823,6 +49635,8 @@ Body: Name: HD Refining Ore Box Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48855,6 +49669,8 @@ Body: Name: Lucky Silvervine Cat Fruit Box II (10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48870,6 +49686,8 @@ Body: Name: Lucky Silvervine Cat Fruit Box II (100) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48885,6 +49703,8 @@ Body: Name: Cheer Up Plus Package II Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48900,6 +49720,8 @@ Body: Name: Cheer Up Plus Package II (10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48932,6 +49754,8 @@ Body: Name: Three Master Package IX Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48947,6 +49771,8 @@ Body: Name: Three Master Package IX (10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48962,6 +49788,8 @@ Body: Name: Refining Ore Box XIV Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48977,6 +49805,8 @@ Body: Name: Refining Ore Box XIV (10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -48992,6 +49822,8 @@ Body: Name: HD Refining Ore Box II Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49007,6 +49839,8 @@ Body: Name: Almighty Plus Box II Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49022,6 +49856,8 @@ Body: Name: Almighty Plus Box II (10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49037,6 +49873,8 @@ Body: Name: Defense Scroll Box Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49052,6 +49890,8 @@ Body: Name: Defense Scroll Box(10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49067,6 +49907,8 @@ Body: Name: Limited Power Booster 3 Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49082,6 +49924,8 @@ Body: Name: Limited Power Booster 3 (100) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49097,6 +49941,8 @@ Body: Name: HD Refine Ore Box Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49112,6 +49958,8 @@ Body: Name: Refine Ore XV Box(10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49127,6 +49975,8 @@ Body: Name: Refine Ore XV Box Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49142,6 +49992,8 @@ Body: Name: HD Refine Ore Box III Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49157,6 +50009,8 @@ Body: Name: Cheer Up Plus Package III Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49172,6 +50026,8 @@ Body: Name: Cheer Up Plus Package III (10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49187,6 +50043,8 @@ Body: Name: Infinite Cat's Hand Ticket Box(7 days) Type: Cash Weight: 10 + Flags: + Container: true Script: | getgroupitem(IG_C_CATPAW_7DAY_BOX); - Id: 17774 @@ -49194,6 +50052,8 @@ Body: Name: Almighty Plus Box III Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49209,6 +50069,8 @@ Body: Name: Almighty Plus Box III (10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49224,6 +50086,8 @@ Body: Name: Three Master Package X Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49239,6 +50103,8 @@ Body: Name: Three Master Package X (10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49269,6 +50135,8 @@ Body: Name: Unlimited Box VI (10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49284,6 +50152,8 @@ Body: Name: Unlimited Box VI Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49299,6 +50169,8 @@ Body: Name: Refining Ore Box XVI Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49314,6 +50186,8 @@ Body: Name: Refining Ore Box XVI (10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49329,6 +50203,8 @@ Body: Name: HD Refining Ore Box IV Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49344,6 +50220,8 @@ Body: Name: HD Refine Ore Box II Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49359,6 +50237,8 @@ Body: Name: Defense Scroll Box II Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49374,6 +50254,8 @@ Body: Name: Defense Scroll Box II (10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49389,6 +50271,8 @@ Body: Name: Three Master Package XI Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49404,6 +50288,8 @@ Body: Name: Three Master Package XI (10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49419,6 +50305,8 @@ Body: Name: 2017 Ragnarok RTC Participaton Box Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49435,6 +50323,8 @@ Body: Name: Refining Ore Box XVII (10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49450,6 +50340,8 @@ Body: Name: Refining Ore Box XVII Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49465,6 +50357,8 @@ Body: Name: HD Refining Ore Box V Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49480,6 +50374,8 @@ Body: Name: HD Refine Ore Box III Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49495,6 +50391,8 @@ Body: Name: Infinity Box Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49510,6 +50408,8 @@ Body: Name: Infinity Box(10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49532,6 +50432,8 @@ Body: Name: New Cheer Up Package Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49547,6 +50449,8 @@ Body: Name: New Cheer Up Package (10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49562,6 +50466,8 @@ Body: Name: Limited Power Booster IV (100) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49577,6 +50483,8 @@ Body: Name: Limited Power Booster IV Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49592,6 +50500,8 @@ Body: Name: G-STAR 2017 Ragnarok Memorial Box Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49606,6 +50516,8 @@ Body: AegisName: Zero_Merchant_Bell_Box Name: Tool Dealer Bell Box Type: Cash + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49620,6 +50532,8 @@ Body: AegisName: Zero_Kafra_Bell_Box Name: Kafra Storage Bell Box Type: Cash + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49635,6 +50549,8 @@ Body: Name: Refining Ore Box XVIII Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49650,6 +50566,8 @@ Body: Name: Refining Ore Box XVIII (10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49665,6 +50583,8 @@ Body: Name: HD Refining Ore Box VI Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49680,6 +50600,8 @@ Body: Name: HD Refine Ore Box IV Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49695,6 +50617,8 @@ Body: Name: New Three Master Package Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49710,6 +50634,8 @@ Body: Name: New Three Master Package (10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49725,6 +50651,8 @@ Body: Name: Lucky Silvervine Cat Fruit Box III (10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49740,6 +50668,8 @@ Body: Name: Lucky Silvervine Cat Fruit Box III (100) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49755,6 +50685,8 @@ Body: Name: Almighty Plus Box IV Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49770,6 +50702,8 @@ Body: Name: Almighty Plus Box IV (10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49785,6 +50719,8 @@ Body: Name: Refining Ore Box XIX (10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49800,6 +50736,8 @@ Body: Name: Refining Ore Box XIX Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49815,6 +50753,8 @@ Body: Name: HD Refining Ore Box VII Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49830,6 +50770,8 @@ Body: Name: HD Refine Ore Box V Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49845,6 +50787,8 @@ Body: Name: Defense Scroll Box III Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49860,6 +50804,8 @@ Body: Name: Defense Scroll Box III (10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49875,6 +50821,8 @@ Body: Name: Three Master Package XII Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49890,6 +50838,8 @@ Body: Name: Three Master Package XII (10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49905,6 +50855,8 @@ Body: Name: Infinity Box II Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49920,6 +50872,8 @@ Body: Name: Infinity Box II 10 sets # !todo check english name Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49935,6 +50889,8 @@ Body: Name: Cheer Up Package (10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49950,6 +50906,8 @@ Body: Name: Cheer Up Package Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49965,6 +50923,8 @@ Body: Name: Life Potion Sampler 10 Crate Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49980,6 +50940,8 @@ Body: Name: Life Potion Sampler Crate Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -49995,6 +50957,8 @@ Body: Name: Almighty package 10set Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -50010,6 +50974,8 @@ Body: Name: Almighty package Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -50025,6 +50991,8 @@ Body: Name: Enriched ore package 10 set Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -50040,6 +51008,8 @@ Body: Name: Enriched ore package set Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -50055,6 +51025,8 @@ Body: Name: HD ore package Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -50070,6 +51042,8 @@ Body: Name: High density ore package Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -50085,6 +51059,8 @@ Body: Name: Limit Power Booster Package 10 set Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -50100,6 +51076,8 @@ Body: Name: LimitPowerBooster package Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -50115,6 +51093,8 @@ Body: Name: Infinity Drink 200 Box Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -50130,6 +51110,8 @@ Body: Name: Infinity Drink 20 Box Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -50145,6 +51127,8 @@ Body: Name: Defense Scroll Box(10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -50160,6 +51144,8 @@ Body: Name: Defense Scroll Box Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -50175,6 +51161,8 @@ Body: Name: Unlimited Box(10) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -50190,6 +51178,8 @@ Body: Name: Unlimited Box Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -50356,6 +51346,8 @@ Body: Type: Cash Buy: 10 EquipLevelMin: 100 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -50373,6 +51365,8 @@ Body: Type: Cash Buy: 10 EquipLevelMin: 120 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -50390,6 +51384,8 @@ Body: Type: Cash Buy: 10 EquipLevelMin: 130 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -50407,6 +51403,8 @@ Body: Type: Cash Buy: 10 EquipLevelMin: 140 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -50424,6 +51422,8 @@ Body: Type: Cash Buy: 10 EquipLevelMin: 150 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -50441,6 +51441,8 @@ Body: Type: Cash Buy: 10 EquipLevelMin: 160 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -50530,6 +51532,7 @@ Body: EquipLevelMin: 1 Flags: BuyingStore: true + Container: true Script: | getgroupitem(IG_CLOSEDMIND_BOX); - Id: 22535 @@ -50867,6 +51870,8 @@ Body: Type: Usable Buy: 10 Weight: 200 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -50947,9 +51952,8 @@ Body: Type: Usable Buy: 5000 Weight: 100 - Trade: - NoMail: true - NoAuction: true + Flags: + Container: true Script: | getgroupitem(IG_Squad_Prize1); getgroupitem(IG_Squad_Prize2); @@ -51436,6 +52440,8 @@ Body: Type: Healing Buy: 20 Weight: 100 + Flags: + BuyingStore: true Script: | specialeffect2 EF_ENHANCE; sc_start SC_BEEF_RIB_STEW,180000,0; @@ -52187,6 +53193,8 @@ Body: Buy: 10 Weight: 100 EquipLevelMin: 1 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -52326,7 +53334,6 @@ Body: Type: Usable Buy: 2 Weight: 10 - Trade: Script: | callfunc "F_CashStore"; - Id: 22816 @@ -52334,6 +53341,8 @@ Body: Name: True Mysterious Life Potion Type: Usable Weight: 10 + Flags: + BuyingStore: true NoUse: Sitting: true Script: | @@ -52345,6 +53354,8 @@ Body: Name: True Small Life Potion Type: Usable Weight: 10 + Flags: + BuyingStore: true NoUse: Sitting: true Script: | @@ -52356,6 +53367,8 @@ Body: Name: True Medium Life Potion Type: Usable Weight: 10 + Flags: + BuyingStore: true NoUse: Sitting: true Script: | @@ -52367,6 +53380,8 @@ Body: Name: True Almighty Type: Usable Weight: 10 + Flags: + BuyingStore: true Script: | specialeffect2 EF_BASH3D; sc_start SC_ALMIGHTY,3600000,10; @@ -52382,6 +53397,8 @@ Body: Name: True Enhanced ASPD Potion Type: Usable Weight: 10 + Flags: + BuyingStore: true NoUse: Sitting: true Script: | @@ -52392,6 +53409,8 @@ Body: Name: True Red Booster Type: Usable Weight: 10 + Flags: + BuyingStore: true NoUse: Sitting: true Script: | @@ -52456,6 +53475,8 @@ Body: Buy: 10 Weight: 10 EquipLevelMin: 1 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -52508,6 +53529,8 @@ Body: Buy: 10 Weight: 10 EquipLevelMin: 1 + Flags: + Container: true Script: | getgroupitem(IG_Something_Candy_Holder); - Id: 22839 @@ -53108,6 +54131,8 @@ Body: Name: Mysterious Blue Box Type: Usable Buy: 20 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -53397,6 +54422,7 @@ Body: Type: Usable Weight: 10 Flags: + BuyingStore: true Container: true Script: | getgroupitem(IG_SHADOW_CUBE_WEAPON); @@ -53406,6 +54432,7 @@ Body: Type: Usable Weight: 10 Flags: + BuyingStore: true Container: true Script: | getgroupitem(IG_SHADOW_CUBE_ARMOR); @@ -53415,6 +54442,7 @@ Body: Type: Usable Weight: 10 Flags: + BuyingStore: true Container: true Script: | getgroupitem(IG_SHADOW_CUBE_SHIELD); @@ -53424,6 +54452,7 @@ Body: Type: Usable Weight: 10 Flags: + BuyingStore: true Container: true Script: | getgroupitem(IG_SHADOW_CUBE_SHOES); @@ -53433,6 +54462,7 @@ Body: Type: Usable Weight: 10 Flags: + BuyingStore: true Container: true Script: | getgroupitem(IG_SHADOW_CUBE_PENDANT); @@ -53442,6 +54472,7 @@ Body: Type: Usable Weight: 10 Flags: + BuyingStore: true Container: true Script: | getgroupitem(IG_SHADOW_CUBE_EARING); @@ -53691,6 +54722,7 @@ Body: Buy: 1 Weight: 1 Flags: + BuyingStore: true DropEffect: CLIENT Script: | callfunc("F_Cursed_Fragment"); @@ -54296,6 +55328,9 @@ Body: Type: Usable Buy: 1 Weight: 500 + Flags: + BuyingStore: true + Container: true Script: | getgroupitem(IG_CRYSTAL_OF_GRUDGE); - Id: 23081 @@ -54497,6 +55532,7 @@ Body: Type: Usable Weight: 10 Flags: + BuyingStore: true Container: true Script: | getgroupitem(IG_CLASS_SHADOW_CUBE); @@ -54672,6 +55708,8 @@ Body: Type: Usable Buy: 10 Weight: 20 + Flags: + BuyingStore: true Script: | getitem 12507,3; getitem 12508,3; @@ -54733,8 +55771,6 @@ Body: Type: Usable Buy: 2 Weight: 10 - Flags: - Container: true Script: | getitem 23142,5; - Id: 23145 @@ -54743,8 +55779,6 @@ Body: Type: Usable Buy: 2 Weight: 10 - Flags: - Container: true Script: | getitem 23143,5; - Id: 23150 @@ -54768,6 +55802,8 @@ Body: Name: Collectibles SynthesisBox Type: DelayConsume Weight: 10 + Flags: + BuyingStore: true Script: | laphine_synthesis(); - Id: 23153 @@ -54870,6 +55906,7 @@ Body: Type: Usable Weight: 10 Flags: + BuyingStore: true Container: true Script: | getgroupitem(IG_ALCHEMIST_BOX); @@ -55217,7 +56254,8 @@ Body: Name: "[Not For Sale] DEX Biscuit Stick" Type: Usable Weight: 10 - Trade: + Flags: + BuyingStore: true Script: | sc_start SC_FOOD_DEX_CASH,1800000,15; sc_start SC_HITFOOD,600000,rand(11,33); @@ -55226,7 +56264,8 @@ Body: Name: "[Not For Sale] LUK Biscuit Stick" Type: Usable Weight: 10 - Trade: + Flags: + BuyingStore: true Script: | sc_start SC_FOOD_LUK_CASH,1800000,15; sc_start SC_CRIFOOD,600000,rand(11,33); @@ -55235,7 +56274,8 @@ Body: Name: "[Not For Sale] STR Biscuit Stick" Type: Usable Weight: 10 - Trade: + Flags: + BuyingStore: true Script: | sc_start SC_FOOD_STR_CASH,1800000,15; sc_start SC_ATKPOTION,600000,rand(11,111); @@ -55244,7 +56284,8 @@ Body: Name: "[Not For Sale] VIT Biscuit Stick" Type: Usable Weight: 10 - Trade: + Flags: + BuyingStore: true Script: | sc_start SC_FOOD_VIT_CASH,1800000,15; bonus_script "{ bonus bHPRecovRate,rand(11,33); }",1800,1; @@ -55253,7 +56294,8 @@ Body: Name: "[Not For Sale] AGI Biscuit Stick" Type: Usable Weight: 10 - Trade: + Flags: + BuyingStore: true Script: | sc_start SC_FOOD_AGI_CASH,1800000,15; sc_start SC_FLEEFOOD,600000,rand(11,33); @@ -55262,7 +56304,8 @@ Body: Name: "[Not For Sale] INT Biscuit Stick" Type: Usable Weight: 10 - Trade: + Flags: + BuyingStore: true Script: | sc_start SC_FOOD_INT_CASH,1800000,15; sc_start SC_MATKPOTION,600000,rand(11,111); @@ -55390,6 +56433,8 @@ Body: Name: StatusShadow Mix Type: DelayConsume Weight: 10 + Flags: + BuyingStore: true Script: | laphine_synthesis(); - Id: 23248 @@ -55994,6 +57039,8 @@ Body: Name: Infinite Cat Hand Ticket Box(1 Day) Type: Cash Weight: 10 + Flags: + Container: true Script: | getgroupitem(IG_C_CATPAW_1DAY_PARA); - Id: 23304 @@ -56001,6 +57048,8 @@ Body: Name: Infinite Fly Wing Box(1 Day) Type: Cash Weight: 10 + Flags: + Container: true Script: | getgroupitem(IG_C_WING_OF_FLY_1DAY_PARA); - Id: 23305 @@ -56126,6 +57175,8 @@ Body: Name: Unlimited Wing Of Fly 3D Box Type: Cash Weight: 10 + Flags: + Container: true Script: | getgroupitem(IG_C_WING_OF_FLY_3DAY_BOX_); - Id: 23324 @@ -56160,6 +57211,7 @@ Body: Weight: 10 Flags: BuyingStore: true + Container: true Script: | getgroupitem(IG_C_WING_OF_FLY_5DAY_BOX_); - Id: 23330 @@ -56169,6 +57221,7 @@ Body: Weight: 10 Flags: BuyingStore: true + Container: true Script: | getgroupitem(IG_C_GIANT_FLY_1DAY_BOX_); - Id: 23331 @@ -56176,6 +57229,8 @@ Body: Name: Infinite Fly Wing Box(1 Week) Type: Cash Weight: 10 + Flags: + Container: true Script: | getgroupitem(IG_C_WING_OF_FLY_BOX_); - Id: 23332 @@ -56563,14 +57618,6 @@ Body: Name: Fire Armor Scroll Type: Usable Weight: 10 - Trade: - NoDrop: true - NoTrade: true - NoSell: true - NoCart: true - NoGuildStorage: true - NoMail: true - NoAuction: true Script: | specialeffect2 EF_FIREHIT; sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Fire,1,0; @@ -56579,14 +57626,6 @@ Body: Name: Water Armor Scroll Type: Usable Weight: 10 - Trade: - NoDrop: true - NoTrade: true - NoSell: true - NoCart: true - NoGuildStorage: true - NoMail: true - NoAuction: true Script: | specialeffect2 EF_COLDHIT; sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Water,1,0; @@ -56595,14 +57634,6 @@ Body: Name: Wind Armor Scroll Type: Usable Weight: 10 - Trade: - NoDrop: true - NoTrade: true - NoSell: true - NoCart: true - NoGuildStorage: true - NoMail: true - NoAuction: true Script: | specialeffect2 EF_WINDHIT; sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Wind,1,0; @@ -56611,14 +57642,6 @@ Body: Name: Earth Armor Scroll Type: Usable Weight: 10 - Trade: - NoDrop: true - NoTrade: true - NoSell: true - NoCart: true - NoGuildStorage: true - NoMail: true - NoAuction: true Script: | specialeffect2 EF_EARTHHIT; sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Earth,1,0; @@ -56676,6 +57699,8 @@ Body: Name: Shadow Refine Hammer Type: DelayConsume Weight: 10 + Flags: + BuyingStore: true Script: | laphine_upgrade(); - Id: 23438 @@ -57237,14 +58262,6 @@ Body: Name: Snow Cookie Type: Usable Weight: 50 - Trade: - NoDrop: true - NoTrade: true - NoSell: true - NoCart: true - NoGuildStorage: true - NoMail: true - NoAuction: true Script: | percentheal 5,0; sc_start SC_HITFOOD,600000,30; @@ -57253,14 +58270,6 @@ Body: Name: Winter Cookie Type: Usable Weight: 50 - Trade: - NoDrop: true - NoTrade: true - NoSell: true - NoCart: true - NoGuildStorage: true - NoMail: true - NoAuction: true Script: | percentheal 5,0; sc_start SC_ATKPOTION,600000,3; @@ -57269,14 +58278,6 @@ Body: Name: Festi Cookie Type: Usable Weight: 50 - Trade: - NoDrop: true - NoTrade: true - NoSell: true - NoCart: true - NoGuildStorage: true - NoMail: true - NoAuction: true Script: | percentheal 5,0; sc_start SC_ASPDPOTION0,600000,10; @@ -57285,14 +58286,6 @@ Body: Name: Flora Cookie Type: Usable Weight: 50 - Trade: - NoDrop: true - NoTrade: true - NoSell: true - NoCart: true - NoGuildStorage: true - NoMail: true - NoAuction: true Script: | percentheal 5,0; sc_start SC_MATKPOTION,600000,3; @@ -57701,8 +58694,6 @@ Body: Name: Dogly Bottle Z Type: Healing Weight: 180 - Flags: - BuyingStore: true Script: | percentheal 18,18; - Id: 23661 @@ -57973,6 +58964,8 @@ Body: Name: Shadow Random Mix Type: DelayConsume Weight: 10 + Flags: + BuyingStore: true Script: | laphine_upgrade(); - Id: 23724 @@ -59370,6 +60363,8 @@ Body: Name: Shadow 9 Refine Hammer Type: DelayConsume Weight: 10 + Flags: + BuyingStore: true Script: | laphine_upgrade(); - Id: 23949 @@ -59471,6 +60466,8 @@ Body: Name: IDTest Special Type: DelayConsume Weight: 10 + Flags: + BuyingStore: true Script: | laphine_synthesis(); - Id: 100002 @@ -59498,6 +60495,8 @@ Body: Name: True Small Mana Potion Type: Usable Weight: 10 + Flags: + BuyingStore: true NoUse: Sitting: true Script: | @@ -59509,6 +60508,8 @@ Body: Name: True Shining Defense Scroll Type: Usable Weight: 10 + Flags: + BuyingStore: true NoUse: Sitting: true Script: | @@ -59520,6 +60521,8 @@ Body: Name: True Limited Power Booster Type: Usable Weight: 10 + Flags: + BuyingStore: true NoUse: Sitting: true Script: | @@ -59531,6 +60534,8 @@ Body: Name: True Infinity Drink Type: Usable Weight: 10 + Flags: + BuyingStore: true NoUse: Sitting: true Script: | @@ -59599,6 +60604,8 @@ Body: Name: Ancient Hero Bravery Type: DelayConsume Weight: 10 + Flags: + BuyingStore: true Script: | laphine_upgrade(); - Id: 100025 @@ -59606,6 +60613,8 @@ Body: Name: Ancient Hero Wisdom Type: DelayConsume Weight: 10 + Flags: + BuyingStore: true Script: | laphine_upgrade(); - Id: 100029 @@ -60245,6 +61254,8 @@ Body: AegisName: Boarding_Halter_Box30_Z Name: "[NotForSale] Boarding Halter (30 Days)" Type: Cash + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -60522,6 +61533,14 @@ Body: Name: Bath Foam A Type: Usable Weight: 10 + Trade: + NoDrop: true + NoTrade: true + NoStorage: true + NoCart: true + NoMail: true + NoAuction: true + NoGuildStorage: true Script: | bonus_script "{ bonus2 bAddRace2,RC2_EP172BATH,5; }",900,1,0,EFST_BATH_FOAM_A; - Id: 100148 @@ -60529,6 +61548,14 @@ Body: Name: Bath Foam B Type: Usable Weight: 10 + Trade: + NoDrop: true + NoTrade: true + NoStorage: true + NoCart: true + NoMail: true + NoAuction: true + NoGuildStorage: true Script: | bonus_script "{ bonus2 bAddRace2,RC2_EP172BATH,10; }",900,1,0,EFST_BATH_FOAM_B; - Id: 100149 @@ -60536,6 +61563,14 @@ Body: Name: Bath Foam C Type: Usable Weight: 10 + Trade: + NoDrop: true + NoTrade: true + NoStorage: true + NoCart: true + NoMail: true + NoAuction: true + NoGuildStorage: true Script: | bonus_script "{ bonus2 bAddRace2,RC2_EP172BATH,15; }",900,1,0,EFST_BATH_FOAM_C; - Id: 100151 @@ -60594,24 +61629,68 @@ Body: AegisName: Auto_M_Box Name: Automatic Module Box Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoStorage: true + NoCart: true + NoSell: true + NoMail: true + NoAuction: true + NoGuildStorage: true Script: | getrandgroupitem(IG_AUTOMATIC_MODULE_MIX,1); - Id: 100161 AegisName: Epic_M_Box Name: Epic Module Box Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoStorage: true + NoCart: true + NoSell: true + NoMail: true + NoAuction: true + NoGuildStorage: true Script: | getrandgroupitem(IG_EPIC_MODULE_MIX,1); - Id: 100162 AegisName: Auto_M_I_Box_A Name: Automatic Improvement Device Physical Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoStorage: true + NoCart: true + NoSell: true + NoMail: true + NoAuction: true + NoGuildStorage: true Script: | getrandgroupitem(IG_AUTO_M_I_BOX_A,1); - Id: 100163 AegisName: Auto_M_I_Box_B Name: Automatic Improvement Device Magical Type: Usable + Flags: + Container: true + Trade: + NoDrop: true + NoTrade: true + NoStorage: true + NoCart: true + NoSell: true + NoMail: true + NoAuction: true + NoGuildStorage: true Script: | getrandgroupitem(IG_AUTO_M_I_BOX_B,1); - Id: 100164 @@ -61173,6 +62252,8 @@ Body: Name: True Tyr's Blessing Type: Usable Weight: 10 + Flags: + BuyingStore: true NoUse: Sitting: true Script: | @@ -61186,6 +62267,8 @@ Body: Name: True Mental Potion Type: Usable Weight: 10 + Flags: + BuyingStore: true NoUse: Sitting: true Script: | @@ -61931,6 +63014,8 @@ Body: Name: Great Hero's Bravery Type: DelayConsume Weight: 10 + Flags: + BuyingStore: true Script: | laphine_upgrade(); - Id: 100413 @@ -61938,6 +63023,8 @@ Body: Name: Great Hero's Wisdom Type: DelayConsume Weight: 10 + Flags: + BuyingStore: true Script: | laphine_upgrade(); - Id: 100414 @@ -62296,6 +63383,8 @@ Body: Name: Sakrai's Wraith Type: DelayConsume Weight: 10 + Flags: + BuyingStore: true Script: | laphine_upgrade(); - Id: 100480 @@ -62303,6 +63392,8 @@ Body: Name: Condensed Sakrai's Wrath Type: DelayConsume Weight: 10 + Flags: + BuyingStore: true Script: | laphine_upgrade(); - Id: 100481 @@ -62317,6 +63408,8 @@ Body: Name: Sakrai's Regret Type: DelayConsume Weight: 10 + Flags: + BuyingStore: true Script: | laphine_upgrade(); - Id: 100486 @@ -62324,6 +63417,8 @@ Body: Name: Condensed Sakrai's Regret Type: DelayConsume Weight: 10 + Flags: + BuyingStore: true Script: | laphine_upgrade(); - Id: 100487 @@ -63113,6 +64208,8 @@ Body: Name: Hero's Weapon Modifier(Physical) Type: DelayConsume Weight: 10 + Flags: + BuyingStore: true Script: | laphine_upgrade(); - Id: 100745 @@ -63120,6 +64217,8 @@ Body: Name: Hero's Weapon Modifier(Magical) Type: DelayConsume Weight: 10 + Flags: + BuyingStore: true Script: | laphine_upgrade(); - Id: 100746 @@ -63400,6 +64499,8 @@ Body: Name: Infinite Giant Fly Wings Daily Box Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -63416,6 +64517,8 @@ Body: Name: ?nfinite Fly Wings Box (3 Days) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -70629,6 +71732,8 @@ Body: Name: (Limited) HD Oridecon Box(Blacksmith)(30) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -70644,6 +71749,8 @@ Body: Name: (Limited) HD Elunium Box(Blacksmith)(30) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -70659,6 +71766,8 @@ Body: Name: (Limited) HD Bradium Box(Blacksmith)(30) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -70674,6 +71783,8 @@ Body: Name: (Limited) HD Carnium Box(Blacksmith)(30) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -70689,6 +71800,8 @@ Body: Name: (Limited) Silvervine Cat Fruit Package I Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -70704,6 +71817,8 @@ Body: Name: (Limited) Three Master Package Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -70718,6 +71833,8 @@ Body: AegisName: Stone_Coin_PackageI Name: Stoin Coin Package I Type: Cash + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -70732,6 +71849,8 @@ Body: AegisName: Stone_Coin_PackageII Name: Stoin Coin Package II Type: Cash + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -70746,6 +71865,8 @@ Body: AegisName: Stone_Coin_PackageIII Name: Stoin Coin Package III Type: Cash + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -70806,6 +71927,8 @@ Body: Name: HD Elunium Package Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -70821,6 +71944,8 @@ Body: Name: HD Oridecon Package Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -70836,6 +71961,8 @@ Body: Name: HD Carnium Package Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -70851,6 +71978,8 @@ Body: Name: HD Bradium Package Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -70866,6 +71995,8 @@ Body: Name: (Limited) Battle Manual Package Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -70881,6 +72012,8 @@ Body: Name: (Limited) Mana Potion Box Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -70896,6 +72029,8 @@ Body: Name: (Limited) Silvervine Cat Fruit Package II Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -70911,6 +72046,8 @@ Body: Name: (Limited) Silvervine Cat Fruit Package III Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -70926,6 +72063,8 @@ Body: Name: (Limited) HD Oridecon Box(Hollgrehenn)(30) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -70941,6 +72080,8 @@ Body: Name: (Limited) HD Elunium Box(Hollgrehenn)(30) Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -70957,6 +72098,8 @@ Body: Name: (Limited) Silvervine Cat Fruit Package Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -70972,6 +72115,8 @@ Body: Name: Limited Refinement Ore Package Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -70987,6 +72132,8 @@ Body: Name: Limited HD Elunium Package Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -71002,6 +72149,8 @@ Body: Name: Limited HD Oridecon Package Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -71017,6 +72166,8 @@ Body: Name: Limited HD Carnium Package Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -71032,6 +72183,8 @@ Body: Name: Limited HD Bradium Package Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -71047,6 +72200,8 @@ Body: Name: Thanos Upgrade Package Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -71062,6 +72217,8 @@ Body: Name: Hero's Weapon Modification Package I Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -71077,6 +72234,8 @@ Body: Name: Hero's Weapon Modification Package II Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -71092,6 +72251,8 @@ Body: Name: Modified Hero's Weapon Refine Hammer Package I Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -71107,6 +72268,8 @@ Body: Name: Modified Hero's Weapon Refine Hammer Package II Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -71122,6 +72285,8 @@ Body: Name: Hero's Weapon Modification Package III Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -71137,6 +72302,8 @@ Body: Name: Modified Hero's Weapon Refine Hammer Package III Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -71151,6 +72318,8 @@ Body: AegisName: EXP_Drop_Up_Box Name: Kafra Buff Box (7 Days) Type: Cash + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -71166,6 +72335,8 @@ Body: Name: Modified Hero's Weapon Refine Hammer Package IV Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -71181,6 +72352,8 @@ Body: Name: Hero's Weapon Modification Package IV Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -71197,6 +72370,8 @@ Body: Name: (Limited) Silvervine Cat Fruit Package Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -71212,6 +72387,8 @@ Body: Name: Hero's Weapon Modification Package V Type: Cash Weight: 10 + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -71226,6 +72403,8 @@ Body: AegisName: CostumeMileage_Package1 Name: Silvervine Costume Mileage Package I Type: Cash + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -71240,6 +72419,8 @@ Body: AegisName: CostumeMileage_Package2 Name: Silvervine Costume Mileage Package II Type: Cash + Flags: + Container: true Trade: NoDrop: true NoTrade: true @@ -71254,6 +72435,8 @@ Body: AegisName: CostumeMileage_Package3 Name: Silvervine Costume Mileage Package III Type: Cash + Flags: + Container: true Trade: NoDrop: true NoTrade: true From b71586b3caf9e44d65ae3bca08d00253fa698738 Mon Sep 17 00:00:00 2001 From: Atemo Date: Fri, 22 Mar 2024 20:48:53 +0100 Subject: [PATCH 40/44] Item DB corrections (#8179) * Corrected etc items with item script (shouldn't happen) * Corrected some item type --- db/re/item_db_etc.yml | 286 +++++---------------------------------- db/re/item_db_usable.yml | 18 ++- 2 files changed, 48 insertions(+), 256 deletions(-) diff --git a/db/re/item_db_etc.yml b/db/re/item_db_etc.yml index 3a2591ff97..140f96c262 100644 --- a/db/re/item_db_etc.yml +++ b/db/re/item_db_etc.yml @@ -12725,7 +12725,6 @@ Body: Type: Card SubType: Enchant Buy: 20 - Weight: 10 Script: | bonus bStr,1; - Id: 4701 @@ -13902,7 +13901,6 @@ Body: Type: Card SubType: Enchant Buy: 20 - Weight: 10 Script: | bonus bBaseAtk,10; bonus bMatk,10; @@ -13912,7 +13910,6 @@ Body: Type: Card SubType: Enchant Buy: 20 - Weight: 10 Script: | bonus bBaseAtk,10; bonus bMatk,10; @@ -23621,8 +23618,6 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true - Script: | - /*Refine succeed guarantee until +9 for item 2598 only*/ - Id: 6954 AegisName: Dog_Soul_Piece Name: Piece Of Soul Dog @@ -36942,391 +36937,183 @@ Body: - Id: 25670 AegisName: EP17_1_EVT03 Name: Modification Module (Defense) - Type: Card - SubType: Enchant + Type: Etc Weight: 10 - Script: | - .@r = getrefine(); - .@def = 25; - if (.@r >= 9) { - .@def += 20; - } else if (.@r >= 7) { - .@def += 10; - } - bonus bDef,.@def; - Id: 25671 AegisName: EP17_1_EVT04 Name: Modification Module (Magic Defense) - Type: Card - SubType: Enchant + Type: Etc Weight: 10 - Script: | - .@r = getrefine(); - .@mdef = 2; - if (.@r >= 9) { - .@mdef += 6; - } else if (.@r >= 7) { - .@mdef += 3; - } - bonus bMdef,.@mdef; - Id: 25672 AegisName: EP17_1_EVT05 Name: Modification Module (Vit) - Type: Card - SubType: Enchant + Type: Etc Weight: 10 - Script: | - bonus bVit,3; - Id: 25673 AegisName: EP17_1_EVT06 Name: Modification Module (Luk) - Type: Card - SubType: Enchant + Type: Etc Weight: 10 - Script: | - bonus bLuk,3; - Id: 25674 AegisName: EP17_1_EVT07 Name: Modification Module (Str) - Type: Card - SubType: Enchant + Type: Etc Weight: 10 - Script: | - bonus bStr,3; - Id: 25675 AegisName: EP17_1_EVT08 Name: Modification Module (Agi) - Type: Card - SubType: Enchant + Type: Etc Weight: 10 - Script: | - bonus bAgi,3; - Id: 25676 AegisName: EP17_1_EVT09 Name: Modification Module (Int) - Type: Card - SubType: Enchant + Type: Etc Weight: 10 - Script: | - bonus bInt,3; - Id: 25677 AegisName: EP17_1_EVT10 Name: Modification Module (Dex) - Type: Card - SubType: Enchant + Type: Etc Weight: 10 - Script: | - bonus bDex,3; - Id: 25678 AegisName: EP17_1_EVT11 Name: Modification Module (HP recovery) - Type: Card - SubType: Enchant + Type: Etc Weight: 10 - Script: | - bonus bHPrecovRate,20; - Id: 25679 AegisName: EP17_1_EVT12 Name: Modification Module (SP recovery) - Type: Card - SubType: Enchant + Type: Etc Weight: 10 - Script: | - bonus bSPrecovRate,20; - Id: 25680 AegisName: EP17_1_EVT13 Name: Modification Module (Spell) - Type: Card - SubType: Enchant + Type: Etc Weight: 10 - Script: | - bonus bMatk,18; - bonus bVariableCastrate,-10; - Id: 25681 AegisName: EP17_1_EVT14 Name: Modification Module (Attack Speed) - Type: Card - SubType: Enchant + Type: Etc Weight: 10 - Script: | - bonus bAspdRate,10; - Id: 25682 AegisName: EP17_1_EVT15 Name: Modification Module (Fatal) - Type: Card - SubType: Enchant + Type: Etc Weight: 10 - Script: | - bonus bCritAtkRate,10; - bonus bCritical,4; - Id: 25683 AegisName: EP17_1_EVT16 Name: Modification Module (Expert Archer) - Type: Card - SubType: Enchant + Type: Etc Weight: 10 - Script: | - bonus bLongAtkRate,10; - Id: 25684 AegisName: EP17_1_EVT17 Name: Modification Module (Vital) - Type: Card - SubType: Enchant + Type: Etc Weight: 10 - Script: | - .@r = getrefine(); - bonus bMaxHPrate,5; - if (.@r >= 9) { - bonus bMaxHP,1250; - } else if (.@r >= 7) { - bonus bMaxHP,500; - } - Id: 25685 AegisName: EP17_1_EVT18 Name: Modification Module (Mental) - Type: Card - SubType: Enchant + Type: Etc Weight: 10 - Script: | - .@r = getrefine(); - bonus bMaxSPrate,5; - if (.@r >= 9) { - bonus bMaxSP,250; - } else if (.@r >= 7) { - bonus bMaxSP,100; - } - Id: 25686 AegisName: EP17_1_EVT19 Name: Modification Module (Heal) - Type: Card - SubType: Enchant + Type: Etc Weight: 10 - Script: | - .@r = getrefine(); - .@val = 5; - if (.@r >= 9) { - .@val += 10; - } else if (.@r >= 7) { - .@val += 5; - } - bonus bHealPower,.@val; - Id: 25687 AegisName: EP17_1_EVT20 Name: Modification Module (Power) - Type: Card - SubType: Enchant + Type: Etc Weight: 10 - Script: | - .@r = getrefine(); - bonus2 bAddClass,Class_All,5; - if (.@r >= 9) { - bonus bBaseAtk,50; - } else if (.@r >= 7) { - bonus bBaseAtk,25; - } - Id: 25688 AegisName: EP17_1_EVT21 Name: Modification Module (Magic) - Type: Card - SubType: Enchant + Type: Etc Weight: 10 - Script: | - .@r = getrefine(); - bonus bMatkRate,5; - if (.@r >= 9) { - bonus bMatk,50; - } else if (.@r >= 7) { - bonus bMatk,25; - } - Id: 25689 AegisName: EP17_1_EVT22 Name: Modification Module (Shooter) - Type: Card - SubType: Enchant + Type: Etc Weight: 10 - Script: | - .@r = getrefine(); - .@val = 3; - if (.@r >= 9) { - .@val += 4; - } else if (.@r >= 7) { - .@val += 2; - } - bonus bLongAtkRate,.@val; - Id: 25690 AegisName: EP17_1_EVT23 Name: Modification Module (Fast) - Type: Card - SubType: Enchant + Type: Etc Weight: 10 - Script: | - .@r = getrefine(); - bonus bAspd,1; - if (.@r >= 9) { - bonus bAspdRate,6; - } else if (.@r >= 7) { - bonus bAspdRate,3; - } - Id: 25691 AegisName: EP17_1_EVT24 Name: Modification Module (Caster) - Type: Card - SubType: Enchant + Type: Etc Weight: 10 - Script: | - .@r = getrefine(); - .@val = -5; - if (.@r >= 9) { - .@val -= 6; - } else if (.@r >= 7) { - .@val -= 3; - } - bonus bVariableCastrate,.@val; - Id: 25692 AegisName: EP17_1_EVT25 Name: Modification Module (Critical) - Type: Card - SubType: Enchant + Type: Etc Weight: 10 - Script: | - .@r = getrefine(); - bonus bCritical,5; - if (.@r >= 9) { - bonus bCritAtkRate,10; - } else if (.@r >= 7) { - bonus bCritAtkRate,5; - } - Id: 25693 AegisName: EP17_1_EVT26 Name: Modification Module (Delay after skill) - Type: Card - SubType: Enchant + Type: Etc Weight: 10 - Script: | - .@r = getrefine(); - .@val = -5; - if (.@r >= 9) { - .@val -= 10; - } else if (.@r >= 7) { - .@val -= 5; - } - bonus bDelayrate,.@val; - Id: 25694 AegisName: EP17_1_EVT27 Name: Modification Module (Fixed Casting) - Type: Card - SubType: Enchant + Type: Etc Weight: 10 - Script: | - .@r = getrefine(); - .@val = -300; - if (.@r >= 9) { - .@val -= 400; - } else if (.@r >= 7) { - .@val -= 200; - } - bonus bFixedCast,.@val; - Id: 25695 AegisName: EP17_1_EVT28 Name: Modification Module (Above All) - Type: Card - SubType: Enchant + Type: Etc Weight: 10 - Script: | - .@r = getrefine(); - bonus2 bSubEle,Ele_All,5; - if (.@r >= 7) { - bonus2 bSubSize,Size_All,5; - if (.@r >= 9) { - bonus2 bSubRace,RC_All,5; - bonus2 bSubRace,RC_Player_Human,-5; - } } - Id: 25696 AegisName: EP17_1_EVT29 Name: Modification Module (Drain Life) - Type: Card - SubType: Enchant + Type: Etc Weight: 10 - Script: | - bonus2 bHPDrainRate,20,2; - Id: 25697 AegisName: EP17_1_EVT30 Name: Modification Module (Drain Soul) - Type: Card - SubType: Enchant + Type: Etc Weight: 10 - Script: | - bonus2 bSPDrainRate,10,1; - Id: 25698 AegisName: EP17_1_EVT31 Name: Modification Module (Magic Healing) - Type: Card - SubType: Enchant + Type: Etc Weight: 10 - Script: | - autobonus "{ bonus2 bHPRegenRate,400,500; }",20,10000,BF_MAGIC; - Id: 25699 AegisName: EP17_1_EVT32 Name: Modification Module (Magic Soul) - Type: Card - SubType: Enchant + Type: Etc Weight: 10 - Script: | - autobonus "{ bonus2 bSPRegenRate,80,500; }",10,10000,BF_MAGIC; - Id: 25700 AegisName: EP17_1_EVT33 Name: Modification Module (Unlimited Vital) - Type: Card - SubType: Enchant + Type: Etc Weight: 10 - Script: | - autobonus2 "{ bonus bVit,50; bonus2 bHPRegenRate,400,500; bonus2 bSPLossRate,20,1000; }",10,10000,BF_WEAPON|BF_MAGIC; - /* unknown rate */ - Id: 25701 AegisName: EP17_1_EVT34 Name: Modification Module (Spell Buster) - Type: Card - SubType: Enchant + Type: Etc Weight: 10 - Script: | - autobonus "{ bonus bInt,50; bonus bMatkRate,15; bonus bAtkRate,-15; }",20,10000,BF_MAGIC; - /* unknown rate */ - Id: 25702 AegisName: EP17_1_EVT35 Name: Modification Module (Firing Shot) - Type: Card - SubType: Enchant + Type: Etc Weight: 10 - Script: | - autobonus "{ bonus bDex,50; bonus bLongAtkRate,10; bonus2 bSPLossRate,20,1000; }",20,10000,BF_WEAPON; - /* unknown rate */ - Id: 25703 AegisName: EP17_1_EVT36 Name: Modification Module (Overpower) - Type: Card - SubType: Enchant + Type: Etc Weight: 10 - Script: | - autobonus "{ bonus bStr,50; bonus bAtkRate,15; bonus bMatkRate,-15; }",20,10000,BF_WEAPON; - /* unknown rate */ - Id: 25704 AegisName: EP17_1_EVT37 Name: Modification Module (Fatal Flash) - Type: Card - SubType: Enchant + Type: Etc Weight: 10 - Script: | - autobonus "{ bonus bStr,50; bonus bCritAtkRate,10; bonus2 bHPLossRate,300,1000; }",20,10000,BF_WEAPON; - /* unknown rate */ - Id: 25705 AegisName: EP17_1_EVT38 Name: Modification Module (Lucky Strike) - Type: Card - SubType: Enchant + Type: Etc Weight: 10 - Script: | - autobonus "{ bonus bLuk,50; bonus2 bMagicAtkEle,Ele_All,10; bonus2 bHPLossRate,300,1000; }",20,10000,BF_MAGIC; - /* unknown rate */ - Id: 25706 AegisName: HighpriestStone_Top Name: High Priest Stone (Upper) @@ -67725,7 +67512,6 @@ Body: Name: Spell Stone (Dual) Type: Card SubType: Enchant - Weight: 10 Script: | bonus bSpl,5; - Id: 311426 diff --git a/db/re/item_db_usable.yml b/db/re/item_db_usable.yml index bacd7a75f0..59de99e033 100644 --- a/db/re/item_db_usable.yml +++ b/db/re/item_db_usable.yml @@ -67087,6 +67087,7 @@ Body: - Id: 101185 AegisName: Snow_F_Enchant Name: Snowflower Armor Enchant (Armor) + Type: DelayConsume Trade: NoDrop: true NoTrade: true @@ -67097,10 +67098,11 @@ Body: NoMail: true NoAuction: true Script: | - /* Missing description */ + item_enchant(26); - Id: 101186 AegisName: Glacier_W_Enchant Name: Glacier Weapon Enchantment + Type: DelayConsume Trade: NoDrop: true NoTrade: true @@ -67111,7 +67113,7 @@ Body: NoMail: true NoAuction: true Script: | - /* Missing description */ + item_enchant(31); - Id: 101187 AegisName: Snow_F_Refine Name: Snow Flower Armor +9 Refinement Cube @@ -67179,6 +67181,7 @@ Body: - Id: 101217 AegisName: Snow_F_Enchant2 Name: Snowflower Armor Enchant (Garment) + Type: DelayConsume Trade: NoDrop: true NoTrade: true @@ -67189,10 +67192,11 @@ Body: NoMail: true NoAuction: true Script: | - /* Missing description */ + item_enchant(27); - Id: 101218 AegisName: Snow_F_Enchant3 Name: Snowflower Armor Enchant (Shoes) + Type: DelayConsume Trade: NoDrop: true NoTrade: true @@ -67203,10 +67207,11 @@ Body: NoMail: true NoAuction: true Script: | - /* Missing description */ + item_enchant(28); - Id: 101219 AegisName: Snow_F_Enchant4 Name: Snowflower Armor Enchant (Accessory A) + Type: DelayConsume Trade: NoDrop: true NoTrade: true @@ -67217,10 +67222,11 @@ Body: NoMail: true NoAuction: true Script: | - /* Missing description */ + item_enchant(29); - Id: 101220 AegisName: Snow_F_Enchant5 Name: Snowflower Armor Enchant (Accessory B) + Type: DelayConsume Trade: NoDrop: true NoTrade: true @@ -67231,7 +67237,7 @@ Body: NoMail: true NoAuction: true Script: | - /* Missing description */ + item_enchant(30); - Id: 101234 AegisName: Booster_Pack_120 Name: Booster Pack(120) # !todo check english name From 34711b5307aaaebf7671237263d8a45f8aa61897 Mon Sep 17 00:00:00 2001 From: Atemo Date: Fri, 22 Mar 2024 21:42:16 +0100 Subject: [PATCH 41/44] Implemented new items up to 20-03-2024 (#8180) * Removed duplicate IDs --- db/re/item_db_equip.yml | 24 ++++++++++++++++++++++++ db/re/item_db_etc.yml | 38 -------------------------------------- 2 files changed, 24 insertions(+), 38 deletions(-) diff --git a/db/re/item_db_equip.yml b/db/re/item_db_equip.yml index 34e991ec9d..8b0db0a8e0 100644 --- a/db/re/item_db_equip.yml +++ b/db/re/item_db_equip.yml @@ -172992,6 +172992,14 @@ Body: Locations: Costume_Head_Mid: true ArmorLevel: 1 + - Id: 410315 + AegisName: aegis_410315 + Name: Costume Sacred Faith Ornament # !todo check english name + Type: Armor + Locations: + Costume_Head_Mid: true + ArmorLevel: 1 + View: 2518 - Id: 420000 AegisName: Isabella_Carrot Name: Isabella Carrot @@ -175316,6 +175324,14 @@ Body: Locations: Costume_Head_Low: true ArmorLevel: 1 + - Id: 420307 + AegisName: aegis_420307 + Name: Costume Twin Wave Roll Hair # !todo check english name + Type: Armor + Locations: + Costume_Head_Low: true + ArmorLevel: 1 + View: 2490 - Id: 430001 AegisName: C_Helm_Of_Ra Name: Costume Hat of the Sun God @@ -195168,6 +195184,14 @@ Body: skill "TF_DOUBLE",10; skill "MO_TRIPLEATTACK",10; } + - Id: 480344 + AegisName: aegis_480344 + Name: Costume Thornvine Crystal Scythe # !todo check english name + Type: Armor + Locations: + Costume_Garment: true + ArmorLevel: 1 + View: 189 - Id: 480345 AegisName: Season_Hood_Spring Name: "Manteau of Mystical Beast: Spring" diff --git a/db/re/item_db_etc.yml b/db/re/item_db_etc.yml index 140f96c262..e2f162972f 100644 --- a/db/re/item_db_etc.yml +++ b/db/re/item_db_etc.yml @@ -33544,38 +33544,6 @@ Body: AegisName: Muscles_Story_J_Box Name: Muscle Knights Summertime Guide Box Type: Etc - - Id: 17438 - AegisName: 3_Life_Potion_pack2 - Name: Three Master Package II - Type: Etc - Buy: 10 - Weight: 10 - Trade: - NoDrop: true - NoTrade: true - NoSell: true - NoCart: true - NoGuildStorage: true - NoMail: true - NoAuction: true - Script: | - /* TODO */ - - Id: 17439 - AegisName: 3_Life_Potion_10pack2 - Name: Three Master Package II(10) - Type: Etc - Buy: 10 - Weight: 10 - Trade: - NoDrop: true - NoTrade: true - NoSell: true - NoCart: true - NoGuildStorage: true - NoMail: true - NoAuction: true - Script: | - /* TODO */ - Id: 18000 AegisName: Cannon_Ball Name: Cannon Ball @@ -33810,12 +33778,6 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true - - Id: 22654 - AegisName: Golden_Card - Name: Golden Seal Card - Type: Etc - Buy: 20 - Weight: 50 - Id: 22717 AegisName: Ball_Wanderer Name: Wanderer Ball From dd663c7eb4ae40619e99e55df0eb1d846cc8a3fc Mon Sep 17 00:00:00 2001 From: Playtester <3785983+Playtester@users.noreply.github.com> Date: Sun, 24 Mar 2024 21:32:49 +0100 Subject: [PATCH 42/44] Fixed Asprika damage reduction (#8173) - Monster damage is now always reduced by items that reduce BF_WEAPON damage - Monster damage is now never reduced by items that reduce BF_MAGIC damage - Asprika now reduces all damage from monsters by 30% - Asprika now reduces all physical damage from players by 30% - Asprika now reduces damage regardless of range of the attack - Shaman Hat will no longer reduce damage from monsters, but will still reduce magic damage from players - This also affects all custom items using bonus3 bSubEle and bonus3 bSubRace - Added a config to battle/items.conf to return to old behavior - Fixes #8171 --- conf/battle/items.conf | 6 ++++++ db/pre-re/item_db_equip.yml | 11 +---------- src/map/battle.cpp | 8 ++++++++ src/map/battle.hpp | 1 + 4 files changed, 16 insertions(+), 10 deletions(-) diff --git a/conf/battle/items.conf b/conf/battle/items.conf index 37b1f066fb..9fa7d1ee5f 100644 --- a/conf/battle/items.conf +++ b/conf/battle/items.conf @@ -134,3 +134,9 @@ min_shop_buy: 1 // Minimum sell price of items at a normal shop // Officially items can be sold for 0 Zeny min_shop_sell: 0 + +// Should items that reduce damage from element/race count all monster damage as physical? (Note 1) +// Officially "Asprika" (god item) reduces all monsters damage rather than just physical damage +// Shaman Hat on the other hand doesn't reduce monster damage at all (reduces magical damage in PVP) +// This only affects items with bonus3 bSubEle and bonus3 bSubRace. +cardfix_monster_physical: yes diff --git a/db/pre-re/item_db_equip.yml b/db/pre-re/item_db_equip.yml index 81b1d37bcb..f0c4e2b1f3 100644 --- a/db/pre-re/item_db_equip.yml +++ b/db/pre-re/item_db_equip.yml @@ -20587,16 +20587,7 @@ Body: EquipLevelMin: 94 Script: | bonus bMdef,5; - bonus3 bSubEle,Ele_Neutral,30,BF_SHORT; - bonus3 bSubEle,Ele_Water,30,BF_SHORT; - bonus3 bSubEle,Ele_Earth,30,BF_SHORT; - bonus3 bSubEle,Ele_Fire,30,BF_SHORT; - bonus3 bSubEle,Ele_Wind,30,BF_SHORT; - bonus3 bSubEle,Ele_Poison,30,BF_SHORT; - bonus3 bSubEle,Ele_Holy,30,BF_SHORT; - bonus3 bSubEle,Ele_Dark,30,BF_SHORT; - bonus3 bSubEle,Ele_Ghost,30,BF_SHORT; - bonus3 bSubEle,Ele_Undead,30,BF_SHORT; + bonus3 bSubEle,Ele_All,30,BF_WEAPON; bonus bFlee,30; skill "AL_TELEPORT",1; bonus bUnbreakableGarment; diff --git a/src/map/battle.cpp b/src/map/battle.cpp index d49827c622..e1064849ba 100644 --- a/src/map/battle.cpp +++ b/src/map/battle.cpp @@ -689,6 +689,13 @@ int battle_calc_cardfix(int attack_type, struct block_list *src, struct block_li t_race2 = status_get_race2(target); s_defele = (tsd) ? (enum e_element)status_get_element(src) : ELE_NONE; + // When the attacker is a monster, then all bonuses on BF_WEAPON will work and no bonuses on BF_MAGIC + // Does not impact the attack type + if (src && src->type == BL_MOB && battle_config.cardfix_monster_physical) { + flag |= BF_WEAPON; + flag &= ~BF_MAGIC; + } + //Official servers apply the cardfix value on a base of 1000 and round down the reduction/increase #define APPLY_CARDFIX(damage, fix) { (damage) = (damage) - (int64)(((damage) * (1000 - max(0, fix))) / 1000); } @@ -10569,6 +10576,7 @@ static const struct _battle_data { { "delay_dependon_agi", &battle_config.delay_dependon_agi, 0, 0, 1, }, { "skill_delay_attack_enable", &battle_config.sdelay_attack_enable, 0, 0, 1, }, { "left_cardfix_to_right", &battle_config.left_cardfix_to_right, 0, 0, 1, }, + { "cardfix_monster_physical", &battle_config.cardfix_monster_physical, 1, 0, 1, }, { "skill_add_range", &battle_config.skill_add_range, 0, 0, INT_MAX, }, { "skill_out_range_consume", &battle_config.skill_out_range_consume, 1, 0, 1, }, { "skillrange_by_distance", &battle_config.skillrange_by_distance, ~BL_PC, BL_NUL, BL_ALL, }, diff --git a/src/map/battle.hpp b/src/map/battle.hpp index 600e62775b..238620e600 100644 --- a/src/map/battle.hpp +++ b/src/map/battle.hpp @@ -150,6 +150,7 @@ struct Battle_Config int delay_dependon_dex, delay_dependon_agi; int sdelay_attack_enable; int left_cardfix_to_right; + int cardfix_monster_physical; int skill_add_range; int skill_out_range_consume; int skill_amotion_leniency; From 42bd87d9b7c2d0ab9ff886c93ed13c1c9b07a323 Mon Sep 17 00:00:00 2001 From: Atemo Date: Mon, 25 Mar 2024 16:09:11 +0100 Subject: [PATCH 43/44] Implemented the permission "TRADE_UNCONDITIONAL" (#8182) Co-authored-by: Aleos --- conf/groups.yml | 1 + doc/permissions.txt | 6 ++++++ src/map/pc.cpp | 14 ++++++++++---- src/map/pc_groups.hpp | 2 ++ 4 files changed, 19 insertions(+), 4 deletions(-) diff --git a/conf/groups.yml b/conf/groups.yml index d61a6d6cc0..515b356e88 100644 --- a/conf/groups.yml +++ b/conf/groups.yml @@ -240,6 +240,7 @@ Body: bypass_stat_onclone: true bypass_max_stat: true macro_register: true + trade_unconditional: true #all_permission: true Footer: diff --git a/doc/permissions.txt b/doc/permissions.txt index e79b05a0a9..fb51d74828 100644 --- a/doc/permissions.txt +++ b/doc/permissions.txt @@ -125,6 +125,12 @@ item delay, etc). --------------------------------------- +*trade_unconditional + +Allows player to ignore the trade conditions of items (drop, trade, sell, cart, storage/gstorage, mail and auction). + +--------------------------------------- + ====================== | 3. Command-related | ====================== diff --git a/src/map/pc.cpp b/src/map/pc.cpp index 8700b13436..ee6d0b811f 100755 --- a/src/map/pc.cpp +++ b/src/map/pc.cpp @@ -1258,7 +1258,7 @@ bool pc_can_sell_item(map_session_data *sd, struct item *item, enum npc_subtype */ bool pc_can_give_items(map_session_data *sd) { - return pc_has_permission(sd, PC_PERM_TRADE); + return (pc_has_permission(sd, PC_PERM_TRADE) || pc_has_permission(sd, PC_PERM_TRADE_UNCONDITIONAL)); } /** @@ -1266,7 +1266,7 @@ bool pc_can_give_items(map_session_data *sd) */ bool pc_can_give_bounded_items(map_session_data *sd) { - return pc_has_permission(sd, PC_PERM_TRADE_BOUNDED); + return (pc_has_permission(sd, PC_PERM_TRADE_BOUNDED) || pc_has_permission(sd, PC_PERM_TRADE_UNCONDITIONAL)); } /** @@ -11156,9 +11156,15 @@ void pc_setmadogear(map_session_data *sd, bool flag, e_mado_type type) *------------------------------------------*/ bool pc_candrop(map_session_data *sd, struct item *item) { - if( item && ((item->expire_time || (item->bound && !pc_can_give_bounded_items(sd))) || (itemdb_ishatched_egg(item))) ) + if (sd->sc.cant.drop) return false; - if( !pc_can_give_items(sd) || sd->sc.cant.drop) //check if this GM level can drop items + if( item && itemdb_ishatched_egg(item) ) + return false; + if (pc_has_permission(sd, PC_PERM_TRADE_UNCONDITIONAL)) // no restriction + return true; + if( !pc_can_give_items(sd) ) + return false; + if( item && (item->expire_time || (item->bound && !pc_can_give_bounded_items(sd))) ) return false; return (itemdb_isdropable(item, pc_get_group_level(sd))); } diff --git a/src/map/pc_groups.hpp b/src/map/pc_groups.hpp index b0fab53cfd..172ac2c354 100644 --- a/src/map/pc_groups.hpp +++ b/src/map/pc_groups.hpp @@ -50,6 +50,7 @@ enum e_pc_permission : uint32 { PC_PERM_ATTENDANCE, PC_PERM_MACRO_DETECT, PC_PERM_MACRO_REGISTER, + PC_PERM_TRADE_UNCONDITIONAL, //.. add other here PC_PERM_MAX, }; @@ -88,6 +89,7 @@ static const struct s_pcg_permission_name { { "attendance",PC_PERM_ATTENDANCE }, { "macro_detect",PC_PERM_MACRO_DETECT }, { "macro_register",PC_PERM_MACRO_REGISTER }, + { "trade_unconditional",PC_PERM_TRADE_UNCONDITIONAL }, }; struct s_player_group{ From ed2d03d811775a01fc21c5a928301a05e464583b Mon Sep 17 00:00:00 2001 From: Atemo Date: Mon, 25 Mar 2024 19:09:31 +0100 Subject: [PATCH 44/44] Extended TimeLimit format (quest DB) (#8116) --- doc/quest_db.txt | 25 ++++++++++++++++++--- src/map/quest.cpp | 57 ++++++++++++++++++++++++++++++++++++++--------- src/map/quest.hpp | 1 + 3 files changed, 69 insertions(+), 14 deletions(-) diff --git a/doc/quest_db.txt b/doc/quest_db.txt index 723ec0aa45..153d7af71a 100644 --- a/doc/quest_db.txt +++ b/doc/quest_db.txt @@ -20,11 +20,30 @@ Title: Quest title. TimeLimit: Amount of time before the quest expires. -Use a number followed by "d" for day(s), "h" for hour(s), "mn" for minute(s), and "s" for second(s). Specifying with "+" will mark how long until the quest expires. -Specifying without "+" will mark the exact time the quest expires. Format: "d" (optional), [0-23]"h" (required), [0-59]"mn" (optional), [0-59]"s" (optional). +Use a number followed by "d" for day(s), "h" for hour(s), "mn" for minute(s), and "s" for second(s). +Format: "d" (optional), [0-23]"h" (optional), [0-59]"mn" (optional), [0-59]"s" (optional). -Please note the number before "d" only shifts the exact timer to the given day(s). +Example: + - Id: 2069 + Title: Tierra Gorge Battle + # The quest expires 5 minutes after being taken. + TimeLimit: +5mn + +Specifying without "+" will mark the exact time the quest expires. +Use a number followed by "d" for day(s) to shift the exact timer to the given day(s) or use the days of the week to set the expiration day, +and "h" for hour(s), "mn" for minute(s), and "s" for second(s). +Format: [days of the week] or "d" (optionals), [0-23]"h" (optional), [0-59]"mn" (optional), [0-59]"s" (optional). + +Examples: + - Id: 9419 + Title: Attack Sky Fortress Invading Prontera + # The quest expires 3 days after being taken at 4am. + TimeLimit: 3d 4h + - Id: 5965 + Title: "[Standby] Devil's Special" + # The quest expires Monday at 4am. + TimeLimit: Monday 4h --------------------------------------- diff --git a/src/map/quest.cpp b/src/map/quest.cpp index 0624710818..4730c5a7cc 100644 --- a/src/map/quest.cpp +++ b/src/map/quest.cpp @@ -28,7 +28,7 @@ using namespace rathena; -static int split_exact_quest_time(char* modif_p, int* day, int* hour, int* minute, int *second); +static int split_exact_quest_time(char* modif_p, int* week, int* day, int* hour, int* minute, int *second); const std::string QuestDatabase::getDefaultLocation() { return std::string(db_path) + "/quest_db.yml"; @@ -81,20 +81,25 @@ uint64 QuestDatabase::parseBodyNode(const ryml::NodeRef& node) { quest->time = static_cast(timediff); } else {// '+' not found, set to specific time - int32 day, hour, minute, second; + int32 day, hour, minute, second, week; - if (split_exact_quest_time(const_cast(time.c_str()), &day, &hour, &minute, &second) == 0) { + if (split_exact_quest_time(const_cast(time.c_str()), &week, &day, &hour, &minute, &second) == 0) { this->invalidWarning(node["TimeLimit"], "Incorrect TimeLimit format %s given, skipping.\n", time.c_str()); return 0; } - quest->time = day * 86400 + hour * 3600 + minute * 60 + second; + if (week > 0) + quest->time = hour * 3600 + minute * 60 + second; + else + quest->time = day * 86400 + hour * 3600 + minute * 60 + second; quest->time_at = true; + quest->time_week = week; } } else { if (!exists) { quest->time = 0; quest->time_at = false; + quest->time_week = -1; } } @@ -441,8 +446,8 @@ uint64 QuestDatabase::parseBodyNode(const ryml::NodeRef& node) { } -static int split_exact_quest_time(char* modif_p, int* day, int* hour, int* minute, int *second) { - int d = -1, h = -1, mn = -1, s = -1; +static int split_exact_quest_time(char* modif_p, int* week, int* day, int* hour, int* minute, int *second) { + int w = -1, d = -1, h = -1, mn = -1, s = -1; nullpo_retr(0, modif_p); @@ -453,7 +458,28 @@ static int split_exact_quest_time(char* modif_p, int* day, int* hour, int* minut modif_p++; while (modif_p[0] >= '0' && modif_p[0] <= '9') modif_p++; - if (modif_p[0] == 's') { + if (strncasecmp(modif_p, "SUNDAY", 6) == 0) { + w = 0; + modif_p = modif_p + 6; + } else if (strncasecmp(modif_p, "MONDAY", 6) == 0) { + w = 1; + modif_p = modif_p + 6; + } else if (strncasecmp(modif_p, "TUESDAY", 7) == 0) { + w = 2; + modif_p = modif_p + 7; + } else if (strncasecmp(modif_p, "WEDNESDAY", 9) == 0) { + w = 3; + modif_p = modif_p + 9; + } else if (strncasecmp(modif_p, "THURSDAY", 8) == 0) { + w = 4; + modif_p = modif_p + 8; + } else if (strncasecmp(modif_p, "FRIDAY", 6) == 0) { + w = 5; + modif_p = modif_p + 6; + } else if (strncasecmp(modif_p, "SATURDAY", 8) == 0) { + w = 6; + modif_p = modif_p + 8; + } else if (modif_p[0] == 's') { s = value; modif_p++; } else if (modif_p[0] == 'm' && modif_p[1] == 'n') { @@ -473,6 +499,7 @@ static int split_exact_quest_time(char* modif_p, int* day, int* hour, int* minut if (h < 0 || h > 23 || mn > 59 || s > 59) // hour is required return 0; + *week = w; *day = max(0,d); *hour = h; *minute = max(0,mn); @@ -536,10 +563,18 @@ static time_t quest_time(std::shared_ptr qi) struct tm *lt = localtime(&t); uint32 time_today = lt->tm_hour * 3600 + lt->tm_min * 60 + lt->tm_sec; - if (time_today < (qi->time % 86400)) - return static_cast(t + qi->time - time_today); - else // Carry over to the next day - return static_cast(t + 86400 + qi->time - time_today); + int32 day_shift = 0; + + if (time_today >= (qi->time % 86400)) // Carry over to the next day + day_shift = 1; + + if (qi->time_week > -1) { + if (qi->time_week < (lt->tm_wday + day_shift)) + day_shift = qi->time_week + 7 - lt->tm_wday; + else + day_shift = qi->time_week - lt->tm_wday; + } + return static_cast(t + (day_shift * 86400) + qi->time - time_today); } return 0; diff --git a/src/map/quest.hpp b/src/map/quest.hpp index 1645eef822..03f25dba82 100644 --- a/src/map/quest.hpp +++ b/src/map/quest.hpp @@ -42,6 +42,7 @@ struct s_quest_db { int32 id; time_t time; bool time_at; + int32 time_week; std::vector> objectives; std::vector> dropitem; std::string name;