diff --git a/.Lib9c.Benchmarks/Lib9c.Benchmarks.csproj b/.Lib9c.Benchmarks/Lib9c.Benchmarks.csproj index a2c28e51d..e8016a8df 100644 --- a/.Lib9c.Benchmarks/Lib9c.Benchmarks.csproj +++ b/.Lib9c.Benchmarks/Lib9c.Benchmarks.csproj @@ -12,8 +12,8 @@ - - + + diff --git a/.Lib9c.Tests/Action/ActionContext.cs b/.Lib9c.Tests/Action/ActionContext.cs index e2a6bcde6..f782bce8b 100644 --- a/.Lib9c.Tests/Action/ActionContext.cs +++ b/.Lib9c.Tests/Action/ActionContext.cs @@ -8,6 +8,7 @@ namespace Lib9c.Tests.Action using Libplanet.Common; using Libplanet.Crypto; using Libplanet.Types.Blocks; + using Libplanet.Types.Evidence; using Libplanet.Types.Tx; public class ActionContext : IActionContext @@ -18,6 +19,8 @@ public class ActionContext : IActionContext private IReadOnlyList _txs = null; + private IReadOnlyList _evs = null; + public BlockHash? GenesisHash { get; set; } public Address Signer { get; set; } @@ -46,6 +49,12 @@ public IReadOnlyList Txs set => _txs = value; } + public IReadOnlyList Evidence + { + get => _evs ?? ImmutableList.Empty; + set => _evs = value; + } + public void UseGas(long gas) { _gasUsed += gas; diff --git a/.Lib9c.Tests/Action/AdventureBoss/ClaimAdventureBossRewardTest.cs b/.Lib9c.Tests/Action/AdventureBoss/ClaimAdventureBossRewardTest.cs index 1cd8f0ab9..b9dbdf405 100644 --- a/.Lib9c.Tests/Action/AdventureBoss/ClaimAdventureBossRewardTest.cs +++ b/.Lib9c.Tests/Action/AdventureBoss/ClaimAdventureBossRewardTest.cs @@ -125,12 +125,12 @@ public static IEnumerable GetWantedTestData() ItemReward = new Dictionary { { 600201, 168 }, - { 600202, 0 }, + { 600202, 18 }, { 600203, 0 }, }, FavReward = new Dictionary { - { 20001, 14 }, + { 20001, 0 }, { 30001, 0 }, }, }, @@ -147,12 +147,12 @@ public static IEnumerable GetWantedTestData() { 600201, 168 }, // (200*1.2) * 0.7 / 0.5 * (120/240) - { 600202, 0 }, + { 600202, 18 }, // (200*1.2) * 0.3 / 2 * (120/240) { 600203, 0 }, }, FavReward = new Dictionary { - { 20001, 14 }, // (200*1.2) * 0.3 / 2.5 * (120/240) + { 20001, 0 }, { 30001, 0 }, }, }, @@ -169,12 +169,12 @@ public static IEnumerable GetWantedTestData() { 600201, 140 }, // (300*1.2) * 0.7 / 0.5 * (100/360) - { 600202, 0 }, + { 600202, 15 }, // (300*1.2) * 0.3 / 2 * (100/360) { 600203, 0 }, }, FavReward = new Dictionary { - { 20001, 11 }, // (300*1.2) * 0.3 / 2.5 * (100/360) + { 20001, 0 }, { 30001, 0 }, }, }, @@ -190,8 +190,8 @@ public static IEnumerable GetExploreTestData() NcgReward = (5 + 15) * NCG, // 5NCG for raffle, 15NCG for 15% distribution ItemReward = new Dictionary { - { 600201, 0 }, - { 600202, 66 }, // 100AP / 1.5 ratio * 100% contribution + { 600201, 80 }, // 100AP * 0.4 Exchange / 0.5 ratio * 100% contribution + { 600202, 0 }, { 600203, 0 }, }, FavReward = new Dictionary @@ -215,8 +215,10 @@ public static IEnumerable GetExploreTestData() ), ItemReward = new Dictionary { - { 600201, 0 }, - { 600202, 66 }, // total 200 AP / 1.5 ratio * 50% contribution + { + 600201, 79 + }, // total 200 AP * 0.4 Exchange / 0.5 ratio * 50% contribution + { 600202, 0 }, { 600203, 0 }, }, FavReward = new Dictionary @@ -237,8 +239,10 @@ public static IEnumerable GetExploreTestData() NcgReward = 15 * NCG, ItemReward = new Dictionary { - { 600201, 0 }, - { 600202, 66 }, // Total 200 AP / 1.5 Ratio * 50% Contribution + { + 600201, 79 + }, // Total 200 AP * 0.4 Exchange / 1.5 Ratio * 50% Contribution + { 600202, 0 }, { 600203, 0 }, }, FavReward = new Dictionary @@ -258,8 +262,8 @@ public static IEnumerable GetExploreTestData() NcgReward = 5 * NCG, ItemReward = new Dictionary { - { 600201, 0 }, - { 600202, 66 }, + { 600201, 80 }, + { 600202, 0 }, { 600203, 0 }, }, FavReward = new Dictionary @@ -282,12 +286,12 @@ public static IEnumerable GetPrevRewardTestData() ItemReward = new Dictionary { { 600201, 168 }, - { 600202, 0 }, + { 600202, 18 }, { 600203, 0 }, }, FavReward = new Dictionary { - { 20001, 14 }, + { 20001, 0 }, { 30001, 0 }, }, }, @@ -300,8 +304,8 @@ public static IEnumerable GetPrevRewardTestData() NcgReward = 20 * NCG, // 5NCG for explore raffle, 15NCG for 15% distribution ItemReward = new Dictionary { - { 600201, 0 }, - { 600202, 66 }, + { 600201, 80 }, + { 600202, 0 }, { 600203, 0 }, }, FavReward = new Dictionary @@ -320,13 +324,13 @@ public static IEnumerable GetPrevRewardTestData() NcgReward = 20 * NCG, ItemReward = new Dictionary { - { 600201, 168 }, - { 600202, 66 }, + { 600201, 248 }, + { 600202, 18 }, { 600203, 0 }, }, FavReward = new Dictionary { - { 20001, 14 }, + { 20001, 0 }, { 30001, 0 }, }, }, @@ -438,13 +442,13 @@ public void WantedMultipleSeason() NcgReward = 0 * NCG, // No Raffle Reward FavReward = new Dictionary { - { 20001, 28 }, + { 20001, 0 }, { 30001, 0 }, }, ItemReward = new Dictionary { { 600201, 336 }, - { 600202, 0 }, + { 600202, 36 }, { 600203, 0 }, }, }; @@ -708,8 +712,10 @@ public void ExploreMultipleSeason() }, ItemReward = new Dictionary { - { 600201, 0 }, - { 600202, 132 }, // (100 AP / 1.5 Ratio * 100% contribution) for season 1 and 3 + { + 600201, 160 + }, // (100 AP * 0.4 Exchange / 0.5 Ratio * 100% contribution) for season 1 and 3 + { 600202, 0 }, { 600203, 0 }, }, }; @@ -831,13 +837,13 @@ public void AllReward() NcgReward = 20 * NCG, FavReward = new Dictionary { - { 20001, 14 }, + { 20001, 0 }, { 30001, 0 }, }, ItemReward = new Dictionary { - { 600201, 168 }, - { 600202, 66 }, + { 600201, 248 }, + { 600202, 18 }, { 600203, 0 }, }, }; diff --git a/.Lib9c.Tests/Action/AdventureBoss/ExploreAdventureBossTest.cs b/.Lib9c.Tests/Action/AdventureBoss/ExploreAdventureBossTest.cs index 2da072f16..91d9c797a 100644 --- a/.Lib9c.Tests/Action/AdventureBoss/ExploreAdventureBossTest.cs +++ b/.Lib9c.Tests/Action/AdventureBoss/ExploreAdventureBossTest.cs @@ -98,58 +98,79 @@ public static IEnumerable GetExecuteMemberData() // No AP potion at all yield return new object[] { - 0, 5, 0, 0, 0, null, new (int, int)[] { }, + 0, 5, 0, 0, 0, null, new (int, int)[] { }, new (int, int)[] { }, }; // Start from bottom, goes to 5 yield return new object[] { - 0, 5, 5, 10, 5, null, + 0, 5, 5, 20, 10, null, // 2 potions per floor new[] { - (600301, 69), // 50 first Reward + 19 floor reward - (600302, 50), // 50 first reward - (600303, 7), // 7 floor reward + (600301, 10), // 10 floor reward + (600302, 30), // 10+5+5+5+5 first reward + (600303, 4), // 2+2 first reward (600304, 0), }, + new[] + { + (10033, 5), // 5 first reward + (10034, 8), // 5 first reward + 3 floor reward + }, }; // Start from bottom, goes to 3 because of potion yield return new object[] { - 0, 5, 3, 3, 0, null, new[] + 0, 5, 3, 6, 0, null, new[] { - (600301, 47), // 30 first reward + 17 floor reward - (600302, 30), // 30 first reward - (600303, 0), + (600301, 7), // 7 floor reward + (600302, 20), // 10+5+5 first reward + (600303, 4), // 2+2 first reward (600304, 0), }, + new[] + { + (10033, 0), + (10034, 0), + }, }; // Start from 3, goes to 5 because of locked floor yield return new object[] { - 2, 5, 5, 5, 2, null, new[] + 2, 5, 5, 10, 4, null, new[] { - (600301, 47), // 30 first reward + 17 floor reward - (600302, 30), // 30 first reward - (600303, 0), + (600301, 4), // 4 floor reward + (600302, 15), // 5+5+5 first reward + (600303, 2), // 2 first reward (600304, 0), }, + new[] + { + (10033, 8), // 5 first reward + 3 floor reward + (10034, 5), // 5 first reward + }, }; - // Start from 6, goes to 10 + // Start from 6, goes to 9 yield return new object[] { - 5, 10, 10, 10, 5, null, + 5, 10, 9, 20, 10, null, new[] { - (600301, 76), // 50 first reward + 26 floor reward - (600302, 50), // 50 first reward - (600303, 0), + (600203, 5), // 5 first reward + (600301, 0), + (600302, 5), // 5 floor reward + (600303, 15), // 5+5+5 first reward (600304, 0), }, + new[] + { + (10033, 8), // 5 first reward + 3 floor reward + (10034, 3), // 3 floor reward + }, }; // Start from 20, cannot enter yield return new object[] { - 20, 20, 20, 10, 10, typeof(InvalidOperationException), null, + 20, 20, 20, 10, 10, typeof(InvalidOperationException), null, null, }; } @@ -162,7 +183,8 @@ public void Execute( int initialPotion, int expectedPotion, Type exc, - (int, int)[] expectedRewards + (int, int)[] expectedItemRewards, + (int, int)[] expectedFavRewards ) { // Settings @@ -179,6 +201,7 @@ public void Execute( var sheets = state.GetSheets(sheetTypes: new[] { typeof(MaterialItemSheet), + typeof(RuneSheet), }); var materialSheet = sheets.GetSheet(); var materialRow = @@ -275,7 +298,7 @@ public void Execute( Assert.Equal(expectedFloor, explorer.Floor); var inventory = state.GetInventoryV2(TesterAvatarAddress); - foreach (var (id, amount) in expectedRewards) + foreach (var (id, amount) in expectedItemRewards) { if (amount == 0) { @@ -287,6 +310,14 @@ public void Execute( } } + var runeSheet = sheets.GetSheet(); + foreach (var (id, amount) in expectedFavRewards) + { + var ticker = runeSheet.Values.First(rune => rune.Id == id).Ticker; + var currency = Currencies.GetRune(ticker); + Assert.Equal(amount, state.GetBalance(TesterAvatarAddress, currency).RawValue); + } + itemSlotState = state.TryGetLegacyState(itemSlotStateAddress, out rawItemSlotState) ? new ItemSlotState(rawItemSlotState) diff --git a/.Lib9c.Tests/Action/AdventureBoss/SweepAdventureBossTest.cs b/.Lib9c.Tests/Action/AdventureBoss/SweepAdventureBossTest.cs index e80ae06f0..1dede794e 100644 --- a/.Lib9c.Tests/Action/AdventureBoss/SweepAdventureBossTest.cs +++ b/.Lib9c.Tests/Action/AdventureBoss/SweepAdventureBossTest.cs @@ -87,7 +87,7 @@ public static IEnumerable GetExecuteMemberData() }; yield return new object[] { - 1, 100, 98, null, new[] { (600301, 8), (600302, 0), (600303, 0), (600304, 0), }, + 1, 100, 99, null, new[] { (600301, 3), (600302, 0), (600303, 0), (600304, 0), }, }; yield return new object[] { @@ -95,11 +95,11 @@ public static IEnumerable GetExecuteMemberData() }; yield return new object[] { - 10, 10, 10, typeof(NotEnoughMaterialException), null, + 10, 1, 1, typeof(NotEnoughMaterialException), null, }; yield return new object[] { - 20, 40, 0, null, new[] { (600301, 67), (600302, 67), (600303, 0), (600304, 0), }, + 20, 20, 0, null, new[] { (600301, 9), (600302, 10), (600303, 8), (600304, 8), }, }; } diff --git a/.Lib9c.Tests/Action/AdventureBoss/UnlockFloorTest.cs b/.Lib9c.Tests/Action/AdventureBoss/UnlockFloorTest.cs index 6841e2516..619761c78 100644 --- a/.Lib9c.Tests/Action/AdventureBoss/UnlockFloorTest.cs +++ b/.Lib9c.Tests/Action/AdventureBoss/UnlockFloorTest.cs @@ -15,6 +15,7 @@ namespace Lib9c.Tests.Action.AdventureBoss using Nekoyume.Model.State; using Nekoyume.Module; using Nekoyume.TableData; + using Nekoyume.TableData.AdventureBoss; using Xunit; public class UnlockFloorTest @@ -86,7 +87,9 @@ public class UnlockFloorTest // Not enough resources [InlineData(false, true, 5, 5, typeof(NotEnoughMaterialException))] [InlineData(true, true, 5, 5, typeof(InsufficientBalanceException))] - public void Execute(bool useNcg, bool notEnough, int startFloor, int expectedFloor, Type exc) + public void Execute( + bool useNcg, bool notEnough, int startFloor, int expectedFloor, Type exc + ) { // Settings var state = _initialState; @@ -104,14 +107,20 @@ public void Execute(bool useNcg, bool notEnough, int startFloor, int expectedFlo if (!notEnough) { + var unlockRow = state.GetSheet().Values + .First(row => row.FloorId == 6); if (useNcg) { - state = state.MintAsset(new ActionContext(), TesterAddress, 5 * NCG); + state = state.MintAsset( + new ActionContext(), + TesterAddress, + unlockRow.NcgPrice * NCG + ); } else { var inventory = state.GetInventoryV2(TesterAvatarAddress); - inventory.AddItem(goldenDust, 5); + inventory.AddItem(goldenDust, unlockRow.GoldenDustPrice); state = state.SetInventory(TesterAvatarAddress, inventory); } } diff --git a/.Lib9c.Tests/Action/AdventureBoss/WantedTest.cs b/.Lib9c.Tests/Action/AdventureBoss/WantedTest.cs index 287d80ee0..280a51258 100644 --- a/.Lib9c.Tests/Action/AdventureBoss/WantedTest.cs +++ b/.Lib9c.Tests/Action/AdventureBoss/WantedTest.cs @@ -102,8 +102,8 @@ public void Execute() var bountyBoard = nextState.GetBountyBoard(1); Assert.Equal(600201, bountyBoard.FixedRewardItemId); Assert.Null(bountyBoard.FixedRewardFavId); - Assert.Null(bountyBoard.RandomRewardItemId); - Assert.Equal(20001, bountyBoard.RandomRewardFavId); + Assert.Equal(600202, bountyBoard.RandomRewardItemId); + Assert.Null(bountyBoard.RandomRewardFavId); var investor = Assert.Single(bountyBoard.Investors); Assert.Equal( @@ -152,8 +152,8 @@ public void Execute() Assert.Equal(2, bountyBoard.Investors.Count); Assert.Equal(600201, bountyBoard.FixedRewardItemId); Assert.Null(bountyBoard.FixedRewardFavId); - Assert.Null(bountyBoard.RandomRewardItemId); - Assert.Equal(20001, bountyBoard.RandomRewardFavId); + Assert.Equal(600202, bountyBoard.RandomRewardItemId); + Assert.Null(bountyBoard.RandomRewardFavId); investor = bountyBoard.Investors.First(i => i.AvatarAddress == AvatarAddress2); Assert.Equal(minBounty * NCG, investor.Price); diff --git a/.Lib9c.Tests/Action/BuyTest.cs b/.Lib9c.Tests/Action/BuyTest.cs index 90dce7e7a..9239d40cd 100644 --- a/.Lib9c.Tests/Action/BuyTest.cs +++ b/.Lib9c.Tests/Action/BuyTest.cs @@ -15,6 +15,7 @@ namespace Lib9c.Tests.Action using Libplanet.Types.Assets; using Nekoyume; using Nekoyume.Action; + using Nekoyume.Arena; using Nekoyume.Model; using Nekoyume.Model.Item; using Nekoyume.Model.Mail; @@ -442,7 +443,7 @@ public void Execute(params OrderData[] orderDataList) var arenaSheet = _tableSheets.ArenaSheet; var arenaData = arenaSheet.GetRoundByBlockIndex(100); - var feeStoreAddress = Addresses.GetShopFeeAddress(arenaData.ChampionshipId, arenaData.Round); + var feeStoreAddress = ArenaHelper.DeriveArenaAddress(arenaData.ChampionshipId, arenaData.Round); var goldCurrencyGold = nextState.GetBalance(feeStoreAddress, goldCurrencyState); Assert.Equal(totalTax, goldCurrencyGold); var buyerGold = nextState.GetBalance(_buyerAgentAddress, goldCurrencyState); @@ -947,7 +948,7 @@ public void Execute_With_Testbed() Assert.Equal(prevBuyerGold - totalPrice, buyerGold); var arenaSheet = _tableSheets.ArenaSheet; var arenaData = arenaSheet.GetRoundByBlockIndex(100); - var feeStoreAddress = Addresses.GetShopFeeAddress(arenaData.ChampionshipId, arenaData.Round); + var feeStoreAddress = ArenaHelper.DeriveArenaAddress(arenaData.ChampionshipId, arenaData.Round); var goldCurrencyGold = nextState.GetBalance(feeStoreAddress, goldCurrencyState); Assert.Equal(totalTax, goldCurrencyGold); diff --git a/.Lib9c.Tests/Action/CombinationEquipmentTest.cs b/.Lib9c.Tests/Action/CombinationEquipmentTest.cs index 503d1d062..3714763fc 100644 --- a/.Lib9c.Tests/Action/CombinationEquipmentTest.cs +++ b/.Lib9c.Tests/Action/CombinationEquipmentTest.cs @@ -11,6 +11,7 @@ namespace Lib9c.Tests.Action using Libplanet.Types.Assets; using Nekoyume; using Nekoyume.Action; + using Nekoyume.Arena; using Nekoyume.Helper; using Nekoyume.Model; using Nekoyume.Model.Item; @@ -290,7 +291,7 @@ bool previousCostStateExist { var arenaSheet = _tableSheets.ArenaSheet; var arenaData = arenaSheet.GetRoundByBlockIndex(blockIndex); - var feeStoreAddress = Addresses.GetBlacksmithFeeAddress(arenaData.ChampionshipId, arenaData.Round); + var feeStoreAddress = ArenaHelper.DeriveArenaAddress(arenaData.ChampionshipId, arenaData.Round); Assert.Equal(450 * currency, nextState.GetBalance(feeStoreAddress, currency)); } diff --git a/.Lib9c.Tests/Action/ItemEnhancementTest.cs b/.Lib9c.Tests/Action/ItemEnhancementTest.cs index a5883993f..a0817448b 100644 --- a/.Lib9c.Tests/Action/ItemEnhancementTest.cs +++ b/.Lib9c.Tests/Action/ItemEnhancementTest.cs @@ -13,6 +13,7 @@ namespace Lib9c.Tests.Action using Libplanet.Types.Assets; using Nekoyume; using Nekoyume.Action; + using Nekoyume.Arena; using Nekoyume.Extensions; using Nekoyume.Model.Item; using Nekoyume.Model.Mail; @@ -319,7 +320,7 @@ public void Execute( var arenaSheet = _tableSheets.ArenaSheet; var arenaData = arenaSheet.GetRoundByBlockIndex(1); var feeStoreAddress = - Addresses.GetBlacksmithFeeAddress(arenaData.ChampionshipId, arenaData.Round); + ArenaHelper.DeriveArenaAddress(arenaData.ChampionshipId, arenaData.Round); Assert.Equal( expectedCost * _currency, nextState.GetBalance(feeStoreAddress, _currency) @@ -511,7 +512,7 @@ public void Execute_With_Hammer(bool oldStart) var arenaSheet = _tableSheets.ArenaSheet; var arenaData = arenaSheet.GetRoundByBlockIndex(1); var feeStoreAddress = - Addresses.GetBlacksmithFeeAddress(arenaData.ChampionshipId, arenaData.Round); + ArenaHelper.DeriveArenaAddress(arenaData.ChampionshipId, arenaData.Round); Assert.Equal( expectedCost * _currency, nextState.GetBalance(feeStoreAddress, _currency) diff --git a/.Lib9c.Tests/Action/RaidTest.cs b/.Lib9c.Tests/Action/RaidTest.cs index 49a102635..1427fd737 100644 --- a/.Lib9c.Tests/Action/RaidTest.cs +++ b/.Lib9c.Tests/Action/RaidTest.cs @@ -10,6 +10,7 @@ namespace Lib9c.Tests.Action using Libplanet.Types.Assets; using Nekoyume; using Nekoyume.Action; + using Nekoyume.Arena; using Nekoyume.Battle; using Nekoyume.Extensions; using Nekoyume.Helper; @@ -359,6 +360,10 @@ Dictionary rewardMap { Assert.Equal(0 * _goldCurrency, nextState.GetBalance(_agentAddress, _goldCurrency)); Assert.Equal(purchaseCount + 1, nextState.GetRaiderState(raiderAddress).PurchaseCount); + var arenaData = _tableSheets.ArenaSheet.GetRoundByBlockIndex(ctx.BlockIndex); + var feeAddress = + ArenaHelper.DeriveArenaAddress(arenaData.ChampionshipId, arenaData.Round); + Assert.True(nextState.GetBalance(feeAddress, _goldCurrency) > 0 * _goldCurrency); } Assert.True(nextState.TryGetLegacyState(worldBossKillRewardRecordAddress, out List rawRewardInfo)); diff --git a/.Lib9c.Tests/Action/Scenario/GrimoireScenarioTest.cs b/.Lib9c.Tests/Action/Scenario/GrimoireScenarioTest.cs index ddfe2d293..a9af87f6d 100644 --- a/.Lib9c.Tests/Action/Scenario/GrimoireScenarioTest.cs +++ b/.Lib9c.Tests/Action/Scenario/GrimoireScenarioTest.cs @@ -268,7 +268,7 @@ public void Arena() foreach (var spawn in log.OfType()) { ArenaCharacter character = spawn.Character; - Assert.Equal(400, character.HIT); + Assert.Equal(30, character.ATK); Assert.Equal(11, character.CRI); } @@ -356,7 +356,7 @@ private void Assert_Player(AvatarState avatarState, IWorld state, Address avatar var row = _tableSheets.CharacterSheet[player.CharacterId]; Assert.Null(player.Grimoire); Assert.NotNull(equippedPlayer.Grimoire); - Assert.Equal(player.HIT + 310 + (int)(row.LvHIT * diffLevel), equippedPlayer.HIT); + Assert.Equal(player.ATK + 10 + (int)(row.LvATK * diffLevel), equippedPlayer.ATK); Assert.Equal(player.CRI + 1, equippedPlayer.CRI); } diff --git a/.Lib9c.Tests/Action/Scenario/MarketScenarioTest.cs b/.Lib9c.Tests/Action/Scenario/MarketScenarioTest.cs index 66dbcfc03..29de1a25c 100644 --- a/.Lib9c.Tests/Action/Scenario/MarketScenarioTest.cs +++ b/.Lib9c.Tests/Action/Scenario/MarketScenarioTest.cs @@ -12,6 +12,7 @@ namespace Lib9c.Tests.Action.Scenario using Libplanet.Types.Assets; using Nekoyume; using Nekoyume.Action; + using Nekoyume.Arena; using Nekoyume.Helper; using Nekoyume.Model; using Nekoyume.Model.Item; @@ -307,7 +308,7 @@ public void Register_And_Buy() var buyerAvatarState = latestState.GetAvatarState(_buyerAvatarAddress); var arenaData = _tableSheets.ArenaSheet.GetRoundByBlockIndex(3L); - var feeStoreAddress = Addresses.GetShopFeeAddress(arenaData.ChampionshipId, arenaData.Round); + var feeStoreAddress = ArenaHelper.DeriveArenaAddress(arenaData.ChampionshipId, arenaData.Round); var totalTax = 0 * _currency; foreach (var group in action3.ProductInfos.GroupBy(p => p.AgentAddress)) { @@ -1083,7 +1084,7 @@ public void HardFork() var buyerAvatarState = tradedState.GetAvatarState(_buyerAvatarAddress); var arenaData = _tableSheets.ArenaSheet.GetRoundByBlockIndex(3L); - var feeStoreAddress = Addresses.GetShopFeeAddress(arenaData.ChampionshipId, arenaData.Round); + var feeStoreAddress = ArenaHelper.DeriveArenaAddress(arenaData.ChampionshipId, arenaData.Round); var totalTax = 0 * _currency; foreach (var group in buyAction.ProductInfos.GroupBy(p => p.AgentAddress)) { diff --git a/.Lib9c.Tests/Lib9c.Tests.csproj b/.Lib9c.Tests/Lib9c.Tests.csproj index d6545f071..96550c2f5 100644 --- a/.Lib9c.Tests/Lib9c.Tests.csproj +++ b/.Lib9c.Tests/Lib9c.Tests.csproj @@ -50,7 +50,7 @@ - + diff --git a/.Lib9c.Tests/Model/AdventureBoss/AdventureBossSimulatorTest.cs b/.Lib9c.Tests/Model/AdventureBoss/AdventureBossSimulatorTest.cs index 8ab250ccb..1beac02fb 100644 --- a/.Lib9c.Tests/Model/AdventureBoss/AdventureBossSimulatorTest.cs +++ b/.Lib9c.Tests/Model/AdventureBoss/AdventureBossSimulatorTest.cs @@ -46,6 +46,13 @@ public AdventureBossSimulator Simulate() costume.equipped = true; _avatarState.inventory.AddItem(costume); + var collectionSheet = _tableSheets.CollectionSheet; + var statModifiers = new List(); + foreach (var r in collectionSheet.Values) + { + statModifiers.AddRange(collectionSheet[r.Id].StatModifiers); + } + var simulator = new AdventureBossSimulator( adventureBossData.BossId, 1, @@ -64,18 +71,13 @@ public AdventureBossSimulator Simulate() _tableSheets.AdventureBossFloorSheet[1], _tableSheets.MaterialItemSheet ), - new List - { - new (StatType.ATK, StatModifier.OperationType.Add, 100), - }, + statModifiers, _tableSheets.DeBuffLimitSheet, _tableSheets.BuffLinkSheet ); var player = simulator.Player; Assert.Equal(row.Stat, player.Stats.CostumeStats.ATK); - Assert.Equal(100, player.Stats.CollectionStats.ATK); - Assert.Equal(100 + row.Stat + player.Stats.BaseStats.ATK, player.Stats.ATK); simulator.Simulate(); @@ -104,7 +106,7 @@ public AdventureBossSimulator Simulate() [InlineData(false, 2, 1, 1)] [InlineData(false, 2, 1, 5)] [InlineData(false, 2, 1, 3)] - public void AddBreakthrough(bool simulate, int bossId, int fristFloor, int lastFloor) + public void AddBreakthrough(bool simulate, int bossId, int firstFloor, int lastFloor) { AdventureBossSimulator simulator; var floorRows = _tableSheets.AdventureBossFloorSheet.Values @@ -153,7 +155,7 @@ public void AddBreakthrough(bool simulate, int bossId, int fristFloor, int lastF } var floorIdList = new List(); - for (var fl = fristFloor; fl <= lastFloor; fl++) + for (var fl = firstFloor; fl <= lastFloor; fl++) { floorIdList.Add(floorRows.First(row => row.Floor == fl).Id); } @@ -164,11 +166,11 @@ public void AddBreakthrough(bool simulate, int bossId, int fristFloor, int lastF if (!simulate) { // +2: 1 for last floor, 1 for SpawnPlayer - Assert.Equal(lastFloor - fristFloor + 2, simulator.Log.events.Count); + Assert.Equal(lastFloor - firstFloor + 2, simulator.Log.events.Count); } var filtered = simulator.Log.events.OfType(); - Assert.Equal(lastFloor - fristFloor + 1, filtered.Count()); + Assert.Equal(lastFloor - firstFloor + 1, filtered.Count()); if (simulate) { diff --git a/.Lib9c.Tests/Policy/BlockPolicyTest.cs b/.Lib9c.Tests/Policy/BlockPolicyTest.cs index 7c5fa87ea..0a1d0ad85 100644 --- a/.Lib9c.Tests/Policy/BlockPolicyTest.cs +++ b/.Lib9c.Tests/Policy/BlockPolicyTest.cs @@ -19,6 +19,7 @@ namespace Lib9c.Tests using Libplanet.Types.Assets; using Libplanet.Types.Blocks; using Libplanet.Types.Consensus; + using Libplanet.Types.Evidence; using Libplanet.Types.Tx; using Nekoyume; using Nekoyume.Action; @@ -362,6 +363,7 @@ List GenerateTransactions(int count) Assert.Equal(1, blockChain.Count); var txs = GenerateTransactions(5).OrderBy(tx => tx.Id).ToList(); + var evs = new List(); var preEvalBlock1 = new BlockContent( new BlockMetadata( index: 1, @@ -369,9 +371,12 @@ List GenerateTransactions(int count) publicKey: adminPublicKey, previousHash: blockChain.Tip.Hash, txHash: BlockContent.DeriveTxHash(txs), - lastCommit: null), - transactions: txs).Propose(); - Block block1 = EvaluateAndSign(store, actionEvaluator, preEvalBlock1, adminPrivateKey); + lastCommit: null, + evidenceHash: BlockContent.DeriveEvidenceHash(evs)), + transactions: txs, + evidence: evs).Propose(); + var stateRootHash = blockChain.DetermineNextBlockStateRootHash(blockChain.Tip, out _); + Block block1 = EvaluateAndSign(stateRootHash, preEvalBlock1, adminPrivateKey); blockChain.Append(block1, GenerateBlockCommit(block1, adminPrivateKey)); Assert.Equal(2, blockChain.Count); Assert.True(blockChain.ContainsBlock(block1.Hash)); @@ -383,9 +388,12 @@ List GenerateTransactions(int count) publicKey: adminPublicKey, previousHash: blockChain.Tip.Hash, txHash: BlockContent.DeriveTxHash(txs), - lastCommit: GenerateBlockCommit(blockChain.Tip, adminPrivateKey)), - transactions: txs).Propose(); - Block block2 = EvaluateAndSign(store, actionEvaluator, preEvalBlock2, adminPrivateKey); + lastCommit: GenerateBlockCommit(blockChain.Tip, adminPrivateKey), + evidenceHash: BlockContent.DeriveEvidenceHash(evs)), + transactions: txs, + evidence: evs).Propose(); + stateRootHash = blockChain.DetermineNextBlockStateRootHash(blockChain.Tip, out _); + Block block2 = EvaluateAndSign(stateRootHash, preEvalBlock2, adminPrivateKey); blockChain.Append(block2, GenerateBlockCommit(block2, adminPrivateKey)); Assert.Equal(3, blockChain.Count); Assert.True(blockChain.ContainsBlock(block2.Hash)); @@ -397,9 +405,12 @@ List GenerateTransactions(int count) publicKey: adminPublicKey, previousHash: blockChain.Tip.Hash, txHash: BlockContent.DeriveTxHash(txs), - lastCommit: GenerateBlockCommit(blockChain.Tip, adminPrivateKey)), - transactions: txs).Propose(); - Block block3 = EvaluateAndSign(store, actionEvaluator, preEvalBlock3, adminPrivateKey); + lastCommit: GenerateBlockCommit(blockChain.Tip, adminPrivateKey), + evidenceHash: BlockContent.DeriveEvidenceHash(evs)), + transactions: txs, + evidence: evs).Propose(); + stateRootHash = blockChain.DetermineNextBlockStateRootHash(blockChain.Tip, out _); + Block block3 = EvaluateAndSign(stateRootHash, preEvalBlock3, adminPrivateKey); Assert.Throws( () => blockChain.Append(block3, GenerateBlockCommit(block3, adminPrivateKey))); Assert.Equal(3, blockChain.Count); @@ -466,6 +477,7 @@ List GenerateTransactions(int count) Assert.Equal(1, blockChain.Count); var txs = GenerateTransactions(10).OrderBy(tx => tx.Id).ToList(); + var evs = new List(); PreEvaluationBlock preEvalBlock1 = new BlockContent( new BlockMetadata( index: 1, @@ -473,9 +485,12 @@ List GenerateTransactions(int count) publicKey: adminPublicKey, previousHash: blockChain.Tip.Hash, txHash: BlockContent.DeriveTxHash(txs), - lastCommit: null), - transactions: txs).Propose(); - Block block1 = EvaluateAndSign(store, actionEvaluator, preEvalBlock1, adminPrivateKey); + lastCommit: null, + evidenceHash: BlockContent.DeriveEvidenceHash(evs)), + transactions: txs, + evidence: evs).Propose(); + var stateRootHash = blockChain.DetermineNextBlockStateRootHash(blockChain.Tip, out _); + Block block1 = EvaluateAndSign(stateRootHash, preEvalBlock1, adminPrivateKey); // Should be fine since policy hasn't kicked in yet. blockChain.Append(block1, GenerateBlockCommit(block1, adminPrivateKey)); @@ -490,9 +505,12 @@ List GenerateTransactions(int count) publicKey: adminPublicKey, previousHash: blockChain.Tip.Hash, txHash: BlockContent.DeriveTxHash(txs), - lastCommit: GenerateBlockCommit(blockChain.Tip, adminPrivateKey)), - transactions: txs).Propose(); - Block block2 = EvaluateAndSign(store, actionEvaluator, preEvalBlock2, adminPrivateKey); + lastCommit: GenerateBlockCommit(blockChain.Tip, adminPrivateKey), + evidenceHash: BlockContent.DeriveEvidenceHash(evs)), + transactions: txs, + evidence: evs).Propose(); + stateRootHash = blockChain.DetermineNextBlockStateRootHash(blockChain.Tip, out _); + Block block2 = EvaluateAndSign(stateRootHash, preEvalBlock2, adminPrivateKey); // Subpolicy kicks in. Assert.Throws( @@ -511,9 +529,11 @@ List GenerateTransactions(int count) publicKey: adminPublicKey, previousHash: blockChain.Tip.Hash, txHash: BlockContent.DeriveTxHash(txs), - lastCommit: GenerateBlockCommit(blockChain.Tip, adminPrivateKey)), - transactions: txs).Propose(); - Block block3 = EvaluateAndSign(store, actionEvaluator, preEvalBlock3, adminPrivateKey); + lastCommit: GenerateBlockCommit(blockChain.Tip, adminPrivateKey), + evidenceHash: BlockContent.DeriveEvidenceHash(evs)), + transactions: txs, + evidence: evs).Propose(); + Block block3 = EvaluateAndSign(stateRootHash, preEvalBlock3, adminPrivateKey); blockChain.Append(block3, GenerateBlockCommit(block3, adminPrivateKey)); Assert.Equal(3, blockChain.Count); Assert.True(blockChain.ContainsBlock(block3.Hash)); @@ -533,6 +553,7 @@ private BlockCommit GenerateBlockCommit(Block block, PrivateKey key) block.Hash, DateTimeOffset.UtcNow, privateKey.PublicKey, + null, VoteFlag.PreCommit).Sign(privateKey))) : null; } @@ -572,8 +593,7 @@ private Block MakeGenesisBlock( } private Block EvaluateAndSign( - IStore store, - ActionEvaluator actionEvaluator, + HashDigest stateRootHash, PreEvaluationBlock preEvaluationBlock, PrivateKey privateKey ) @@ -592,9 +612,7 @@ PrivateKey privateKey $"{BlockMetadata.SlothProtocolVersion} is not acceptable"); } - var stateRootHash = store.GetNextStateRootHash((BlockHash)preEvaluationBlock.PreviousHash); - - return preEvaluationBlock.Sign(privateKey, (HashDigest)stateRootHash); + return preEvaluationBlock.Sign(privateKey, stateRootHash); } } } diff --git a/.Lib9c.Tests/TableData/ArenaSheetTest.cs b/.Lib9c.Tests/TableData/ArenaSheetTest.cs index df03f8446..2c815f0b4 100644 --- a/.Lib9c.Tests/TableData/ArenaSheetTest.cs +++ b/.Lib9c.Tests/TableData/ArenaSheetTest.cs @@ -143,8 +143,9 @@ public void Row_Round_Has_Deterministic_Pattern() } // Check ChampionShip round data - // Except mocaverse event season - if (round.ChampionshipId == 8) + // Except mocaverse event season 8 + // Except ygg event season 9 + if (round.ChampionshipId == 8 || round.ChampionshipId == 9) { Assert.Equal(0, round.RequiredMedalCount); } diff --git a/.Lib9c.Tools/Lib9c.Tools.csproj b/.Lib9c.Tools/Lib9c.Tools.csproj index 735b45a9e..01814b656 100644 --- a/.Lib9c.Tools/Lib9c.Tools.csproj +++ b/.Lib9c.Tools/Lib9c.Tools.csproj @@ -13,7 +13,7 @@ - + diff --git a/.Lib9c.Tools/SubCommand/State.cs b/.Lib9c.Tools/SubCommand/State.cs index 06675d3a2..b4c6e0343 100644 --- a/.Lib9c.Tools/SubCommand/State.cs +++ b/.Lib9c.Tools/SubCommand/State.cs @@ -102,7 +102,7 @@ IStateStore stateStore Block block = store.GetBlock(blockHash); var preEvalBlock = new PreEvaluationBlock( - block, block.Transactions + block, block.Transactions, block.Evidence ); stderr.WriteLine( "[{0}/{1}] Executing block #{2} {3}...", diff --git a/.Libplanet b/.Libplanet index ebb5e8493..5ecafb7fb 160000 --- a/.Libplanet +++ b/.Libplanet @@ -1 +1 @@ -Subproject commit ebb5e8493f2beeae562d2438403395991d43c51d +Subproject commit 5ecafb7fb65b7eceddeb4b2f0631147b047df142 diff --git a/.Libplanet.Extensions.ActionEvaluatorCommonComponents/Libplanet.Extensions.ActionEvaluatorCommonComponents.csproj b/.Libplanet.Extensions.ActionEvaluatorCommonComponents/Libplanet.Extensions.ActionEvaluatorCommonComponents.csproj index 9c6e17ed8..caa4b95a2 100644 --- a/.Libplanet.Extensions.ActionEvaluatorCommonComponents/Libplanet.Extensions.ActionEvaluatorCommonComponents.csproj +++ b/.Libplanet.Extensions.ActionEvaluatorCommonComponents/Libplanet.Extensions.ActionEvaluatorCommonComponents.csproj @@ -7,7 +7,7 @@ - + diff --git a/.Libplanet.Extensions.ActionEvaluatorCommonComponents/PreEvaluationBlockMarshaller.cs b/.Libplanet.Extensions.ActionEvaluatorCommonComponents/PreEvaluationBlockMarshaller.cs index dc34196bf..cb7a1630d 100644 --- a/.Libplanet.Extensions.ActionEvaluatorCommonComponents/PreEvaluationBlockMarshaller.cs +++ b/.Libplanet.Extensions.ActionEvaluatorCommonComponents/PreEvaluationBlockMarshaller.cs @@ -24,7 +24,8 @@ public static IPreEvaluationBlock Unmarshal(Dictionary dictionary) { return new PreEvaluationBlock( BlockMarshaler.UnmarshalPreEvaluationBlockHeader((Dictionary)dictionary[HeaderKey]), - BlockMarshaler.UnmarshalBlockTransactions(dictionary)); + BlockMarshaler.UnmarshalBlockTransactions(dictionary), + BlockMarshaler.UnmarshalBlockEvidence(dictionary)); } public static byte[] Serialize(this IPreEvaluationBlock block) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 886666522..d803d6e00 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -67,7 +67,8 @@ jobs: run: | set -e - sed -i -E 's|.*|netstandard2.1|' Lib9c*/*.csproj Libplanet*/*.csproj + sed -i -E 's|.*|netstandard2.1|' Lib9c*/*.csproj + sed -i -E 's|().*()|\1netstandard2.1\2|' .Libplanet/Directory.Build.props sed -i -E 's|.*|disable|' Lib9c*/*.csproj Libplanet*/*.csproj sed -i -E 's|\[MaybeNullWhen\(false\)] out TValue value|out TValue value|' Lib9c/TableData/Sheet.cs sed -i -E 's|public bool TryGetValue\(TKey key, out TValue value, bool throwException\)|public bool TryGetValue\(TKey key, out TValue? value, bool throwException\)|' Lib9c/TableData/Sheet.cs @@ -84,15 +85,20 @@ jobs: uses: actions/setup-dotnet@v3 with: dotnet-version: 6.0.400 - - uses: pnpm/action-setup@v3 + - uses: pnpm/action-setup@v4 with: - version: 8 - run_install: true + version: 9 + run_install: | + recursive: true + cwd: "@planetarium" - name: Build Lib9c.Tools run: dotnet build .Lib9c.Tools/Lib9c.Tools.csproj - run: pnpm -r build + working-directory: "@planetarium/lib9c" - run: pnpm -r fmt:ci + working-directory: "@planetarium/lib9c" - run: pnpm -r test + working-directory: "@planetarium/lib9c" release: if: github.ref_type == 'tag' && startsWith(github.ref_name, 'v') diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 45b5f3349..944c89cd3 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -44,7 +44,8 @@ jobs: env: NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }} jsr: - uses: planetarium/.github/.github/workflows/publish_jsr.yaml@7da1714cbc9554aa17a19bc6477b8b067f714ea7 + uses: planetarium/.github/.github/workflows/publish_jsr.yaml@bfb34283b538003768d19bff9ea05bcbd709d643 with: + workspace_directory: "@planetarium" working_directory: "@planetarium/lib9c" - pnpm_version: "9.1.2" + pnpm_version: "9" diff --git a/@planetarium/lib9c/jsr.json b/@planetarium/lib9c/jsr.json index 668ce244f..53906b81d 100644 --- a/@planetarium/lib9c/jsr.json +++ b/@planetarium/lib9c/jsr.json @@ -1,7 +1,7 @@ { "$schema": "https://jsr.io/schema/config-file.v1.json", "name": "@planetarium/lib9c", - "version": "0.2.0", + "version": "0.3.0", "exports": "./src/index.ts", "publish": { "include": [ diff --git a/@planetarium/lib9c/package.json b/@planetarium/lib9c/package.json index 5a5d4c520..fa8c63460 100644 --- a/@planetarium/lib9c/package.json +++ b/@planetarium/lib9c/package.json @@ -1,6 +1,6 @@ { "name": "@planetarium/lib9c", - "version": "0.2.0", + "version": "0.3.0", "description": "", "module": "dist/index.js", "type": "module", diff --git a/@planetarium/lib9c/src/actions/create_avatar.ts b/@planetarium/lib9c/src/actions/create_avatar.ts new file mode 100644 index 000000000..59fa66bd2 --- /dev/null +++ b/@planetarium/lib9c/src/actions/create_avatar.ts @@ -0,0 +1,47 @@ +import { BencodexDictionary, type Dictionary } from "@planetarium/bencodex"; +import { GameAction, type GameActionArgs } from "./common.js"; + +export type CreateAvatarArgs = { + index: bigint; + hair: bigint; + lens: bigint; + ear: bigint; + tail: bigint; + name: string; +} & GameActionArgs; + +/** + * The `CreateAvatar` action is used to create a new avatar that owned by agent. + */ +export class CreateAvatar extends GameAction { + protected readonly type_id: string = "create_avatar11"; + + public readonly index: bigint; + public readonly hair: bigint; + public readonly lens: bigint; + public readonly ear: bigint; + public readonly tail: bigint; + public readonly name: string; + + constructor({ id, index, hair, lens, ear, tail, name }: CreateAvatarArgs) { + super({ id }); + + this.index = index; + this.hair = hair; + this.lens = lens; + this.ear = ear; + this.tail = tail; + this.name = name; + } + + protected plain_value_internal(): Dictionary { + return new BencodexDictionary([ + ["index", this.index], + ["hair", this.hair], + ["lens", this.lens], + ["ear", this.ear], + ["tail", this.tail], + ["name", this.name], + ]); + } +} diff --git a/@planetarium/lib9c/src/index.ts b/@planetarium/lib9c/src/index.ts index afc8336e9..a8ef3551d 100644 --- a/@planetarium/lib9c/src/index.ts +++ b/@planetarium/lib9c/src/index.ts @@ -43,3 +43,8 @@ export { } from "./models/currencies.js"; export { HashDigest, type AlgorithmNames } from "./models/hashdigest.js"; export { ODIN_GENESIS_HASH, HEIMDALL_GENESIS_HASH } from "./models/networks.js"; + +export { + CreateAvatar, + type CreateAvatarArgs, +} from "./actions/create_avatar.js"; diff --git a/@planetarium/lib9c/tests/actions/create_avatar.test.ts b/@planetarium/lib9c/tests/actions/create_avatar.test.ts new file mode 100644 index 000000000..076f8fff8 --- /dev/null +++ b/@planetarium/lib9c/tests/actions/create_avatar.test.ts @@ -0,0 +1,33 @@ +import { describe } from "vitest"; +import { uuidToGuidBytes } from "../../src/actions/common.js"; +import { CreateAvatar } from "../../src/actions/create_avatar.js"; +import { runTests } from "./common.js"; + +describe("CreateAvatar", () => { + describe("odin", () => { + runTests("valid case", [ + new CreateAvatar({ + id: uuidToGuidBytes("ae195a5e-b43f-4c6d-8fd3-9f38311a45eb"), + index: 0n, + hair: 0n, + ear: 0n, + lens: 0n, + tail: 0n, + name: "gae-ddong-i", + }), + ]); + }); + describe("heimdall", () => { + runTests("valid case", [ + new CreateAvatar({ + id: uuidToGuidBytes("ae195a5e-b43f-4c6d-8fd3-9f38311a45eb"), + index: 0n, + hair: 0n, + ear: 0n, + lens: 0n, + tail: 0n, + name: "gae-ddong-i", + }), + ]); + }); +}); diff --git a/Lib9c.Abstractions/Lib9c.Abstractions.csproj b/Lib9c.Abstractions/Lib9c.Abstractions.csproj index bc2694470..91682acd0 100644 --- a/Lib9c.Abstractions/Lib9c.Abstractions.csproj +++ b/Lib9c.Abstractions/Lib9c.Abstractions.csproj @@ -9,7 +9,7 @@ - + diff --git a/Lib9c.DevExtensions/Lib9c.DevExtensions.csproj b/Lib9c.DevExtensions/Lib9c.DevExtensions.csproj index cf8618fef..6ea7925cd 100644 --- a/Lib9c.DevExtensions/Lib9c.DevExtensions.csproj +++ b/Lib9c.DevExtensions/Lib9c.DevExtensions.csproj @@ -10,9 +10,9 @@ - - - + + + diff --git a/Lib9c.Policy/Policy/DebugPolicy.cs b/Lib9c.Policy/Policy/DebugPolicy.cs index 54985c7ae..d5a7e9208 100644 --- a/Lib9c.Policy/Policy/DebugPolicy.cs +++ b/Lib9c.Policy/Policy/DebugPolicy.cs @@ -36,5 +36,7 @@ public BlockPolicyViolationException ValidateNextBlock( public int GetMaxTransactionsPerSignerPerBlock(long index) => int.MaxValue; public int GetMinBlockProtocolVersion(long index) => 0; + + public long GetMaxEvidencePendingDuration(long index) => 10L; } } diff --git a/Lib9c.Proposer/Lib9c.Proposer.csproj b/Lib9c.Proposer/Lib9c.Proposer.csproj index 7b0701371..281c38c2a 100644 --- a/Lib9c.Proposer/Lib9c.Proposer.csproj +++ b/Lib9c.Proposer/Lib9c.Proposer.csproj @@ -10,7 +10,7 @@ - + diff --git a/Lib9c.Proposer/Proposer.cs b/Lib9c.Proposer/Proposer.cs index 4d0260572..65abac083 100644 --- a/Lib9c.Proposer/Proposer.cs +++ b/Lib9c.Proposer/Proposer.cs @@ -45,6 +45,7 @@ public class Proposer block.Hash, DateTimeOffset.UtcNow, _privateKey.PublicKey, + null, VoteFlag.PreCommit).Sign(_privateKey))) : null; _chain.Append(block, commit); diff --git a/Lib9c.sln b/Lib9c.sln index d9eb0847e..3e2df8b42 100644 --- a/Lib9c.sln +++ b/Lib9c.sln @@ -13,15 +13,15 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Lib9c.Tools.Tests", ".Lib9c EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Libplanet", "Libplanet", "{AFA609F0-8CAE-4494-A4E2-EABD9E95D678}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Libplanet.Stun", ".Libplanet\Libplanet.Stun\Libplanet.Stun.csproj", "{6126D57A-F079-4B07-B1E4-531630DCCDBF}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Libplanet.Stun", ".Libplanet\src\Libplanet.Stun\Libplanet.Stun.csproj", "{6126D57A-F079-4B07-B1E4-531630DCCDBF}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Libplanet", ".Libplanet\Libplanet\Libplanet.csproj", "{5C9F5F97-367E-4F8B-A123-D9AADE786CA1}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Libplanet", ".Libplanet\src\Libplanet\Libplanet.csproj", "{5C9F5F97-367E-4F8B-A123-D9AADE786CA1}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Libplanet.Analyzers", ".Libplanet\Libplanet.Analyzers\Libplanet.Analyzers.csproj", "{659722A9-132F-4B41-87BC-1B56A97A98FA}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Libplanet.Analyzers", ".Libplanet\tools\Libplanet.Analyzers\Libplanet.Analyzers.csproj", "{659722A9-132F-4B41-87BC-1B56A97A98FA}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Lib9c.Benchmarks", ".Lib9c.Benchmarks\Lib9c.Benchmarks.csproj", "{9EB7458F-FD90-4719-A3B6-FBC678BC43D8}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Libplanet.RocksDBStore", ".Libplanet\Libplanet.RocksDBStore\Libplanet.RocksDBStore.csproj", "{17AAB5B1-695B-4597-8B36-1DF5012EE686}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Libplanet.RocksDBStore", ".Libplanet\src\Libplanet.RocksDBStore\Libplanet.RocksDBStore.csproj", "{17AAB5B1-695B-4597-8B36-1DF5012EE686}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{6BFB8C34-37DB-4FA1-9565-DA1B8BF8CF6C}" ProjectSection(SolutionItems) = preProject @@ -32,7 +32,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Lib9c.DevExtensions", "Lib9 EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Lib9c.DevExtensions.Tests", ".Lib9c.DevExtensions.Tests\Lib9c.DevExtensions.Tests.csproj", "{805D6BE8-E2CC-46CB-B503-2A114064432C}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Libplanet.Net", ".Libplanet\Libplanet.Net\Libplanet.Net.csproj", "{E879E951-62DF-4682-B78D-7E8A7165B58B}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Libplanet.Net", ".Libplanet\src\Libplanet.Net\Libplanet.Net.csproj", "{E879E951-62DF-4682-B78D-7E8A7165B58B}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Libplanet.Crypto.Secp256k1", "Libplanet.Crypto.Secp256k1\Libplanet.Crypto.Secp256k1.csproj", "{964DB502-1A12-4979-9A22-E6633AFEA5E8}" EndProject @@ -50,15 +50,15 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Lib9c.Utils", "Lib9c.Utils\ EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Lib9c.Proposer", "Lib9c.Proposer\Lib9c.Proposer.csproj", "{7DC1D595-095D-462A-864D-0CE57915901A}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Libplanet.Action", ".Libplanet\Libplanet.Action\Libplanet.Action.csproj", "{566832F1-47C7-47AD-8F48-E0EFC40BAF1A}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Libplanet.Action", ".Libplanet\src\Libplanet.Action\Libplanet.Action.csproj", "{566832F1-47C7-47AD-8F48-E0EFC40BAF1A}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Libplanet.Common", ".Libplanet\Libplanet.Common\Libplanet.Common.csproj", "{55DA19A9-F793-496B-9F53-D0788107BB4C}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Libplanet.Common", ".Libplanet\src\Libplanet.Common\Libplanet.Common.csproj", "{55DA19A9-F793-496B-9F53-D0788107BB4C}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Libplanet.Crypto", ".Libplanet\Libplanet.Crypto\Libplanet.Crypto.csproj", "{E29043C5-43C9-4EBB-9632-8A80F9F35EE6}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Libplanet.Crypto", ".Libplanet\src\Libplanet.Crypto\Libplanet.Crypto.csproj", "{E29043C5-43C9-4EBB-9632-8A80F9F35EE6}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Libplanet.Types", ".Libplanet\Libplanet.Types\Libplanet.Types.csproj", "{BB4464CB-B9DD-45E5-9450-38A2922FB178}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Libplanet.Types", ".Libplanet\src\Libplanet.Types\Libplanet.Types.csproj", "{BB4464CB-B9DD-45E5-9450-38A2922FB178}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Libplanet.Store", ".Libplanet\Libplanet.Store\Libplanet.Store.csproj", "{82BCD815-0AB6-4EEF-A12B-CDB9CD98EEA1}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Libplanet.Store", ".Libplanet\src\Libplanet.Store\Libplanet.Store.csproj", "{82BCD815-0AB6-4EEF-A12B-CDB9CD98EEA1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Libplanet.Extensions.ActionEvaluatorCommonComponents", ".Libplanet.Extensions.ActionEvaluatorCommonComponents\Libplanet.Extensions.ActionEvaluatorCommonComponents.csproj", "{64C44AFB-1E14-44D3-B236-A4A37DF2C27A}" EndProject @@ -68,7 +68,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Lib9c.Plugin", ".Lib9c.Plug EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Lib9c.Plugin.Shared", ".Lib9c.Plugin.Shared\Lib9c.Plugin.Shared.csproj", "{76F6C25E-94D2-4EA9-B88D-0249F44D1D16}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Libplanet.Mocks", ".Libplanet\Libplanet.Mocks\Libplanet.Mocks.csproj", "{8BC561CB-91EF-4290-893F-025E9E6A0CF7}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Libplanet.Mocks", ".Libplanet\test\Libplanet.Mocks\Libplanet.Mocks.csproj", "{8BC561CB-91EF-4290-893F-025E9E6A0CF7}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/Lib9c/Action/AuraSummon.cs b/Lib9c/Action/AuraSummon.cs index 20201fefc..f8830b558 100644 --- a/Lib9c/Action/AuraSummon.cs +++ b/Lib9c/Action/AuraSummon.cs @@ -9,6 +9,7 @@ using Libplanet.Action.State; using Libplanet.Crypto; using Nekoyume.Action.Exceptions; +using Nekoyume.Arena; using Nekoyume.Extensions; using Nekoyume.Model.Item; using Nekoyume.Model.Stat; @@ -226,7 +227,7 @@ public override IWorld Execute(IActionContext context) var arenaSheet = states.GetSheet(); var arenaData = arenaSheet.GetRoundByBlockIndex(context.BlockIndex); var feeStoreAddress = - Addresses.GetBlacksmithFeeAddress(arenaData.ChampionshipId, arenaData.Round); + ArenaHelper.DeriveArenaAddress(arenaData.ChampionshipId, arenaData.Round); states = states.TransferAsset( context, diff --git a/Lib9c/Action/Buy.cs b/Lib9c/Action/Buy.cs index babdc14a3..9787daf3a 100644 --- a/Lib9c/Action/Buy.cs +++ b/Lib9c/Action/Buy.cs @@ -10,6 +10,7 @@ using Libplanet.Action.State; using Libplanet.Crypto; using Libplanet.Types.Assets; +using Nekoyume.Arena; using Nekoyume.Model.EnumType; using Nekoyume.Model.Mail; using Nekoyume.Model.State; @@ -250,7 +251,7 @@ public override IWorld Execute(IActionContext context) // Transfer tax. var arenaSheet = states.GetSheet(); var arenaData = arenaSheet.GetRoundByBlockIndex(context.BlockIndex); - var feeStoreAddress = Addresses.GetShopFeeAddress(arenaData.ChampionshipId, arenaData.Round); + var feeStoreAddress = ArenaHelper.DeriveArenaAddress(arenaData.ChampionshipId, arenaData.Round); states = states.TransferAsset( context, context.Signer, diff --git a/Lib9c/Action/BuyProduct.cs b/Lib9c/Action/BuyProduct.cs index 4fec7703a..8baf37b36 100644 --- a/Lib9c/Action/BuyProduct.cs +++ b/Lib9c/Action/BuyProduct.cs @@ -9,6 +9,7 @@ using Libplanet.Action.State; using Libplanet.Crypto; using Libplanet.Types.Assets; +using Nekoyume.Arena; using Nekoyume.Battle; using Nekoyume.Model.EnumType; using Nekoyume.Model.Item; @@ -170,7 +171,7 @@ private IWorld Buy(IActionContext context, IProductInfo productInfo, Address sel // Transfer tax. var arenaSheet = states.GetSheet(); var arenaData = arenaSheet.GetRoundByBlockIndex(context.BlockIndex); - var feeStoreAddress = Addresses.GetShopFeeAddress(arenaData.ChampionshipId, arenaData.Round); + var feeStoreAddress = ArenaHelper.DeriveArenaAddress(arenaData.ChampionshipId, arenaData.Round); var tax = product.Price.DivRem(100, out _) * Action.Buy.TaxRate; var taxedPrice = product.Price - tax; @@ -301,7 +302,7 @@ private static IWorld Buy_Order(PurchaseInfo purchaseInfo, IActionContext contex // Transfer tax. var arenaSheet = states.GetSheet(); var arenaData = arenaSheet.GetRoundByBlockIndex(context.BlockIndex); - var feeStoreAddress = Addresses.GetShopFeeAddress(arenaData.ChampionshipId, arenaData.Round); + var feeStoreAddress = ArenaHelper.DeriveArenaAddress(arenaData.ChampionshipId, arenaData.Round); states = states.TransferAsset( context, context.Signer, diff --git a/Lib9c/Action/CombinationEquipment.cs b/Lib9c/Action/CombinationEquipment.cs index 2e3d2034e..dd7cedc2d 100644 --- a/Lib9c/Action/CombinationEquipment.cs +++ b/Lib9c/Action/CombinationEquipment.cs @@ -8,6 +8,7 @@ using Libplanet.Action; using Libplanet.Action.State; using Libplanet.Crypto; +using Nekoyume.Arena; using Nekoyume.Extensions; using Nekoyume.Helper; using Nekoyume.Model.Item; @@ -384,7 +385,7 @@ public override IWorld Execute(IActionContext context) { var arenaSheet = states.GetSheet(); var arenaData = arenaSheet.GetRoundByBlockIndex(context.BlockIndex); - var feeStoreAddress = Addresses.GetBlacksmithFeeAddress(arenaData.ChampionshipId, arenaData.Round); + var feeStoreAddress = ArenaHelper.DeriveArenaAddress(arenaData.ChampionshipId, arenaData.Round); states = states.TransferAsset( context, diff --git a/Lib9c/Action/HackAndSlash.cs b/Lib9c/Action/HackAndSlash.cs index 3c3bce7fd..e3d436a61 100644 --- a/Lib9c/Action/HackAndSlash.cs +++ b/Lib9c/Action/HackAndSlash.cs @@ -42,6 +42,7 @@ public class HackAndSlash : GameAction, IHackAndSlashV10 public Address AvatarAddress; public int TotalPlayCount = 1; public int ApStoneCount = 0; + private readonly ActivitySource _activitySource = new ActivitySource("Lib9c.Action.HackAndSlash"); IEnumerable IHackAndSlashV10.Costumes => Costumes; IEnumerable IHackAndSlashV10.Equipments => Equipments; @@ -117,6 +118,7 @@ public IWorld Execute( var addressesHex = $"[{signer.ToHex()}, {AvatarAddress.ToHex()}]"; var started = DateTimeOffset.UtcNow; const string source = "HackAndSlash"; + var activity = _activitySource.StartActivity("HackAndSlash"); Log.Verbose("{AddressesHex} {Source} from #{BlockIndex} exec started", addressesHex, source, blockIndex); @@ -145,17 +147,27 @@ public IWorld Execute( var sw = new Stopwatch(); sw.Start(); + var avatarStateActivity = _activitySource.StartActivity( + "GetAvatarState", + ActivityKind.Internal, + activity?.Id ?? string.Empty); if (!states.TryGetAvatarState(signer, AvatarAddress, out AvatarState avatarState)) { throw new FailedLoadStateException( $"{addressesHex}Aborted as the avatar state of the signer was failed to load."); } + avatarStateActivity?.Dispose(); sw.Stop(); Log.Verbose("{AddressesHex} {Source} HAS {Process} from #{BlockIndex}: {Elapsed}", addressesHex, source, "Get AvatarState", blockIndex, sw.Elapsed.TotalMilliseconds); sw.Restart(); + var sheetActivity = _activitySource.StartActivity( + "GetSheets", + ActivityKind.Internal, + activity?.Id ?? string.Empty); + var collectionExist = states.TryGetCollectionState(AvatarAddress, out var collectionState) && collectionState.Ids.Any(); var sheetTypes = new List { @@ -190,11 +202,18 @@ public IWorld Execute( containQuestSheet: true, containSimulatorSheets: true, sheetTypes: sheetTypes); + + sheetActivity?.Dispose(); sw.Stop(); Log.Verbose("{AddressesHex} {Source} HAS {Process} from #{BlockIndex}: {Elapsed}", addressesHex, source, "Get Sheets", blockIndex, sw.Elapsed.TotalMilliseconds); sw.Restart(); + + var checkStateActivity = _activitySource.StartActivity( + "CheckState", + ActivityKind.Internal, + activity?.Id ?? string.Empty); var stakingLevel = 0; StakeActionPointCoefficientSheet actionPointCoefficientSheet = null; @@ -206,6 +225,7 @@ public IWorld Execute( stakingLevel = actionPointCoefficientSheet.FindLevelByStakedAmount(signer, stakedAmount); } + checkStateActivity?.Dispose(); sw.Stop(); Log.Verbose("{AddressesHex} {Source} HAS {Process} from #{BlockIndex}: {Elapsed}", addressesHex, source, "Check StateState", blockIndex, sw.Elapsed.TotalMilliseconds); @@ -225,16 +245,25 @@ public IWorld Execute( } sw.Restart(); + var stageSheetActivity = _activitySource.StartActivity( + "GetStageSheet", + ActivityKind.Internal, + activity?.Id ?? string.Empty); if (!sheets.GetSheet().TryGetValue(StageId, out var stageRow)) { throw new SheetRowNotFoundException(addressesHex, nameof(StageSheet), StageId); } + stageSheetActivity?.Dispose(); sw.Stop(); Log.Verbose("{AddressesHex} {Source} HAS {Process} from #{BlockIndex}: {Elapsed}", addressesHex, source, "Get StageSheet", blockIndex, sw.Elapsed.TotalMilliseconds); sw.Restart(); + var validateWorldActivity = _activitySource.StartActivity( + "ValidateWorld", + ActivityKind.Internal, + activity?.Id ?? string.Empty); var worldInformation = avatarState.worldInformation; if (!worldInformation.TryGetWorld(WorldId, out var world)) { @@ -271,11 +300,16 @@ public IWorld Execute( ); } + validateWorldActivity?.Dispose(); sw.Stop(); Log.Verbose("{AddressesHex} {Source} HAS {Process} from #{BlockIndex}: {Elapsed}", addressesHex, source, "Validate World", blockIndex, sw.Elapsed.TotalMilliseconds); sw.Restart(); + var validateItemsActivity = _activitySource.StartActivity( + "ValidateItems", + ActivityKind.Internal, + activity?.Id ?? string.Empty); var gameConfigState = states.GetGameConfigState(); if (gameConfigState is null) { @@ -287,10 +321,17 @@ public IWorld Execute( Equipments, blockIndex, gameConfigState); var foodIds = avatarState.ValidateConsumableV2(Foods, blockIndex, gameConfigState); var costumeIds = avatarState.ValidateCostumeV2(Costumes, gameConfigState); + + validateItemsActivity?.Dispose(); sw.Stop(); Log.Verbose("{AddressesHex} {Source} HAS {Process} from #{BlockIndex}: {Elapsed}", addressesHex, source, "Validate Items", blockIndex, sw.Elapsed.TotalMilliseconds); sw.Restart(); + + var unequipItemsActivity = _activitySource.StartActivity( + "UnequipItems", + ActivityKind.Internal, + activity?.Id ?? string.Empty); var materialItemSheet = sheets.GetSheet(); var apPlayCount = TotalPlayCount; var minimumCostAp = stageRow.CostAP; @@ -367,11 +408,19 @@ public IWorld Execute( var items = Equipments.Concat(Costumes); avatarState.EquipItems(items); sw.Stop(); + + unequipItemsActivity?.Dispose(); Log.Verbose("{AddressesHex} {Source} HAS {Process} from #{BlockIndex}: {Elapsed}", addressesHex, source, "Unequip items", blockIndex, sw.Elapsed.TotalMilliseconds); sw.Restart(); + var questSheetActivity = _activitySource.StartActivity( + "GetQuestSheet", + ActivityKind.Internal, + activity?.Id ?? string.Empty); var questSheet = sheets.GetQuestSheet(); + + questSheetActivity?.Dispose(); sw.Stop(); Log.Verbose("{AddressesHex} {Source} HAS {Process} from #{BlockIndex}: {Elapsed}", addressesHex, source, "Get QuestSheet", blockIndex, sw.Elapsed.TotalMilliseconds); @@ -384,12 +433,17 @@ public IWorld Execute( if (ids.Any()) { sw.Restart(); + var questListActivity = _activitySource.StartActivity( + "UpdateQuestList", + ActivityKind.Internal, + activity?.Id ?? string.Empty); questList.UpdateList( questSheet, sheets.GetSheet(), sheets.GetSheet(), sheets.GetSheet(), ids); + questListActivity?.Dispose(); sw.Stop(); Log.Verbose("{AddressesHex} {Source} HAS {Process} from #{BlockIndex}: {Elapsed}", addressesHex, source, "Update QuestList", blockIndex, sw.Elapsed.TotalMilliseconds); @@ -397,6 +451,11 @@ public IWorld Execute( sw.Restart(); + var skillStateActivity = _activitySource.StartActivity( + "GetSkillState", + ActivityKind.Internal, + activity?.Id ?? string.Empty); + var skillStateAddress = Addresses.GetSkillStateAddressFromAvatarAddress(AvatarAddress); var isNotClearedStage = !avatarState.worldInformation.IsStageCleared(StageId); var skillsOnWaveStart = new List(); @@ -430,6 +489,7 @@ public IWorld Execute( } } + skillStateActivity?.Dispose(); sw.Stop(); Log.Verbose("{AddressesHex} {Source} HAS {Process} from #{BlockIndex}: {Elapsed}", addressesHex, source, "Get skillState", blockIndex, sw.Elapsed.TotalMilliseconds); @@ -438,6 +498,11 @@ public IWorld Execute( var worldUnlockSheet = sheets.GetSheet(); var crystalStageBuffSheet = sheets.GetSheet(); sw.Restart(); + + var slotstateActivity = _activitySource.StartActivity( + "UpdateSlotState", + ActivityKind.Internal, + activity?.Id ?? string.Empty); // if PlayCount > 1, it is Multi-HAS. var simulatorSheets = sheets.GetSimulatorSheets(); @@ -465,10 +530,17 @@ public IWorld Execute( { states = states.SetRuneState(AvatarAddress, runeStates); } + + slotstateActivity?.Dispose(); sw.Stop(); Log.Verbose("{AddressesHex} {Source} HAS {Process} from #{BlockIndex}: {Elapsed}", addressesHex, source, "Update slotState", blockIndex, sw.Elapsed.TotalMilliseconds); + var simulatorActivity = _activitySource.StartActivity( + "Simulator", + ActivityKind.Internal, + activity?.Id ?? string.Empty); + var stageWaveRow = sheets.GetSheet()[StageId]; var enemySkillSheet = sheets.GetSheet(); var costumeStatSheet = sheets.GetSheet(); @@ -522,6 +594,10 @@ public IWorld Execute( addressesHex, source, "Simulator.Simulate()", blockIndex, sw.Elapsed.TotalMilliseconds); sw.Restart(); + var clearStageActivity = _activitySource.StartActivity( + "ClearStage", + ActivityKind.Internal, + activity?.Id ?? string.Empty); if (simulator.Log.IsClear) { avatarState.worldInformation.ClearStage( @@ -532,11 +608,13 @@ public IWorld Execute( worldUnlockSheet ); stageCleared = true; + sw.Stop(); Log.Verbose("{AddressesHex} {Source} HAS {Process} from #{BlockIndex}: {Elapsed}", addressesHex, source, "ClearStage", blockIndex, sw.Elapsed.TotalMilliseconds); } + clearStageActivity?.Dispose(); sw.Restart(); // This conditional logic is same as written in the @@ -579,6 +657,7 @@ public IWorld Execute( simulator.Log.waveCount ); } + simulatorActivity?.Dispose(); sw.Stop(); Log.Debug("{AddressesHex} {Source} {Process} from #{BlockIndex}: {Elapsed}, Count: {PlayCount}", addressesHex, source, "loop Simulate", blockIndex, sw.Elapsed.TotalMilliseconds, TotalPlayCount); @@ -586,14 +665,26 @@ public IWorld Execute( // Update CrystalRandomSkillState.Stars by clearedWaveNumber. (add) skillState?.Update(starCount, crystalStageBuffSheet); sw.Restart(); + + var updateAvatarActivity = _activitySource.StartActivity( + "UpdateAvatarState", + ActivityKind.Internal, + activity?.Id ?? string.Empty); avatarState.UpdateQuestRewards(materialItemSheet); avatarState.updatedAt = blockIndex; avatarState.mailBox.CleanUp(); + + updateAvatarActivity?.Dispose(); sw.Stop(); Log.Verbose("{AddressesHex} {Source} HAS {Process} from #{BlockIndex}: {Elapsed}", addressesHex, source, "Update AvatarState", blockIndex, sw.Elapsed.TotalMilliseconds); sw.Restart(); + + var setStateActivity = _activitySource.StartActivity( + "SetState", + ActivityKind.Internal, + activity?.Id ?? string.Empty); if (isNotClearedStage) { avatarState.worldInformation.TryGetLastClearedStageId(out var lastClearedStageId); @@ -609,6 +700,7 @@ public IWorld Execute( states = states.SetAvatarState(AvatarAddress, avatarState); + setStateActivity?.Dispose(); sw.Stop(); Log.Verbose("{AddressesHex} {Source} HAS {Process} from #{BlockIndex}: {Elapsed}", addressesHex, source, "Set States", blockIndex, sw.Elapsed.TotalMilliseconds); diff --git a/Lib9c/Action/ItemEnhancement.cs b/Lib9c/Action/ItemEnhancement.cs index ab726465a..deebf4c81 100644 --- a/Lib9c/Action/ItemEnhancement.cs +++ b/Lib9c/Action/ItemEnhancement.cs @@ -9,6 +9,7 @@ using Libplanet.Action; using Libplanet.Action.State; using Libplanet.Crypto; +using Nekoyume.Arena; using Nekoyume.Extensions; using Nekoyume.Helper; using Nekoyume.Model.Item; @@ -381,7 +382,7 @@ public override IWorld Execute(IActionContext context) var arenaSheet = states.GetSheet(); var arenaData = arenaSheet.GetRoundByBlockIndex(context.BlockIndex); var feeStoreAddress = - Addresses.GetBlacksmithFeeAddress(arenaData.ChampionshipId, arenaData.Round); + ArenaHelper.DeriveArenaAddress(arenaData.ChampionshipId, arenaData.Round); states = states.TransferAsset(ctx, ctx.Signer, feeStoreAddress, states.GetGoldCurrency() * requiredNcg); } diff --git a/Lib9c/Action/ItemEnhancement11.cs b/Lib9c/Action/ItemEnhancement11.cs index 8070e8c14..0dd43ed7a 100644 --- a/Lib9c/Action/ItemEnhancement11.cs +++ b/Lib9c/Action/ItemEnhancement11.cs @@ -11,6 +11,7 @@ using Libplanet.Action.State; using Libplanet.Crypto; using Libplanet.Types.Assets; +using Nekoyume.Arena; using Nekoyume.Extensions; using Nekoyume.Helper; using Nekoyume.Model.Item; @@ -291,7 +292,7 @@ public override IWorld Execute(IActionContext context) { var arenaSheet = states.GetSheet(); var arenaData = arenaSheet.GetRoundByBlockIndex(context.BlockIndex); - var feeStoreAddress = Addresses.GetBlacksmithFeeAddress(arenaData.ChampionshipId, arenaData.Round); + var feeStoreAddress = ArenaHelper.DeriveArenaAddress(arenaData.ChampionshipId, arenaData.Round); states = states.TransferAsset(ctx, ctx.Signer, feeStoreAddress, states.GetGoldCurrency() * requiredNcg); } diff --git a/Lib9c/Action/ItemEnhancement12.cs b/Lib9c/Action/ItemEnhancement12.cs index 75efd4bd2..8a718f1de 100644 --- a/Lib9c/Action/ItemEnhancement12.cs +++ b/Lib9c/Action/ItemEnhancement12.cs @@ -11,6 +11,7 @@ using Libplanet.Action.State; using Libplanet.Crypto; using Libplanet.Types.Assets; +using Nekoyume.Arena; using Nekoyume.Extensions; using Nekoyume.Helper; using Nekoyume.Model.Item; @@ -364,7 +365,7 @@ public override IWorld Execute(IActionContext context) var arenaSheet = states.GetSheet(); var arenaData = arenaSheet.GetRoundByBlockIndex(context.BlockIndex); var feeStoreAddress = - Addresses.GetBlacksmithFeeAddress(arenaData.ChampionshipId, arenaData.Round); + ArenaHelper.DeriveArenaAddress(arenaData.ChampionshipId, arenaData.Round); states = states.TransferAsset(ctx, ctx.Signer, feeStoreAddress, states.GetGoldCurrency() * requiredNcg); } diff --git a/Lib9c/Action/ItemEnhancement13.cs b/Lib9c/Action/ItemEnhancement13.cs index 891f4b897..11c5cc501 100644 --- a/Lib9c/Action/ItemEnhancement13.cs +++ b/Lib9c/Action/ItemEnhancement13.cs @@ -11,6 +11,7 @@ using Libplanet.Action.State; using Libplanet.Crypto; using Libplanet.Types.Assets; +using Nekoyume.Arena; using Nekoyume.Extensions; using Nekoyume.Helper; using Nekoyume.Model.Item; @@ -367,7 +368,7 @@ public override IWorld Execute(IActionContext context) var arenaSheet = states.GetSheet(); var arenaData = arenaSheet.GetRoundByBlockIndex(context.BlockIndex); var feeStoreAddress = - Addresses.GetBlacksmithFeeAddress(arenaData.ChampionshipId, arenaData.Round); + ArenaHelper.DeriveArenaAddress(arenaData.ChampionshipId, arenaData.Round); states = states.TransferAsset(ctx, ctx.Signer, feeStoreAddress, states.GetGoldCurrency() * requiredNcg); } diff --git a/Lib9c/Action/PetEnhancement.cs b/Lib9c/Action/PetEnhancement.cs index 1a2a000a0..16a2e7095 100644 --- a/Lib9c/Action/PetEnhancement.cs +++ b/Lib9c/Action/PetEnhancement.cs @@ -5,6 +5,7 @@ using Libplanet.Action; using Libplanet.Action.State; using Libplanet.Crypto; +using Nekoyume.Arena; using Nekoyume.Exceptions; using Nekoyume.Extensions; using Nekoyume.Helper; @@ -126,7 +127,7 @@ public override IWorld Execute(IActionContext context) var arenaSheet = sheets.GetSheet(); var arenaData = arenaSheet.GetRoundByBlockIndex(context.BlockIndex); - var feeStoreAddress = Addresses.GetBlacksmithFeeAddress( + var feeStoreAddress = ArenaHelper.DeriveArenaAddress( arenaData.ChampionshipId, arenaData.Round); if (ncgQuantity > 0) diff --git a/Lib9c/Action/Raid.cs b/Lib9c/Action/Raid.cs index 85d0a0c55..9b06dd3ae 100644 --- a/Lib9c/Action/Raid.cs +++ b/Lib9c/Action/Raid.cs @@ -8,6 +8,7 @@ using Libplanet.Action.State; using Libplanet.Crypto; using Libplanet.Types.Assets; +using Nekoyume.Arena; using Nekoyume.Battle; using Nekoyume.Extensions; using Nekoyume.Helper; @@ -147,7 +148,11 @@ public override IWorld Execute(IActionContext context) throw new ExceedTicketPurchaseLimitException(""); } var goldCurrency = states.GetGoldCurrency(); - states = states.TransferAsset(context, context.Signer, worldBossAddress, + var arenaSheet = states.GetSheet(); + var arenaData = arenaSheet.GetRoundByBlockIndex(context.BlockIndex); + var feeAddress = + ArenaHelper.DeriveArenaAddress(arenaData.ChampionshipId, arenaData.Round); + states = states.TransferAsset(context, context.Signer, feeAddress, WorldBossHelper.CalculateTicketPrice(row, raiderState, goldCurrency)); raiderState.PurchaseCount++; } diff --git a/Lib9c/Action/RuneEnhancement.cs b/Lib9c/Action/RuneEnhancement.cs index e79a6c183..af6bf6718 100644 --- a/Lib9c/Action/RuneEnhancement.cs +++ b/Lib9c/Action/RuneEnhancement.cs @@ -7,6 +7,7 @@ using Libplanet.Action.State; using Libplanet.Crypto; using Libplanet.Types.Assets; +using Nekoyume.Arena; using Nekoyume.Extensions; using Nekoyume.Helper; using Nekoyume.Model.Rune; @@ -154,7 +155,7 @@ public override IWorld Execute(IActionContext context) var arenaSheet = sheets.GetSheet(); var arenaData = arenaSheet.GetRoundByBlockIndex(context.BlockIndex); var feeStoreAddress = - Addresses.GetBlacksmithFeeAddress(arenaData.ChampionshipId, arenaData.Round); + ArenaHelper.DeriveArenaAddress(arenaData.ChampionshipId, arenaData.Round); // Burn costs if (levelUpResult.NcgCost > 0) diff --git a/Lib9c/Action/RuneSummon.cs b/Lib9c/Action/RuneSummon.cs index 0d655f8fe..bc903b826 100644 --- a/Lib9c/Action/RuneSummon.cs +++ b/Lib9c/Action/RuneSummon.cs @@ -11,6 +11,7 @@ using Libplanet.Crypto; using Libplanet.Types.Assets; using Nekoyume.Action.Exceptions; +using Nekoyume.Arena; using Nekoyume.Extensions; using Nekoyume.Model.State; using Nekoyume.Module; @@ -92,7 +93,7 @@ public override IWorld Execute(IActionContext context) var arenaSheet = states.GetSheet(); var arenaData = arenaSheet.GetRoundByBlockIndex(context.BlockIndex); var feeStoreAddress = - Addresses.GetBlacksmithFeeAddress(arenaData.ChampionshipId, arenaData.Round); + ArenaHelper.DeriveArenaAddress(arenaData.ChampionshipId, arenaData.Round); states = states.TransferAsset( context, diff --git a/Lib9c/Action/UnlockRuneSlot.cs b/Lib9c/Action/UnlockRuneSlot.cs index e69b94ddb..11ce62bc9 100644 --- a/Lib9c/Action/UnlockRuneSlot.cs +++ b/Lib9c/Action/UnlockRuneSlot.cs @@ -9,6 +9,7 @@ using Libplanet.Action.State; using Libplanet.Crypto; using Libplanet.Types.Assets; +using Nekoyume.Arena; using Nekoyume.Extensions; using Nekoyume.Model.EnumType; using Nekoyume.Model.Rune; @@ -79,7 +80,7 @@ public override IWorld Execute(IActionContext context) var gameConfigState = states.GetGameConfigState(); var arenaSheet = sheets.GetSheet(); var arenaData = arenaSheet.GetRoundByBlockIndex(context.BlockIndex); - var feeStoreAddress = Addresses.GetBlacksmithFeeAddress(arenaData.ChampionshipId, arenaData.Round); + var feeStoreAddress = ArenaHelper.DeriveArenaAddress(arenaData.ChampionshipId, arenaData.Round); int cost; Currency currency; switch (slot.RuneSlotType) diff --git a/Lib9c/Addresses.cs b/Lib9c/Addresses.cs index 4497390b2..163cc5c34 100644 --- a/Lib9c/Addresses.cs +++ b/Lib9c/Addresses.cs @@ -77,12 +77,6 @@ public static Address GetWeeklyCrystalCostAddress(int index) public static Address GetSkillStateAddressFromAvatarAddress(Address avatarAddress) => avatarAddress.Derive("has_buff"); - public static Address GetShopFeeAddress(int championshipId, int round) => Shop.Derive($"_{championshipId}_{round}"); - - public static Address GetBlacksmithFeeAddress(int championshipId, int round) => Blacksmith.Derive($"_{championshipId}_{round}"); - - public static Address GetRuneFeeAddress(int championshipId, int round) => Rune.Derive($"_{championshipId}_{round}"); - public static Address GetHammerPointStateAddress(Address avatarAddress, int recipeId) => avatarAddress.Derive($"hammer_{recipeId}"); diff --git a/Lib9c/GameConfig.cs b/Lib9c/GameConfig.cs index 179ea7e43..ae16a6348 100644 --- a/Lib9c/GameConfig.cs +++ b/Lib9c/GameConfig.cs @@ -4,21 +4,16 @@ namespace Nekoyume { public static class GameConfig { + // ReSharper disable once ConvertToConstant.Global #if LIB9C_DEV_EXTENSIONS || UNITY_EDITOR - public const bool IsEditor = true; + public static readonly bool IsEditor = true; #else - public const bool IsEditor = false; + public static readonly bool IsEditor = false; #endif public const int SlotCount = 3; - public const float WaitSeconds = 180f; public const string AvatarNickNamePattern = @"^[0-9a-zA-Z]{2,20}$"; - public const string DiscordLink = "https://discord.gg/NqshYve"; - public const string BlockExplorerLinkFormat = - "http://explorer.libplanet.io/9c-beta/account/?{0}"; - - public const float PlayerSpeechBreakTime = 2f; public const int MimisbrunnrWorldId = 10001; public const int MimisbrunnrStartStageId = 10000001; public const int DefaultAttackId = 100000; @@ -33,15 +28,8 @@ public static class GameConfig public const int DefaultAvatarArmorId = 10200000; //TODO 안쓰는 프리팹과 함께 삭제해야함 - public const int CombineEquipmentCostAP = 5; - public const int CombineEquipmentCostNCG = 10; public const int EnhanceEquipmentCostAP = 0; - public const int RankingRewardFirst = 50; - public const int RankingRewardSecond = 30; - public const int RankingRewardThird = 10; - - public const int ArenaActivationCostNCG = 100; public const int ArenaScoreDefault = 1000; public const int ArenaChallengeCountMax = 5; public const int MaximumProbability = 10000; diff --git a/Lib9c/Helper/AdventureBossHelper.cs b/Lib9c/Helper/AdventureBossHelper.cs index c8eed3777..941d08de2 100644 --- a/Lib9c/Helper/AdventureBossHelper.cs +++ b/Lib9c/Helper/AdventureBossHelper.cs @@ -1,7 +1,6 @@ using System; using System.Collections.Generic; using System.Collections.Immutable; -using System.Globalization; using System.Linq; using Nekoyume.Module; using Lib9c; @@ -283,8 +282,9 @@ public static AdventureBossGameData.ClaimableReward CalculateExploreReward( // calculate ncg reward var totalNcgReward = (bountyBoard.totalBounty() * 15).DivRem(100, out _); - var myNcgReward = (totalNcgReward * explorer.Score) - .DivRem(exploreBoard.TotalPoint, out _); + var myNcgReward = exploreBoard.TotalPoint == 0 + ? 0 * totalNcgReward.Currency + : (totalNcgReward * explorer.Score).DivRem(exploreBoard.TotalPoint, out _); // Only > 0.1 NCG will be rewarded. if (myNcgReward >= (10 * gold).DivRem(100, out _)) diff --git a/Lib9c/Lib9c.csproj b/Lib9c/Lib9c.csproj index fa078fc7f..1f645eb5f 100644 --- a/Lib9c/Lib9c.csproj +++ b/Lib9c/Lib9c.csproj @@ -29,14 +29,18 @@ + + + + - + false runtime - + false Analyzer diff --git a/Lib9c/Model/AdventureBoss/SeasonInfo.cs b/Lib9c/Model/AdventureBoss/SeasonInfo.cs index abcd2a78c..d0fae210f 100644 --- a/Lib9c/Model/AdventureBoss/SeasonInfo.cs +++ b/Lib9c/Model/AdventureBoss/SeasonInfo.cs @@ -22,10 +22,10 @@ public SeasonInfo(long season, long startBlockIndex, long activeInterval, long i public SeasonInfo(List serialized) { - Season = serialized[0].ToInteger(); - StartBlockIndex = serialized[1].ToInteger(); - EndBlockIndex = serialized[2].ToInteger(); - NextStartBlockIndex = serialized[3].ToInteger(); + Season = serialized[0].ToLong(); + StartBlockIndex = serialized[1].ToLong(); + EndBlockIndex = serialized[2].ToLong(); + NextStartBlockIndex = serialized[3].ToLong(); BossId = serialized[4].ToInteger(); } diff --git a/Lib9c/TableCSV/AdventureBoss/AdventureBossContributionRewardSheet.csv b/Lib9c/TableCSV/AdventureBoss/AdventureBossContributionRewardSheet.csv index 05a08db67..1d71abfd1 100644 --- a/Lib9c/TableCSV/AdventureBoss/AdventureBossContributionRewardSheet.csv +++ b/Lib9c/TableCSV/AdventureBoss/AdventureBossContributionRewardSheet.csv @@ -1,5 +1,5 @@ -id,adventure_boss_id,reward_1_type,reward_1_id,reward_1_ratio,reward_2_type,reward_2_id,reward_2_ratio,reward_3_type,reward_3_id,reward_3_ratio,reward_4_type,reward_4_id,reward_4_ratio -1,1,Material,600202,100,,,,,,,,, -2,2,Material,600201,50,Rune,30001,50,,,,,, -3,3,Material,600201,25,Rune,30001,25,Material,600202,25,,, -4,4,Material,600201,5,Rune,30001,5,Material,600202,5,Rune,20001,5 +id,adventure_boss_id,reward_1_type,reward_1_id,reward_1_ratio,reward_2_type,reward_2_id,reward_2_ratio +1,1,Material,600201,100,,, +2,2,Material,600202,100,,, +3,3,Rune,10035,100,,, +4,4,Material,600203,100,,, \ No newline at end of file diff --git a/Lib9c/TableCSV/AdventureBoss/AdventureBossFloorFirstRewardSheet.csv b/Lib9c/TableCSV/AdventureBoss/AdventureBossFloorFirstRewardSheet.csv index 8f8f89874..be6b5aa09 100644 --- a/Lib9c/TableCSV/AdventureBoss/AdventureBossFloorFirstRewardSheet.csv +++ b/Lib9c/TableCSV/AdventureBoss/AdventureBossFloorFirstRewardSheet.csv @@ -1,81 +1,81 @@ floor_id,reward_1_type,reward_1_id,reward_1_amount,reward_2_type,reward_2_id,reward_2_amount,reward_3_type,reward_3_id,reward_3_amount -1,Material,600301,10,Material,600302,10,,, -2,Material,600301,10,Material,600302,10,,, -3,Material,600301,10,Material,600302,10,,, -4,Material,600301,10,Material,600302,10,,, -5,Material,600301,10,Material,600302,10,,, -6,Material,600301,10,Material,600302,10,,, -7,Material,600301,10,Material,600302,10,,, -8,Material,600301,10,Material,600302,10,,, -9,Material,600301,10,Material,600302,10,,, -10,Material,600301,10,Material,600302,10,,, -11,Material,600301,10,Material,600302,10,,, -12,Material,600301,10,Material,600302,10,,, -13,Material,600301,10,Material,600302,10,,, -14,Material,600301,10,Material,600302,10,,, -15,Material,600301,10,Material,600302,10,,, -16,Material,600301,10,Material,600302,10,,, -17,Material,600301,10,Material,600302,10,,, -18,Material,600301,10,Material,600302,10,,, -19,Material,600301,10,Material,600302,10,,, -20,Material,600301,10,Material,600302,10,,, -21,Material,600301,10,Material,600302,10,,, -22,Material,600301,10,Material,600302,10,,, -23,Material,600301,10,Material,600302,10,,, -24,Material,600301,10,Material,600302,10,,, -25,Material,600301,10,Material,600302,10,,, -26,Material,600301,10,Material,600302,10,,, -27,Material,600301,10,Material,600302,10,,, -28,Material,600301,10,Material,600302,10,,, -29,Material,600301,10,Material,600302,10,,, -30,Material,600301,10,Material,600302,10,,, -31,Material,600301,10,Material,600302,10,,, -32,Material,600301,10,Material,600302,10,,, -33,Material,600301,10,Material,600302,10,,, -34,Material,600301,10,Material,600302,10,,, -35,Material,600301,10,Material,600302,10,,, -36,Material,600301,10,Material,600302,10,,, -37,Material,600301,10,Material,600302,10,,, -38,Material,600301,10,Material,600302,10,,, -39,Material,600301,10,Material,600302,10,,, -40,Material,600301,10,Material,600302,10,,, -41,Material,600301,10,Material,600302,10,,, -42,Material,600301,10,Material,600302,10,,, -43,Material,600301,10,Material,600302,10,,, -44,Material,600301,10,Material,600302,10,,, -45,Material,600301,10,Material,600302,10,,, -46,Material,600301,10,Material,600302,10,,, -47,Material,600301,10,Material,600302,10,,, -48,Material,600301,10,Material,600302,10,,, -49,Material,600301,10,Material,600302,10,,, -50,Material,600301,10,Material,600302,10,,, -51,Material,600301,10,Material,600302,10,,, -52,Material,600301,10,Material,600302,10,,, -53,Material,600301,10,Material,600302,10,,, -54,Material,600301,10,Material,600302,10,,, -55,Material,600301,10,Material,600302,10,,, -56,Material,600301,10,Material,600302,10,,, -57,Material,600301,10,Material,600302,10,,, -58,Material,600301,10,Material,600302,10,,, -59,Material,600301,10,Material,600302,10,,, -60,Material,600301,10,Material,600302,10,,, -61,Material,600301,10,Material,600302,10,,, -62,Material,600301,10,Material,600302,10,,, -63,Material,600301,10,Material,600302,10,,, -64,Material,600301,10,Material,600302,10,,, -65,Material,600301,10,Material,600302,10,,, -66,Material,600301,10,Material,600302,10,,, -67,Material,600301,10,Material,600302,10,,, -68,Material,600301,10,Material,600302,10,,, -69,Material,600301,10,Material,600302,10,,, -70,Material,600301,10,Material,600302,10,,, -71,Material,600301,10,Material,600302,10,,, -72,Material,600301,10,Material,600302,10,,, -73,Material,600301,10,Material,600302,10,,, -74,Material,600301,10,Material,600302,10,,, -75,Material,600301,10,Material,600302,10,,, -76,Material,600301,10,Material,600302,10,,, -77,Material,600301,10,Material,600302,10,,, -78,Material,600301,10,Material,600302,10,,, -79,Material,600301,10,Material,600302,10,,, -80,Material,600301,10,Material,600302,10,,, \ No newline at end of file +1,Material,600302,10,,,,,, +2,Material,600302,5,Material,600303,2,,, +3,Material,600302,5,Material,600303,2,,, +4,Material,600302,5,Rune,10033,5,,, +5,Material,600302,5,Rune,10034,5,,, +6,Material,600203,5,,,,,, +7,Material,600303,5,,,,,, +8,Material,600303,5,,,,,, +9,Material,600303,5,Rune,10033,5,,, +10,Material,600303,5,Rune,10034,5,,, +11,Material,600203,15,,,,,, +12,Material,600303,8,Material,600304,1,,, +13,Material,600303,8,Material,600304,1,,, +14,Material,600303,8,Rune,10033,10,,, +15,Material,600303,8,Rune,10034,10,,, +16,Material,600203,20,,,,,, +17,Material,600304,2,Rune,10033,20,,, +18,Material,600304,2,Rune,10034,20,,, +19,Material,600304,2,Material,600305,1,,, +20,Material,600304,5,Material,600305,3,Material,600203,100 +21,Material,600302,10,,,,,, +22,Material,600302,5,Material,600303,2,,, +23,Material,600302,5,Material,600303,2,,, +24,Material,600302,5,Rune,10033,5,,, +25,Material,600302,5,Rune,10034,5,,, +26,Material,600203,5,,,,,, +27,Material,600303,5,,,,,, +28,Material,600303,5,,,,,, +29,Material,600303,5,Rune,10033,5,,, +30,Material,600303,5,Rune,10034,5,,, +31,Material,600203,15,,,,,, +32,Material,600303,8,Material,600304,1,,, +33,Material,600303,8,Material,600304,1,,, +34,Material,600303,8,Rune,10033,10,,, +35,Material,600303,8,Rune,10034,10,,, +36,Material,600203,20,,,,,, +37,Material,600304,2,Rune,10033,20,,, +38,Material,600304,2,Rune,10034,20,,, +39,Material,600304,2,Material,600305,1,,, +40,Material,600304,5,Material,600305,3,Material,600203,100 +41,Material,600302,10,,,,,, +42,Material,600302,5,Material,600303,2,,, +43,Material,600302,5,Material,600303,2,,, +44,Material,600302,5,Rune,10033,5,,, +45,Material,600302,5,Rune,10034,5,,, +46,Material,600203,5,,,,,, +47,Material,600303,5,,,,,, +48,Material,600303,5,,,,,, +49,Material,600303,5,Rune,10033,5,,, +50,Material,600303,5,Rune,10034,5,,, +51,Material,600203,15,,,,,, +52,Material,600303,8,Material,600304,1,,, +53,Material,600303,8,Material,600304,1,,, +54,Material,600303,8,Rune,10033,10,,, +55,Material,600303,8,Rune,10034,10,,, +56,Material,600203,20,,,,,, +57,Material,600304,2,Material,10033,20,,, +58,Material,600304,2,Material,10034,20,,, +59,Material,600304,2,Material,600305,1,,, +60,Material,600304,5,Material,600305,3,Material,600203,100 +61,Material,600302,10,,,,,, +62,Material,600302,5,Material,600303,2,,, +63,Material,600302,5,Material,600303,2,,, +64,Material,600302,5,Rune,10033,5,,, +65,Material,600302,5,Rune,10034,5,,, +66,Material,600203,5,,,,,, +67,Material,600303,5,,,,,, +68,Material,600303,5,,,,,, +69,Material,600303,5,Rune,10033,5,,, +70,Material,600303,5,Rune,10034,5,,, +71,Material,600203,15,,,,,, +72,Material,600303,8,Material,600304,1,,, +73,Material,600303,8,Material,600304,1,,, +74,Material,600303,8,Rune,10033,10,,, +75,Material,600303,8,Rune,10034,10,,, +76,Material,600203,20,,,,,, +77,Material,600304,2,Rune,10033,20,,, +78,Material,600304,2,Rune,10034,20,,, +79,Material,600304,2,Material,600305,1,,, +80,Material,600304,5,Material,600305,3,Material,600203,100 \ No newline at end of file diff --git a/Lib9c/TableCSV/AdventureBoss/AdventureBossFloorSheet.csv b/Lib9c/TableCSV/AdventureBoss/AdventureBossFloorSheet.csv index 51db54bcd..3504e9754 100644 --- a/Lib9c/TableCSV/AdventureBoss/AdventureBossFloorSheet.csv +++ b/Lib9c/TableCSV/AdventureBoss/AdventureBossFloorSheet.csv @@ -1,81 +1,81 @@ -id,adventure_boss_id ,floor,turn_limit,hp_additional,atk_additional,def_additional,cri_additional,hit_additional,spd_additional,background,bgm,reward_1_type,reward_1_id,reward_1_min,reward_1_max,reward_1_ratio,reward_2_type,reward_2_id,reward_2_min,reward_2_max,reward_2_ratio,reward_3_type,reward_3_id,reward_3_min,reward_3_max,reward_3_ratio,min_drop_item,max_drop_item,stage_buff_skill_id -1,1,1,150,50,60,153,0,80,50,chapter_01_01,bgm_yggdrasil_01,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401000 -2,1,2,150,100,80,130,0,20,100,chapter_01_01,bgm_yggdrasil_01,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401000 -3,1,3,150,273,310,270,0,437,364,chapter_01_02,bgm_yggdrasil_02,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401000 -4,1,4,150,1200,1100,800,0,1400,898,chapter_01_02,bgm_yggdrasil_02,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401000 -5,1,5,150,2650,1900,1350,0,2525,2525,chapter_01_03,bgm_yggdrasil_03,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401000 -6,1,6,150,2650,1900,1350,0,2525,2525,chapter_01_01,bgm_yggdrasil_01,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401001 -7,1,7,150,1880,1650,220,0,8000,3159,chapter_01_01,bgm_yggdrasil_01,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401001 -8,1,8,150,3550,3150,3200,0,10000,3841,chapter_01_02,bgm_yggdrasil_02,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401001 -9,1,9,150,5100,2500,6000,0,16500,4300,chapter_01_02,bgm_yggdrasil_02,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401001 -10,1,10,150,6800,4900,7000,0,35300,6000,chapter_01_03,bgm_yggdrasil_03,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401001 -11,1,11,150,6800,4900,7000,0,35300,6000,chapter_01_01,bgm_yggdrasil_01,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401002 -12,1,12,150,24300,31200,21200,0,155000,22000,chapter_01_01,bgm_yggdrasil_01,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401002 -13,1,13,150,36450,46800,31800,0,232500,33000,chapter_01_02,bgm_yggdrasil_02,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401002 -14,1,14,150,72900,93600,63600,0,465000,66000,chapter_01_02,bgm_yggdrasil_02,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401002 -15,1,15,150,123930,159120,108120,0,790500,112200,chapter_01_03,bgm_yggdrasil_03,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401002 -16,1,16,150,123930,159120,108120,0,790500,112200,chapter_01_01,bgm_yggdrasil_01,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401003 -17,1,17,150,285039,365976,248676,0,1818150,258060,chapter_01_01,bgm_yggdrasil_01,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401003 -18,1,18,150,427558,548964,373014,0,2727225,387090,chapter_01_02,bgm_yggdrasil_02,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401003 -19,1,19,150,855116,1097928,746028,0,5454450,774180,chapter_01_02,bgm_yggdrasil_02,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401003 -20,1,20,150,1453697,1866477,1268247,0,9272565,1316106,chapter_01_03,bgm_yggdrasil_03,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401003 -21,2,1,150,50,60,153,0,80,50,chapter_01_01,bgm_yggdrasil_01,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401000 -22,2,2,150,100,80,130,0,20,100,chapter_01_01,bgm_yggdrasil_01,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401000 -23,2,3,150,273,310,270,0,437,364,chapter_01_02,bgm_yggdrasil_02,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401000 -24,2,4,150,1200,1100,800,0,1400,898,chapter_01_02,bgm_yggdrasil_02,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401000 -25,2,5,150,2650,1900,1350,0,2525,2525,chapter_01_03,bgm_yggdrasil_03,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401000 -26,2,6,150,2650,1900,1350,0,2525,2525,chapter_01_01,bgm_yggdrasil_01,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401001 -27,2,7,150,1880,1650,220,0,8000,3159,chapter_01_01,bgm_yggdrasil_01,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401001 -28,2,8,150,3550,3150,3200,0,10000,3841,chapter_01_02,bgm_yggdrasil_02,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401001 -29,2,9,150,5100,2500,6000,0,16500,4300,chapter_01_02,bgm_yggdrasil_02,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401001 -30,2,10,150,6800,4900,7000,0,35300,6000,chapter_01_03,bgm_yggdrasil_03,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401001 -31,2,11,150,6800,4900,7000,0,35300,6000,chapter_01_01,bgm_yggdrasil_01,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401002 -32,2,12,150,24300,31200,21200,0,155000,22000,chapter_01_01,bgm_yggdrasil_01,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401002 -33,2,13,150,36450,46800,31800,0,232500,33000,chapter_01_02,bgm_yggdrasil_02,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401002 -34,2,14,150,72900,93600,63600,0,465000,66000,chapter_01_02,bgm_yggdrasil_02,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401002 -35,2,15,150,123930,159120,108120,0,790500,112200,chapter_01_03,bgm_yggdrasil_03,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401002 -36,2,16,150,123930,159120,108120,0,790500,112200,chapter_01_01,bgm_yggdrasil_01,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401003 -37,2,17,150,285039,365976,248676,0,1818150,258060,chapter_01_01,bgm_yggdrasil_01,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401003 -38,2,18,150,427558,548964,373014,0,2727225,387090,chapter_01_02,bgm_yggdrasil_02,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401003 -39,2,19,150,855116,1097928,746028,0,5454450,774180,chapter_01_02,bgm_yggdrasil_02,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401003 -40,2,20,150,1453697,1866477,1268247,0,9272565,1316106,chapter_01_03,bgm_yggdrasil_03,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401003 -41,3,1,150,50,60,153,0,80,50,chapter_01_01,bgm_yggdrasil_01,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401000 -42,3,2,150,100,80,130,0,20,100,chapter_01_01,bgm_yggdrasil_01,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401000 -43,3,3,150,273,310,270,0,437,364,chapter_01_02,bgm_yggdrasil_02,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401000 -44,3,4,150,1200,1100,800,0,1400,898,chapter_01_02,bgm_yggdrasil_02,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401000 -45,3,5,150,2650,1900,1350,0,2525,2525,chapter_01_03,bgm_yggdrasil_03,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401000 -46,3,6,150,2650,1900,1350,0,2525,2525,chapter_01_01,bgm_yggdrasil_01,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401001 -47,3,7,150,1880,1650,220,0,8000,3159,chapter_01_01,bgm_yggdrasil_01,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401001 -48,3,8,150,3550,3150,3200,0,10000,3841,chapter_01_02,bgm_yggdrasil_02,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401001 -49,3,9,150,5100,2500,6000,0,16500,4300,chapter_01_02,bgm_yggdrasil_02,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401001 -50,3,10,150,6800,4900,7000,0,35300,6000,chapter_01_03,bgm_yggdrasil_03,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401001 -51,3,11,150,6800,4900,7000,0,35300,6000,chapter_01_01,bgm_yggdrasil_01,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401002 -52,3,12,150,24300,31200,21200,0,155000,22000,chapter_01_01,bgm_yggdrasil_01,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401002 -53,3,13,150,36450,46800,31800,0,232500,33000,chapter_01_02,bgm_yggdrasil_02,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401002 -54,3,14,150,72900,93600,63600,0,465000,66000,chapter_01_02,bgm_yggdrasil_02,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401002 -55,3,15,150,123930,159120,108120,0,790500,112200,chapter_01_03,bgm_yggdrasil_03,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401002 -56,3,16,150,123930,159120,108120,0,790500,112200,chapter_01_01,bgm_yggdrasil_01,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401003 -57,3,17,150,285039,365976,248676,0,1818150,258060,chapter_01_01,bgm_yggdrasil_01,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401003 -58,3,18,150,427558,548964,373014,0,2727225,387090,chapter_01_02,bgm_yggdrasil_02,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401003 -59,3,19,150,855116,1097928,746028,0,5454450,774180,chapter_01_02,bgm_yggdrasil_02,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401003 -60,3,20,150,1453697,1866477,1268247,0,9272565,1316106,chapter_01_03,bgm_yggdrasil_03,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401003 -61,4,1,150,50,60,153,0,80,50,chapter_01_01,bgm_yggdrasil_01,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401000 -62,4,2,150,100,80,130,0,20,100,chapter_01_01,bgm_yggdrasil_01,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401000 -63,4,3,150,273,310,270,0,437,364,chapter_01_02,bgm_yggdrasil_02,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401000 -64,4,4,150,1200,1100,800,0,1400,898,chapter_01_02,bgm_yggdrasil_02,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401000 -65,4,5,150,2650,1900,1350,0,2525,2525,chapter_01_03,bgm_yggdrasil_03,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401000 -66,4,6,150,2650,1900,1350,0,2525,2525,chapter_01_01,bgm_yggdrasil_01,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401001 -67,4,7,150,1880,1650,220,0,8000,3159,chapter_01_01,bgm_yggdrasil_01,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401001 -68,4,8,150,3550,3150,3200,0,10000,3841,chapter_01_02,bgm_yggdrasil_02,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401001 -69,4,9,150,5100,2500,6000,0,16500,4300,chapter_01_02,bgm_yggdrasil_02,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401001 -70,4,10,150,6800,4900,7000,0,35300,6000,chapter_01_03,bgm_yggdrasil_03,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401001 -71,4,11,150,6800,4900,7000,0,35300,6000,chapter_01_01,bgm_yggdrasil_01,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401002 -72,4,12,150,24300,31200,21200,0,155000,22000,chapter_01_01,bgm_yggdrasil_01,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401002 -73,4,13,150,36450,46800,31800,0,232500,33000,chapter_01_02,bgm_yggdrasil_02,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401002 -74,4,14,150,72900,93600,63600,0,465000,66000,chapter_01_02,bgm_yggdrasil_02,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401002 -75,4,15,150,123930,159120,108120,0,790500,112200,chapter_01_03,bgm_yggdrasil_03,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401002 -76,4,16,150,123930,159120,108120,0,790500,112200,chapter_01_01,bgm_yggdrasil_01,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401003 -77,4,17,150,285039,365976,248676,0,1818150,258060,chapter_01_01,bgm_yggdrasil_01,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401003 -78,4,18,150,427558,548964,373014,0,2727225,387090,chapter_01_02,bgm_yggdrasil_02,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401003 -79,4,19,150,855116,1097928,746028,0,5454450,774180,chapter_01_02,bgm_yggdrasil_02,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401003 -80,4,20,150,1453697,1866477,1268247,0,9272565,1316106,chapter_01_03,bgm_yggdrasil_03,Material,600301,1,10,50,Material,600302,1,10,30,Material,600303,1,10,20,1,3,401003 \ No newline at end of file +id,adventure_boss_id,floor,turn_limit,hp_additional,atk_additional,def_additional,cri_additional,hit_additional,spd_additional,background,bgm,reward_1_type,reward_1_id,reward_1_min,reward_1_max,reward_1_ratio,reward_2_type,reward_2_id,reward_2_min,reward_2_max,reward_2_ratio,reward_3_type,reward_3_id,reward_3_min,reward_3_max,reward_3_ratio,min_drop_item,max_drop_item,stage_buff_skill_id +1,1,1,150,50,180,153,0,80,50,chapter_01_01,bgm_yggdrasil_01,Material,600301,2,3,60,Material,600201,1,1,10,Rune,10033,3,3,30,1,3,401000 +2,1,2,150,100,240,130,0,20,100,chapter_01_01,bgm_yggdrasil_01,Material,600301,2,3,60,Material,600201,1,1,10,Rune,10034,3,3,30,1,3,401000 +3,1,3,150,273,700,270,0,437,364,chapter_01_02,bgm_yggdrasil_02,Material,600301,2,3,60,Material,600201,1,1,10,Rune,10033,3,3,30,1,3,401000 +4,1,4,150,1200,1200,800,0,1400,898,chapter_01_02,bgm_yggdrasil_02,Material,600301,2,3,60,Material,600201,1,1,10,Rune,10034,3,3,30,1,3,401000 +5,1,5,150,2650,7000,1350,0,2525,2525,chapter_01_03,bgm_yggdrasil_03,Material,600301,2,3,60,Material,600201,1,1,10,Rune,10033,3,3,30,1,3,401000 +6,1,6,150,2650,7000,1350,0,2525,2525,chapter_01_01,bgm_yggdrasil_01,Material,600302,2,3,60,Material,600202,1,1,10,Rune,10034,3,3,30,2,3,401000 +7,1,7,150,3000,9000,2500,0,8000,3159,chapter_01_01,bgm_yggdrasil_01,Material,600302,2,3,60,Material,600202,1,1,10,Rune,10033,3,3,30,2,3,401001 +8,1,8,150,3550,12050,3200,0,10000,3841,chapter_01_02,bgm_yggdrasil_02,Material,600302,2,3,60,Material,600202,1,1,10,Rune,10034,3,3,30,2,3,401001 +9,1,9,150,5100,15000,6000,0,16500,4300,chapter_01_02,bgm_yggdrasil_02,Material,600302,2,3,60,Material,600202,1,1,10,Rune,10033,3,3,30,2,3,401001 +10,1,10,150,6800,90000,7000,0,35300,6000,chapter_01_03,bgm_yggdrasil_03,Material,600302,2,3,60,Material,600202,1,1,10,Rune,10034,3,3,30,2,3,401001 +11,1,11,150,6800,90000,7000,0,35300,6000,chapter_01_01,bgm_yggdrasil_01,Material,600303,2,3,60,Material,600203,1,1,10,Rune,10033,3,3,30,2,3,401001 +12,1,12,150,24300,303600,21200,0,155000,22000,chapter_01_01,bgm_yggdrasil_01,Material,600303,2,3,60,Material,600203,1,1,10,Rune,10034,3,3,30,2,3,401002 +13,1,13,150,36450,500400,31800,0,232500,33000,chapter_01_02,bgm_yggdrasil_02,Material,600303,2,3,60,Material,600203,1,1,10,Rune,10033,3,3,30,2,3,401002 +14,1,14,150,72900,900800,63600,0,465000,66000,chapter_01_02,bgm_yggdrasil_02,Material,600303,2,3,60,Material,600203,1,1,10,Rune,10034,3,3,30,2,3,401002 +15,1,15,150,123930,1337360,108120,0,790500,112200,chapter_01_03,bgm_yggdrasil_03,Material,600303,2,3,60,Material,600203,1,1,10,Rune,10033,3,3,30,2,3,401002 +16,1,16,150,123930,1337360,108120,0,790500,112200,chapter_01_01,bgm_yggdrasil_01,Material,600304,2,3,60,Material,600203,1,1,10,Rune,10034,3,3,30,2,3,401002 +17,1,17,150,285039,2397928,248676,0,1818150,258060,chapter_01_01,bgm_yggdrasil_01,Material,600304,2,3,60,Material,600203,1,1,10,Rune,10033,3,3,30,2,3,401003 +18,1,18,150,427558,3446892,373014,0,2727225,387090,chapter_01_02,bgm_yggdrasil_02,Material,600304,2,3,60,Material,600203,1,1,10,Rune,10034,3,3,30,2,3,401003 +19,1,19,150,855116,6653784,746028,0,5454450,774180,chapter_01_02,bgm_yggdrasil_02,Material,600304,2,3,60,Material,600203,1,1,10,Rune,10033,3,3,30,2,3,401003 +20,1,20,150,1453697,11099431,1268247,0,9272565,1316106,chapter_01_03,bgm_yggdrasil_03,Material,600304,2,3,60,Material,600203,1,1,10,Rune,10034,3,3,30,2,3,401003 +21,2,1,150,50,120,450,0,80,50,chapter_01_01,bgm_yggdrasil_01,Material,600301,2,3,60,Material,600201,1,1,10,Rune,10033,3,3,30,1,3,401004 +22,2,2,150,100,150,280,0,20,100,chapter_01_01,bgm_yggdrasil_01,Material,600301,2,3,60,Material,600201,1,1,10,Rune,10034,3,3,30,1,3,401004 +23,2,3,150,273,500,100,0,437,364,chapter_01_02,bgm_yggdrasil_02,Material,600301,2,3,60,Material,600201,1,1,10,Rune,10033,3,3,30,1,3,401004 +24,2,4,150,600,900,1600,0,1400,898,chapter_01_02,bgm_yggdrasil_02,Material,600301,2,3,60,Material,600201,1,1,10,Rune,10034,3,3,30,1,3,401004 +25,2,5,150,1350,5500,11000,0,2525,2525,chapter_01_03,bgm_yggdrasil_03,Material,600301,2,3,60,Material,600201,1,1,10,Rune,10033,3,3,30,1,3,401004 +26,2,6,150,1350,5500,11000,0,2525,2525,chapter_01_01,bgm_yggdrasil_01,Material,600302,2,3,60,Material,600202,1,1,10,Rune,10034,3,3,30,1,3,401004 +27,2,7,150,1600,7500,11000,0,8000,3159,chapter_01_01,bgm_yggdrasil_01,Material,600302,2,3,60,Material,600202,1,1,10,Rune,10033,3,3,30,1,3,401005 +28,2,8,150,5000,9550,15000,0,10000,3841,chapter_01_02,bgm_yggdrasil_02,Material,600302,2,3,60,Material,600202,1,1,10,Rune,10034,3,3,30,1,3,401005 +29,2,9,150,8500,13800,80000,0,16500,4300,chapter_01_02,bgm_yggdrasil_02,Material,600302,2,3,60,Material,600202,1,1,10,Rune,10033,3,3,30,1,3,401005 +30,2,10,150,30000,80000,240000,0,35300,6000,chapter_01_03,bgm_yggdrasil_03,Material,600302,2,3,60,Material,600202,1,1,10,Rune,10034,3,3,30,1,3,401005 +31,2,11,150,30000,80000,240000,0,35300,6000,chapter_01_01,bgm_yggdrasil_01,Material,600303,2,3,60,Material,600203,1,1,10,Rune,10033,3,3,30,1,3,401005 +32,2,12,150,90300,303600,540000,0,155000,22000,chapter_01_01,bgm_yggdrasil_01,Material,600303,2,3,60,Material,600203,1,1,10,Rune,10034,3,3,30,1,3,401006 +33,2,13,150,140450,450400,780000,0,232500,33000,chapter_01_02,bgm_yggdrasil_02,Material,600303,2,3,60,Material,600203,1,1,10,Rune,10033,3,3,30,1,3,401006 +34,2,14,150,265450,850800,1490000,0,465000,66000,chapter_01_02,bgm_yggdrasil_02,Material,600303,2,3,60,Material,600203,1,1,10,Rune,10034,3,3,30,1,3,401006 +35,2,15,150,420930,1337360,2430000,0,790500,112200,chapter_01_03,bgm_yggdrasil_03,Material,600303,2,3,60,Material,600203,1,1,10,Rune,10033,3,3,30,1,3,401006 +36,2,16,150,420930,1337360,2430000,0,790500,112200,chapter_01_01,bgm_yggdrasil_01,Material,600304,2,3,60,Material,600203,1,1,10,Rune,10034,3,3,30,1,3,401006 +37,2,17,150,1505039,2807928,6000000,0,1818150,258060,chapter_01_01,bgm_yggdrasil_01,Material,600304,2,3,60,Material,600203,1,1,10,Rune,10033,3,3,30,1,3,401007 +38,2,18,150,2227558,3946892,8600000,0,2727225,387090,chapter_01_02,bgm_yggdrasil_02,Material,600304,2,3,60,Material,600203,1,1,10,Rune,10034,3,3,30,1,3,401007 +39,2,19,150,4057558,8053784,16600000,0,5454450,774180,chapter_01_02,bgm_yggdrasil_02,Material,600304,2,3,60,Material,600203,1,1,10,Rune,10033,3,3,30,1,3,401007 +40,2,20,150,6557558,13099431,27400000,0,9272565,1316106,chapter_01_03,bgm_yggdrasil_03,Material,600304,2,3,60,Material,600203,1,1,10,Rune,10034,3,3,30,1,3,401007 +41,3,1,150,0,90,0,0,80,300,chapter_01_01,bgm_yggdrasil_01,Material,600301,2,3,60,Material,600201,1,1,10,Rune,10033,3,3,30,1,3,401008 +42,3,2,150,0,120,0,0,20,300,chapter_01_01,bgm_yggdrasil_01,Material,600301,2,3,60,Material,600201,1,1,10,Rune,10034,3,3,30,1,3,401008 +43,3,3,150,80,370,0,0,437,364,chapter_01_02,bgm_yggdrasil_02,Material,600301,2,3,60,Material,600201,1,1,10,Rune,10033,3,3,30,1,3,401008 +44,3,4,150,400,700,0,0,1400,898,chapter_01_02,bgm_yggdrasil_02,Material,600301,2,3,60,Material,600201,1,1,10,Rune,10034,3,3,30,1,3,401008 +45,3,5,150,1350,4300,1350,0,2525,4500,chapter_01_03,bgm_yggdrasil_03,Material,600301,2,3,60,Material,600201,1,1,10,Rune,10033,3,3,30,1,3,401008 +46,3,6,150,1350,4300,1350,0,2525,4500,chapter_01_01,bgm_yggdrasil_01,Material,600302,2,3,60,Material,600202,1,1,10,Rune,10034,3,3,30,1,3,401008 +47,3,7,150,1500,4000,1500,0,8000,4500,chapter_01_01,bgm_yggdrasil_01,Material,600302,2,3,60,Material,600202,1,1,10,Rune,10033,3,3,30,1,3,401009 +48,3,8,150,3500,12700,2000,0,10000,13000,chapter_01_02,bgm_yggdrasil_02,Material,600302,2,3,60,Material,600202,1,1,10,Rune,10034,3,3,30,1,3,401009 +49,3,9,150,12000,18000,6000,0,16500,18000,chapter_01_02,bgm_yggdrasil_02,Material,600302,2,3,60,Material,600202,1,1,10,Rune,10033,3,3,30,1,3,401009 +50,3,10,150,40000,45000,10000,0,35300,30000,chapter_01_03,bgm_yggdrasil_03,Material,600302,2,3,60,Material,600202,1,1,10,Rune,10034,3,3,30,1,3,401009 +51,3,11,150,40000,45000,10000,0,35300,30000,chapter_01_01,bgm_yggdrasil_01,Material,600303,2,3,60,Material,600203,1,1,10,Rune,10033,3,3,30,1,3,401009 +52,3,12,150,120300,133600,21200,0,155000,74000,chapter_01_01,bgm_yggdrasil_01,Material,600303,2,3,60,Material,600203,1,1,10,Rune,10034,3,3,30,1,3,401010 +53,3,13,150,190450,200400,40000,0,232500,120000,chapter_01_02,bgm_yggdrasil_02,Material,600303,2,3,60,Material,600203,1,1,10,Rune,10033,3,3,30,1,3,401010 +54,3,14,150,355450,380800,80600,0,465000,208000,chapter_01_02,bgm_yggdrasil_02,Material,600303,2,3,60,Material,600203,1,1,10,Rune,10034,3,3,30,1,3,401010 +55,3,15,150,450930,607360,308120,0,790500,340000,chapter_01_03,bgm_yggdrasil_03,Material,600303,2,3,60,Material,600203,1,1,10,Rune,10033,3,3,30,1,3,401010 +56,3,16,150,450930,607360,308120,0,790500,340000,chapter_01_01,bgm_yggdrasil_01,Material,600304,2,3,60,Material,600203,1,1,10,Rune,10034,3,3,30,1,3,401010 +57,3,17,150,1105039,807928,508676,0,1818150,750000,chapter_01_01,bgm_yggdrasil_01,Material,600304,2,3,60,Material,600203,1,1,10,Rune,10033,3,3,30,1,3,401011 +58,3,18,150,1527558,1146892,663014,0,2727225,1080000,chapter_01_02,bgm_yggdrasil_02,Material,600304,2,3,60,Material,600203,1,1,10,Rune,10034,3,3,30,1,3,401011 +59,3,19,150,3557558,2253784,926028,0,5454450,2100000,chapter_01_02,bgm_yggdrasil_02,Material,600304,2,3,60,Material,600203,1,1,10,Rune,10033,3,3,30,1,3,401011 +60,3,20,150,5557558,3599431,1574247,0,9272565,3400000,chapter_01_03,bgm_yggdrasil_03,Material,600304,2,3,60,Material,600203,1,1,10,Rune,10034,3,3,30,1,3,401011 +61,4,1,150,0,0,0,0,80,50,chapter_01_01,bgm_yggdrasil_01,Material,600301,2,3,60,Material,600201,1,1,10,Rune,10033,3,3,30,1,3,401012 +62,4,2,150,0,0,0,0,20,100,chapter_01_01,bgm_yggdrasil_01,Material,600301,2,3,60,Material,600201,1,1,10,Rune,10034,3,3,30,1,3,401012 +63,4,3,150,80,0,0,0,437,364,chapter_01_02,bgm_yggdrasil_02,Material,600301,2,3,60,Material,600201,1,1,10,Rune,10033,3,3,30,1,3,401012 +64,4,4,150,400,0,0,0,1400,898,chapter_01_02,bgm_yggdrasil_02,Material,600301,2,3,60,Material,600201,1,1,10,Rune,10034,3,3,30,1,3,401012 +65,4,5,150,1600,200,500,0,2525,2525,chapter_01_03,bgm_yggdrasil_03,Material,600301,2,3,60,Material,600201,1,1,10,Rune,10033,3,3,30,1,3,401012 +66,4,6,150,1600,200,500,0,2525,2525,chapter_01_01,bgm_yggdrasil_01,Material,600302,2,3,60,Material,600202,1,1,10,Rune,10034,3,3,30,1,3,401012 +67,4,7,150,2000,220,800,0,8000,3159,chapter_01_01,bgm_yggdrasil_01,Material,600302,2,3,60,Material,600202,1,1,10,Rune,10033,3,3,30,1,3,401013 +68,4,8,150,3500,250,800,0,10000,3841,chapter_01_02,bgm_yggdrasil_02,Material,600302,2,3,60,Material,600202,1,1,10,Rune,10034,3,3,30,1,3,401013 +69,4,9,150,15000,500,4000,0,16500,4300,chapter_01_02,bgm_yggdrasil_02,Material,600302,2,3,60,Material,600202,1,1,10,Rune,10033,3,3,30,1,3,401013 +70,4,10,150,40000,3000,6000,0,35300,6000,chapter_01_03,bgm_yggdrasil_03,Material,600302,2,3,60,Material,600202,1,1,10,Rune,10034,3,3,30,1,3,401013 +71,4,11,150,40000,3000,10000,0,35300,6000,chapter_01_01,bgm_yggdrasil_01,Material,600303,2,3,60,Material,600203,1,1,10,Rune,10033,3,3,30,1,3,401013 +72,4,12,150,120300,8500,21200,0,155000,22000,chapter_01_01,bgm_yggdrasil_01,Material,600303,2,3,60,Material,600203,1,1,10,Rune,10034,3,3,30,1,3,401014 +73,4,13,150,190450,13000,40000,0,232500,33000,chapter_01_02,bgm_yggdrasil_02,Material,600303,2,3,60,Material,600203,1,1,10,Rune,10033,3,3,30,1,3,401014 +74,4,14,150,355450,24000,80600,0,465000,66000,chapter_01_02,bgm_yggdrasil_02,Material,600303,2,3,60,Material,600203,1,1,10,Rune,10034,3,3,30,1,3,401014 +75,4,15,150,500930,39000,308120,0,790500,112200,chapter_01_03,bgm_yggdrasil_03,Material,600303,2,3,60,Material,600203,1,1,10,Rune,10033,3,3,30,1,3,401014 +76,4,16,150,500930,39000,308120,0,790500,112200,chapter_01_01,bgm_yggdrasil_01,Material,600304,2,3,60,Material,600203,1,1,10,Rune,10034,3,3,30,1,3,401014 +77,4,17,150,1105039,54000,508676,0,1818150,258060,chapter_01_01,bgm_yggdrasil_01,Material,600304,2,3,60,Material,600203,1,1,10,Rune,10033,3,3,30,1,3,401015 +78,4,18,150,1527558,77000,663014,0,2727225,387090,chapter_01_02,bgm_yggdrasil_02,Material,600304,2,3,60,Material,600203,1,1,10,Rune,10034,3,3,30,1,3,401015 +79,4,19,150,3557558,150000,926028,0,5454450,774180,chapter_01_02,bgm_yggdrasil_02,Material,600304,2,3,60,Material,600203,1,1,10,Rune,10033,3,3,30,1,3,401015 +80,4,20,150,5557558,242000,1574247,0,9272565,1316106,chapter_01_03,bgm_yggdrasil_03,Material,600304,2,3,60,Material,600203,1,1,10,Rune,10034,3,3,30,1,3,401015 \ No newline at end of file diff --git a/Lib9c/TableCSV/AdventureBoss/AdventureBossFloorWaveSheet.csv b/Lib9c/TableCSV/AdventureBoss/AdventureBossFloorWaveSheet.csv index b6fa51166..7f264fb84 100644 --- a/Lib9c/TableCSV/AdventureBoss/AdventureBossFloorWaveSheet.csv +++ b/Lib9c/TableCSV/AdventureBoss/AdventureBossFloorWaveSheet.csv @@ -1,81 +1,81 @@ floor_id,wave,monster1_id,monster1_level,monster1_count,monster2_id,monster2_level,monster2_count,monster3_id,monster3_level,monster3_count,monster4_id,monster4_level,monster4_count,has_boss -1,1,206006,1,1,206000,1,2,,,,,,,1 -2,1,206006,1,1,206000,1,2,,,,,,,1 -3,1,206006,1,1,206000,1,1,206005,1,1,,,,1 -4,1,206006,1,1,206000,1,1,206005,1,1,,,,1 -5,1,211000,1,1,206005,1,2,,,,,,,1 -6,1,206006,1,1,206000,1,2,,,,,,,1 -7,1,206006,1,1,206000,1,2,,,,,,,1 -8,1,206006,1,1,206000,1,1,206005,1,1,,,,1 -9,1,206006,1,1,206000,1,1,206005,1,1,,,,1 -10,1,211000,1,1,206005,1,2,,,,,,,1 -11,1,206006,1,1,206000,1,2,,,,,,,1 -12,1,206006,1,1,206000,1,2,,,,,,,1 -13,1,206006,1,1,206000,1,1,206005,1,1,,,,1 -14,1,206006,1,1,206000,1,1,206005,1,1,,,,1 -15,1,211000,1,1,206005,1,2,,,,,,,1 -16,1,206006,1,1,206000,1,2,,,,,,,1 -17,1,206006,1,1,206000,1,2,,,,,,,1 -18,1,206006,1,1,206000,1,1,206005,1,1,,,,1 -19,1,206006,1,1,206000,1,1,206005,1,1,,,,1 -20,1,211000,1,1,206005,1,2,,,,,,,1 -21,1,207004,1,1,207001,1,2,,,,,,,1 -22,1,207004,1,1,207001,1,2,,,,,,,1 -23,1,207004,1,1,207001,1,1,207002,1,1,,,,1 -24,1,207004,1,1,207001,1,1,207002,1,1,,,,1 -25,1,211001,1,1,207002,1,2,,,,,,,1 -26,1,207004,1,1,207001,1,2,,,,,,,1 -27,1,207004,1,1,207001,1,2,,,,,,,1 -28,1,207004,1,1,207001,1,1,207002,1,1,,,,1 -29,1,207004,1,1,207001,1,1,207002,1,1,,,,1 -30,1,211001,1,1,207002,1,2,,,,,,,1 -31,1,207004,1,1,207001,1,2,,,,,,,1 -32,1,207004,1,1,207001,1,2,,,,,,,1 -33,1,207004,1,1,207001,1,1,207002,1,1,,,,1 -34,1,207004,1,1,207001,1,1,207002,1,1,,,,1 -35,1,211001,1,1,207002,1,2,,,,,,,1 -36,1,207004,1,1,207001,1,2,,,,,,,1 -37,1,207004,1,1,207001,1,2,,,,,,,1 -38,1,207004,1,1,207001,1,1,207002,1,1,,,,1 -39,1,207004,1,1,207001,1,1,207002,1,1,,,,1 -40,1,211001,1,1,207002,1,2,,,,,,,1 -41,1,208005,1,1,208000,1,2,,,,,,,1 -42,1,208005,1,1,208000,1,2,,,,,,,1 -43,1,208005,1,1,208000,1,1,208003,1,1,,,,1 -44,1,208005,1,1,208000,1,1,208003,1,1,,,,1 -45,1,211002,1,1,208003,1,2,,,,,,,1 -46,1,208005,1,1,208000,1,2,,,,,,,1 -47,1,208005,1,1,208000,1,2,,,,,,,1 -48,1,208005,1,1,208000,1,1,208003,1,1,,,,1 -49,1,208005,1,1,208000,1,1,208003,1,1,,,,1 -50,1,211002,1,1,208003,1,2,,,,,,,1 -51,1,208005,1,1,208000,1,2,,,,,,,1 -52,1,208005,1,1,208000,1,2,,,,,,,1 -53,1,208005,1,1,208000,1,1,208003,1,1,,,,1 -54,1,208005,1,1,208000,1,1,208003,1,1,,,,1 -55,1,211002,1,1,208003,1,2,,,,,,,1 -56,1,208005,1,1,208000,1,2,,,,,,,1 -57,1,208005,1,1,208000,1,2,,,,,,,1 -58,1,208005,1,1,208000,1,1,208003,1,1,,,,1 -59,1,208005,1,1,208000,1,1,208003,1,1,,,,1 -60,1,211002,1,1,208003,1,2,,,,,,,1 -61,1,209004,1,1,209000,1,2,,,,,,,1 -62,1,209004,1,1,209000,1,2,,,,,,,1 -63,1,209004,1,1,209000,1,1,209001,1,1,,,,1 -64,1,209004,1,1,209000,1,1,209001,1,1,,,,1 -65,1,211003,1,1,209001,1,2,,,,,,,1 -66,1,209004,1,1,209000,1,2,,,,,,,1 -67,1,209004,1,1,209000,1,2,,,,,,,1 -68,1,209004,1,1,209000,1,1,209001,1,1,,,,1 -69,1,209004,1,1,209000,1,1,209001,1,1,,,,1 -70,1,211003,1,1,209001,1,2,,,,,,,1 -71,1,209004,1,1,209000,1,2,,,,,,,1 -72,1,209004,1,1,209000,1,2,,,,,,,1 -73,1,209004,1,1,209000,1,1,209001,1,1,,,,1 -74,1,209004,1,1,209000,1,1,209001,1,1,,,,1 -75,1,211003,1,1,209001,1,2,,,,,,,1 -76,1,209004,1,1,209000,1,2,,,,,,,1 -77,1,209004,1,1,209000,1,2,,,,,,,1 -78,1,209004,1,1,209000,1,1,209001,1,1,,,,1 -79,1,209004,1,1,209000,1,1,209001,1,1,,,,1 -80,1,211003,1,1,209001,1,2,,,,,,,1 \ No newline at end of file +1,1,206000,100,1,206006,100,2,,,,,,,1 +2,1,206000,150,1,206006,150,2,,,,,,,1 +3,1,206000,200,1,206005,200,1,206006,200,1,,,,1 +4,1,206000,250,1,206005,250,1,206006,250,1,,,,1 +5,1,211000,300,1,,,,,,,,,,1 +6,1,206000,300,1,206006,300,2,,,,,,,1 +7,1,206000,320,1,206006,320,2,,,,,,,1 +8,1,206000,340,1,206005,340,1,206006,340,1,,,,1 +9,1,206000,360,1,206005,360,1,206006,360,1,,,,1 +10,1,211000,380,1,,,,,,,,,,1 +11,1,206000,380,1,206006,380,2,,,,,,,1 +12,1,206000,400,1,206006,400,2,,,,,,,1 +13,1,206000,410,1,206005,410,1,206006,410,1,,,,1 +14,1,206000,430,1,206005,430,1,206006,430,1,,,,1 +15,1,211000,450,1,,,,,,,,,,1 +16,1,206000,450,1,206006,450,2,,,,,,,1 +17,1,206000,470,1,206006,470,2,,,,,,,1 +18,1,206000,490,1,206005,490,1,206006,490,1,,,,1 +19,1,206000,510,1,206005,510,1,206006,510,1,,,,1 +20,1,211000,530,1,,,,,,,,,,1 +21,1,207001,100,1,207004,100,2,,,,,,,1 +22,1,207001,150,1,207004,150,2,,,,,,,1 +23,1,207001,200,1,207002,200,1,207004,200,1,,,,1 +24,1,207001,250,1,207002,250,1,207004,250,1,,,,1 +25,1,211001,300,1,,,,,,,,,,1 +26,1,207001,300,1,207004,300,2,,,,,,,1 +27,1,207001,320,1,207004,320,2,,,,,,,1 +28,1,207001,340,1,207002,340,1,207004,340,1,,,,1 +29,1,207001,360,1,207002,360,1,207004,360,1,,,,1 +30,1,211001,380,1,,,,,,,,,,1 +31,1,207001,380,1,207004,380,2,,,,,,,1 +32,1,207001,400,1,207004,400,2,,,,,,,1 +33,1,207001,410,1,207002,410,1,207004,410,1,,,,1 +34,1,207001,430,1,207002,430,1,207004,430,1,,,,1 +35,1,211001,450,1,,,,,,,,,,1 +36,1,207001,450,1,207004,450,2,,,,,,,1 +37,1,207001,470,1,207004,470,2,,,,,,,1 +38,1,207001,490,1,207002,490,1,207004,490,1,,,,1 +39,1,207001,510,1,207002,510,1,207004,510,1,,,,1 +40,1,211001,530,1,,,,,,,,,,1 +41,1,208000,100,1,208005,100,2,,,,,,,1 +42,1,208000,150,1,208005,150,2,,,,,,,1 +43,1,208000,200,1,208003,200,1,208005,200,1,,,,1 +44,1,208000,250,1,208003,250,1,208005,250,1,,,,1 +45,1,211002,300,1,,,,,,,,,,1 +46,1,208000,300,1,208005,300,2,,,,,,,1 +47,1,208000,320,1,208005,320,2,,,,,,,1 +48,1,208000,340,1,208003,340,1,208005,340,1,,,,1 +49,1,208000,360,1,208003,360,1,208005,360,1,,,,1 +50,1,211002,380,1,,,,,,,,,,1 +51,1,208000,380,1,208005,380,2,,,,,,,1 +52,1,208000,400,1,208005,400,2,,,,,,,1 +53,1,208000,410,1,208003,410,1,208005,410,1,,,,1 +54,1,208000,430,1,208003,430,1,208005,430,1,,,,1 +55,1,211002,450,1,,,,,,,,,,1 +56,1,208000,450,1,208005,450,2,,,,,,,1 +57,1,208000,470,1,208005,470,2,,,,,,,1 +58,1,208000,490,1,208003,490,1,208005,490,1,,,,1 +59,1,208000,510,1,208003,510,1,208005,510,1,,,,1 +60,1,211002,530,1,,,,,,,,,,1 +61,1,209000,100,1,209004,100,2,,,,,,,1 +62,1,209000,150,1,209004,150,2,,,,,,,1 +63,1,209000,200,1,209001,200,1,209004,200,1,,,,1 +64,1,209000,250,1,209001,250,1,209004,250,1,,,,1 +65,1,211003,300,1,,,,,,,,,,1 +66,1,209000,300,1,209004,300,2,,,,,,,1 +67,1,209000,320,1,209004,320,2,,,,,,,1 +68,1,209000,340,1,209001,340,1,209004,340,1,,,,1 +69,1,209000,360,1,209001,360,1,209004,360,1,,,,1 +70,1,211003,380,1,,,,,,,,,,1 +71,1,209000,380,1,209004,380,2,,,,,,,1 +72,1,209000,400,1,209004,400,2,,,,,,,1 +73,1,209000,410,1,209001,410,1,209004,410,1,,,,1 +74,1,209000,430,1,209001,430,1,209004,430,1,,,,1 +75,1,211003,450,1,,,,,,,,,,1 +76,1,209000,450,1,209004,450,2,,,,,,,1 +77,1,209000,470,1,209004,470,2,,,,,,,1 +78,1,209000,490,1,209001,490,1,209004,490,1,,,,1 +79,1,209000,510,1,209001,510,1,209004,510,1,,,,1 +80,1,211003,530,1,,,,,,,,,,1 \ No newline at end of file diff --git a/Lib9c/TableCSV/AdventureBoss/AdventureBossNcgRewardRatioSheet.csv b/Lib9c/TableCSV/AdventureBoss/AdventureBossNcgRewardRatioSheet.csv index 409212654..fe17de32d 100644 --- a/Lib9c/TableCSV/AdventureBoss/AdventureBossNcgRewardRatioSheet.csv +++ b/Lib9c/TableCSV/AdventureBoss/AdventureBossNcgRewardRatioSheet.csv @@ -1,10 +1,10 @@ item_id,_item_name,ratio 600201,Golden Dust,0.5 -600202,Ruby Dust,1.5 -600203,Diamond Dust,7.5 -600301,Normal Hammer,0.1 -600302,Rare Hammer,0.5 -600303,Epic Hammer,1 -600304,Unique Hammer,4 -600305,Legendary Hammer,15 -600306,Divinity Hammer,60 \ No newline at end of file +600202,Ruby Dust,2 +600203,Emerald Dust,4 +600301,Normal Hammer,0.001 +600302,Rare Hammer,0.01 +600303,Epic Hammer,0.1 +600304,Unique Hammer,1 +600305,Legendary Hammer,3 +600306,Sacred Hammer,10 \ No newline at end of file diff --git a/Lib9c/TableCSV/AdventureBoss/AdventureBossSheet.csv b/Lib9c/TableCSV/AdventureBoss/AdventureBossSheet.csv index 1b9534383..a2960909e 100644 --- a/Lib9c/TableCSV/AdventureBoss/AdventureBossSheet.csv +++ b/Lib9c/TableCSV/AdventureBoss/AdventureBossSheet.csv @@ -1,5 +1,5 @@ id,boss_id,_boss_name,explore_ap,sweep_ap -1,211000,수르트,1,2 -2,211001,라우페이,2,4 -3,211002,요르문간드,3,6 -4,211003,헤라,4,8 +1,211000,수르트,2,1 +2,211001,라우페이,2,1 +3,211002,요르문간드,2,1 +4,211003,헤라,2,1 \ No newline at end of file diff --git a/Lib9c/TableCSV/AdventureBoss/AdventureBossUnlockFloorCostSheet.csv b/Lib9c/TableCSV/AdventureBoss/AdventureBossUnlockFloorCostSheet.csv index ceb961791..327f757e1 100644 --- a/Lib9c/TableCSV/AdventureBoss/AdventureBossUnlockFloorCostSheet.csv +++ b/Lib9c/TableCSV/AdventureBoss/AdventureBossUnlockFloorCostSheet.csv @@ -1,13 +1,13 @@ floor_id,golden_dust_price,ncg_price -6,5,5 -11,5,5 -16,5,5 -26,10,10 -31,10,10 -36,10,10 -46,15,15 -51,15,15 -56,15,15 -66,20,20 -71,20,20 -76,20,20 +6,100,10 +11,200,20 +16,300,30 +26,100,10 +31,200,20 +36,300,30 +46,100,10 +51,200,20 +56,300,30 +66,100,10 +71,200,20 +76,300,30 \ No newline at end of file diff --git a/Lib9c/TableCSV/AdventureBoss/AdventureBossWantedRewardSheet.csv b/Lib9c/TableCSV/AdventureBoss/AdventureBossWantedRewardSheet.csv index 2d96e56c4..2098c5dfb 100644 --- a/Lib9c/TableCSV/AdventureBoss/AdventureBossWantedRewardSheet.csv +++ b/Lib9c/TableCSV/AdventureBoss/AdventureBossWantedRewardSheet.csv @@ -1,5 +1,5 @@ id,adventure_boss_id,fixed_type,fixed_id,random_1_type,random_1_id,random_1_ratio,random_2_type,random_2_id,random_2_ratio,random_3_type,random_3_id,random_3_ratio,random_4_type,random_4_id,random_4_ratio -1,1,Material,600201,Rune,30001,50,Material,600201,60,Rune,20001,40,Material,600202,40 -2,2,Material,600201,Rune,30001,50,Material,600201,60,Rune,20001,40,Material,600202,40 -3,3,Material,600201,Rune,30001,50,Material,600201,60,Rune,20001,40,Material,600202,40 -4,4,Material,600201,Rune,30001,50,Material,600201,60,Rune,20001,40,Material,600202,40 +1,1,Material,600201,Material,600201,10,Material,600202,20,Rune,10035,30,Material,600203,40 +2,2,Material,600202,Material,600201,10,Material,600202,20,Rune,10035,30,Material,600203,40 +3,3,Rune,10035,Material,600201,10,Material,600202,20,Rune,10035,30,Material,600203,40 +4,4,Material,600203,Material,600201,10,Material,600202,20,Rune,10035,30,Material,600203,40 \ No newline at end of file diff --git a/Lib9c/TableCSV/Arena/ArenaSheet.csv b/Lib9c/TableCSV/Arena/ArenaSheet.csv index 5f9df2fde..80df99292 100644 --- a/Lib9c/TableCSV/Arena/ArenaSheet.csv +++ b/Lib9c/TableCSV/Arena/ArenaSheet.csv @@ -55,11 +55,11 @@ id,round,arena_type,start_block_index,end_block_index,required_medal_count,entra 9,2,Season,10288901,10440100,0,1,50,20,40,8 9,3,OffSeason,10440101,10720900,0,0,5,2,40,8 9,4,Season,10720901,10872100,0,1,50,20,40,8 -9,5,OffSeason,10872101,11023300,0,0,5,2,40,8 -9,6,Championship,11023301,11174500,160,2,100,40,40,8 -10,1,OffSeason,11174501,11325700,0,0,5,2,40,8 -10,2,Season,11325701,11476900,0,1,50,20,40,8 -10,3,OffSeason,11476901,11628100,0,0,5,2,40,8 -10,4,Season,11628101,11779300,0,1,50,20,40,8 -10,5,OffSeason,11779301,11930500,0,0,5,2,40,8 -10,6,Championship,11930501,12081700,160,2,100,40,40,8 \ No newline at end of file +9,5,OffSeason,10872101,11131300,0,0,5,2,40,8 +9,6,Championship,11131301,11282500,0,2,100,40,40,8 +10,1,OffSeason,11282501,11433700,0,0,5,2,40,8 +10,2,Season,11433701,11584900,0,1,50,20,40,8 +10,3,OffSeason,11584901,11736100,0,0,5,2,40,8 +10,4,Season,11736101,11887300,0,1,50,20,40,8 +10,5,OffSeason,11887301,12038500,0,0,5,2,40,8 +10,6,Championship,12038501,12189700,160,2,100,40,40,8 \ No newline at end of file diff --git a/Lib9c/TableCSV/Character/CharacterLevelSheet.csv b/Lib9c/TableCSV/Character/CharacterLevelSheet.csv index b97d381d5..199e46a69 100644 --- a/Lib9c/TableCSV/Character/CharacterLevelSheet.csv +++ b/Lib9c/TableCSV/Character/CharacterLevelSheet.csv @@ -399,103 +399,103 @@ level,exp,exp_need 398,108300,600 399,108900,600 400,109500,600 -401,110500,1000 -402,111500,1000 -403,112500,1000 -404,113500,1000 -405,114500,1000 -406,115500,1000 -407,116500,1000 -408,117500,1000 -409,118500,1000 -410,119500,1000 -411,120500,1000 -412,121500,1000 -413,122500,1000 -414,123500,1000 -415,124500,1000 -416,125500,1000 -417,126500,1000 -418,127500,1000 -419,128500,1000 -420,129500,1000 -421,130500,1000 -422,131500,1000 -423,132500,1000 -424,133500,1000 -425,134500,1000 -426,135500,1000 -427,136500,1000 -428,137500,1000 -429,138500,1000 -430,139500,1000 -431,140500,1000 -432,141500,1000 -433,142500,1000 -434,143500,1000 -435,144500,1000 -436,145500,1000 -437,146500,1000 -438,147500,1000 -439,148500,1000 -440,149500,1000 -441,150500,1000 -442,151500,1000 -443,152500,1000 -444,153500,1000 -445,154500,1000 -446,155500,1000 -447,156500,1000 -448,157500,1000 -449,158500,1000 -450,159500,1000 -451,160500,1000 -452,161500,1000 -453,162500,1000 -454,163500,1000 -455,164500,1000 -456,165500,1000 -457,166500,1000 -458,167500,1000 -459,168500,1000 -460,169500,1000 -461,170500,1000 -462,171500,1000 -463,172500,1000 -464,173500,1000 -465,174500,1000 -466,175500,1000 -467,176500,1000 -468,177500,1000 -469,178500,1000 -470,179500,1000 -471,180500,1000 -472,181500,1000 -473,182500,1000 -474,183500,1000 -475,184500,1000 -476,185500,1000 -477,186500,1000 -478,187500,1000 -479,188500,1000 -480,189500,1000 -481,190500,1000 -482,191500,1000 -483,192500,1000 -484,193500,1000 -485,194500,1000 -486,195500,1000 -487,196500,1000 -488,197500,1000 -489,198500,1000 -490,199500,1000 -491,200500,1000 -492,201500,1000 -493,202500,1000 -494,203500,1000 -495,204500,1000 -496,205500,1000 -497,206500,1000 -498,207500,1000 -499,208500,1000 -500,209500,1000 \ No newline at end of file +401,110100,1000 +402,111100,1000 +403,112100,1000 +404,113100,1000 +405,114100,1000 +406,115100,1000 +407,116100,1000 +408,117100,1000 +409,118100,1000 +410,119100,1000 +411,120100,1000 +412,121100,1000 +413,122100,1000 +414,123100,1000 +415,124100,1000 +416,125100,1000 +417,126100,1000 +418,127100,1000 +419,128100,1000 +420,129100,1000 +421,130100,1000 +422,131100,1000 +423,132100,1000 +424,133100,1000 +425,134100,1000 +426,135100,1000 +427,136100,1000 +428,137100,1000 +429,138100,1000 +430,139100,1000 +431,140100,1000 +432,141100,1000 +433,142100,1000 +434,143100,1000 +435,144100,1000 +436,145100,1000 +437,146100,1000 +438,147100,1000 +439,148100,1000 +440,149100,1000 +441,150100,1000 +442,151100,1000 +443,152100,1000 +444,153100,1000 +445,154100,1000 +446,155100,1000 +447,156100,1000 +448,157100,1000 +449,158100,1000 +450,159100,1000 +451,160100,1000 +452,161100,1000 +453,162100,1000 +454,163100,1000 +455,164100,1000 +456,165100,1000 +457,166100,1000 +458,167100,1000 +459,168100,1000 +460,169100,1000 +461,170100,1000 +462,171100,1000 +463,172100,1000 +464,173100,1000 +465,174100,1000 +466,175100,1000 +467,176100,1000 +468,177100,1000 +469,178100,1000 +470,179100,1000 +471,180100,1000 +472,181100,1000 +473,182100,1000 +474,183100,1000 +475,184100,1000 +476,185100,1000 +477,186100,1000 +478,187100,1000 +479,188100,1000 +480,189100,1000 +481,190100,1000 +482,191100,1000 +483,192100,1000 +484,193100,1000 +485,194100,1000 +486,195100,1000 +487,196100,1000 +488,197100,1000 +489,198100,1000 +490,199100,1000 +491,200100,1000 +492,201100,1000 +493,202100,1000 +494,203100,1000 +495,204100,1000 +496,205100,1000 +497,206100,1000 +498,207100,1000 +499,208100,1000 +500,209100,1000 \ No newline at end of file diff --git a/Lib9c/TableCSV/CollectionSheet.csv b/Lib9c/TableCSV/CollectionSheet.csv index 6dc226f66..10244ae8f 100644 --- a/Lib9c/TableCSV/CollectionSheet.csv +++ b/Lib9c/TableCSV/CollectionSheet.csv @@ -468,6 +468,9 @@ id,item_id1,count1,level1,skill1,item_id2,count2,level2,skill2,item_id3,count3,l 100062,10610000,1,3,TRUE,,,,,,,,,,,,,,,,,,,,,HIT,Add,190,SPD,Add,139,,, 100063,10620000,1,3,TRUE,,,,,,,,,,,,,,,,,,,,,HIT,Add,391,SPD,Add,274,,, 100064,10630000,1,3,TRUE,,,,,,,,,,,,,,,,,,,,,HIT,Add,812,SPD,Add,580,,, +100065,10640004,1,0,TRUE,,,,,,,,,,,,,,,,,,,,,DEF,Add,3153,HP,Add,18376,ATK,Add,2305 +100066,10650007,1,0,TRUE,,,,,,,,,,,,,,,,,,,,,DEF,Add,7883,HP,Add,43341,ATK,Add,4980 +100067,10660000,1,0,TRUE,,,,,,,,,,,,,,,,,,,,,DEF,Add,15767,HP,Add,65011,ATK,Add,7115 200011,40100015,1,,FALSE,,,,,,,,,,,,,,,,,,,,,SPD,Add,296,ATK,Add,129,,, 200012,40100021,1,,FALSE,,,,,,,,,,,,,,,,,,,,,DEF,Add,218,SPD,Add,298,,, 200013,40100025,1,,FALSE,,,,,,,,,,,,,,,,,,,,,HIT,Add,315,DEF,Add,106,,, @@ -486,6 +489,9 @@ id,item_id1,count1,level1,skill1,item_id2,count2,level2,skill2,item_id3,count3,l 300002,49900013,1,,FALSE,,,,,,,,,,,,,,,,,,,,,HP,Add,9933,,,,,, 300003,49900014,1,,FALSE,,,,,,,,,,,,,,,,,,,,,ATK,Add,900,,,,,, 300004,49900015,1,,FALSE,,,,,,,,,,,,,,,,,,,,,HP,Add,8443,ATK,Add,361,,, +300005,49900016,1,,FALSE,,,,,,,,,,,,,,,,,,,,,HP,Add,13968,,,,,, +300006,49900017,1,,FALSE,,,,,,,,,,,,,,,,,,,,,ATK,Add,404,DEF,Add,2086,,, +300007,49900018,1,,FALSE,,,,,,,,,,,,,,,,,,,,,HP,Add,13111,SPD,Add,5969,,, 1000101,500000,10,,FALSE,,,,,,,,,,,,,,,,,,,,,DEF,Add,309,,,,,, 1000102,500000,100,,FALSE,,,,,,,,,,,,,,,,,,,,,DEF,Add,588,,,,,, 1000103,500000,300,,FALSE,,,,,,,,,,,,,,,,,,,,,DEF,Add,1185,,,,,, @@ -554,4 +560,15 @@ id,item_id1,count1,level1,skill1,item_id2,count2,level2,skill2,item_id3,count3,l 1000166,600202,40,,FALSE,,,,,,,,,,,,,,,,,,,,,DEF,Add,3750,,,,,, 1000167,600202,40,,FALSE,,,,,,,,,,,,,,,,,,,,,SPD,Add,7000,,,,,, 1000168,600202,40,,FALSE,,,,,,,,,,,,,,,,,,,,,HIT,Add,14000,,,,,, -1000169,600202,40,,FALSE,,,,,,,,,,,,,,,,,,,,,CDMG,Percentage,20,,,,,, \ No newline at end of file +1000169,600202,40,,FALSE,,,,,,,,,,,,,,,,,,,,,CDMG,Percentage,20,,,,,, +1000170,600203,20,,FALSE,,,,,,,,,,,,,,,,,,,,,ATK,Add,5000,,,,,, +1000171,600203,20,,FALSE,,,,,,,,,,,,,,,,,,,,,HP,Add,28000,,,,,, +1000172,600203,20,,FALSE,,,,,,,,,,,,,,,,,,,,,SPD,Add,10000,,,,,, +1000173,600203,20,,FALSE,,,,,,,,,,,,,,,,,,,,,DEF,Add,5000,,,,,, +1000174,600203,20,,FALSE,,,,,,,,,,,,,,,,,,,,,HIT,Add,20000,,,,,, +1000175,600203,20,,FALSE,,,,,,,,,,,,,,,,,,,,,ATK,Percentage,4,,,,,, +1000176,600203,20,,FALSE,,,,,,,,,,,,,,,,,,,,,HP,Percentage,4,,,,,, +1000177,600203,20,,FALSE,,,,,,,,,,,,,,,,,,,,,SPD,Percentage,4,,,,,, +1000178,600203,20,,FALSE,,,,,,,,,,,,,,,,,,,,,DEF,Percentage,4,,,,,, +1000179,600203,20,,FALSE,,,,,,,,,,,,,,,,,,,,,HIT,Percentage,4,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,CDMG,Percentage,10,,,,,, \ No newline at end of file diff --git a/Lib9c/TableCSV/Cost/EnhancementCostSheetV3.csv b/Lib9c/TableCSV/Cost/EnhancementCostSheetV3.csv index ca9e487ef..13fc76f5a 100644 --- a/Lib9c/TableCSV/Cost/EnhancementCostSheetV3.csv +++ b/Lib9c/TableCSV/Cost/EnhancementCostSheetV3.csv @@ -2,87 +2,87 @@ id,item_sub_type,grade,level,cost,exp,required_block,base_stat_growth_min,base_s 1,Weapon,1,1,0,10,20,800,1200,0,0,0,0,0,0 2,Weapon,1,2,0,30,40,800,1200,0,0,0,0,0,0 3,Weapon,1,3,0,70,60,800,1200,0,0,0,0,0,0 -4,Weapon,1,4,20,150,80,800,1200,2500,3500,2500,3500,1200,1800 -5,Weapon,1,5,40,310,280,800,1200,0,0,0,0,0,0 -6,Weapon,1,6,80,630,480,800,1200,0,0,0,0,0,0 -7,Weapon,1,7,160,1270,680,800,1200,2500,3500,2500,3500,1200,1800 -8,Weapon,1,8,320,2550,880,800,1200,600,1000,600,1000,400,600 -9,Weapon,1,9,640,5110,2880,800,1200,600,1000,600,1000,400,600 -10,Weapon,1,10,1280,10230,4880,800,1200,1100,1700,1100,1700,700,1100 -11,Weapon,1,11,2560,15350,6880,800,1200,600,1000,600,1000,400,600 -12,Weapon,1,12,5120,20470,8880,800,1200,600,1000,600,1000,400,600 -13,Weapon,1,13,10240,25590,10880,800,1200,1100,1700,1100,1700,700,1100 -14,Weapon,1,14,20480,30710,12880,800,1200,600,1000,600,1000,400,600 -15,Weapon,1,15,40960,35830,14880,800,1200,600,1000,600,1000,400,600 -16,Weapon,1,16,81920,40950,16880,800,1200,1100,1700,1100,1700,700,1100 -17,Weapon,1,17,163840,46070,18880,800,1200,600,1000,600,1000,400,600 -18,Weapon,1,18,327680,51190,20880,800,1200,600,1000,600,1000,400,600 -19,Weapon,1,19,655360,56310,22880,800,1200,1100,1700,1100,1700,700,1100 -20,Weapon,1,20,1310720,61430,24880,800,1200,800,1200,800,1200,400,600 -21,Weapon,1,21,2621440,66550,26880,800,1200,800,1200,800,1200,400,600 +4,Weapon,1,4,10,150,80,800,1200,2500,3500,2500,3500,1200,1800 +5,Weapon,1,5,20,310,280,800,1200,0,0,0,0,0,0 +6,Weapon,1,6,40,630,480,800,1200,0,0,0,0,0,0 +7,Weapon,1,7,80,1270,680,800,1200,2500,3500,2500,3500,1200,1800 +8,Weapon,1,8,160,2550,880,800,1200,600,1000,600,1000,400,600 +9,Weapon,1,9,320,5110,2880,800,1200,600,1000,600,1000,400,600 +10,Weapon,1,10,640,10230,4880,800,1200,1100,1700,1100,1700,700,1100 +11,Weapon,1,11,1280,15350,6880,800,1200,600,1000,600,1000,400,600 +12,Weapon,1,12,2560,20470,8880,800,1200,600,1000,600,1000,400,600 +13,Weapon,1,13,5120,25590,10880,800,1200,1100,1700,1100,1700,700,1100 +14,Weapon,1,14,10240,30710,12880,800,1200,600,1000,600,1000,400,600 +15,Weapon,1,15,20480,35830,14880,800,1200,600,1000,600,1000,400,600 +16,Weapon,1,16,40960,40950,16880,800,1200,1100,1700,1100,1700,700,1100 +17,Weapon,1,17,81920,46070,18880,800,1200,600,1000,600,1000,400,600 +18,Weapon,1,18,163840,51190,20880,800,1200,600,1000,600,1000,400,600 +19,Weapon,1,19,327680,56310,22880,800,1200,1100,1700,1100,1700,700,1100 +20,Weapon,1,20,655360,61430,24880,800,1200,800,1200,800,1200,400,600 +21,Weapon,1,21,1310720,66550,26880,800,1200,800,1200,800,1200,400,600 22,Weapon,2,1,0,200,30,800,1200,0,0,0,0,0,0 23,Weapon,2,2,0,600,150,800,1200,0,0,0,0,0,0 24,Weapon,2,3,0,1400,450,800,1200,0,0,0,0,0,0 -25,Weapon,2,4,20,3000,1650,800,1200,2500,3500,2500,3500,1200,1800 -26,Weapon,2,5,40,6200,2850,800,1200,0,0,0,0,0,0 -27,Weapon,2,6,80,12600,5250,800,1200,0,0,0,0,0,0 -28,Weapon,2,7,160,25400,7650,800,1200,2500,3500,2500,3500,1200,1800 -29,Weapon,2,8,320,51000,12650,800,1200,600,1000,600,1000,400,600 -30,Weapon,2,9,640,102200,17650,800,1200,600,1000,600,1000,400,600 -31,Weapon,2,10,1280,204600,22650,800,1200,1100,1700,1100,1700,700,1100 -32,Weapon,2,11,2560,307000,27650,800,1200,600,1000,600,1000,400,600 -33,Weapon,2,12,5120,409400,32650,800,1200,600,1000,600,1000,400,600 -34,Weapon,2,13,10240,511800,37650,800,1200,1100,1700,1100,1700,700,1100 -35,Weapon,2,14,20480,614200,42650,800,1200,600,1000,600,1000,400,600 -36,Weapon,2,15,40960,716600,47650,800,1200,600,1000,600,1000,400,600 -37,Weapon,2,16,81920,819000,52650,800,1200,1100,1700,1100,1700,700,1100 -38,Weapon,2,17,163840,921400,57650,800,1200,600,1000,600,1000,400,600 -39,Weapon,2,18,327680,1023800,62650,800,1200,600,1000,600,1000,400,600 -40,Weapon,2,19,655360,1126200,67650,800,1200,1100,1700,1100,1700,700,1100 -41,Weapon,2,20,1310720,1228600,72650,800,1200,800,1200,800,1200,400,600 -42,Weapon,2,21,2621440,1331000,77650,800,1200,800,1200,800,1200,400,600 +25,Weapon,2,4,10,3000,1650,800,1200,2500,3500,2500,3500,1200,1800 +26,Weapon,2,5,20,6200,2850,800,1200,0,0,0,0,0,0 +27,Weapon,2,6,40,12600,5250,800,1200,0,0,0,0,0,0 +28,Weapon,2,7,80,25400,7650,800,1200,2500,3500,2500,3500,1200,1800 +29,Weapon,2,8,160,51000,12650,800,1200,600,1000,600,1000,400,600 +30,Weapon,2,9,320,102200,17650,800,1200,600,1000,600,1000,400,600 +31,Weapon,2,10,640,204600,22650,800,1200,1100,1700,1100,1700,700,1100 +32,Weapon,2,11,1280,307000,27650,800,1200,600,1000,600,1000,400,600 +33,Weapon,2,12,2560,409400,32650,800,1200,600,1000,600,1000,400,600 +34,Weapon,2,13,5120,511800,37650,800,1200,1100,1700,1100,1700,700,1100 +35,Weapon,2,14,10240,614200,42650,800,1200,600,1000,600,1000,400,600 +36,Weapon,2,15,20480,716600,47650,800,1200,600,1000,600,1000,400,600 +37,Weapon,2,16,40960,819000,52650,800,1200,1100,1700,1100,1700,700,1100 +38,Weapon,2,17,81920,921400,57650,800,1200,600,1000,600,1000,400,600 +39,Weapon,2,18,163840,1023800,62650,800,1200,600,1000,600,1000,400,600 +40,Weapon,2,19,327680,1126200,67650,800,1200,1100,1700,1100,1700,700,1100 +41,Weapon,2,20,655360,1228600,72650,800,1200,800,1200,800,1200,400,600 +42,Weapon,2,21,1310720,1331000,77650,800,1200,800,1200,800,1200,400,600 43,Weapon,3,1,0,4000,50,800,1200,0,0,0,0,0,0 44,Weapon,3,2,0,12000,150,800,1200,0,0,0,0,0,0 45,Weapon,3,3,0,28000,350,800,1200,0,0,0,0,0,0 -46,Weapon,3,4,20,60000,750,800,1200,2500,3500,2500,3500,1200,1800 -47,Weapon,3,5,40,124000,1550,800,1200,0,0,0,0,0,0 -48,Weapon,3,6,80,252000,3150,800,1200,0,0,0,0,0,0 -49,Weapon,3,7,160,508000,6350,800,1200,2500,3500,2500,3500,1200,1800 -50,Weapon,3,8,320,1020000,12750,800,1200,600,1000,600,1000,400,600 -51,Weapon,3,9,640,2044000,25550,800,1200,600,1000,600,1000,400,600 -52,Weapon,3,10,1280,4092000,38350,800,1200,1100,1700,1100,1700,700,1100 -53,Weapon,3,11,2560,6140000,51150,800,1200,600,1000,600,1000,400,600 -54,Weapon,3,12,5120,8188000,63950,800,1200,600,1000,600,1000,400,600 -55,Weapon,3,13,10240,10236000,76750,800,1200,1100,1700,1100,1700,700,1100 -56,Weapon,3,14,20480,12284000,89550,800,1200,600,1000,600,1000,400,600 -57,Weapon,3,15,40960,14332000,102350,800,1200,600,1000,600,1000,400,600 -58,Weapon,3,16,81920,16380000,115150,800,1200,1100,1700,1100,1700,700,1100 -59,Weapon,3,17,163840,18428000,127950,800,1200,600,1000,600,1000,400,600 -60,Weapon,3,18,327680,20476000,140750,800,1200,600,1000,600,1000,400,600 -61,Weapon,3,19,655360,22524000,153550,800,1200,1100,1700,1100,1700,700,1100 -62,Weapon,3,20,1310720,24572000,166350,800,1200,800,1200,800,1200,400,600 -63,Weapon,3,21,2621440,26620000,179150,800,1200,800,1200,800,1200,400,600 +46,Weapon,3,4,10,60000,750,800,1200,2500,3500,2500,3500,1200,1800 +47,Weapon,3,5,20,124000,1550,800,1200,0,0,0,0,0,0 +48,Weapon,3,6,40,252000,3150,800,1200,0,0,0,0,0,0 +49,Weapon,3,7,80,508000,6350,800,1200,2500,3500,2500,3500,1200,1800 +50,Weapon,3,8,160,1020000,12750,800,1200,600,1000,600,1000,400,600 +51,Weapon,3,9,320,2044000,25550,800,1200,600,1000,600,1000,400,600 +52,Weapon,3,10,640,4092000,38350,800,1200,1100,1700,1100,1700,700,1100 +53,Weapon,3,11,1280,6140000,51150,800,1200,600,1000,600,1000,400,600 +54,Weapon,3,12,2560,8188000,63950,800,1200,600,1000,600,1000,400,600 +55,Weapon,3,13,5120,10236000,76750,800,1200,1100,1700,1100,1700,700,1100 +56,Weapon,3,14,10240,12284000,89550,800,1200,600,1000,600,1000,400,600 +57,Weapon,3,15,20480,14332000,102350,800,1200,600,1000,600,1000,400,600 +58,Weapon,3,16,40960,16380000,115150,800,1200,1100,1700,1100,1700,700,1100 +59,Weapon,3,17,81920,18428000,127950,800,1200,600,1000,600,1000,400,600 +60,Weapon,3,18,163840,20476000,140750,800,1200,600,1000,600,1000,400,600 +61,Weapon,3,19,327680,22524000,153550,800,1200,1100,1700,1100,1700,700,1100 +62,Weapon,3,20,655360,24572000,166350,800,1200,800,1200,800,1200,400,600 +63,Weapon,3,21,1310720,26620000,179150,800,1200,800,1200,800,1200,400,600 64,Weapon,4,1,0,150000,1000,800,1200,0,0,0,0,0,0 65,Weapon,4,2,0,300000,3000,800,1200,0,0,0,0,0,0 66,Weapon,4,3,0,600000,5000,800,1200,0,0,0,0,0,0 -67,Weapon,4,4,20,1200000,9000,800,1200,2500,3500,2500,3500,1200,1800 -68,Weapon,4,5,40,2400000,17000,800,1200,0,0,0,0,0,0 -69,Weapon,4,6,80,4800000,25000,800,1200,0,0,0,0,0,0 -70,Weapon,4,7,160,9600000,33000,800,1200,2500,3500,2500,3500,1200,1800 -71,Weapon,4,8,320,19200000,41000,800,1200,600,1000,600,1000,400,600 -72,Weapon,4,9,640,38400000,51000,800,1200,600,1000,600,1000,400,600 -73,Weapon,4,10,1280,76800000,61000,800,1200,1100,1700,1100,1700,700,1100 -74,Weapon,4,11,2560,115200000,71000,800,1200,600,1000,600,1000,400,600 -75,Weapon,4,12,5120,153600000,81000,800,1200,600,1000,600,1000,400,600 -76,Weapon,4,13,10240,192000000,91000,800,1200,1100,1700,1100,1700,700,1100 -77,Weapon,4,14,20480,230400000,101000,800,1200,600,1000,600,1000,400,600 -78,Weapon,4,15,40960,268800000,111000,800,1200,600,1000,600,1000,400,600 -79,Weapon,4,16,81920,307200000,121000,800,1200,1100,1700,1100,1700,700,1100 -80,Weapon,4,17,163840,345600000,131000,800,1200,600,1000,600,1000,400,600 -81,Weapon,4,18,327680,384000000,141000,800,1200,600,1000,600,1000,400,600 -82,Weapon,4,19,655360,422400000,151000,800,1200,1100,1700,1100,1700,700,1100 -83,Weapon,4,20,1310720,460800000,161000,800,1200,800,1200,800,1200,400,600 -84,Weapon,4,21,2621440,499200000,171000,800,1200,800,1200,800,1200,400,600 +67,Weapon,4,4,10,1200000,9000,800,1200,2500,3500,2500,3500,1200,1800 +68,Weapon,4,5,20,2400000,17000,800,1200,0,0,0,0,0,0 +69,Weapon,4,6,40,4800000,25000,800,1200,0,0,0,0,0,0 +70,Weapon,4,7,80,9600000,33000,800,1200,2500,3500,2500,3500,1200,1800 +71,Weapon,4,8,160,19200000,41000,800,1200,600,1000,600,1000,400,600 +72,Weapon,4,9,320,38400000,51000,800,1200,600,1000,600,1000,400,600 +73,Weapon,4,10,640,76800000,61000,800,1200,1100,1700,1100,1700,700,1100 +74,Weapon,4,11,1280,115200000,71000,800,1200,600,1000,600,1000,400,600 +75,Weapon,4,12,2560,153600000,81000,800,1200,600,1000,600,1000,400,600 +76,Weapon,4,13,5120,192000000,91000,800,1200,1100,1700,1100,1700,700,1100 +77,Weapon,4,14,10240,230400000,101000,800,1200,600,1000,600,1000,400,600 +78,Weapon,4,15,20480,268800000,111000,800,1200,600,1000,600,1000,400,600 +79,Weapon,4,16,40960,307200000,121000,800,1200,1100,1700,1100,1700,700,1100 +80,Weapon,4,17,81920,345600000,131000,800,1200,600,1000,600,1000,400,600 +81,Weapon,4,18,163840,384000000,141000,800,1200,600,1000,600,1000,400,600 +82,Weapon,4,19,327680,422400000,151000,800,1200,1100,1700,1100,1700,700,1100 +83,Weapon,4,20,655360,460800000,161000,800,1200,800,1200,800,1200,400,600 +84,Weapon,4,21,1310720,499200000,171000,800,1200,800,1200,800,1200,400,600 85,Weapon,5,1,0,4000000,4000,1300,1400,1200,1300,0,0,0,0 86,Weapon,5,2,0,8000000,8000,1300,1400,1200,1300,0,0,0,0 87,Weapon,5,3,0,16000000,12000,1300,1400,1200,1300,0,0,0,0 @@ -107,87 +107,87 @@ id,item_sub_type,grade,level,cost,exp,required_block,base_stat_growth_min,base_s 106,Armor,1,1,0,10,20,800,1200,0,0,0,0,0,0 107,Armor,1,2,0,30,40,800,1200,0,0,0,0,0,0 108,Armor,1,3,0,70,60,800,1200,0,0,0,0,0,0 -109,Armor,1,4,20,150,80,800,1200,2500,3500,2500,3500,1200,1800 -110,Armor,1,5,40,310,280,800,1200,0,0,0,0,0,0 -111,Armor,1,6,80,630,480,800,1200,0,0,0,0,0,0 -112,Armor,1,7,160,1270,680,800,1200,2500,3500,2500,3500,1200,1800 -113,Armor,1,8,320,2550,880,800,1200,600,1000,600,1000,400,600 -114,Armor,1,9,640,5110,2880,800,1200,600,1000,600,1000,400,600 -115,Armor,1,10,1280,10230,4880,800,1200,1100,1700,1100,1700,700,1100 -116,Armor,1,11,2560,15350,6880,800,1200,600,1000,600,1000,400,600 -117,Armor,1,12,5120,20470,8880,800,1200,600,1000,600,1000,400,600 -118,Armor,1,13,10240,25590,10880,800,1200,1100,1700,1100,1700,700,1100 -119,Armor,1,14,20480,30710,12880,800,1200,600,1000,600,1000,400,600 -120,Armor,1,15,40960,35830,14880,800,1200,600,1000,600,1000,400,600 -121,Armor,1,16,81920,40950,16880,800,1200,1100,1700,1100,1700,700,1100 -122,Armor,1,17,163840,46070,18880,800,1200,600,1000,600,1000,400,600 -123,Armor,1,18,327680,51190,20880,800,1200,600,1000,600,1000,400,600 -124,Armor,1,19,655360,56310,22880,800,1200,1100,1700,1100,1700,700,1100 -125,Armor,1,20,1310720,61430,24880,800,1200,800,1200,800,1200,400,600 -126,Armor,1,21,2621440,66550,26880,800,1200,800,1200,800,1200,400,600 +109,Armor,1,4,10,150,80,800,1200,2500,3500,2500,3500,1200,1800 +110,Armor,1,5,20,310,280,800,1200,0,0,0,0,0,0 +111,Armor,1,6,40,630,480,800,1200,0,0,0,0,0,0 +112,Armor,1,7,80,1270,680,800,1200,2500,3500,2500,3500,1200,1800 +113,Armor,1,8,160,2550,880,800,1200,600,1000,600,1000,400,600 +114,Armor,1,9,320,5110,2880,800,1200,600,1000,600,1000,400,600 +115,Armor,1,10,640,10230,4880,800,1200,1100,1700,1100,1700,700,1100 +116,Armor,1,11,1280,15350,6880,800,1200,600,1000,600,1000,400,600 +117,Armor,1,12,2560,20470,8880,800,1200,600,1000,600,1000,400,600 +118,Armor,1,13,5120,25590,10880,800,1200,1100,1700,1100,1700,700,1100 +119,Armor,1,14,10240,30710,12880,800,1200,600,1000,600,1000,400,600 +120,Armor,1,15,20480,35830,14880,800,1200,600,1000,600,1000,400,600 +121,Armor,1,16,40960,40950,16880,800,1200,1100,1700,1100,1700,700,1100 +122,Armor,1,17,81920,46070,18880,800,1200,600,1000,600,1000,400,600 +123,Armor,1,18,163840,51190,20880,800,1200,600,1000,600,1000,400,600 +124,Armor,1,19,327680,56310,22880,800,1200,1100,1700,1100,1700,700,1100 +125,Armor,1,20,655360,61430,24880,800,1200,800,1200,800,1200,400,600 +126,Armor,1,21,1310720,66550,26880,800,1200,800,1200,800,1200,400,600 127,Armor,2,1,0,200,30,800,1200,0,0,0,0,0,0 128,Armor,2,2,0,600,150,800,1200,0,0,0,0,0,0 129,Armor,2,3,0,1400,450,800,1200,0,0,0,0,0,0 -130,Armor,2,4,20,3000,1650,800,1200,2500,3500,2500,3500,1200,1800 -131,Armor,2,5,40,6200,2850,800,1200,0,0,0,0,0,0 -132,Armor,2,6,80,12600,5250,800,1200,0,0,0,0,0,0 -133,Armor,2,7,160,25400,7650,800,1200,2500,3500,2500,3500,1200,1800 -134,Armor,2,8,320,51000,12650,800,1200,600,1000,600,1000,400,600 -135,Armor,2,9,640,102200,17650,800,1200,600,1000,600,1000,400,600 -136,Armor,2,10,1280,204600,22650,800,1200,1100,1700,1100,1700,700,1100 -137,Armor,2,11,2560,307000,27650,800,1200,600,1000,600,1000,400,600 -138,Armor,2,12,5120,409400,32650,800,1200,600,1000,600,1000,400,600 -139,Armor,2,13,10240,511800,37650,800,1200,1100,1700,1100,1700,700,1100 -140,Armor,2,14,20480,614200,42650,800,1200,600,1000,600,1000,400,600 -141,Armor,2,15,40960,716600,47650,800,1200,600,1000,600,1000,400,600 -142,Armor,2,16,81920,819000,52650,800,1200,1100,1700,1100,1700,700,1100 -143,Armor,2,17,163840,921400,57650,800,1200,600,1000,600,1000,400,600 -144,Armor,2,18,327680,1023800,62650,800,1200,600,1000,600,1000,400,600 -145,Armor,2,19,655360,1126200,67650,800,1200,1100,1700,1100,1700,700,1100 -146,Armor,2,20,1310720,1228600,72650,800,1200,800,1200,800,1200,400,600 -147,Armor,2,21,2621440,1331000,77650,800,1200,800,1200,800,1200,400,600 +130,Armor,2,4,10,3000,1650,800,1200,2500,3500,2500,3500,1200,1800 +131,Armor,2,5,20,6200,2850,800,1200,0,0,0,0,0,0 +132,Armor,2,6,40,12600,5250,800,1200,0,0,0,0,0,0 +133,Armor,2,7,80,25400,7650,800,1200,2500,3500,2500,3500,1200,1800 +134,Armor,2,8,160,51000,12650,800,1200,600,1000,600,1000,400,600 +135,Armor,2,9,320,102200,17650,800,1200,600,1000,600,1000,400,600 +136,Armor,2,10,640,204600,22650,800,1200,1100,1700,1100,1700,700,1100 +137,Armor,2,11,1280,307000,27650,800,1200,600,1000,600,1000,400,600 +138,Armor,2,12,2560,409400,32650,800,1200,600,1000,600,1000,400,600 +139,Armor,2,13,5120,511800,37650,800,1200,1100,1700,1100,1700,700,1100 +140,Armor,2,14,10240,614200,42650,800,1200,600,1000,600,1000,400,600 +141,Armor,2,15,20480,716600,47650,800,1200,600,1000,600,1000,400,600 +142,Armor,2,16,40960,819000,52650,800,1200,1100,1700,1100,1700,700,1100 +143,Armor,2,17,81920,921400,57650,800,1200,600,1000,600,1000,400,600 +144,Armor,2,18,163840,1023800,62650,800,1200,600,1000,600,1000,400,600 +145,Armor,2,19,327680,1126200,67650,800,1200,1100,1700,1100,1700,700,1100 +146,Armor,2,20,655360,1228600,72650,800,1200,800,1200,800,1200,400,600 +147,Armor,2,21,1310720,1331000,77650,800,1200,800,1200,800,1200,400,600 148,Armor,3,1,0,4000,50,800,1200,0,0,0,0,0,0 149,Armor,3,2,0,12000,150,800,1200,0,0,0,0,0,0 150,Armor,3,3,0,28000,350,800,1200,0,0,0,0,0,0 -151,Armor,3,4,20,60000,750,800,1200,2500,3500,2500,3500,1200,1800 -152,Armor,3,5,40,124000,1550,800,1200,0,0,0,0,0,0 -153,Armor,3,6,80,252000,3150,800,1200,0,0,0,0,0,0 -154,Armor,3,7,160,508000,6350,800,1200,2500,3500,2500,3500,1200,1800 -155,Armor,3,8,320,1020000,12750,800,1200,600,1000,600,1000,400,600 -156,Armor,3,9,640,2044000,25550,800,1200,600,1000,600,1000,400,600 -157,Armor,3,10,1280,4092000,38350,800,1200,1100,1700,1100,1700,700,1100 -158,Armor,3,11,2560,6140000,51150,800,1200,600,1000,600,1000,400,600 -159,Armor,3,12,5120,8188000,63950,800,1200,600,1000,600,1000,400,600 -160,Armor,3,13,10240,10236000,76750,800,1200,1100,1700,1100,1700,700,1100 -161,Armor,3,14,20480,12284000,89550,800,1200,600,1000,600,1000,400,600 -162,Armor,3,15,40960,14332000,102350,800,1200,600,1000,600,1000,400,600 -163,Armor,3,16,81920,16380000,115150,800,1200,1100,1700,1100,1700,700,1100 -164,Armor,3,17,163840,18428000,127950,800,1200,600,1000,600,1000,400,600 -165,Armor,3,18,327680,20476000,140750,800,1200,600,1000,600,1000,400,600 -166,Armor,3,19,655360,22524000,153550,800,1200,1100,1700,1100,1700,700,1100 -167,Armor,3,20,1310720,24572000,166350,800,1200,800,1200,800,1200,400,600 -168,Armor,3,21,2621440,26620000,179150,800,1200,800,1200,800,1200,400,600 +151,Armor,3,4,10,60000,750,800,1200,2500,3500,2500,3500,1200,1800 +152,Armor,3,5,20,124000,1550,800,1200,0,0,0,0,0,0 +153,Armor,3,6,40,252000,3150,800,1200,0,0,0,0,0,0 +154,Armor,3,7,80,508000,6350,800,1200,2500,3500,2500,3500,1200,1800 +155,Armor,3,8,160,1020000,12750,800,1200,600,1000,600,1000,400,600 +156,Armor,3,9,320,2044000,25550,800,1200,600,1000,600,1000,400,600 +157,Armor,3,10,640,4092000,38350,800,1200,1100,1700,1100,1700,700,1100 +158,Armor,3,11,1280,6140000,51150,800,1200,600,1000,600,1000,400,600 +159,Armor,3,12,2560,8188000,63950,800,1200,600,1000,600,1000,400,600 +160,Armor,3,13,5120,10236000,76750,800,1200,1100,1700,1100,1700,700,1100 +161,Armor,3,14,10240,12284000,89550,800,1200,600,1000,600,1000,400,600 +162,Armor,3,15,20480,14332000,102350,800,1200,600,1000,600,1000,400,600 +163,Armor,3,16,40960,16380000,115150,800,1200,1100,1700,1100,1700,700,1100 +164,Armor,3,17,81920,18428000,127950,800,1200,600,1000,600,1000,400,600 +165,Armor,3,18,163840,20476000,140750,800,1200,600,1000,600,1000,400,600 +166,Armor,3,19,327680,22524000,153550,800,1200,1100,1700,1100,1700,700,1100 +167,Armor,3,20,655360,24572000,166350,800,1200,800,1200,800,1200,400,600 +168,Armor,3,21,1310720,26620000,179150,800,1200,800,1200,800,1200,400,600 169,Armor,4,1,0,150000,1000,800,1200,0,0,0,0,0,0 170,Armor,4,2,0,300000,3000,800,1200,0,0,0,0,0,0 171,Armor,4,3,0,600000,5000,800,1200,0,0,0,0,0,0 -172,Armor,4,4,20,1200000,9000,800,1200,2500,3500,2500,3500,1200,1800 -173,Armor,4,5,40,2400000,17000,800,1200,0,0,0,0,0,0 -174,Armor,4,6,80,4800000,25000,800,1200,0,0,0,0,0,0 -175,Armor,4,7,160,9600000,33000,800,1200,2500,3500,2500,3500,1200,1800 -176,Armor,4,8,320,19200000,41000,800,1200,600,1000,600,1000,400,600 -177,Armor,4,9,640,38400000,51000,800,1200,600,1000,600,1000,400,600 -178,Armor,4,10,1280,76800000,61000,800,1200,1100,1700,1100,1700,700,1100 -179,Armor,4,11,2560,115200000,71000,800,1200,600,1000,600,1000,400,600 -180,Armor,4,12,5120,153600000,81000,800,1200,600,1000,600,1000,400,600 -181,Armor,4,13,10240,192000000,91000,800,1200,1100,1700,1100,1700,700,1100 -182,Armor,4,14,20480,230400000,101000,800,1200,600,1000,600,1000,400,600 -183,Armor,4,15,40960,268800000,111000,800,1200,600,1000,600,1000,400,600 -184,Armor,4,16,81920,307200000,121000,800,1200,1100,1700,1100,1700,700,1100 -185,Armor,4,17,163840,345600000,131000,800,1200,600,1000,600,1000,400,600 -186,Armor,4,18,327680,384000000,141000,800,1200,600,1000,600,1000,400,600 -187,Armor,4,19,655360,422400000,151000,800,1200,1100,1700,1100,1700,700,1100 -188,Armor,4,20,1310720,460800000,161000,800,1200,800,1200,800,1200,400,600 -189,Armor,4,21,2621440,499200000,171000,800,1200,800,1200,800,1200,400,600 +172,Armor,4,4,10,1200000,9000,800,1200,2500,3500,2500,3500,1200,1800 +173,Armor,4,5,20,2400000,17000,800,1200,0,0,0,0,0,0 +174,Armor,4,6,40,4800000,25000,800,1200,0,0,0,0,0,0 +175,Armor,4,7,80,9600000,33000,800,1200,2500,3500,2500,3500,1200,1800 +176,Armor,4,8,160,19200000,41000,800,1200,600,1000,600,1000,400,600 +177,Armor,4,9,320,38400000,51000,800,1200,600,1000,600,1000,400,600 +178,Armor,4,10,640,76800000,61000,800,1200,1100,1700,1100,1700,700,1100 +179,Armor,4,11,1280,115200000,71000,800,1200,600,1000,600,1000,400,600 +180,Armor,4,12,2560,153600000,81000,800,1200,600,1000,600,1000,400,600 +181,Armor,4,13,5120,192000000,91000,800,1200,1100,1700,1100,1700,700,1100 +182,Armor,4,14,10240,230400000,101000,800,1200,600,1000,600,1000,400,600 +183,Armor,4,15,20480,268800000,111000,800,1200,600,1000,600,1000,400,600 +184,Armor,4,16,40960,307200000,121000,800,1200,1100,1700,1100,1700,700,1100 +185,Armor,4,17,81920,345600000,131000,800,1200,600,1000,600,1000,400,600 +186,Armor,4,18,163840,384000000,141000,800,1200,600,1000,600,1000,400,600 +187,Armor,4,19,327680,422400000,151000,800,1200,1100,1700,1100,1700,700,1100 +188,Armor,4,20,655360,460800000,161000,800,1200,800,1200,800,1200,400,600 +189,Armor,4,21,1310720,499200000,171000,800,1200,800,1200,800,1200,400,600 190,Armor,5,1,0,4000000,4000,1300,1400,1200,1300,0,0,0,0 191,Armor,5,2,0,8000000,8000,1300,1400,1200,1300,0,0,0,0 192,Armor,5,3,0,16000000,12000,1300,1400,1200,1300,0,0,0,0 @@ -212,87 +212,87 @@ id,item_sub_type,grade,level,cost,exp,required_block,base_stat_growth_min,base_s 211,Belt,1,1,0,10,20,800,1200,0,0,0,0,0,0 212,Belt,1,2,0,30,40,800,1200,0,0,0,0,0,0 213,Belt,1,3,0,70,60,800,1200,0,0,0,0,0,0 -214,Belt,1,4,20,150,80,800,1200,2500,3500,2500,3500,1200,1800 -215,Belt,1,5,40,310,280,800,1200,0,0,0,0,0,0 -216,Belt,1,6,80,630,480,800,1200,0,0,0,0,0,0 -217,Belt,1,7,160,1270,680,800,1200,2500,3500,2500,3500,1200,1800 -218,Belt,1,8,320,2550,880,800,1200,600,1000,600,1000,400,600 -219,Belt,1,9,640,5110,2880,800,1200,600,1000,600,1000,400,600 -220,Belt,1,10,1280,10230,4880,800,1200,1100,1700,1100,1700,700,1100 -221,Belt,1,11,2560,15350,6880,800,1200,600,1000,600,1000,400,600 -222,Belt,1,12,5120,20470,8880,800,1200,600,1000,600,1000,400,600 -223,Belt,1,13,10240,25590,10880,800,1200,1100,1700,1100,1700,700,1100 -224,Belt,1,14,20480,30710,12880,800,1200,600,1000,600,1000,400,600 -225,Belt,1,15,40960,35830,14880,800,1200,600,1000,600,1000,400,600 -226,Belt,1,16,81920,40950,16880,800,1200,1100,1700,1100,1700,700,1100 -227,Belt,1,17,163840,46070,18880,800,1200,600,1000,600,1000,400,600 -228,Belt,1,18,327680,51190,20880,800,1200,600,1000,600,1000,400,600 -229,Belt,1,19,655360,56310,22880,800,1200,1100,1700,1100,1700,700,1100 -230,Belt,1,20,1310720,61430,24880,800,1200,800,1200,800,1200,400,600 -231,Belt,1,21,2621440,66550,26880,800,1200,800,1200,800,1200,400,600 +214,Belt,1,4,10,150,80,800,1200,2500,3500,2500,3500,1200,1800 +215,Belt,1,5,20,310,280,800,1200,0,0,0,0,0,0 +216,Belt,1,6,40,630,480,800,1200,0,0,0,0,0,0 +217,Belt,1,7,80,1270,680,800,1200,2500,3500,2500,3500,1200,1800 +218,Belt,1,8,160,2550,880,800,1200,600,1000,600,1000,400,600 +219,Belt,1,9,320,5110,2880,800,1200,600,1000,600,1000,400,600 +220,Belt,1,10,640,10230,4880,800,1200,1100,1700,1100,1700,700,1100 +221,Belt,1,11,1280,15350,6880,800,1200,600,1000,600,1000,400,600 +222,Belt,1,12,2560,20470,8880,800,1200,600,1000,600,1000,400,600 +223,Belt,1,13,5120,25590,10880,800,1200,1100,1700,1100,1700,700,1100 +224,Belt,1,14,10240,30710,12880,800,1200,600,1000,600,1000,400,600 +225,Belt,1,15,20480,35830,14880,800,1200,600,1000,600,1000,400,600 +226,Belt,1,16,40960,40950,16880,800,1200,1100,1700,1100,1700,700,1100 +227,Belt,1,17,81920,46070,18880,800,1200,600,1000,600,1000,400,600 +228,Belt,1,18,163840,51190,20880,800,1200,600,1000,600,1000,400,600 +229,Belt,1,19,327680,56310,22880,800,1200,1100,1700,1100,1700,700,1100 +230,Belt,1,20,655360,61430,24880,800,1200,800,1200,800,1200,400,600 +231,Belt,1,21,1310720,66550,26880,800,1200,800,1200,800,1200,400,600 232,Belt,2,1,0,200,30,800,1200,0,0,0,0,0,0 233,Belt,2,2,0,600,150,800,1200,0,0,0,0,0,0 234,Belt,2,3,0,1400,450,800,1200,0,0,0,0,0,0 -235,Belt,2,4,20,3000,1650,800,1200,2500,3500,2500,3500,1200,1800 -236,Belt,2,5,40,6200,2850,800,1200,0,0,0,0,0,0 -237,Belt,2,6,80,12600,5250,800,1200,0,0,0,0,0,0 -238,Belt,2,7,160,25400,7650,800,1200,2500,3500,2500,3500,1200,1800 -239,Belt,2,8,320,51000,12650,800,1200,600,1000,600,1000,400,600 -240,Belt,2,9,640,102200,17650,800,1200,600,1000,600,1000,400,600 -241,Belt,2,10,1280,204600,22650,800,1200,1100,1700,1100,1700,700,1100 -242,Belt,2,11,2560,307000,27650,800,1200,600,1000,600,1000,400,600 -243,Belt,2,12,5120,409400,32650,800,1200,600,1000,600,1000,400,600 -244,Belt,2,13,10240,511800,37650,800,1200,1100,1700,1100,1700,700,1100 -245,Belt,2,14,20480,614200,42650,800,1200,600,1000,600,1000,400,600 -246,Belt,2,15,40960,716600,47650,800,1200,600,1000,600,1000,400,600 -247,Belt,2,16,81920,819000,52650,800,1200,1100,1700,1100,1700,700,1100 -248,Belt,2,17,163840,921400,57650,800,1200,600,1000,600,1000,400,600 -249,Belt,2,18,327680,1023800,62650,800,1200,600,1000,600,1000,400,600 -250,Belt,2,19,655360,1126200,67650,800,1200,1100,1700,1100,1700,700,1100 -251,Belt,2,20,1310720,1228600,72650,800,1200,800,1200,800,1200,400,600 -252,Belt,2,21,2621440,1331000,77650,800,1200,800,1200,800,1200,400,600 +235,Belt,2,4,10,3000,1650,800,1200,2500,3500,2500,3500,1200,1800 +236,Belt,2,5,20,6200,2850,800,1200,0,0,0,0,0,0 +237,Belt,2,6,40,12600,5250,800,1200,0,0,0,0,0,0 +238,Belt,2,7,80,25400,7650,800,1200,2500,3500,2500,3500,1200,1800 +239,Belt,2,8,160,51000,12650,800,1200,600,1000,600,1000,400,600 +240,Belt,2,9,320,102200,17650,800,1200,600,1000,600,1000,400,600 +241,Belt,2,10,640,204600,22650,800,1200,1100,1700,1100,1700,700,1100 +242,Belt,2,11,1280,307000,27650,800,1200,600,1000,600,1000,400,600 +243,Belt,2,12,2560,409400,32650,800,1200,600,1000,600,1000,400,600 +244,Belt,2,13,5120,511800,37650,800,1200,1100,1700,1100,1700,700,1100 +245,Belt,2,14,10240,614200,42650,800,1200,600,1000,600,1000,400,600 +246,Belt,2,15,20480,716600,47650,800,1200,600,1000,600,1000,400,600 +247,Belt,2,16,40960,819000,52650,800,1200,1100,1700,1100,1700,700,1100 +248,Belt,2,17,81920,921400,57650,800,1200,600,1000,600,1000,400,600 +249,Belt,2,18,163840,1023800,62650,800,1200,600,1000,600,1000,400,600 +250,Belt,2,19,327680,1126200,67650,800,1200,1100,1700,1100,1700,700,1100 +251,Belt,2,20,655360,1228600,72650,800,1200,800,1200,800,1200,400,600 +252,Belt,2,21,1310720,1331000,77650,800,1200,800,1200,800,1200,400,600 253,Belt,3,1,0,4000,50,800,1200,0,0,0,0,0,0 254,Belt,3,2,0,12000,150,800,1200,0,0,0,0,0,0 255,Belt,3,3,0,28000,350,800,1200,0,0,0,0,0,0 -256,Belt,3,4,20,60000,750,800,1200,2500,3500,2500,3500,1200,1800 -257,Belt,3,5,40,124000,1550,800,1200,0,0,0,0,0,0 -258,Belt,3,6,80,252000,3150,800,1200,0,0,0,0,0,0 -259,Belt,3,7,160,508000,6350,800,1200,2500,3500,2500,3500,1200,1800 -260,Belt,3,8,320,1020000,12750,800,1200,600,1000,600,1000,400,600 -261,Belt,3,9,640,2044000,25550,800,1200,600,1000,600,1000,400,600 -262,Belt,3,10,1280,4092000,38350,800,1200,1100,1700,1100,1700,700,1100 -263,Belt,3,11,2560,6140000,51150,800,1200,600,1000,600,1000,400,600 -264,Belt,3,12,5120,8188000,63950,800,1200,600,1000,600,1000,400,600 -265,Belt,3,13,10240,10236000,76750,800,1200,1100,1700,1100,1700,700,1100 -266,Belt,3,14,20480,12284000,89550,800,1200,600,1000,600,1000,400,600 -267,Belt,3,15,40960,14332000,102350,800,1200,600,1000,600,1000,400,600 -268,Belt,3,16,81920,16380000,115150,800,1200,1100,1700,1100,1700,700,1100 -269,Belt,3,17,163840,18428000,127950,800,1200,600,1000,600,1000,400,600 -270,Belt,3,18,327680,20476000,140750,800,1200,600,1000,600,1000,400,600 -271,Belt,3,19,655360,22524000,153550,800,1200,1100,1700,1100,1700,700,1100 -272,Belt,3,20,1310720,24572000,166350,800,1200,800,1200,800,1200,400,600 -273,Belt,3,21,2621440,26620000,179150,800,1200,800,1200,800,1200,400,600 +256,Belt,3,4,10,60000,750,800,1200,2500,3500,2500,3500,1200,1800 +257,Belt,3,5,20,124000,1550,800,1200,0,0,0,0,0,0 +258,Belt,3,6,40,252000,3150,800,1200,0,0,0,0,0,0 +259,Belt,3,7,80,508000,6350,800,1200,2500,3500,2500,3500,1200,1800 +260,Belt,3,8,160,1020000,12750,800,1200,600,1000,600,1000,400,600 +261,Belt,3,9,320,2044000,25550,800,1200,600,1000,600,1000,400,600 +262,Belt,3,10,640,4092000,38350,800,1200,1100,1700,1100,1700,700,1100 +263,Belt,3,11,1280,6140000,51150,800,1200,600,1000,600,1000,400,600 +264,Belt,3,12,2560,8188000,63950,800,1200,600,1000,600,1000,400,600 +265,Belt,3,13,5120,10236000,76750,800,1200,1100,1700,1100,1700,700,1100 +266,Belt,3,14,10240,12284000,89550,800,1200,600,1000,600,1000,400,600 +267,Belt,3,15,20480,14332000,102350,800,1200,600,1000,600,1000,400,600 +268,Belt,3,16,40960,16380000,115150,800,1200,1100,1700,1100,1700,700,1100 +269,Belt,3,17,81920,18428000,127950,800,1200,600,1000,600,1000,400,600 +270,Belt,3,18,163840,20476000,140750,800,1200,600,1000,600,1000,400,600 +271,Belt,3,19,327680,22524000,153550,800,1200,1100,1700,1100,1700,700,1100 +272,Belt,3,20,655360,24572000,166350,800,1200,800,1200,800,1200,400,600 +273,Belt,3,21,1310720,26620000,179150,800,1200,800,1200,800,1200,400,600 274,Belt,4,1,0,150000,1000,800,1200,0,0,0,0,0,0 275,Belt,4,2,0,300000,3000,800,1200,0,0,0,0,0,0 276,Belt,4,3,0,600000,5000,800,1200,0,0,0,0,0,0 -277,Belt,4,4,20,1200000,9000,800,1200,2500,3500,2500,3500,1200,1800 -278,Belt,4,5,40,2400000,17000,800,1200,0,0,0,0,0,0 -279,Belt,4,6,80,4800000,25000,800,1200,0,0,0,0,0,0 -280,Belt,4,7,160,9600000,33000,800,1200,2500,3500,2500,3500,1200,1800 -281,Belt,4,8,320,19200000,41000,800,1200,600,1000,600,1000,400,600 -282,Belt,4,9,640,38400000,51000,800,1200,600,1000,600,1000,400,600 -283,Belt,4,10,1280,76800000,61000,800,1200,1100,1700,1100,1700,700,1100 -284,Belt,4,11,2560,115200000,71000,800,1200,600,1000,600,1000,400,600 -285,Belt,4,12,5120,153600000,81000,800,1200,600,1000,600,1000,400,600 -286,Belt,4,13,10240,192000000,91000,800,1200,1100,1700,1100,1700,700,1100 -287,Belt,4,14,20480,230400000,101000,800,1200,600,1000,600,1000,400,600 -288,Belt,4,15,40960,268800000,111000,800,1200,600,1000,600,1000,400,600 -289,Belt,4,16,81920,307200000,121000,800,1200,1100,1700,1100,1700,700,1100 -290,Belt,4,17,163840,345600000,131000,800,1200,600,1000,600,1000,400,600 -291,Belt,4,18,327680,384000000,141000,800,1200,600,1000,600,1000,400,600 -292,Belt,4,19,655360,422400000,151000,800,1200,1100,1700,1100,1700,700,1100 -293,Belt,4,20,1310720,460800000,161000,800,1200,800,1200,800,1200,400,600 -294,Belt,4,21,2621440,499200000,171000,800,1200,800,1200,800,1200,400,600 +277,Belt,4,4,10,1200000,9000,800,1200,2500,3500,2500,3500,1200,1800 +278,Belt,4,5,20,2400000,17000,800,1200,0,0,0,0,0,0 +279,Belt,4,6,40,4800000,25000,800,1200,0,0,0,0,0,0 +280,Belt,4,7,80,9600000,33000,800,1200,2500,3500,2500,3500,1200,1800 +281,Belt,4,8,160,19200000,41000,800,1200,600,1000,600,1000,400,600 +282,Belt,4,9,320,38400000,51000,800,1200,600,1000,600,1000,400,600 +283,Belt,4,10,640,76800000,61000,800,1200,1100,1700,1100,1700,700,1100 +284,Belt,4,11,1280,115200000,71000,800,1200,600,1000,600,1000,400,600 +285,Belt,4,12,2560,153600000,81000,800,1200,600,1000,600,1000,400,600 +286,Belt,4,13,5120,192000000,91000,800,1200,1100,1700,1100,1700,700,1100 +287,Belt,4,14,10240,230400000,101000,800,1200,600,1000,600,1000,400,600 +288,Belt,4,15,20480,268800000,111000,800,1200,600,1000,600,1000,400,600 +289,Belt,4,16,40960,307200000,121000,800,1200,1100,1700,1100,1700,700,1100 +290,Belt,4,17,81920,345600000,131000,800,1200,600,1000,600,1000,400,600 +291,Belt,4,18,163840,384000000,141000,800,1200,600,1000,600,1000,400,600 +292,Belt,4,19,327680,422400000,151000,800,1200,1100,1700,1100,1700,700,1100 +293,Belt,4,20,655360,460800000,161000,800,1200,800,1200,800,1200,400,600 +294,Belt,4,21,1310720,499200000,171000,800,1200,800,1200,800,1200,400,600 295,Belt,5,1,0,4000000,4000,1300,1400,1200,1300,0,0,0,0 296,Belt,5,2,0,8000000,8000,1300,1400,1200,1300,0,0,0,0 297,Belt,5,3,0,16000000,12000,1300,1400,1200,1300,0,0,0,0 @@ -317,87 +317,87 @@ id,item_sub_type,grade,level,cost,exp,required_block,base_stat_growth_min,base_s 316,Necklace,1,1,0,10,20,800,1200,0,0,0,0,0,0 317,Necklace,1,2,0,30,40,800,1200,0,0,0,0,0,0 318,Necklace,1,3,0,70,60,800,1200,0,0,0,0,0,0 -319,Necklace,1,4,20,150,80,800,1200,2500,3500,2500,3500,1200,1800 -320,Necklace,1,5,40,310,280,800,1200,0,0,0,0,0,0 -321,Necklace,1,6,80,630,480,800,1200,0,0,0,0,0,0 -322,Necklace,1,7,160,1270,680,800,1200,2500,3500,2500,3500,1200,1800 -323,Necklace,1,8,320,2550,880,800,1200,600,1000,600,1000,400,600 -324,Necklace,1,9,640,5110,2880,800,1200,600,1000,600,1000,400,600 -325,Necklace,1,10,1280,10230,4880,800,1200,1100,1700,1100,1700,700,1100 -326,Necklace,1,11,2560,15350,6880,800,1200,600,1000,600,1000,400,600 -327,Necklace,1,12,5120,20470,8880,800,1200,600,1000,600,1000,400,600 -328,Necklace,1,13,10240,25590,10880,800,1200,1100,1700,1100,1700,700,1100 -329,Necklace,1,14,20480,30710,12880,800,1200,600,1000,600,1000,400,600 -330,Necklace,1,15,40960,35830,14880,800,1200,600,1000,600,1000,400,600 -331,Necklace,1,16,81920,40950,16880,800,1200,1100,1700,1100,1700,700,1100 -332,Necklace,1,17,163840,46070,18880,800,1200,600,1000,600,1000,400,600 -333,Necklace,1,18,327680,51190,20880,800,1200,600,1000,600,1000,400,600 -334,Necklace,1,19,655360,56310,22880,800,1200,1100,1700,1100,1700,700,1100 -335,Necklace,1,20,1310720,61430,24880,800,1200,800,1200,800,1200,400,600 -336,Necklace,1,21,2621440,66550,26880,800,1200,800,1200,800,1200,400,600 +319,Necklace,1,4,10,150,80,800,1200,2500,3500,2500,3500,1200,1800 +320,Necklace,1,5,20,310,280,800,1200,0,0,0,0,0,0 +321,Necklace,1,6,40,630,480,800,1200,0,0,0,0,0,0 +322,Necklace,1,7,80,1270,680,800,1200,2500,3500,2500,3500,1200,1800 +323,Necklace,1,8,160,2550,880,800,1200,600,1000,600,1000,400,600 +324,Necklace,1,9,320,5110,2880,800,1200,600,1000,600,1000,400,600 +325,Necklace,1,10,640,10230,4880,800,1200,1100,1700,1100,1700,700,1100 +326,Necklace,1,11,1280,15350,6880,800,1200,600,1000,600,1000,400,600 +327,Necklace,1,12,2560,20470,8880,800,1200,600,1000,600,1000,400,600 +328,Necklace,1,13,5120,25590,10880,800,1200,1100,1700,1100,1700,700,1100 +329,Necklace,1,14,10240,30710,12880,800,1200,600,1000,600,1000,400,600 +330,Necklace,1,15,20480,35830,14880,800,1200,600,1000,600,1000,400,600 +331,Necklace,1,16,40960,40950,16880,800,1200,1100,1700,1100,1700,700,1100 +332,Necklace,1,17,81920,46070,18880,800,1200,600,1000,600,1000,400,600 +333,Necklace,1,18,163840,51190,20880,800,1200,600,1000,600,1000,400,600 +334,Necklace,1,19,327680,56310,22880,800,1200,1100,1700,1100,1700,700,1100 +335,Necklace,1,20,655360,61430,24880,800,1200,800,1200,800,1200,400,600 +336,Necklace,1,21,1310720,66550,26880,800,1200,800,1200,800,1200,400,600 337,Necklace,2,1,0,200,30,800,1200,0,0,0,0,0,0 338,Necklace,2,2,0,600,150,800,1200,0,0,0,0,0,0 339,Necklace,2,3,0,1400,450,800,1200,0,0,0,0,0,0 -340,Necklace,2,4,20,3000,1650,800,1200,2500,3500,2500,3500,1200,1800 -341,Necklace,2,5,40,6200,2850,800,1200,0,0,0,0,0,0 -342,Necklace,2,6,80,12600,5250,800,1200,0,0,0,0,0,0 -343,Necklace,2,7,160,25400,7650,800,1200,2500,3500,2500,3500,1200,1800 -344,Necklace,2,8,320,51000,12650,800,1200,600,1000,600,1000,400,600 -345,Necklace,2,9,640,102200,17650,800,1200,600,1000,600,1000,400,600 -346,Necklace,2,10,1280,204600,22650,800,1200,1100,1700,1100,1700,700,1100 -347,Necklace,2,11,2560,307000,27650,800,1200,600,1000,600,1000,400,600 -348,Necklace,2,12,5120,409400,32650,800,1200,600,1000,600,1000,400,600 -349,Necklace,2,13,10240,511800,37650,800,1200,1100,1700,1100,1700,700,1100 -350,Necklace,2,14,20480,614200,42650,800,1200,600,1000,600,1000,400,600 -351,Necklace,2,15,40960,716600,47650,800,1200,600,1000,600,1000,400,600 -352,Necklace,2,16,81920,819000,52650,800,1200,1100,1700,1100,1700,700,1100 -353,Necklace,2,17,163840,921400,57650,800,1200,600,1000,600,1000,400,600 -354,Necklace,2,18,327680,1023800,62650,800,1200,600,1000,600,1000,400,600 -355,Necklace,2,19,655360,1126200,67650,800,1200,1100,1700,1100,1700,700,1100 -356,Necklace,2,20,1310720,1228600,72650,800,1200,800,1200,800,1200,400,600 -357,Necklace,2,21,2621440,1331000,77650,800,1200,800,1200,800,1200,400,600 +340,Necklace,2,4,10,3000,1650,800,1200,2500,3500,2500,3500,1200,1800 +341,Necklace,2,5,20,6200,2850,800,1200,0,0,0,0,0,0 +342,Necklace,2,6,40,12600,5250,800,1200,0,0,0,0,0,0 +343,Necklace,2,7,80,25400,7650,800,1200,2500,3500,2500,3500,1200,1800 +344,Necklace,2,8,160,51000,12650,800,1200,600,1000,600,1000,400,600 +345,Necklace,2,9,320,102200,17650,800,1200,600,1000,600,1000,400,600 +346,Necklace,2,10,640,204600,22650,800,1200,1100,1700,1100,1700,700,1100 +347,Necklace,2,11,1280,307000,27650,800,1200,600,1000,600,1000,400,600 +348,Necklace,2,12,2560,409400,32650,800,1200,600,1000,600,1000,400,600 +349,Necklace,2,13,5120,511800,37650,800,1200,1100,1700,1100,1700,700,1100 +350,Necklace,2,14,10240,614200,42650,800,1200,600,1000,600,1000,400,600 +351,Necklace,2,15,20480,716600,47650,800,1200,600,1000,600,1000,400,600 +352,Necklace,2,16,40960,819000,52650,800,1200,1100,1700,1100,1700,700,1100 +353,Necklace,2,17,81920,921400,57650,800,1200,600,1000,600,1000,400,600 +354,Necklace,2,18,163840,1023800,62650,800,1200,600,1000,600,1000,400,600 +355,Necklace,2,19,327680,1126200,67650,800,1200,1100,1700,1100,1700,700,1100 +356,Necklace,2,20,655360,1228600,72650,800,1200,800,1200,800,1200,400,600 +357,Necklace,2,21,1310720,1331000,77650,800,1200,800,1200,800,1200,400,600 358,Necklace,3,1,0,4000,50,800,1200,0,0,0,0,0,0 359,Necklace,3,2,0,12000,150,800,1200,0,0,0,0,0,0 360,Necklace,3,3,0,28000,350,800,1200,0,0,0,0,0,0 -361,Necklace,3,4,20,60000,750,800,1200,2500,3500,2500,3500,1200,1800 -362,Necklace,3,5,40,124000,1550,800,1200,0,0,0,0,0,0 -363,Necklace,3,6,80,252000,3150,800,1200,0,0,0,0,0,0 -364,Necklace,3,7,160,508000,6350,800,1200,2500,3500,2500,3500,1200,1800 -365,Necklace,3,8,320,1020000,12750,800,1200,600,1000,600,1000,400,600 -366,Necklace,3,9,640,2044000,25550,800,1200,600,1000,600,1000,400,600 -367,Necklace,3,10,1280,4092000,38350,800,1200,1100,1700,1100,1700,700,1100 -368,Necklace,3,11,2560,6140000,51150,800,1200,600,1000,600,1000,400,600 -369,Necklace,3,12,5120,8188000,63950,800,1200,600,1000,600,1000,400,600 -370,Necklace,3,13,10240,10236000,76750,800,1200,1100,1700,1100,1700,700,1100 -371,Necklace,3,14,20480,12284000,89550,800,1200,600,1000,600,1000,400,600 -372,Necklace,3,15,40960,14332000,102350,800,1200,600,1000,600,1000,400,600 -373,Necklace,3,16,81920,16380000,115150,800,1200,1100,1700,1100,1700,700,1100 -374,Necklace,3,17,163840,18428000,127950,800,1200,600,1000,600,1000,400,600 -375,Necklace,3,18,327680,20476000,140750,800,1200,600,1000,600,1000,400,600 -376,Necklace,3,19,655360,22524000,153550,800,1200,1100,1700,1100,1700,700,1100 -377,Necklace,3,20,1310720,24572000,166350,800,1200,800,1200,800,1200,400,600 -378,Necklace,3,21,2621440,26620000,179150,800,1200,800,1200,800,1200,400,600 +361,Necklace,3,4,10,60000,750,800,1200,2500,3500,2500,3500,1200,1800 +362,Necklace,3,5,20,124000,1550,800,1200,0,0,0,0,0,0 +363,Necklace,3,6,40,252000,3150,800,1200,0,0,0,0,0,0 +364,Necklace,3,7,80,508000,6350,800,1200,2500,3500,2500,3500,1200,1800 +365,Necklace,3,8,160,1020000,12750,800,1200,600,1000,600,1000,400,600 +366,Necklace,3,9,320,2044000,25550,800,1200,600,1000,600,1000,400,600 +367,Necklace,3,10,640,4092000,38350,800,1200,1100,1700,1100,1700,700,1100 +368,Necklace,3,11,1280,6140000,51150,800,1200,600,1000,600,1000,400,600 +369,Necklace,3,12,2560,8188000,63950,800,1200,600,1000,600,1000,400,600 +370,Necklace,3,13,5120,10236000,76750,800,1200,1100,1700,1100,1700,700,1100 +371,Necklace,3,14,10240,12284000,89550,800,1200,600,1000,600,1000,400,600 +372,Necklace,3,15,20480,14332000,102350,800,1200,600,1000,600,1000,400,600 +373,Necklace,3,16,40960,16380000,115150,800,1200,1100,1700,1100,1700,700,1100 +374,Necklace,3,17,81920,18428000,127950,800,1200,600,1000,600,1000,400,600 +375,Necklace,3,18,163840,20476000,140750,800,1200,600,1000,600,1000,400,600 +376,Necklace,3,19,327680,22524000,153550,800,1200,1100,1700,1100,1700,700,1100 +377,Necklace,3,20,655360,24572000,166350,800,1200,800,1200,800,1200,400,600 +378,Necklace,3,21,1310720,26620000,179150,800,1200,800,1200,800,1200,400,600 379,Necklace,4,1,0,150000,1000,800,1200,0,0,0,0,0,0 380,Necklace,4,2,0,300000,3000,800,1200,0,0,0,0,0,0 381,Necklace,4,3,0,600000,5000,800,1200,0,0,0,0,0,0 -382,Necklace,4,4,20,1200000,9000,800,1200,2500,3500,2500,3500,1200,1800 -383,Necklace,4,5,40,2400000,17000,800,1200,0,0,0,0,0,0 -384,Necklace,4,6,80,4800000,25000,800,1200,0,0,0,0,0,0 -385,Necklace,4,7,160,9600000,33000,800,1200,2500,3500,2500,3500,1200,1800 -386,Necklace,4,8,320,19200000,41000,800,1200,600,1000,600,1000,400,600 -387,Necklace,4,9,640,38400000,51000,800,1200,600,1000,600,1000,400,600 -388,Necklace,4,10,1280,76800000,61000,800,1200,1100,1700,1100,1700,700,1100 -389,Necklace,4,11,2560,115200000,71000,800,1200,600,1000,600,1000,400,600 -390,Necklace,4,12,5120,153600000,81000,800,1200,600,1000,600,1000,400,600 -391,Necklace,4,13,10240,192000000,91000,800,1200,1100,1700,1100,1700,700,1100 -392,Necklace,4,14,20480,230400000,101000,800,1200,600,1000,600,1000,400,600 -393,Necklace,4,15,40960,268800000,111000,800,1200,600,1000,600,1000,400,600 -394,Necklace,4,16,81920,307200000,121000,800,1200,1100,1700,1100,1700,700,1100 -395,Necklace,4,17,163840,345600000,131000,800,1200,600,1000,600,1000,400,600 -396,Necklace,4,18,327680,384000000,141000,800,1200,600,1000,600,1000,400,600 -397,Necklace,4,19,655360,422400000,151000,800,1200,1100,1700,1100,1700,700,1100 -398,Necklace,4,20,1310720,460800000,161000,800,1200,800,1200,800,1200,400,600 -399,Necklace,4,21,2621440,499200000,171000,800,1200,800,1200,800,1200,400,600 +382,Necklace,4,4,10,1200000,9000,800,1200,2500,3500,2500,3500,1200,1800 +383,Necklace,4,5,20,2400000,17000,800,1200,0,0,0,0,0,0 +384,Necklace,4,6,40,4800000,25000,800,1200,0,0,0,0,0,0 +385,Necklace,4,7,80,9600000,33000,800,1200,2500,3500,2500,3500,1200,1800 +386,Necklace,4,8,160,19200000,41000,800,1200,600,1000,600,1000,400,600 +387,Necklace,4,9,320,38400000,51000,800,1200,600,1000,600,1000,400,600 +388,Necklace,4,10,640,76800000,61000,800,1200,1100,1700,1100,1700,700,1100 +389,Necklace,4,11,1280,115200000,71000,800,1200,600,1000,600,1000,400,600 +390,Necklace,4,12,2560,153600000,81000,800,1200,600,1000,600,1000,400,600 +391,Necklace,4,13,5120,192000000,91000,800,1200,1100,1700,1100,1700,700,1100 +392,Necklace,4,14,10240,230400000,101000,800,1200,600,1000,600,1000,400,600 +393,Necklace,4,15,20480,268800000,111000,800,1200,600,1000,600,1000,400,600 +394,Necklace,4,16,40960,307200000,121000,800,1200,1100,1700,1100,1700,700,1100 +395,Necklace,4,17,81920,345600000,131000,800,1200,600,1000,600,1000,400,600 +396,Necklace,4,18,163840,384000000,141000,800,1200,600,1000,600,1000,400,600 +397,Necklace,4,19,327680,422400000,151000,800,1200,1100,1700,1100,1700,700,1100 +398,Necklace,4,20,655360,460800000,161000,800,1200,800,1200,800,1200,400,600 +399,Necklace,4,21,1310720,499200000,171000,800,1200,800,1200,800,1200,400,600 400,Necklace,5,1,0,4000000,4000,1300,1400,1200,1300,0,0,0,0 401,Necklace,5,2,0,8000000,8000,1300,1400,1200,1300,0,0,0,0 402,Necklace,5,3,0,16000000,12000,1300,1400,1200,1300,0,0,0,0 @@ -422,87 +422,87 @@ id,item_sub_type,grade,level,cost,exp,required_block,base_stat_growth_min,base_s 421,Ring,1,1,0,10,20,800,1200,0,0,0,0,0,0 422,Ring,1,2,0,30,40,800,1200,0,0,0,0,0,0 423,Ring,1,3,0,70,60,800,1200,0,0,0,0,0,0 -424,Ring,1,4,20,150,80,800,1200,2500,3500,2500,3500,1200,1800 -425,Ring,1,5,40,310,280,800,1200,0,0,0,0,0,0 -426,Ring,1,6,80,630,480,800,1200,0,0,0,0,0,0 -427,Ring,1,7,160,1270,680,800,1200,2500,3500,2500,3500,1200,1800 -428,Ring,1,8,320,2550,880,800,1200,600,1000,600,1000,400,600 -429,Ring,1,9,640,5110,2880,800,1200,600,1000,600,1000,400,600 -430,Ring,1,10,1280,10230,4880,800,1200,1100,1700,1100,1700,700,1100 -431,Ring,1,11,2560,15350,6880,800,1200,600,1000,600,1000,400,600 -432,Ring,1,12,5120,20470,8880,800,1200,600,1000,600,1000,400,600 -433,Ring,1,13,10240,25590,10880,800,1200,1100,1700,1100,1700,700,1100 -434,Ring,1,14,20480,30710,12880,800,1200,600,1000,600,1000,400,600 -435,Ring,1,15,40960,35830,14880,800,1200,600,1000,600,1000,400,600 -436,Ring,1,16,81920,40950,16880,800,1200,1100,1700,1100,1700,700,1100 -437,Ring,1,17,163840,46070,18880,800,1200,600,1000,600,1000,400,600 -438,Ring,1,18,327680,51190,20880,800,1200,600,1000,600,1000,400,600 -439,Ring,1,19,655360,56310,22880,800,1200,1100,1700,1100,1700,700,1100 -440,Ring,1,20,1310720,61430,24880,800,1200,800,1200,800,1200,400,600 -441,Ring,1,21,2621440,66550,26880,800,1200,800,1200,800,1200,400,600 +424,Ring,1,4,10,150,80,800,1200,2500,3500,2500,3500,1200,1800 +425,Ring,1,5,20,310,280,800,1200,0,0,0,0,0,0 +426,Ring,1,6,40,630,480,800,1200,0,0,0,0,0,0 +427,Ring,1,7,80,1270,680,800,1200,2500,3500,2500,3500,1200,1800 +428,Ring,1,8,160,2550,880,800,1200,600,1000,600,1000,400,600 +429,Ring,1,9,320,5110,2880,800,1200,600,1000,600,1000,400,600 +430,Ring,1,10,640,10230,4880,800,1200,1100,1700,1100,1700,700,1100 +431,Ring,1,11,1280,15350,6880,800,1200,600,1000,600,1000,400,600 +432,Ring,1,12,2560,20470,8880,800,1200,600,1000,600,1000,400,600 +433,Ring,1,13,5120,25590,10880,800,1200,1100,1700,1100,1700,700,1100 +434,Ring,1,14,10240,30710,12880,800,1200,600,1000,600,1000,400,600 +435,Ring,1,15,20480,35830,14880,800,1200,600,1000,600,1000,400,600 +436,Ring,1,16,40960,40950,16880,800,1200,1100,1700,1100,1700,700,1100 +437,Ring,1,17,81920,46070,18880,800,1200,600,1000,600,1000,400,600 +438,Ring,1,18,163840,51190,20880,800,1200,600,1000,600,1000,400,600 +439,Ring,1,19,327680,56310,22880,800,1200,1100,1700,1100,1700,700,1100 +440,Ring,1,20,655360,61430,24880,800,1200,800,1200,800,1200,400,600 +441,Ring,1,21,1310720,66550,26880,800,1200,800,1200,800,1200,400,600 442,Ring,2,1,0,200,30,800,1200,0,0,0,0,0,0 443,Ring,2,2,0,600,150,800,1200,0,0,0,0,0,0 444,Ring,2,3,0,1400,450,800,1200,0,0,0,0,0,0 -445,Ring,2,4,20,3000,1650,800,1200,2500,3500,2500,3500,1200,1800 -446,Ring,2,5,40,6200,2850,800,1200,0,0,0,0,0,0 -447,Ring,2,6,80,12600,5250,800,1200,0,0,0,0,0,0 -448,Ring,2,7,160,25400,7650,800,1200,2500,3500,2500,3500,1200,1800 -449,Ring,2,8,320,51000,12650,800,1200,600,1000,600,1000,400,600 -450,Ring,2,9,640,102200,17650,800,1200,600,1000,600,1000,400,600 -451,Ring,2,10,1280,204600,22650,800,1200,1100,1700,1100,1700,700,1100 -452,Ring,2,11,2560,307000,27650,800,1200,600,1000,600,1000,400,600 -453,Ring,2,12,5120,409400,32650,800,1200,600,1000,600,1000,400,600 -454,Ring,2,13,10240,511800,37650,800,1200,1100,1700,1100,1700,700,1100 -455,Ring,2,14,20480,614200,42650,800,1200,600,1000,600,1000,400,600 -456,Ring,2,15,40960,716600,47650,800,1200,600,1000,600,1000,400,600 -457,Ring,2,16,81920,819000,52650,800,1200,1100,1700,1100,1700,700,1100 -458,Ring,2,17,163840,921400,57650,800,1200,600,1000,600,1000,400,600 -459,Ring,2,18,327680,1023800,62650,800,1200,600,1000,600,1000,400,600 -460,Ring,2,19,655360,1126200,67650,800,1200,1100,1700,1100,1700,700,1100 -461,Ring,2,20,1310720,1228600,72650,800,1200,800,1200,800,1200,400,600 -462,Ring,2,21,2621440,1331000,77650,800,1200,800,1200,800,1200,400,600 +445,Ring,2,4,10,3000,1650,800,1200,2500,3500,2500,3500,1200,1800 +446,Ring,2,5,20,6200,2850,800,1200,0,0,0,0,0,0 +447,Ring,2,6,40,12600,5250,800,1200,0,0,0,0,0,0 +448,Ring,2,7,80,25400,7650,800,1200,2500,3500,2500,3500,1200,1800 +449,Ring,2,8,160,51000,12650,800,1200,600,1000,600,1000,400,600 +450,Ring,2,9,320,102200,17650,800,1200,600,1000,600,1000,400,600 +451,Ring,2,10,640,204600,22650,800,1200,1100,1700,1100,1700,700,1100 +452,Ring,2,11,1280,307000,27650,800,1200,600,1000,600,1000,400,600 +453,Ring,2,12,2560,409400,32650,800,1200,600,1000,600,1000,400,600 +454,Ring,2,13,5120,511800,37650,800,1200,1100,1700,1100,1700,700,1100 +455,Ring,2,14,10240,614200,42650,800,1200,600,1000,600,1000,400,600 +456,Ring,2,15,20480,716600,47650,800,1200,600,1000,600,1000,400,600 +457,Ring,2,16,40960,819000,52650,800,1200,1100,1700,1100,1700,700,1100 +458,Ring,2,17,81920,921400,57650,800,1200,600,1000,600,1000,400,600 +459,Ring,2,18,163840,1023800,62650,800,1200,600,1000,600,1000,400,600 +460,Ring,2,19,327680,1126200,67650,800,1200,1100,1700,1100,1700,700,1100 +461,Ring,2,20,655360,1228600,72650,800,1200,800,1200,800,1200,400,600 +462,Ring,2,21,1310720,1331000,77650,800,1200,800,1200,800,1200,400,600 463,Ring,3,1,0,4000,50,800,1200,0,0,0,0,0,0 464,Ring,3,2,0,12000,150,800,1200,0,0,0,0,0,0 465,Ring,3,3,0,28000,350,800,1200,0,0,0,0,0,0 -466,Ring,3,4,20,60000,750,800,1200,2500,3500,2500,3500,1200,1800 -467,Ring,3,5,40,124000,1550,800,1200,0,0,0,0,0,0 -468,Ring,3,6,80,252000,3150,800,1200,0,0,0,0,0,0 -469,Ring,3,7,160,508000,6350,800,1200,2500,3500,2500,3500,1200,1800 -470,Ring,3,8,320,1020000,12750,800,1200,600,1000,600,1000,400,600 -471,Ring,3,9,640,2044000,25550,800,1200,600,1000,600,1000,400,600 -472,Ring,3,10,1280,4092000,38350,800,1200,1100,1700,1100,1700,700,1100 -473,Ring,3,11,2560,6140000,51150,800,1200,600,1000,600,1000,400,600 -474,Ring,3,12,5120,8188000,63950,800,1200,600,1000,600,1000,400,600 -475,Ring,3,13,10240,10236000,76750,800,1200,1100,1700,1100,1700,700,1100 -476,Ring,3,14,20480,12284000,89550,800,1200,600,1000,600,1000,400,600 -477,Ring,3,15,40960,14332000,102350,800,1200,600,1000,600,1000,400,600 -478,Ring,3,16,81920,16380000,115150,800,1200,1100,1700,1100,1700,700,1100 -479,Ring,3,17,163840,18428000,127950,800,1200,600,1000,600,1000,400,600 -480,Ring,3,18,327680,20476000,140750,800,1200,600,1000,600,1000,400,600 -481,Ring,3,19,655360,22524000,153550,800,1200,1100,1700,1100,1700,700,1100 -482,Ring,3,20,1310720,24572000,166350,800,1200,800,1200,800,1200,400,600 -483,Ring,3,21,2621440,26620000,179150,800,1200,800,1200,800,1200,400,600 +466,Ring,3,4,10,60000,750,800,1200,2500,3500,2500,3500,1200,1800 +467,Ring,3,5,20,124000,1550,800,1200,0,0,0,0,0,0 +468,Ring,3,6,40,252000,3150,800,1200,0,0,0,0,0,0 +469,Ring,3,7,80,508000,6350,800,1200,2500,3500,2500,3500,1200,1800 +470,Ring,3,8,160,1020000,12750,800,1200,600,1000,600,1000,400,600 +471,Ring,3,9,320,2044000,25550,800,1200,600,1000,600,1000,400,600 +472,Ring,3,10,640,4092000,38350,800,1200,1100,1700,1100,1700,700,1100 +473,Ring,3,11,1280,6140000,51150,800,1200,600,1000,600,1000,400,600 +474,Ring,3,12,2560,8188000,63950,800,1200,600,1000,600,1000,400,600 +475,Ring,3,13,5120,10236000,76750,800,1200,1100,1700,1100,1700,700,1100 +476,Ring,3,14,10240,12284000,89550,800,1200,600,1000,600,1000,400,600 +477,Ring,3,15,20480,14332000,102350,800,1200,600,1000,600,1000,400,600 +478,Ring,3,16,40960,16380000,115150,800,1200,1100,1700,1100,1700,700,1100 +479,Ring,3,17,81920,18428000,127950,800,1200,600,1000,600,1000,400,600 +480,Ring,3,18,163840,20476000,140750,800,1200,600,1000,600,1000,400,600 +481,Ring,3,19,327680,22524000,153550,800,1200,1100,1700,1100,1700,700,1100 +482,Ring,3,20,655360,24572000,166350,800,1200,800,1200,800,1200,400,600 +483,Ring,3,21,1310720,26620000,179150,800,1200,800,1200,800,1200,400,600 484,Ring,4,1,0,150000,1000,800,1200,0,0,0,0,0,0 485,Ring,4,2,0,300000,3000,800,1200,0,0,0,0,0,0 486,Ring,4,3,0,600000,5000,800,1200,0,0,0,0,0,0 -487,Ring,4,4,20,1200000,9000,800,1200,2500,3500,2500,3500,1200,1800 -488,Ring,4,5,40,2400000,17000,800,1200,0,0,0,0,0,0 -489,Ring,4,6,80,4800000,25000,800,1200,0,0,0,0,0,0 -490,Ring,4,7,160,9600000,33000,800,1200,2500,3500,2500,3500,1200,1800 -491,Ring,4,8,320,19200000,41000,800,1200,600,1000,600,1000,400,600 -492,Ring,4,9,640,38400000,51000,800,1200,600,1000,600,1000,400,600 -493,Ring,4,10,1280,76800000,61000,800,1200,1100,1700,1100,1700,700,1100 -494,Ring,4,11,2560,115200000,71000,800,1200,600,1000,600,1000,400,600 -495,Ring,4,12,5120,153600000,81000,800,1200,600,1000,600,1000,400,600 -496,Ring,4,13,10240,192000000,91000,800,1200,1100,1700,1100,1700,700,1100 -497,Ring,4,14,20480,230400000,101000,800,1200,600,1000,600,1000,400,600 -498,Ring,4,15,40960,268800000,111000,800,1200,600,1000,600,1000,400,600 -499,Ring,4,16,81920,307200000,121000,800,1200,1100,1700,1100,1700,700,1100 -500,Ring,4,17,163840,345600000,131000,800,1200,600,1000,600,1000,400,600 -501,Ring,4,18,327680,384000000,141000,800,1200,600,1000,600,1000,400,600 -502,Ring,4,19,655360,422400000,151000,800,1200,1100,1700,1100,1700,700,1100 -503,Ring,4,20,1310720,460800000,161000,800,1200,800,1200,800,1200,400,600 -504,Ring,4,21,2621440,499200000,171000,800,1200,800,1200,800,1200,400,600 +487,Ring,4,4,10,1200000,9000,800,1200,2500,3500,2500,3500,1200,1800 +488,Ring,4,5,20,2400000,17000,800,1200,0,0,0,0,0,0 +489,Ring,4,6,40,4800000,25000,800,1200,0,0,0,0,0,0 +490,Ring,4,7,80,9600000,33000,800,1200,2500,3500,2500,3500,1200,1800 +491,Ring,4,8,160,19200000,41000,800,1200,600,1000,600,1000,400,600 +492,Ring,4,9,320,38400000,51000,800,1200,600,1000,600,1000,400,600 +493,Ring,4,10,640,76800000,61000,800,1200,1100,1700,1100,1700,700,1100 +494,Ring,4,11,1280,115200000,71000,800,1200,600,1000,600,1000,400,600 +495,Ring,4,12,2560,153600000,81000,800,1200,600,1000,600,1000,400,600 +496,Ring,4,13,5120,192000000,91000,800,1200,1100,1700,1100,1700,700,1100 +497,Ring,4,14,10240,230400000,101000,800,1200,600,1000,600,1000,400,600 +498,Ring,4,15,20480,268800000,111000,800,1200,600,1000,600,1000,400,600 +499,Ring,4,16,40960,307200000,121000,800,1200,1100,1700,1100,1700,700,1100 +500,Ring,4,17,81920,345600000,131000,800,1200,600,1000,600,1000,400,600 +501,Ring,4,18,163840,384000000,141000,800,1200,600,1000,600,1000,400,600 +502,Ring,4,19,327680,422400000,151000,800,1200,1100,1700,1100,1700,700,1100 +503,Ring,4,20,655360,460800000,161000,800,1200,800,1200,800,1200,400,600 +504,Ring,4,21,1310720,499200000,171000,800,1200,800,1200,800,1200,400,600 505,Ring,5,1,0,4000000,4000,1300,1400,1200,1300,0,0,0,0 506,Ring,5,2,0,8000000,8000,1300,1400,1200,1300,0,0,0,0 507,Ring,5,3,0,16000000,12000,1300,1400,1200,1300,0,0,0,0 @@ -850,6 +850,90 @@ id,item_sub_type,grade,level,cost,exp,required_block,base_stat_growth_min,base_s 849,Aura,6,19,0,2394755055,1,1600,1700,1600,1700,1500,1600,200,200 850,Aura,6,20,0,3593354622,1,1600,1700,1600,1700,1500,1600,200,200 851,Aura,6,21,0,5391253972,1,1600,1700,1600,1700,1500,1600,200,200 +852,Grimoire,3,1,0,800,1,2000,2100,2000,2100,0,0,0,0 +853,Grimoire,3,2,0,1600,1,2000,2100,2000,2100,0,0,0,0 +854,Grimoire,3,3,0,3200,1,2000,2100,2000,2100,1000,1100,800,900 +855,Grimoire,3,4,0,6400,1,1600,1700,1600,1700,0,0,0,0 +856,Grimoire,3,5,0,12800,1,1600,1700,1600,1700,0,0,0,0 +857,Grimoire,3,6,0,25600,1,1600,1700,1600,1700,1000,1100,800,900 +858,Grimoire,3,7,0,51200,1,900,1000,900,1000,0,0,0,0 +859,Grimoire,3,8,0,102400,1,900,1000,900,1000,0,0,0,0 +860,Grimoire,3,9,0,204800,1,900,1000,900,1000,1000,1100,800,900 +861,Grimoire,3,10,0,409600,1,900,1000,900,1000,800,900,200,200 +862,Grimoire,3,11,0,819200,1,900,1000,900,1000,800,900,200,200 +863,Grimoire,3,12,0,1638400,1,900,1000,900,1000,800,900,200,200 +864,Grimoire,3,13,0,3276800,1,900,1000,900,1000,800,900,200,200 +865,Grimoire,3,14,0,6553600,1,900,1000,900,1000,800,900,200,200 +866,Grimoire,3,15,0,13107200,1,900,1000,900,1000,800,900,200,200 +867,Grimoire,3,16,0,26214400,1,900,1000,900,1000,800,900,200,200 +868,Grimoire,3,17,0,52428800,1,900,1000,900,1000,800,900,200,200 +869,Grimoire,3,18,0,104857600,1,900,1000,900,1000,800,900,200,200 +870,Grimoire,3,19,0,209715200,1,900,1000,900,1000,800,900,200,200 +871,Grimoire,3,20,0,419430400,1,900,1000,900,1000,800,900,200,200 +872,Grimoire,3,21,0,838860800,1,900,1000,900,1000,800,900,200,200 +873,Grimoire,4,1,0,8000,1,2000,2100,2000,2100,0,0,0,0 +874,Grimoire,4,2,0,16000,1,2000,2100,2000,2100,0,0,0,0 +875,Grimoire,4,3,0,32000,1,2000,2100,2000,2100,3000,3100,800,900 +876,Grimoire,4,4,0,64000,1,1600,1700,1600,1700,0,0,0,0 +877,Grimoire,4,5,0,128000,1,1600,1700,1600,1700,0,0,0,0 +878,Grimoire,4,6,0,256000,1,1600,1700,1600,1700,3000,3100,800,900 +879,Grimoire,4,7,0,512000,1,900,1000,900,1000,1500,1600,200,200 +880,Grimoire,4,8,0,1024000,1,900,1000,900,1000,1500,1600,200,200 +881,Grimoire,4,9,0,2048000,1,900,1000,900,1000,3000,3100,800,900 +882,Grimoire,4,10,0,4096000,1,900,1000,900,1000,1200,1300,200,200 +883,Grimoire,4,11,0,8192000,1,900,1000,900,1000,1200,1300,200,200 +884,Grimoire,4,12,0,16384000,1,900,1000,900,1000,1200,1300,200,200 +885,Grimoire,4,13,0,32768000,1,900,1000,900,1000,1200,1300,200,200 +886,Grimoire,4,14,0,65536000,1,900,1000,900,1000,1200,1300,200,200 +887,Grimoire,4,15,0,131072000,1,900,1000,900,1000,1200,1300,200,200 +888,Grimoire,4,16,0,262144000,1,900,1000,900,1000,1200,1300,200,200 +889,Grimoire,4,17,0,524288000,1,900,1000,900,1000,1200,1300,200,200 +890,Grimoire,4,18,0,1048576000,1,900,1000,900,1000,1200,1300,200,200 +891,Grimoire,4,19,0,2097152000,1,900,1000,900,1000,1200,1300,200,200 +892,Grimoire,4,20,0,4194304000,1,900,1000,900,1000,1200,1300,200,200 +893,Grimoire,4,21,0,8388608000,1,900,1000,900,1000,1200,1300,200,200 +894,Grimoire,5,1,0,68000,1,2000,2100,2000,2100,0,0,0,0 +895,Grimoire,5,2,0,115600,1,2000,2100,2000,2100,0,0,0,0 +896,Grimoire,5,3,0,196520,1,2000,2100,2000,2100,3600,3700,800,900 +897,Grimoire,5,4,0,334084,1,1600,1700,1600,1700,0,0,0,0 +898,Grimoire,5,5,0,567942,1,1600,1700,1600,1700,0,0,0,0 +899,Grimoire,5,6,0,965501,1,1600,1700,1600,1700,5000,5100,800,900 +900,Grimoire,5,7,0,1641351,1,900,1000,900,1000,2000,2100,200,200 +901,Grimoire,5,8,0,2790296,1,900,1000,900,1000,2000,2100,200,200 +902,Grimoire,5,9,0,4743503,1,900,1000,900,1000,5000,5100,800,900 +903,Grimoire,5,10,0,8063955,1,900,1000,900,1000,1500,1600,200,200 +904,Grimoire,5,11,0,13708723,1,900,1000,900,1000,1500,1600,200,200 +905,Grimoire,5,12,0,23304829,1,900,1000,900,1000,1500,1600,200,200 +906,Grimoire,5,13,0,39618209,1,900,1000,900,1000,1500,1600,200,200 +907,Grimoire,5,14,0,67350955,1,900,1000,900,1000,1500,1600,200,200 +908,Grimoire,5,15,0,114496623,1,900,1000,900,1000,1500,1600,200,200 +909,Grimoire,5,16,0,194644259,1,900,1000,900,1000,1500,1600,200,200 +910,Grimoire,5,17,0,330895240,1,900,1000,900,1000,1500,1600,200,200 +911,Grimoire,5,18,0,562521908,1,900,1000,900,1000,1500,1600,200,200 +912,Grimoire,5,19,0,956287243,1,900,1000,900,1000,1500,1600,200,200 +913,Grimoire,5,20,0,1625688313,1,900,1000,900,1000,1500,1600,200,200 +914,Grimoire,5,21,0,2763670132,1,900,1000,900,1000,1500,1600,200,200 +915,Grimoire,6,1,0,240000,1,2500,2600,2500,2600,5000,5100,0,0 +916,Grimoire,6,2,0,574084,1,2500,2600,2500,2600,1000,1100,0,0 +917,Grimoire,6,3,0,1205501,1,2500,2600,2500,2600,1000,1100,800,900 +918,Grimoire,6,4,0,3030296,1,1900,2000,1900,2000,2000,2100,0,0 +919,Grimoire,6,5,0,5767488,1,1900,2000,1900,2000,2000,2100,0,0 +920,Grimoire,6,6,0,9873276,1,1900,2000,1900,2000,3000,3100,800,900 +921,Grimoire,6,7,0,16031958,1,1200,1300,1200,1300,2000,2000,200,200 +922,Grimoire,6,8,0,25269981,1,1200,1300,1200,1300,2000,2000,200,200 +923,Grimoire,6,9,0,39127015,1,1200,1300,1200,1300,5000,5100,800,900 +924,Grimoire,6,10,0,59912566,1,1200,1300,1200,1300,1500,1600,200,200 +925,Grimoire,6,11,0,91090892,1,1200,1300,1200,1300,1500,1600,200,200 +926,Grimoire,6,12,0,137858381,1,1200,1300,1200,1300,1500,1600,200,200 +927,Grimoire,6,13,0,208009614,1,1200,1300,1200,1300,1500,1600,200,200 +928,Grimoire,6,14,0,313236463,1,1200,1300,1200,1300,1500,1600,200,200 +929,Grimoire,6,15,0,471076736,1,1200,1300,1200,1300,1500,1600,200,200 +930,Grimoire,6,16,0,707837145,1,1200,1300,1200,1300,1500,1600,200,200 +931,Grimoire,6,17,0,1062977758,1,1200,1300,1200,1300,1500,1600,200,200 +932,Grimoire,6,18,0,1595688677,1,1200,1300,1200,1300,1500,1600,200,200 +933,Grimoire,6,19,0,2394755055,1,1200,1300,1200,1300,1500,1600,200,200 +934,Grimoire,6,20,0,3593354622,1,1200,1300,1200,1300,1500,1600,200,200 +935,Grimoire,6,21,0,5391253972,1,1200,1300,1200,1300,1500,1600,200,200 600301,EquipmentMaterial,1,0,0,10,0,0,0,0,0,0,0,0,0 600302,EquipmentMaterial,2,0,0,200,0,0,0,0,0,0,0,0,0 600303,EquipmentMaterial,3,0,0,4000,0,0,0,0,0,0,0,0,0 diff --git a/Lib9c/TableCSV/Crystal/CrystalEquipmentGrindingSheet.csv b/Lib9c/TableCSV/Crystal/CrystalEquipmentGrindingSheet.csv index 50a62be14..571925f22 100644 --- a/Lib9c/TableCSV/Crystal/CrystalEquipmentGrindingSheet.csv +++ b/Lib9c/TableCSV/Crystal/CrystalEquipmentGrindingSheet.csv @@ -25,11 +25,11 @@ id,enchant_base_id,gain_crystal 10142000,10141000,1000000 10143000,10141000,1500000 10144000,10141000,1500000 -10150000,10151000,2000000 -10151000,10151000,1000000 -10152000,10151000,1000000 -10153000,10151000,2000000 -10154000,10151000,2000000 +10150000,10151000,4000000 +10151000,10151000,2000000 +10152000,10151000,2000000 +10153000,10151000,4000000 +10154000,10151000,4000000 10140001,10140001,306600 10141001,10140001,329640 10142001,10140001,332820 @@ -77,11 +77,11 @@ id,enchant_base_id,gain_crystal 10252000,10100000,8000000 10253000,10100000,8000000 10254000,10100000,8000000 -10250001,10251001,2000000 -10251001,10251001,1000000 -10252001,10251001,1000000 -10253001,10251001,2000000 -10254001,10251001,2000000 +10250001,10251001,4000000 +10251001,10251001,2000000 +10252001,10251001,2000000 +10253001,10251001,4000000 +10254001,10251001,4000000 10255000,10255000,1129320 10310000,10310000,10 10311000,10310000,19 @@ -164,16 +164,16 @@ id,enchant_base_id,gain_crystal 12001001,10320000,50000 12001002,10430000,500000 12001003,10541000,5000000 -10350001,10351001,2000000 -10351001,10351001,1000000 -10352001,10351001,1000000 -10353001,10351001,2000000 -10354001,10351001,2000000 -10450001,10451001,2000000 -10451001,10451001,1000000 -10452001,10451001,1000000 -10453001,10451001,2000000 -10454001,10451001,2000000 +10350001,10351001,4000000 +10351001,10351001,2000000 +10352001,10351001,2000000 +10353001,10351001,4000000 +10354001,10351001,4000000 +10450001,10451001,4000000 +10451001,10451001,2000000 +10452001,10451001,2000000 +10453001,10451001,4000000 +10454001,10451001,4000000 10610000,10100000,1000 10620000,10100000,3000 10630000,10100000,50000 @@ -211,4 +211,39 @@ id,enchant_base_id,gain_crystal 10640004,10100000,5000000 10650007,10650007,10000000 10660000,10660000,100000000 -10710000,10710000,1 +10730000,10100000,500000 +10730001,10100000,500000 +10730002,10100000,500000 +10730003,10100000,500000 +10730004,10100000,500000 +10730005,10100000,500000 +10730006,10100000,500000 +10730007,10100000,500000 +10730008,10100000,500000 +10740000,10100000,5000000 +10740001,10100000,5000000 +10740002,10100000,5000000 +10740003,10100000,5000000 +10740004,10100000,5000000 +10740005,10100000,5000000 +10740006,10100000,5000000 +10740007,10100000,5000000 +10740008,10100000,5000000 +10750000,10100000,10000000 +10750001,10100000,10000000 +10750002,10100000,10000000 +10750003,10100000,10000000 +10750004,10100000,10000000 +10750005,10100000,10000000 +10750006,10100000,10000000 +10750007,10100000,10000000 +10750008,10100000,10000000 +10760000,10100000,100000000 +10760001,10100000,100000000 +10760002,10100000,100000000 +10760003,10100000,100000000 +10760004,10100000,100000000 +10760005,10100000,100000000 +10760006,10100000,100000000 +10760007,10100000,100000000 +10760008,10100000,100000000 \ No newline at end of file diff --git a/Lib9c/TableCSV/GameConfigSheet.csv b/Lib9c/TableCSV/GameConfigSheet.csv index 65cc8e22e..e88e882e4 100644 --- a/Lib9c/TableCSV/GameConfigSheet.csv +++ b/Lib9c/TableCSV/GameConfigSheet.csv @@ -39,10 +39,10 @@ character_consumable_slot_4,200 character_consumable_slot_5,350 shatter_strike_max_damage,1000000 adventure_boss_wanted_required_staking_level,3 -adventure_boss_min_bounty,100 -adventure_boss_ncg_rune_ratio,2.5 -adventure_boss_ncg_ap_ratio,1.0 -adventure_boss_active_interval,10000 -adventure_boss_inactive_interval,10000 -adventure_boss_claim_interval,100000 +adventure_boss_min_bounty,50 +adventure_boss_ncg_rune_ratio,1 +adventure_boss_ncg_ap_ratio,0.4 +adventure_boss_active_interval,1800 +adventure_boss_inactive_interval,10800 +adventure_boss_claim_interval,75600 custom_equipment_craft_icon_cost_multiplier,1.5 diff --git a/Lib9c/TableCSV/Item/CostumeItemSheet.csv b/Lib9c/TableCSV/Item/CostumeItemSheet.csv index cfdc8f855..61de4a65d 100644 --- a/Lib9c/TableCSV/Item/CostumeItemSheet.csv +++ b/Lib9c/TableCSV/Item/CostumeItemSheet.csv @@ -106,6 +106,7 @@ _spine_resource_path,`Title`: ``,,,, 49900016,Hel's worrior,Title,5,Normal, 49900017,Rune Master,Title,5,Normal, 49900018,Ruby Guardian,Title,5,Normal, -49900019,Great Adventurer 8,Title,5,Normal, +49900019,Hot Summer,Title,5,Normal, 49900020,Great Adventurer 9,Title,5,Normal, -49900021,Great Adventurer 10,Title,5,Normal, \ No newline at end of file +49900021,Great Adventurer 10,Title,5,Normal, +49900022,YGG Event,Title,5,Normal, \ No newline at end of file diff --git a/Lib9c/TableCSV/Item/CostumeStatSheet.csv b/Lib9c/TableCSV/Item/CostumeStatSheet.csv index adb4b7824..3dbb130d5 100644 --- a/Lib9c/TableCSV/Item/CostumeStatSheet.csv +++ b/Lib9c/TableCSV/Item/CostumeStatSheet.csv @@ -66,8 +66,8 @@ id,costume_id,stat_type,stat 65,49900017,DEF,10430 66,49900018,HP,63114 67,49900018,SPD,20872 -68,49900019,HP,52148 -69,49900019,ATK,2227 +68,49900019,SPD,34993 +69,49900019,ATK,5869 70,49900020,HP,54632 71,49900020,ATK,2333 72,49900021,HP,57115 @@ -77,4 +77,6 @@ id,costume_id,stat_type,stat 76,40100027,ATK,5000 77,40100027,DEF,5000 78,40100030,HP,100000 -79,40100030,SPD,25000 \ No newline at end of file +79,40100030,SPD,25000 +80,49900022,ATK,3333 +81,49900022,DEF,6666 \ No newline at end of file diff --git a/Lib9c/TableCSV/Item/EquipmentItemOptionSheet.csv b/Lib9c/TableCSV/Item/EquipmentItemOptionSheet.csv index 1cea758e0..b168dd3e5 100644 --- a/Lib9c/TableCSV/Item/EquipmentItemOptionSheet.csv +++ b/Lib9c/TableCSV/Item/EquipmentItemOptionSheet.csv @@ -2118,4 +2118,76 @@ id,stat_type,stat_min,stat_max,skill_id,skill_damage_min,skill_damage_max,skill_ 1065000713,,,,700013,25,25,30,30,,, 1066000011,ATK,47434,71151,,,,,,,, 1066000012,HP,216706,325058,,,,,,,, -1066000013,,,,700014,30,30,30,30,,, \ No newline at end of file +1066000013,,,,700014,30,30,30,30,,, +1073000011,,,,210013,,,8,8,,, +1073000012,ATK,4079,12238,,,,,,,, +1073000013,ATK,3569,10708,,,,,,,, +1073000014,ATK,2549,7648,,,,,,,, +1073000114,HIT,5020,15060,,,,,,,, +1073000214,SPD,2682,8046,,,,,,,, +1073000311,,,,220009,,,8,8,,, +1073000312,DEF,3013,9040,,,,,,,, +1073000313,DEF,2636,7910,,,,,,,, +1073000314,DEF,1883,5650,,,,,,,, +1073000414,HIT,5020,15060,,,,,,,, +1073000514,SPD,2682,8046,,,,,,,, +1073000611,,,,250008,,,8,8,,, +1073000612,SPD,4291,12874,,,,,,,, +1073000613,SPD,3755,11265,,,,,,,, +1073000614,ATK,2549,7648,,,,,,,, +1073000714,DEF,1883,5650,,,,,,,, +1073000814,SPD,2682,8046,,,,,,,, +1074000011,,,,210014,,,8,8,,, +1074000012,ATK,6878,20633,,,,,,,, +1074000013,ATK,6018,18054,,,,,,,, +1074000014,ATK,4298,12896,,,,,,,, +1074000114,HIT,8464,25392,,,,,,,, +1074000214,SPD,4522,13567,,,,,,,, +1074000311,,,,220010,,,8,8,,, +1074000312,DEF,5080,15242,,,,,,,, +1074000313,DEF,4445,13336,,,,,,,, +1074000314,DEF,3175,9526,,,,,,,, +1074000414,HIT,8464,25392,,,,,,,, +1074000514,SPD,4522,13567,,,,,,,, +1074000611,,,,250009,,,8,8,,, +1074000612,SPD,7236,21707,,,,,,,, +1074000613,SPD,6331,18994,,,,,,,, +1074000614,ATK,4298,12896,,,,,,,, +1074000714,DEF,3175,9526,,,,,,,, +1074000814,SPD,4522,13567,,,,,,,, +1075000011,,,,210015,,,8,8,,, +1075000012,ATK,11384,34152,,,,,,,, +1075000013,ATK,9961,29883,,,,,,,, +1075000014,ATK,7115,21345,,,,,,,, +1075000114,HIT,14009,42028,,,,,,,, +1075000214,SPD,7485,22456,,,,,,,, +1075000311,,,,220011,,,8,8,,, +1075000312,DEF,8409,25227,,,,,,,, +1075000313,DEF,9267,27804,,,,,,,, +1075000314,DEF,10048,30147,,,,,,,, +1075000414,HIT,14009,42028,,,,,,,, +1075000514,SPD,7485,22456,,,,,,,, +1075000611,,,,250010,,,8,8,,, +1075000612,SPD,11976,35929,,,,,,,, +1075000613,SPD,10479,31438,,,,,,,, +1075000614,ATK,7115,21345,,,,,,,, +1075000714,DEF,9081,27245,,,,,,,, +1075000814,SPD,7485,22456,,,,,,,, +1076000011,,,,210015,,,8,8,,, +1076000012,ATK,18973,56920,,,,,,,, +1076000013,ATK,16601,31438,,,,,,,, +1076000014,ATK,11858,35575,,,,,,,, +1076000114,HIT,23349,70047,,,,,,,, +1076000214,SPD,12475,37426,,,,,,,, +1076000311,,,,220011,,,8,8,,, +1076000312,DEF,14015,42046,,,,,,,, +1076000313,DEF,12263,36790,,,,,,,, +1076000314,DEF,8759,26278,,,,,,,, +1076000414,HIT,23349,70047,,,,,,,, +1076000514,SPD,12475,37426,,,,,,,, +1076000611,,,,250010,,,8,8,,, +1076000612,SPD,19961,59882,,,,,,,, +1076000613,SPD,17466,52397,,,,,,,, +1076000614,ATK,11858,22456,,,,,,,, +1076000714,DEF,8759,26278,,,,,,,, +1076000814,SPD,12475,37426,,,,,,,, \ No newline at end of file diff --git a/Lib9c/TableCSV/Item/EquipmentItemRecipeSheet.csv b/Lib9c/TableCSV/Item/EquipmentItemRecipeSheet.csv index 3b1d33f4d..3c8114d3a 100644 --- a/Lib9c/TableCSV/Item/EquipmentItemRecipeSheet.csv +++ b/Lib9c/TableCSV/Item/EquipmentItemRecipeSheet.csv @@ -1,96 +1,96 @@ id,result_equipment_id,material_id,material_count,required_action_point,required_gold,required_block_index,unlock_stage,sub_recipe_id,sub_recipe_id_2,sub_recipe_id_3,required_crystal,item_sub_type -1,10110000,303000,2,0,0,3,3,373,374,,0,Weapon -5,10114000,303000,12,0,0,333,99,10,11,,64,Weapon -6,10120000,303001,4,0,0,25,27,376,377,,8,Weapon -10,10124000,303001,24,0,0,2800,174,22,23,,22560,Weapon -14,10133000,303002,27,0,0,2800,190,31,32,,41040,Weapon -15,10134000,303002,47,0,0,3500,204,34,35,,167040,Weapon -18,10132001,303002,21,0,0,2800,154,40,41,,32040,Weapon -19,10133001,303002,61,0,0,3500,220,43,44,,216180,Weapon -20,10134001,303002,73,0,0,3500,236,46,47,,495900,Weapon -21,10140000,303003,120,0,0,4200,299,101400001,101400002,,1404000,Weapon -22,10141000,303003,120,0,0,4200,255,101410001,101410002,,1532100,Weapon -23,10142000,303003,120,0,0,4200,265,101420001,101420002,,1532100,Weapon -24,10143000,303003,120,0,0,4200,277,101430001,101430002,,1532100,Weapon -25,10144000,303003,120,0,0,4200,290,101440001,101440002,,1532100,Weapon -26,10150000,303004,240,0,0,4200,330,101500001,101500002,,500000,Weapon -27,10151000,303004,240,0,0,4200,305,101510001,101510002,,500000,Weapon -28,10152000,303004,240,0,0,4200,305,101520001,101520002,101520003,500000,Weapon -29,10153000,303004,240,0,0,4200,330,101530001,101530002,,500000,Weapon -30,10154000,303004,240,0,0,4200,330,101540001,101540002,101540003,500000,Weapon -43,10211000,303100,2,0,0,3,13,97,98,,2,Armor -46,10214000,303100,14,0,0,753,108,106,107,,742,Armor -49,10222000,303101,7,0,0,84,45,112,113,,11,Armor -51,10224000,303101,26,0,0,2800,182,118,119,,23920,Armor -55,10233000,303102,40,0,0,3500,201,127,128,,140400,Armor -56,10234000,303102,52,0,0,3500,208,130,131,,182520,Armor -57,10230001,303102,20,0,0,1276,146,409,410,,9600,Armor -58,10231001,303102,22,0,0,2800,158,133,134,,33000,Armor -59,10232001,303102,23,0,0,2800,166,136,137,,35040,Armor -60,10233001,303102,67,0,0,3500,228,139,140,,455400,Armor -62,10240000,303103,120,0,0,4200,294,102400001,102400002,,1166700,Armor -63,10241000,303103,120,0,0,4200,261,102410001,102410002,,1173660,Armor -64,10242000,303103,120,0,0,4200,270,102420001,102420002,,1188720,Armor -65,10243000,303103,120,0,0,4200,280,102430001,102430002,,1345500,Armor -66,10244000,303103,120,0,0,4200,287,102440001,102440002,,1345500,Armor -67,10250001,303104,240,0,0,4200,335,102500011,102500012,,500000,Armor -68,10251001,303104,240,0,0,4200,315,102510011,102510012,,500000,Armor -69,10252001,303104,240,0,0,4200,315,102520011,102520012,102520013,1000000,Armor -70,10253001,303104,240,0,0,4200,335,102530011,102530012,,1000000,Armor -71,10254001,303104,240,0,0,4200,335,102540011,102540012,102540013,1000000,Armor -87,10314000,303200,18,0,0,1092,134,202,203,,954,Belt -91,10323000,303201,22,0,0,2800,162,211,212,,2992,Belt -92,10324000,303201,45,0,0,3500,203,214,215,,122220,Belt -94,10331000,303202,11,0,0,287,90,217,218,,387,Belt -97,10334000,303202,150,0,0,3500,251,226,227,,737100,Belt -101,10343000,303203,76,0,0,3500,240,235,236,,1128600,Belt -103,10350000,303203,120,0,0,4200,296,103500001,103500002,,2177800,Belt -104,10351000,303203,120,0,0,4200,260,103510001,103510002,,2347000,Belt -105,10352000,303203,120,0,0,4200,269,103520001,103520002,,2395600,Belt -106,10353000,303203,120,0,0,4200,278,103530001,103530002,,2441500,Belt -107,10354000,303203,120,0,0,4200,287,103540001,103540002,,2638900,Belt -111,10413000,303300,15,0,0,257,84,259,260,,32,Necklace -116,10423000,303301,25,0,0,2800,178,271,272,,3472,Necklace -117,10424000,303301,150,0,0,3500,202,274,275,,116880,Necklace -121,10433000,303302,55,0,0,3500,212,283,284,,195120,Necklace -122,10434000,303302,70,0,0,3500,232,286,287,,472500,Necklace -123,10440000,303303,77,0,0,3500,249,451,452,,729000,Necklace -128,10450000,303303,120,0,0,4200,293,104500001,104500002,,2361400,Necklace -129,10451000,303303,120,0,0,4200,255,104510001,104510002,,2536000,Necklace -130,10452000,303303,120,0,0,4200,264,104520001,104520002,,2584600,Necklace -131,10453000,303303,120,0,0,4200,274,104530001,104530002,,2630500,Necklace -132,10454000,303303,120,0,0,4200,284,104540001,104540002,,2889100,Necklace -133,10510000,303400,2,0,0,3,17,457,458,,1,Ring -137,10514000,303400,24,0,0,2800,170,322,323,,2544,Ring -139,10521000,303401,9,0,0,136,57,325,326,,22,Ring -141,10523000,303401,28,0,0,2800,198,331,332,,3808,Ring -142,10524000,303401,49,0,0,3500,205,334,335,,132900,Ring -144,10531000,303402,16,0,0,894,120,337,338,,5568,Ring -146,10533000,303402,64,0,0,3500,224,343,344,,748800,Ring -147,10534000,303402,76,0,0,3500,243,346,347,,889200,Ring -148,10540000,303403,120,0,0,4200,298,105400001,105400002,,1170000,Ring -149,10541000,303403,120,0,0,4200,258,105410001,105410002,,1160400,Ring -150,10542000,303403,120,0,0,4200,268,105420001,105420002,,1160760,Ring -151,10543000,303403,120,0,0,4200,275,105430001,105430002,,1340700,Ring -152,10544000,303403,120,0,0,4200,285,105440001,105440002,,1340700,Ring -153,10550000,303404,240,0,0,4200,340,105500001,105500002,,500000,Ring -154,10551000,303404,240,0,0,4200,325,105510001,105510002,,500000,Ring -155,10552000,303404,240,0,0,4200,325,105520001,105520002,105520003,1000000,Ring -156,10553000,303404,240,0,0,4200,340,105530001,105530002,,1000000,Ring -157,10554000,303404,240,0,0,4200,340,105540001,105540002,105540003,1000000,Ring -158,12001001,600101,100,0,0,7,999,120010011,120010012,,0,Belt -159,12001002,600101,100,0,0,7,999,120010021,120010022,,0,Necklace -160,12001003,600101,50,0,0,7,999,120010031,120010032,,0,Ring -161,10350001,303204,240,0,0,4200,330,103500011,103500012,,500000,Belt -162,10351001,303204,240,0,0,4200,310,103510011,103510012,,500000,Belt -163,10352001,303204,240,0,0,4200,310,103520011,103520012,103520013,1000000,Belt -164,10353001,303204,240,0,0,4200,330,103530011,103530012,,1000000,Belt -165,10354001,303204,240,0,0,4200,330,103540011,103540012,103540013,1000000,Belt -166,10450001,303304,240,0,0,4200,335,104500011,104500012,,500000,Necklace -167,10451001,303304,240,0,0,4200,320,104510011,104510012,,500000,Necklace -168,10452001,303304,240,0,0,4200,320,104520011,104520012,104520013,1000000,Necklace -169,10453001,303304,240,0,0,4200,335,104530011,104530012,,1000000,Necklace -170,10454001,303304,240,0,0,4200,335,104540011,104540012,104540013,1000000,Necklace +1,10110000,303000,2,0,0,5,3,373,374,,0,Weapon +5,10114000,303000,12,0,0,477,99,10,11,,64,Weapon +6,10120000,303001,4,0,0,37,27,376,377,,8,Weapon +10,10124000,303001,24,0,0,4000,174,22,23,,22560,Weapon +14,10133000,303002,27,0,0,4000,190,31,32,,41040,Weapon +15,10134000,303002,47,0,0,5000,204,34,35,,167040,Weapon +18,10132001,303002,21,0,0,4000,154,40,41,,32040,Weapon +19,10133001,303002,61,0,0,5000,220,43,44,,216180,Weapon +20,10134001,303002,73,0,0,5000,236,46,47,,495900,Weapon +21,10140000,303003,100,0,0,6000,299,101400001,101400002,,500000,Weapon +22,10141000,303003,60,0,0,6000,255,101410001,101410002,,500000,Weapon +23,10142000,303003,60,0,0,6000,265,101420001,101420002,,500000,Weapon +24,10143000,303003,80,0,0,6000,277,101430001,101430002,,500000,Weapon +25,10144000,303003,80,0,0,6000,290,101440001,101440002,,500000,Weapon +26,10150000,303004,120,0,0,6000,330,101500001,101500002,,500000,Weapon +27,10151000,303004,120,0,0,6000,305,101510001,101510002,,500000,Weapon +28,10152000,303004,120,0,0,6000,305,101520001,101520002,101520003,500000,Weapon +29,10153000,303004,120,0,0,6000,330,101530001,101530002,,500000,Weapon +30,10154000,303004,120,0,0,6000,330,101540001,101540002,101540003,500000,Weapon +43,10211000,303100,2,0,0,5,13,97,98,,2,Armor +46,10214000,303100,14,0,0,1076,108,106,107,,742,Armor +49,10222000,303101,7,0,0,120,45,112,113,,11,Armor +51,10224000,303101,26,0,0,4000,182,118,119,,23920,Armor +55,10233000,303102,40,0,0,5000,201,127,128,,140400,Armor +56,10234000,303102,52,0,0,5000,208,130,131,,182520,Armor +57,10230001,303102,20,0,0,1824,146,409,410,,9600,Armor +58,10231001,303102,22,0,0,4000,158,133,134,,33000,Armor +59,10232001,303102,23,0,0,4000,166,136,137,,35040,Armor +60,10233001,303102,67,0,0,5000,228,139,140,,455400,Armor +62,10240000,303103,100,0,0,6000,294,102400001,102400002,,500000,Armor +63,10241000,303103,60,0,0,6000,261,102410001,102410002,,500000,Armor +64,10242000,303103,60,0,0,6000,270,102420001,102420002,,500000,Armor +65,10243000,303103,80,0,0,6000,280,102430001,102430002,,500000,Armor +66,10244000,303103,80,0,0,6000,287,102440001,102440002,,500000,Armor +67,10250001,303104,120,0,0,6000,335,102500011,102500012,,500000,Armor +68,10251001,303104,120,0,0,6000,315,102510011,102510012,,500000,Armor +69,10252001,303104,120,0,0,6000,315,102520011,102520012,102520013,1000000,Armor +70,10253001,303104,120,0,0,6000,335,102530011,102530012,,1000000,Armor +71,10254001,303104,120,0,0,6000,335,102540011,102540012,102540013,1000000,Armor +87,10314000,303200,18,0,0,1560,134,202,203,,954,Belt +91,10323000,303201,22,0,0,4000,162,211,212,,2992,Belt +92,10324000,303201,45,0,0,5000,203,214,215,,122220,Belt +94,10331000,303202,11,0,0,410,90,217,218,,387,Belt +97,10334000,303202,150,0,0,5000,251,226,227,,737100,Belt +101,10343000,303203,76,0,0,5000,240,235,236,,1128600,Belt +103,10350000,303203,100,0,0,6000,296,103500001,103500002,,500000,Belt +104,10351000,303203,60,0,0,6000,260,103510001,103510002,,500000,Belt +105,10352000,303203,60,0,0,6000,269,103520001,103520002,,500000,Belt +106,10353000,303203,80,0,0,6000,278,103530001,103530002,,500000,Belt +107,10354000,303203,80,0,0,6000,287,103540001,103540002,,500000,Belt +111,10413000,303300,15,0,0,368,84,259,260,,32,Necklace +116,10423000,303301,25,0,0,4000,178,271,272,,3472,Necklace +117,10424000,303301,150,0,0,5000,202,274,275,,116880,Necklace +121,10433000,303302,55,0,0,5000,212,283,284,,195120,Necklace +122,10434000,303302,70,0,0,5000,232,286,287,,472500,Necklace +123,10440000,303303,77,0,0,5000,249,451,452,,729000,Necklace +128,10450000,303303,100,0,0,6000,293,104500001,104500002,,500000,Necklace +129,10451000,303303,60,0,0,6000,255,104510001,104510002,,500000,Necklace +130,10452000,303303,60,0,0,6000,264,104520001,104520002,,500000,Necklace +131,10453000,303303,80,0,0,6000,274,104530001,104530002,,500000,Necklace +132,10454000,303303,80,0,0,6000,284,104540001,104540002,,500000,Necklace +133,10510000,303400,2,0,0,5,17,457,458,,1,Ring +137,10514000,303400,24,0,0,4000,170,322,323,,2544,Ring +139,10521000,303401,9,0,0,195,57,325,326,,22,Ring +141,10523000,303401,28,0,0,4000,198,331,332,,3808,Ring +142,10524000,303401,49,0,0,5000,205,334,335,,132900,Ring +144,10531000,303402,16,0,0,1278,120,337,338,,5568,Ring +146,10533000,303402,64,0,0,5000,224,343,344,,748800,Ring +147,10534000,303402,76,0,0,5000,243,346,347,,889200,Ring +148,10540000,303403,100,0,0,6000,298,105400001,105400002,,500000,Ring +149,10541000,303403,60,0,0,6000,258,105410001,105410002,,500000,Ring +150,10542000,303403,60,0,0,6000,268,105420001,105420002,,500000,Ring +151,10543000,303403,80,0,0,6000,275,105430001,105430002,,500000,Ring +152,10544000,303403,80,0,0,6000,285,105440001,105440002,,500000,Ring +153,10550000,303404,120,0,0,6000,340,105500001,105500002,,500000,Ring +154,10551000,303404,120,0,0,6000,325,105510001,105510002,,500000,Ring +155,10552000,303404,120,0,0,6000,325,105520001,105520002,105520003,1000000,Ring +156,10553000,303404,120,0,0,6000,340,105530001,105530002,,1000000,Ring +157,10554000,303404,120,0,0,6000,340,105540001,105540002,105540003,1000000,Ring +158,12001001,600101,100,0,0,10,999,120010011,120010012,,0,Belt +159,12001002,600101,100,0,0,10,999,120010021,120010022,,0,Necklace +160,12001003,600101,50,0,0,10,999,120010031,120010032,,0,Ring +161,10350001,303204,120,0,0,6000,330,103500011,103500012,,500000,Belt +162,10351001,303204,120,0,0,6000,310,103510011,103510012,,500000,Belt +163,10352001,303204,120,0,0,6000,310,103520011,103520012,103520013,1000000,Belt +164,10353001,303204,120,0,0,6000,330,103530011,103530012,,1000000,Belt +165,10354001,303204,120,0,0,6000,330,103540011,103540012,103540013,1000000,Belt +166,10450001,303304,120,0,0,6000,335,104500011,104500012,,500000,Necklace +167,10451001,303304,120,0,0,6000,320,104510011,104510012,,500000,Necklace +168,10452001,303304,120,0,0,6000,320,104520011,104520012,104520013,1000000,Necklace +169,10453001,303304,120,0,0,6000,335,104530011,104530012,,1000000,Necklace +170,10454001,303304,120,0,0,6000,335,104540011,104540012,104540013,1000000,Necklace 171,10610000,0,0,0,0,10000000,999,106100001,,,0,Aura 172,10620000,0,0,0,0,10000000,999,106200001,,,0,Aura 173,10630000,0,0,0,0,10000000,999,106300001,,,0,Aura @@ -109,31 +109,67 @@ id,result_equipment_id,material_id,material_count,required_action_point,required 186,10640003,0,0,0,0,10000000,999,106400031,,,0,Aura 187,10650005,0,0,0,0,10000000,999,106500051,,,0,Aura 188,10650006,0,0,0,0,10000000,999,106500061,,,0,Aura -189,10150001,303005,500,0,0,7560,380,101500011,101500012,,5000000,Weapon -190,10151001,303005,500,0,0,7560,355,101510011,101510012,,5000000,Weapon -191,10152001,303005,500,0,0,7560,355,101520011,101520012,101520013,5000000,Weapon -192,10153001,303005,500,0,0,7560,380,101530011,101530012,,5000000,Weapon -193,10154001,303005,500,0,0,7560,400,101540011,101540012,101540013,5000000,Weapon -194,10250000,303105,500,0,0,7560,385,102500001,102500002,,5000000,Armor -195,10251000,303105,500,0,0,7560,365,102510001,102510002,,5000000,Armor -196,10252000,303105,500,0,0,7560,365,102520001,102520002,102520003,5000000,Armor -197,10253000,303105,500,0,0,7560,385,102530001,102530002,,5000000,Armor -198,10254000,303105,500,0,0,7560,398,102540001,102540002,102540003,5000000,Armor -199,10350002,303205,500,0,0,7560,380,103500021,103500022,,5000000,Belt -200,10351002,303205,500,0,0,7560,360,103510021,103510022,,5000000,Belt -201,10352002,303205,500,0,0,7560,360,103520021,103520022,103520023,5000000,Belt -202,10353002,303205,500,0,0,7560,380,103530021,103530022,,5000000,Belt -203,10354002,303205,500,0,0,7560,392,103540021,103540022,103540023,5000000,Belt -204,10450002,303305,500,0,0,7560,385,104500021,104500022,,5000000,Necklace -205,10451002,303305,500,0,0,7560,370,104510021,104510022,,5000000,Necklace -206,10452002,303305,500,0,0,7560,370,104520021,104520022,104520023,5000000,Necklace -207,10453002,303305,500,0,0,7560,385,104530021,104530022,,5000000,Necklace -208,10454002,303305,500,0,0,7560,394,104540021,104540022,104540023,5000000,Necklace -209,10550001,303405,500,0,0,7560,390,105500011,105500012,,5000000,Ring -210,10551001,303405,500,0,0,7560,375,105510011,105510012,,5000000,Ring -211,10552001,303405,500,0,0,7560,375,105520011,105520012,105520013,5000000,Ring -212,10553001,303405,500,0,0,7560,390,105530011,105530012,,5000000,Ring -213,10554001,303405,500,0,0,7560,396,105540011,105540012,105540013,5000000,Ring +189,10150001,303005,150,0,0,10800,380,101500011,101500012,,2000000,Weapon +190,10151001,303005,150,0,0,10800,355,101510011,101510012,,2000000,Weapon +191,10152001,303005,150,0,0,10800,355,101520011,101520012,101520013,2000000,Weapon +192,10153001,303005,150,0,0,10800,380,101530011,101530012,,2000000,Weapon +193,10154001,303005,150,0,0,10800,400,101540011,101540012,101540013,2000000,Weapon +194,10250000,303105,150,0,0,10800,385,102500001,102500002,,2000000,Armor +195,10251000,303105,150,0,0,10800,365,102510001,102510002,,2000000,Armor +196,10252000,303105,150,0,0,10800,365,102520001,102520002,102520003,2000000,Armor +197,10253000,303105,150,0,0,10800,385,102530001,102530002,,2000000,Armor +198,10254000,303105,150,0,0,10800,398,102540001,102540002,102540003,2000000,Armor +199,10350002,303205,150,0,0,10800,380,103500021,103500022,,2000000,Belt +200,10351002,303205,150,0,0,10800,360,103510021,103510022,,2000000,Belt +201,10352002,303205,150,0,0,10800,360,103520021,103520022,103520023,2000000,Belt +202,10353002,303205,150,0,0,10800,380,103530021,103530022,,2000000,Belt +203,10354002,303205,150,0,0,10800,392,103540021,103540022,103540023,2000000,Belt +204,10450002,303305,150,0,0,10800,385,104500021,104500022,,2000000,Necklace +205,10451002,303305,150,0,0,10800,370,104510021,104510022,,2000000,Necklace +206,10452002,303305,150,0,0,10800,370,104520021,104520022,104520023,2000000,Necklace +207,10453002,303305,150,0,0,10800,385,104530021,104530022,,2000000,Necklace +208,10454002,303305,150,0,0,10800,394,104540021,104540022,104540023,2000000,Necklace +209,10550001,303405,150,0,0,10800,390,105500011,105500012,,2000000,Ring +210,10551001,303405,150,0,0,10800,375,105510011,105510012,,2000000,Ring +211,10552001,303405,150,0,0,10800,375,105520011,105520012,105520013,2000000,Ring +212,10553001,303405,150,0,0,10800,390,105530011,105530012,,2000000,Ring +213,10554001,303405,150,0,0,10800,396,105540011,105540012,105540013,2000000,Ring 214,10640004,0,0,0,0,10000000,999,106400041,,,0,Aura 215,10650007,0,0,0,0,10000000,999,106500071,,,0,Aura -216,10660000,0,0,0,0,10000000,999,106600001,,,0,Aura \ No newline at end of file +216,10660000,0,0,0,0,10000000,999,106600001,,,0,Aura +217,10730000,0,0,0,0,10000000,999,107300001,,,0,Grimoire +218,10730001,0,0,0,0,10000000,999,107300011,,,0,Grimoire +219,10730002,0,0,0,0,10000000,999,107300021,,,0,Grimoire +220,10730003,0,0,0,0,10000000,999,107300031,,,0,Grimoire +221,10730004,0,0,0,0,10000000,999,107300041,,,0,Grimoire +222,10730005,0,0,0,0,10000000,999,107300051,,,0,Grimoire +223,10730006,0,0,0,0,10000000,999,107300061,,,0,Grimoire +224,10730007,0,0,0,0,10000000,999,107300071,,,0,Grimoire +225,10730008,0,0,0,0,10000000,999,107300081,,,0,Grimoire +226,10740000,0,0,0,0,10000000,999,107400001,,,0,Grimoire +227,10740001,0,0,0,0,10000000,999,107400011,,,0,Grimoire +228,10740002,0,0,0,0,10000000,999,107400021,,,0,Grimoire +229,10740003,0,0,0,0,10000000,999,107400031,,,0,Grimoire +230,10740004,0,0,0,0,10000000,999,107400041,,,0,Grimoire +231,10740005,0,0,0,0,10000000,999,107400051,,,0,Grimoire +232,10740006,0,0,0,0,10000000,999,107400061,,,0,Grimoire +233,10740007,0,0,0,0,10000000,999,107400071,,,0,Grimoire +234,10740008,0,0,0,0,10000000,999,107400081,,,0,Grimoire +235,10750000,0,0,0,0,10000000,999,107500001,,,0,Grimoire +236,10750001,0,0,0,0,10000000,999,107500011,,,0,Grimoire +237,10750002,0,0,0,0,10000000,999,107500021,,,0,Grimoire +238,10750003,0,0,0,0,10000000,999,107500031,,,0,Grimoire +239,10750004,0,0,0,0,10000000,999,107500041,,,0,Grimoire +240,10750005,0,0,0,0,10000000,999,107500051,,,0,Grimoire +241,10750006,0,0,0,0,10000000,999,107500061,,,0,Grimoire +242,10750007,0,0,0,0,10000000,999,107500071,,,0,Grimoire +243,10750008,0,0,0,0,10000000,999,107500081,,,0,Grimoire +244,10760000,0,0,0,0,10000000,999,107600001,,,0,Grimoire +245,10760001,0,0,0,0,10000000,999,107600011,,,0,Grimoire +246,10760002,0,0,0,0,10000000,999,107600021,,,0,Grimoire +247,10760003,0,0,0,0,10000000,999,107600031,,,0,Grimoire +248,10760004,0,0,0,0,10000000,999,107600041,,,0,Grimoire +249,10760005,0,0,0,0,10000000,999,107600051,,,0,Grimoire +250,10760006,0,0,0,0,10000000,999,107600061,,,0,Grimoire +251,10760007,0,0,0,0,10000000,999,107600071,,,0,Grimoire +252,10760008,0,0,0,0,10000000,999,107600081,,,0,Grimoire \ No newline at end of file diff --git a/Lib9c/TableCSV/Item/EquipmentItemSheet.csv b/Lib9c/TableCSV/Item/EquipmentItemSheet.csv index 14d6fb001..4fd6b2c8d 100644 --- a/Lib9c/TableCSV/Item/EquipmentItemSheet.csv +++ b/Lib9c/TableCSV/Item/EquipmentItemSheet.csv @@ -20,11 +20,11 @@ id,_name,item_sub_type,grade,elemental_type,set_id,stat_type,stat_value,attack_r 10132001,Heavy Sword,Weapon,3,Water,13,ATK,196,2,10132001,3600 10133001,Heavy Sword,Weapon,3,Land,14,ATK,908,2,10133001,3600 10134001,Heavy Sword,Weapon,3,Wind,15,ATK,967,2,10134001,3600 -10140000,War Sword,Weapon,4,Normal,11,ATK,3094,2,10140000,75000 +10140000,War Sword,Weapon,4,Normal,11,ATK,3094,2,10140000,120000 10141000,War Sword,Weapon,4,Fire,12,ATK,1934,2,10141000,75000 -10142000,War Sword,Weapon,4,Water,13,ATK,2224,2,10142000,96000 +10142000,War Sword,Weapon,4,Water,13,ATK,2224,2,10142000,75000 10143000,War Sword,Weapon,4,Land,14,ATK,2514,2,10143000,96000 -10144000,War Sword,Weapon,4,Wind,15,ATK,2804,2,10144000,144000 +10144000,War Sword,Weapon,4,Wind,15,ATK,2804,2,10144000,96000 10150000,Dainsleif,Weapon,5,Normal,16,ATK,6063,2,10150000,2400000 10151000,Dainsleif,Weapon,5,Fire,17,ATK,4331,2,10151000,1800000 10152000,Dainsleif,Weapon,5,Water,18,ATK,4331,2,10152000,1800000 @@ -35,11 +35,11 @@ id,_name,item_sub_type,grade,elemental_type,set_id,stat_type,stat_value,attack_r 10142001,Asgardian Sword,Weapon,5,Water,13,ATK,798,2,10142001,2 10143001,Asgardian Sword,Weapon,5,Land,14,ATK,1221,2,10143001,2 10144001,Asgardian Sword,Weapon,5,Wind,15,ATK,1525,2,10144001,2 -10150001,Surt's Sword,Weapon,6,Normal,0,ATK,15473,2,10150001,12000000 -10151001,Surt's Sword,Weapon,6,Fire,0,ATK,11052,2,10151001,12000000 -10152001,Surt's Sword,Weapon,6,Water,0,ATK,11052,2,10152001,12000000 -10153001,Surt's Sword,Weapon,6,Land,0,ATK,15473,2,10153001,12000000 -10154001,Surt's Sword,Weapon,6,Wind,0,ATK,15473,2,10154001,12000000 +10150001,Surt's Sword,Weapon,6,Normal,0,ATK,15473,2,10150001,10000000 +10151001,Surt's Sword,Weapon,6,Fire,0,ATK,11052,2,10151001,10000000 +10152001,Surt's Sword,Weapon,6,Water,0,ATK,11052,2,10152001,10000000 +10153001,Surt's Sword,Weapon,6,Land,0,ATK,15473,2,10153001,10000000 +10154001,Surt's Sword,Weapon,6,Wind,0,ATK,15473,2,10154001,10000000 10155000,Valkyrie’s Sword,Weapon,5,Normal,15,ATK,2902,2,10155000,2 10200000,Ragged Clothes,Armor,0,Normal,0,HP,30,2,Character/Player/10200000,12 10210000,Casual Clothes,Armor,1,Normal,1,HP,180,2,Character/Player/10210000,5 @@ -62,21 +62,21 @@ id,_name,item_sub_type,grade,elemental_type,set_id,stat_type,stat_value,attack_r 10232001,Hermes' Clothes,Armor,3,Water,13,HP,3141,2,Character/Player/10232001,3600 10233001,Hermes' Clothes,Armor,3,Land,14,HP,11482,2,Character/Player/10233001,3600 10234001,Hermes' Clothes,Armor,3,Wind,15,HP,12302,2,Character/Player/10234001,3600 -10240000,War Armor,Armor,4,Normal,11,HP,34446,2,Character/Player/10240000,75000 +10240000,War Armor,Armor,4,Normal,11,HP,34446,2,Character/Player/10240000,120000 10241000,War Armor,Armor,4,Fire,12,HP,24604,2,Character/Player/10241000,75000 -10242000,War Armor,Armor,4,Water,13,HP,27064,2,Character/Player/10242000,96000 +10242000,War Armor,Armor,4,Water,13,HP,27064,2,Character/Player/10242000,75000 10243000,War Armor,Armor,4,Land,14,HP,29525,2,Character/Player/10243000,96000 -10244000,War Armor,Armor,4,Wind,15,HP,31985,2,Character/Player/10244000,144000 +10244000,War Armor,Armor,4,Wind,15,HP,31985,2,Character/Player/10244000,96000 10250001,Ancient Armor,Armor,5,Normal,11,HP,67513,2,Character/Player/10250001,2400000 10251001,Ancient Armor,Armor,5,Fire,12,HP,48224,2,Character/Player/10251001,1800000 10252001,Ancient Armor,Armor,5,Water,13,HP,48224,2,Character/Player/10252001,1800000 10253001,Ancient Armor,Armor,5,Land,14,HP,67513,2,Character/Player/10253001,2400000 10254001,Ancient Armor,Armor,5,Wind,15,HP,67513,2,Character/Player/10254001,2400000 -10250000,Surt's Armor,Armor,6,Normal,0,HP,172307,2,Character/Player/10250000,12000000 -10251000,Surt's Armor,Armor,6,Fire,0,HP,123076,2,Character/Player/10251000,12000000 -10252000,Surt's Armor,Armor,6,Water,0,HP,123076,2,Character/Player/10252000,12000000 -10253000,Surt's Armor,Armor,6,Land,0,HP,172307,2,Character/Player/10253000,12000000 -10254000,Surt's Armor,Armor,6,Wind,0,HP,172307,2,Character/Player/10254000,12000000 +10250000,Surt's Armor,Armor,6,Normal,0,HP,172307,2,Character/Player/10250000,10000000 +10251000,Surt's Armor,Armor,6,Fire,0,HP,123076,2,Character/Player/10251000,10000000 +10252000,Surt's Armor,Armor,6,Water,0,HP,123076,2,Character/Player/10252000,10000000 +10253000,Surt's Armor,Armor,6,Land,0,HP,172307,2,Character/Player/10253000,10000000 +10254000,Surt's Armor,Armor,6,Wind,0,HP,172307,2,Character/Player/10254000,10000000 10240001,Asgardian Armor,Armor,5,Normal,11,HP,10358,2,Character/Player/10240001,2 10241001,Asgardian Armor,Armor,5,Fire,12,HP,10571,2,Character/Player/10241001,2 10242001,Asgardian Armor,Armor,5,Water,13,HP,10783,2,Character/Player/10242001,2 @@ -103,11 +103,11 @@ id,_name,item_sub_type,grade,elemental_type,set_id,stat_type,stat_value,attack_r 10342000,War Belt,Belt,4,Water,13,SPD,2292,2,10342000,60000 10343000,War Belt,Belt,4,Land,14,SPD,2292,2,10343000,60000 10344000,War Belt,Belt,4,Wind,15,SPD,2292,2,10344000,33000 -10350000,Legendary Belt,Belt,4,Normal,11,SPD,7334,2,10350000,75000 +10350000,Legendary Belt,Belt,4,Normal,11,SPD,7334,2,10350000,120000 10351000,Legendary Belt,Belt,4,Fire,12,SPD,4584,2,10351000,75000 -10352000,Legendary Belt,Belt,4,Water,13,SPD,5272,2,10352000,96000 +10352000,Legendary Belt,Belt,4,Water,13,SPD,5272,2,10352000,75000 10353000,Legendary Belt,Belt,4,Land,14,SPD,5959,2,10353000,96000 -10354000,Legendary Belt,Belt,4,Wind,15,SPD,6647,2,10354000,120000 +10354000,Legendary Belt,Belt,4,Wind,15,SPD,6647,2,10354000,96000 10410000,Thin Necklace,Necklace,1,Normal,1,HIT,70,0,10410000,5 10411000,Thin Necklace,Necklace,1,Fire,2,HIT,81,0,10411000,5 10412000,Thin Necklace,Necklace,1,Water,3,HIT,99,0,10412000,5 @@ -128,11 +128,11 @@ id,_name,item_sub_type,grade,elemental_type,set_id,stat_type,stat_value,attack_r 10442000,Warrior's Necklace,Necklace,4,Water,13,HIT,3047,0,10442000,75000 10443000,Warrior's Necklace,Necklace,4,Land,14,HIT,3047,0,10443000,75000 10444000,Warrior's Necklace,Necklace,4,Wind,15,HIT,3047,0,10444000,75000 -10450000,Legendary Necklace,Necklace,4,Normal,11,HIT,7466,0,10450000,60000 -10451000,Legendary Necklace,Necklace,4,Fire,12,HIT,4666,0,10451000,60000 -10452000,Legendary Necklace,Necklace,4,Water,13,HIT,5366,0,10452000,96000 +10450000,Legendary Necklace,Necklace,4,Normal,11,HIT,7466,0,10450000,120000 +10451000,Legendary Necklace,Necklace,4,Fire,12,HIT,4666,0,10451000,75000 +10452000,Legendary Necklace,Necklace,4,Water,13,HIT,5366,0,10452000,75000 10453000,Legendary Necklace,Necklace,4,Land,14,HIT,6066,0,10453000,96000 -10454000,Legendary Necklace,Necklace,4,Wind,15,HIT,6766,0,10454000,120000 +10454000,Legendary Necklace,Necklace,4,Wind,15,HIT,6766,0,10454000,96000 10510000,Thin Ring,Ring,1,Normal,1,DEF,8,0,10510000,5 10511000,Thin Ring,Ring,1,Fire,2,DEF,9,0,10511000,5 10512000,Thin Ring,Ring,1,Water,3,DEF,11,0,10512000,5 @@ -148,11 +148,11 @@ id,_name,item_sub_type,grade,elemental_type,set_id,stat_type,stat_value,attack_r 10532000,Mana Ring,Ring,3,Water,13,DEF,74,0,10532000,1200 10533000,Mana Ring,Ring,3,Land,14,DEF,251,0,10533000,3600 10534000,Mana Ring,Ring,3,Wind,15,DEF,270,0,10534000,3600 -10540000,Warrior's Ring,Ring,4,Normal,11,DEF,864,0,10540000,60000 -10541000,Warrior's Ring,Ring,4,Fire,12,DEF,540,0,10541000,60000 -10542000,Warrior's Ring,Ring,4,Water,13,DEF,621,0,10542000,96000 +10540000,Warrior's Ring,Ring,4,Normal,11,DEF,864,0,10540000,120000 +10541000,Warrior's Ring,Ring,4,Fire,12,DEF,540,0,10541000,75000 +10542000,Warrior's Ring,Ring,4,Water,13,DEF,621,0,10542000,75000 10543000,Warrior's Ring,Ring,4,Land,14,DEF,702,0,10543000,96000 -10544000,Warrior's Ring,Ring,4,Wind,15,DEF,783,0,10544000,120000 +10544000,Warrior's Ring,Ring,4,Wind,15,DEF,783,0,10544000,96000 10550000,Ancient Ring,Ring,5,Normal,11,DEF,1946,0,10550000,2400000 10551000,Ancient Ring,Ring,5,Fire,12,DEF,1209,0,10551000,1800000 10552000,Ancient Ring,Ring,5,Water,13,DEF,1209,0,10552000,1800000 @@ -193,25 +193,60 @@ id,_name,item_sub_type,grade,elemental_type,set_id,stat_type,stat_value,attack_r 10640003,Barrage Aura,Aura,4,Normal,0,ATK,10,0,10620001,6000 10650005,Barrage Aura,Aura,5,Normal,0,ATK,10,0,10620001,60000 10650006,Lord's Barrage Aura,Aura,5,Normal,0,ATK,10,0,10620001,60000 -10350002,Surt's Belt,Belt,6,Normal,0,SPD,55024,2,10350002,12000000 -10351002,Surt's Belt,Belt,6,Fire,0,SPD,39303,2,10351002,12000000 -10352002,Surt's Belt,Belt,6,Water,0,SPD,39303,2,10352002,12000000 -10353002,Surt's Belt,Belt,6,Land,0,SPD,55024,2,10353002,12000000 -10354002,Surt's Belt,Belt,6,Wind,0,SPD,55024,2,10354002,12000000 -10450002,Surt's Necklace,Necklace,6,Normal,0,HIT,39208,0,10450002,12000000 -10451002,Surt's Necklace,Necklace,6,Fire,0,HIT,28006,0,10451002,12000000 -10452002,Surt's Necklace,Necklace,6,Water,0,HIT,28006,0,10452002,12000000 -10453002,Surt's Necklace,Necklace,6,Land,0,HIT,39208,0,10453002,12000000 -10454002,Surt's Necklace,Necklace,6,Wind,0,HIT,39208,0,10454002,12000000 -10550001,Surt's Ring,Ring,6,Normal,0,DEF,9748,0,10550001,12000000 -10551001,Surt's Ring,Ring,6,Fire,0,DEF,6963,0,10551001,12000000 -10552001,Surt's Ring,Ring,6,Water,0,DEF,6963,0,10552001,12000000 -10553001,Surt's Ring,Ring,6,Land,0,DEF,9748,0,10553001,12000000 -10554001,Surt's Ring,Ring,6,Wind,0,DEF,9748,0,10554001,12000000 +10350002,Surt's Belt,Belt,6,Normal,0,SPD,55024,2,10350002,10000000 +10351002,Surt's Belt,Belt,6,Fire,0,SPD,39303,2,10351002,10000000 +10352002,Surt's Belt,Belt,6,Water,0,SPD,39303,2,10352002,10000000 +10353002,Surt's Belt,Belt,6,Land,0,SPD,55024,2,10353002,10000000 +10354002,Surt's Belt,Belt,6,Wind,0,SPD,55024,2,10354002,10000000 +10450002,Surt's Necklace,Necklace,6,Normal,0,HIT,39208,0,10450002,10000000 +10451002,Surt's Necklace,Necklace,6,Fire,0,HIT,28006,0,10451002,10000000 +10452002,Surt's Necklace,Necklace,6,Water,0,HIT,28006,0,10452002,10000000 +10453002,Surt's Necklace,Necklace,6,Land,0,HIT,39208,0,10453002,10000000 +10454002,Surt's Necklace,Necklace,6,Wind,0,HIT,39208,0,10454002,10000000 +10550001,Surt's Ring,Ring,6,Normal,0,DEF,9748,0,10550001,10000000 +10551001,Surt's Ring,Ring,6,Fire,0,DEF,6963,0,10551001,10000000 +10552001,Surt's Ring,Ring,6,Water,0,DEF,6963,0,10552001,10000000 +10553001,Surt's Ring,Ring,6,Land,0,DEF,9748,0,10553001,10000000 +10554001,Surt's Ring,Ring,6,Wind,0,DEF,9748,0,10554001,10000000 10640004,Ymir Aura,Aura,4,Normal,0,ATK,10,0,10620001,6000 10650007,Ymir Aura,Aura,5,Normal,0,ATK,10,0,10620001,60000 10660000,Ymir Aura,Aura,6,Normal,0,ATK,10,0,10620001,130000 -10710000,Nimble Grimoire,Grimoire,1,Normal,0,HIT,310,0,10610000,2 +10730000,공격의 그리모어 (A),Grimoire,3,Normal,0,ATK,10,0,10730000,600 +10730001,공격의 그리모어 (H),Grimoire,3,Normal,0,ATK,10,0,10730001,600 +10730002,공격의 그리모어 (S),Grimoire,3,Normal,0,ATK,10,0,10730002,600 +10730003,방어의 그리모어 (D),Grimoire,3,Normal,0,DEF,10,0,10730003,600 +10730004,방어의 그리모어 (H),Grimoire,3,Normal,0,DEF,10,0,10730004,600 +10730005,방어의 그리모어 (S),Grimoire,3,Normal,0,DEF,10,0,10730005,600 +10730006,기능의 그리모어 (A),Grimoire,3,Normal,0,SPD,10,0,10730006,600 +10730007,기능의 그리모어 (D),Grimoire,3,Normal,0,SPD,10,0,10730007,600 +10730008,기능의 그리모어 (S),Grimoire,3,Normal,0,SPD,10,0,10730008,600 +10740000,공격의 그리모어 (A),Grimoire,4,Normal,0,ATK,10,0,10740000,6000 +10740001,공격의 그리모어 (H),Grimoire,4,Normal,0,ATK,10,0,10740001,6000 +10740002,공격의 그리모어 (S),Grimoire,4,Normal,0,ATK,10,0,10740002,6000 +10740003,방어의 그리모어 (D),Grimoire,4,Normal,0,DEF,10,0,10740003,6000 +10740004,방어의 그리모어 (H),Grimoire,4,Normal,0,DEF,10,0,10740004,6000 +10740005,방어의 그리모어 (S),Grimoire,4,Normal,0,DEF,10,0,10740005,6000 +10740006,기능의 그리모어 (A),Grimoire,4,Normal,0,SPD,10,0,10740006,6000 +10740007,기능의 그리모어 (D),Grimoire,4,Normal,0,SPD,10,0,10740007,6000 +10740008,기능의 그리모어 (S),Grimoire,4,Normal,0,SPD,10,0,10740008,6000 +10750000,공격의 그리모어 (A),Grimoire,5,Normal,0,ATK,10,0,10750000,60000 +10750001,공격의 그리모어 (H),Grimoire,5,Normal,0,ATK,10,0,10750001,60000 +10750002,공격의 그리모어 (S),Grimoire,5,Normal,0,ATK,10,0,10750002,60000 +10750003,방어의 그리모어 (D),Grimoire,5,Normal,0,DEF,10,0,10750003,60000 +10750004,방어의 그리모어 (H),Grimoire,5,Normal,0,DEF,10,0,10750004,60000 +10750005,방어의 그리모어 (S),Grimoire,5,Normal,0,DEF,10,0,10750005,60000 +10750006,기능의 그리모어 (A),Grimoire,5,Normal,0,SPD,10,0,10750006,60000 +10750007,기능의 그리모어 (D),Grimoire,5,Normal,0,SPD,10,0,10750007,60000 +10750008,기능의 그리모어 (S),Grimoire,5,Normal,0,SPD,10,0,10750008,60000 +10760000,공격의 그리모어 (A),Grimoire,6,Normal,0,ATK,10,0,10760000,130000 +10760001,공격의 그리모어 (H),Grimoire,6,Normal,0,ATK,10,0,10760001,130000 +10760002,공격의 그리모어 (S),Grimoire,6,Normal,0,ATK,10,0,10760002,130000 +10760003,방어의 그리모어 (D),Grimoire,6,Normal,0,DEF,10,0,10760003,130000 +10760004,방어의 그리모어 (H),Grimoire,6,Normal,0,DEF,10,0,10760004,130000 +10760005,방어의 그리모어 (S),Grimoire,6,Normal,0,DEF,10,0,10760005,130000 +10760006,기능의 그리모어 (A),Grimoire,6,Normal,0,SPD,10,0,10760006,130000 +10760007,기능의 그리모어 (D),Grimoire,6,Normal,0,SPD,10,0,10760007,130000 +10760008,기능의 그리모어 (S),Grimoire,6,Normal,0,SPD,10,0,10760008,130000 90000001,Custom Sword,Weapon,6,Normal,1,ATK,11,2,10110000,5 90000002,Custom Sword2,Weapon,6,Normal,1,ATK,1111,2,10110000,5 90000003,Custom Sword3,Weapon,6,Normal,1,ATK,111111,2,10110000,5 diff --git a/Lib9c/TableCSV/Item/EquipmentItemSubRecipeSheetV2.csv b/Lib9c/TableCSV/Item/EquipmentItemSubRecipeSheetV2.csv index 87dea0b07..f0ba87010 100644 --- a/Lib9c/TableCSV/Item/EquipmentItemSubRecipeSheetV2.csv +++ b/Lib9c/TableCSV/Item/EquipmentItemSubRecipeSheetV2.csv @@ -27,7 +27,7 @@ ID,required_action_point,required_gold,required_block_index,material_id,material 20,0,0,583,306014,43,306013,29,306043,8,70,10000,0,71,7900,183,72,3400,367,73,1500,550,FALSE,2 21,0,450,0,301000,10,,,,,74,10000,0,75,8000,81,76,6000,163,77,900,245,TRUE,2 22,0,0,0,306055,24,306054,12,306035,12,78,10000,0,79,3000,500,80,1100,1502,,,,FALSE,1 -23,0,0,3577,306053,72,306054,48,306037,12,81,10000,0,82,6000,1126,83,4200,2253,84,1600,3380,FALSE,2 +23,0,0,1778,306053,36,306054,24,306037,12,81,10000,0,82,6000,563,83,4200,1127,84,1600,1690,FALSE,2 24,0,450,0,301000,10,,,,,85,10000,0,86,8000,500,87,6000,1001,88,900,1502,TRUE,2 379,0,0,0,306040,4,,,,,1387,10000,0,1388,2800,16,1389,1200,50,,,,FALSE,1 380,0,0,120,306003,14,306040,7,306044,4,1390,10000,0,1391,8400,37,1392,3200,75,1393,1500,113,FALSE,2 @@ -39,10 +39,10 @@ ID,required_action_point,required_gold,required_block_index,material_id,material 29,0,0,164,306005,27,306004,18,306044,5,103,10000,0,104,9000,51,105,2800,102,106,1600,154,FALSE,2 30,0,450,0,301000,10,,,,,107,10000,0,108,8000,22,109,6000,45,110,900,68,TRUE,2 31,0,0,0,306015,27,306016,14,306035,14,111,10000,0,112,3400,686,113,1000,2059,,,,FALSE,1 -32,0,0,4000,306017,80,306016,54,306038,14,114,10000,0,115,7900,1544,116,3400,2800,117,1500,4633,FALSE,2 +32,0,0,2000,306017,40,306016,27,306038,14,114,10000,0,115,7900,777,116,3400,1400,117,1500,2316,FALSE,2 33,0,450,0,301000,10,,,,,118,10000,0,119,8000,686,120,6000,1372,121,900,2059,TRUE,2 34,0,0,0,306055,47,306054,24,306045,24,122,10000,0,123,3000,1510,124,1100,2800,,,,FALSE,1 -35,0,0,4000,306055,93,306045,47,306047,24,125,10000,0,126,6000,3399,127,4200,2800,128,1600,8400,FALSE,2 +35,0,0,2000,306055,46,306045,23,306047,12,125,10000,0,126,6000,1700,127,4200,1400,128,1600,4200,FALSE,2 36,0,450,0,301000,10,,,,,129,10000,0,130,8000,1510,131,6000,2800,132,900,4532,TRUE,2 382,0,0,0,306035,9,,,,,1398,10000,0,1399,2800,103,1400,1200,310,,,,FALSE,1 383,0,0,741,306053,51,306006,34,306039,9,1401,10000,0,1402,8400,233,1403,3200,466,1404,1500,700,FALSE,2 @@ -51,13 +51,13 @@ ID,required_action_point,required_gold,required_block_index,material_id,material 38,0,0,821,306029,37,306035,19,306036,10,136,10000,0,137,6000,258,138,4200,517,139,1600,775,FALSE,2 39,0,450,0,301000,10,,,,,140,10000,0,141,8000,114,142,6000,229,143,900,344,TRUE,2 40,0,0,0,306006,21,306008,11,306035,11,144,10000,0,145,2800,363,146,1200,1089,,,,FALSE,1 -41,0,0,2595,306006,41,306035,21,306039,11,147,10000,0,148,9000,816,149,2800,1634,150,1600,2452,FALSE,2 +41,0,0,1250,306006,41,306035,21,306039,11,147,10000,0,148,9000,408,149,2800,817,150,1600,1226,FALSE,2 42,0,450,0,301000,10,,,,,151,10000,0,152,8000,363,153,6000,726,154,900,1089,TRUE,2 43,0,0,0,306015,61,306016,31,306045,31,155,10000,0,156,3400,1963,157,1000,2800,,,,FALSE,1 -44,0,0,4000,306015,121,306045,61,306048,31,158,10000,0,159,7900,3500,160,3400,2800,161,1500,8400,FALSE,2 +44,0,0,2000,306015,60,306045,30,306048,15,158,10000,0,159,7900,1750,160,3400,1400,161,1500,4200,FALSE,2 45,0,450,0,301000,10,,,,,162,10000,0,163,8000,1963,164,6000,2800,165,900,5890,TRUE,2 -46,0,0,0,306055,365,306053,185,306045,37,166,10000,0,167,3000,2401,168,1100,2800,,,,FALSE,1 -47,0,0,4000,306054,730,306045,73,306047,37,169,10000,0,170,6000,3500,171,4200,2800,172,1600,8400,FALSE,2 +46,0,0,0,306055,60,306053,30,306045,10,166,10000,0,167,3000,2401,168,1100,2800,,,,FALSE,1 +47,0,0,2000,306054,80,306045,21,306047,15,169,10000,0,170,6000,1750,171,4200,1400,172,1600,4200,FALSE,2 48,0,450,0,301000,10,,,,,173,10000,0,174,8000,2401,175,6000,2800,176,900,7203,TRUE,2 388,0,0,0,306045,43,,,,,1420,10000,0,1421,2800,3500,1422,1200,2800,,,,FALSE,1 389,0,0,4000,306029,169,306045,85,306046,43,1423,10000,0,1424,8400,3500,1425,3200,2800,1426,1500,8400,FALSE,2 @@ -132,10 +132,10 @@ ID,required_action_point,required_gold,required_block_index,material_id,material 125,0,0,216,306004,22,306040,11,306044,6,455,10000,0,456,7900,67,457,6300,135,458,800,203,FALSE,2 126,0,300,0,301000,10,,,,,459,10000,0,460,8000,30,461,6000,60,462,900,90,TRUE,2 127,0,0,0,306016,40,306017,20,306045,20,463,10000,0,464,5600,1289,465,600,2800,,,,FALSE,1 -128,0,0,4000,306016,80,306045,40,306048,20,466,10000,0,467,9000,2901,468,5600,2800,469,800,8400,FALSE,2 +128,0,0,2000,306016,40,306045,20,306048,20,466,10000,0,467,9000,1450,468,5600,1400,469,800,4200,FALSE,2 129,0,300,0,301000,10,,,,,470,10000,0,471,8000,1289,472,6000,2579,473,900,3868,TRUE,2 130,0,0,0,306054,52,306055,26,306045,26,474,10000,0,475,4800,1679,476,700,2800,,,,FALSE,1 -131,0,0,4000,306053,154,306054,103,306047,26,477,10000,0,478,7400,3500,479,6000,2800,480,900,8400,FALSE,2 +131,0,0,2000,306053,77,306054,52,306047,13,477,10000,0,478,7400,1750,479,6000,1400,480,900,4200,FALSE,2 132,0,300,0,301000,10,,,,,481,10000,0,482,8000,1679,483,6000,2800,484,900,5037,TRUE,2 409,0,0,0,306035,10,,,,,1497,10000,0,1498,4800,127,1499,700,382,,,,FALSE,1 410,0,0,912,306030,58,306053,39,306036,10,1500,10000,0,1501,9400,287,1502,5300,574,1503,800,861,FALSE,2 @@ -146,8 +146,8 @@ ID,required_action_point,required_gold,required_block_index,material_id,material 136,0,0,0,306008,23,306006,12,306035,12,496,10000,0,497,5600,432,498,600,1299,,,,FALSE,1 137,0,0,3094,306007,45,306035,23,306039,12,499,10000,0,500,7900,974,501,6300,1948,502,800,2923,FALSE,2 138,0,300,0,301000,10,,,,,503,10000,0,504,8000,432,505,6000,865,506,900,1299,TRUE,2 -139,0,0,0,306015,335,306016,170,306045,34,507,10000,0,508,5600,2173,509,600,2800,,,,FALSE,1 -140,0,0,4000,306017,1000,306016,133,306048,34,510,10000,0,511,9000,3500,512,5600,2800,513,800,8400,FALSE,2 +139,0,0,0,306015,30,306016,15,306045,20,507,10000,0,508,5600,2173,509,600,2800,,,,FALSE,1 +140,0,0,2000,306017,80,306016,20,306048,20,510,10000,0,511,9000,1750,512,5600,1400,513,800,4200,FALSE,2 141,0,300,0,301000,10,,,,,514,10000,0,515,8000,2173,516,6000,2800,517,900,6521,TRUE,2 142,0,0,0,306055,760,306054,380,306045,57,518,10000,0,519,4800,2533,520,700,2800,,,,FALSE,1 143,0,0,4000,306053,1368,306055,152,306047,38,521,10000,0,522,7400,3500,523,6000,2800,524,900,8400,FALSE,2 @@ -213,7 +213,7 @@ ID,required_action_point,required_gold,required_block_index,material_id,material 212,0,0,2898,306013,66,306014,44,306043,11,774,10000,0,775,7600,912,776,6600,1825,777,800,2738,FALSE,2 213,0,300,0,301000,10,,,,,778,10000,0,779,8000,405,780,6000,811,781,900,1216,TRUE,2 214,0,0,0,306054,45,306055,23,306045,23,782,10000,0,783,5600,1432,784,600,2800,,,,FALSE,1 -215,0,0,4000,306053,133,306054,89,306047,23,785,10000,0,786,8800,3224,787,5700,2800,788,800,8400,FALSE,2 +215,0,0,2000,306053,67,306054,44,306047,23,785,10000,0,786,8800,1607,787,5700,1400,788,800,4200,FALSE,2 216,0,300,0,301000,10,,,,,789,10000,0,790,8000,1432,791,6000,2800,792,900,4298,TRUE,2 433,0,0,0,306040,5,,,,,1585,10000,0,1586,4800,26,1587,700,81,,,,FALSE,1 434,0,0,194,306004,20,306040,10,306043,5,1588,10000,0,1589,8500,60,1590,5900,121,1591,800,183,FALSE,2 @@ -236,8 +236,8 @@ ID,required_action_point,required_gold,required_block_index,material_id,material 232,0,0,0,306007,380,306008,190,306045,38,848,10000,0,849,4800,2520,850,700,2800,,,,FALSE,1 233,0,0,4000,306007,1140,306006,760,306049,38,851,10000,0,852,8400,3500,853,6000,2800,854,800,8400,FALSE,2 234,0,300,0,301000,10,,,,,855,10000,0,856,8000,2520,857,6000,2800,858,900,7562,TRUE,2 -235,0,0,0,306016,380,306015,190,306045,38,859,10000,0,860,5600,2520,861,600,2800,,,,FALSE,1 -236,0,0,4000,306015,1140,306017,760,306048,38,862,10000,0,863,7600,3500,864,6600,2800,865,800,8400,FALSE,2 +235,0,0,0,306016,60,306015,36,306045,10,859,10000,0,860,5600,2520,861,1200,2800,,,,FALSE,1 +236,0,0,2000,306015,90,306017,70,306048,20,862,10000,0,863,7600,1750,864,6600,1400,865,1400,4200,FALSE,2 237,0,300,0,301000,10,,,,,866,10000,0,867,8000,2520,868,6000,2800,869,900,7562,TRUE,2 238,0,0,0,306053,380,306055,190,306045,38,870,10000,0,871,5600,2520,872,600,2800,,,,FALSE,1 239,0,0,4000,306053,1140,306054,760,306047,38,873,10000,0,874,8800,3500,875,5700,2800,876,800,8400,FALSE,2 @@ -270,7 +270,7 @@ ID,required_action_point,required_gold,required_block_index,material_id,material 272,0,0,3864,306014,49,306040,25,306043,13,994,10000,0,995,9100,1216,996,4000,2433,997,1100,3651,FALSE,2 273,0,300,0,301000,10,,,,,998,10000,0,999,8000,540,1000,6000,1081,1001,900,1622,TRUE,2 274,0,0,0,306055,43,306053,22,306045,22,1002,10000,0,1003,3400,1358,1004,1000,2800,,,,FALSE,1 -275,0,0,4000,306053,127,306054,85,306047,22,1005,10000,0,1006,7300,3058,1007,4600,2800,1008,1200,8400,FALSE,2 +275,0,0,2000,306053,63,306054,43,306047,22,1005,10000,0,1006,7300,1529,1007,4600,1400,1008,1200,4200,FALSE,2 276,0,300,0,301000,10,,,,,1009,10000,0,1010,8000,1358,1011,6000,2718,1012,900,4077,TRUE,2 448,0,0,0,306040,7,,,,,1640,10000,0,1641,3000,70,1642,1100,210,,,,FALSE,1 449,0,0,502,306012,37,306027,25,306041,7,1643,10000,0,1644,6300,158,1645,5300,316,1646,1200,474,FALSE,2 @@ -282,13 +282,13 @@ ID,required_action_point,required_gold,required_block_index,material_id,material 281,0,0,704,306003,33,306040,17,306044,9,1027,10000,0,1028,8000,221,1029,5000,443,1030,1000,665,FALSE,2 282,0,300,0,301000,10,,,,,1031,10000,0,1032,8000,98,1033,6000,196,1034,900,295,TRUE,2 283,0,0,0,306015,55,306017,28,306045,28,1035,10000,0,1036,3400,1769,1037,1000,2800,,,,FALSE,1 -284,0,0,4000,306016,109,306045,55,306048,28,1038,10000,0,1039,9100,3500,1040,4000,2800,1041,1100,8400,FALSE,2 +284,0,0,2000,306016,54,306045,28,306048,28,1038,10000,0,1039,9100,1750,1040,4000,1400,1041,1100,4200,FALSE,2 285,0,300,0,301000,10,,,,,1042,10000,0,1043,8000,1769,1044,6000,2800,1045,900,5309,TRUE,2 -286,0,0,0,306055,350,306053,175,306045,35,1046,10000,0,1047,3400,2284,1048,1000,2800,,,,FALSE,1 -287,0,0,4000,306054,700,306045,70,306047,35,1049,10000,0,1050,7300,3500,1051,4600,2800,1052,1200,8400,FALSE,2 +286,0,0,0,306055,70,306053,28,306045,10,1046,10000,0,1047,3400,2284,1048,1000,2800,,,,FALSE,1 +287,0,0,2000,306054,100,306045,30,306047,20,1049,10000,0,1050,7300,1750,1051,4600,1400,1052,1200,4200,FALSE,2 288,0,300,0,301000,10,,,,,1053,10000,0,1054,8000,2284,1055,6000,2800,1056,900,6855,TRUE,2 -451,0,0,0,306045,10,,,,,1651,10000,0,1652,3000,636,1653,1100,1908,,,,FALSE,1 -452,0,0,4000,306007,1374,306016,153,306048,39,1654,10000,0,1655,6300,2863,1656,5300,2800,1657,1200,8400,FALSE,2 +451,0,0,0,306045,30,,,,,1651,10000,0,1652,3000,636,1653,1700,1908,,,,FALSE,1 +452,0,0,2000,306007,80,306016,20,306048,20,1654,10000,0,1655,6300,1432,1656,5300,1400,1657,1800,4200,FALSE,2 453,0,300,0,301000,10,,,,,1658,10000,0,1659,8000,636,1660,6000,1272,1661,900,1908,TRUE,2 289,0,0,0,306029,770,306031,390,306045,58,1057,10000,0,1058,3700,2545,1059,900,2800,,,,FALSE,1 290,0,0,4000,306030,918,306045,77,306046,39,1060,10000,0,1061,7500,3500,1062,4800,2800,1063,1100,8400,FALSE,2 @@ -327,10 +327,10 @@ ID,required_action_point,required_gold,required_block_index,material_id,material 329,0,0,146,306001,24,306002,16,306000,16,1203,10000,0,1204,8400,45,1205,7900,91,1206,600,137,FALSE,2 330,0,300,0,301000,10,,,,,1207,10000,0,1208,8000,20,1209,6000,40,1210,500,60,TRUE,2 331,0,0,0,306014,28,306013,14,306040,14,1211,10000,0,1212,8500,1224,1213,400,2800,,,,FALSE,1 -332,0,0,8746,306013,56,306040,28,306043,14,1214,10000,0,1215,9000,2754,1216,8900,2800,1217,500,8264,FALSE,2 +332,0,0,4373,306013,56,306040,28,306043,14,1214,10000,0,1215,9000,1377,1216,8900,1400,1217,500,4132,FALSE,2 333,0,300,0,301000,10,,,,,1218,10000,0,1219,8000,1224,1220,6000,2448,1221,500,3672,TRUE,2 334,0,0,0,306054,49,306055,25,306045,25,1222,10000,0,1223,8500,1592,1224,400,2800,,,,FALSE,1 -335,0,0,4000,306053,97,306045,49,306047,25,1225,10000,0,1226,9000,3500,1227,8900,2800,1228,500,8400,FALSE,2 +335,0,0,2000,306053,97,306045,49,306047,25,1225,10000,0,1226,9000,1750,1227,8900,1400,1228,500,4200,FALSE,2 336,0,300,0,301000,10,,,,,1229,10000,0,1230,8000,1592,1231,6000,2800,1232,500,4778,TRUE,2 463,0,0,0,306040,8,,,,,1695,10000,0,1696,6800,85,1697,500,256,,,,FALSE,1 464,0,0,610,306004,45,306050,30,306042,8,1698,10000,0,1699,8900,191,1700,7500,384,1701,600,576,FALSE,2 @@ -341,89 +341,89 @@ ID,required_action_point,required_gold,required_block_index,material_id,material 340,0,0,0,306004,19,306003,10,306040,10,1244,10000,0,1245,6800,121,1246,500,363,,,,FALSE,1 341,0,0,865,306003,56,306005,38,306044,10,1247,10000,0,1248,8400,272,1249,7900,544,1250,600,817,FALSE,2 342,0,300,0,301000,10,,,,,1251,10000,0,1252,8000,121,1253,6000,242,1254,500,363,TRUE,2 -343,0,0,0,306017,640,306016,320,306045,48,1255,10000,0,1256,8500,2066,1257,400,2800,,,,FALSE,1 -344,0,0,4000,306017,762,306045,64,306048,32,1258,10000,0,1259,9000,3500,1260,8900,2800,1261,500,8400,FALSE,2 +343,0,0,0,306017,60,306016,30,306045,20,1255,10000,0,1256,8500,2066,1257,400,2800,,,,FALSE,1 +344,0,0,2000,306017,70,306045,30,306048,20,1258,10000,0,1259,9000,1750,1260,8900,1400,1261,500,4200,FALSE,2 345,0,300,0,301000,10,,,,,1262,10000,0,1263,8000,2066,1264,6000,2800,1265,500,6199,TRUE,2 -346,0,0,0,306053,760,306054,380,306045,57,1266,10000,0,1267,8500,2524,1268,400,2800,,,,FALSE,1 -347,0,0,4000,306055,1368,306053,152,306047,38,1269,10000,0,1270,9000,3500,1271,8900,2800,1272,500,8400,FALSE,2 +346,0,0,0,306053,70,306054,30,306045,20,1266,10000,0,1267,8500,2524,1268,400,2800,,,,FALSE,1 +347,0,0,2000,306055,80,306053,30,306047,20,1269,10000,0,1270,9000,1750,1271,8900,1400,1272,500,4200,FALSE,2 348,0,300,0,301000,10,,,,,1273,10000,0,1274,8000,2524,1275,6000,2800,1276,500,7575,TRUE,2 -101400001,0,0,0,306045,120,,,,,1014000011,10000,0,1014000012,2800,4900,1014000013,1200,4200,,,,FALSE,1 -101400002,0,0,5000,306046,40,306049,40,306048,40,1014000021,10000,0,1014000022,8400,3500,1014000023,3200,4200,1014000024,1500,8400,FALSE,2 -101400003,0,450000,0,301000,10,,,,,1014000031,10000,0,1014000032,8000,2902,1014000033,6000,4200,1014000034,900,8400,TRUE,2 -101410001,0,0,0,306045,30,306046,10,,,1014100011,10000,0,1014100012,3000,4900,1014100013,1100,4200,,,,FALSE,1 -101410002,0,0,5000,306030,590,306045,80,306046,60,1014100021,10000,0,1014100022,6000,3500,1014100023,4200,4200,1014100024,1600,8400,FALSE,2 -101410003,0,450000,0,301000,10,,,,,1014100031,10000,0,1014100032,8000,2961,1014100033,6000,4200,1014100034,900,8400,TRUE,2 -101420001,0,0,0,306045,30,306049,10,,,1014200011,10000,0,1014200012,2800,4900,1014200013,1200,4200,,,,FALSE,1 -101420002,0,0,5000,306008,590,306045,80,306049,60,1014200021,10000,0,1014200022,9000,3500,1014200023,2800,4200,1014200024,1600,8400,FALSE,2 -101420003,0,450000,0,301000,10,,,,,1014200031,10000,0,1014200032,8000,3024,1014200033,6000,4200,1014200034,900,8400,TRUE,2 -101430001,0,0,0,306045,60,306048,20,,,1014300011,10000,0,1014300012,3400,4900,1014300013,1000,4200,,,,FALSE,1 -101430002,0,0,5000,306016,590,306045,100,306048,80,1014300021,10000,0,1014300022,7900,3500,1014300023,3400,4200,1014300024,1500,8400,FALSE,2 -101430003,0,450000,0,301000,10,,,,,1014300031,10000,0,1014300032,8000,3091,1014300033,6000,4200,1014300034,900,8400,TRUE,2 -101440001,0,0,0,306045,60,306047,30,,,1014400011,10000,0,1014400012,3000,4900,1014400013,1100,4200,,,,FALSE,1 -101440002,0,0,5000,306054,590,306045,100,306047,80,1014400021,10000,0,1014400022,6000,3500,1014400023,4200,4200,1014400024,1600,8400,FALSE,2 -101440003,0,450000,0,301000,10,,,,,1014400031,10000,0,1014400032,8000,3163,1014400033,6000,4200,1014400034,900,8400,TRUE,2 -102400001,0,0,0,306045,120,,,,,1024000011,10000,0,1024000012,4800,4900,1024000013,700,4200,,,,FALSE,1 -102400002,0,0,5000,306046,40,306049,40,306048,50,1024000021,10000,0,1024000022,9400,3500,1024000023,5300,4200,1024000024,800,8400,FALSE,2 -102400003,0,450000,0,301000,10,,,,,1024000031,10000,0,1024000032,8000,2902,1024000033,6000,4200,1024000034,900,8400,TRUE,2 -102410001,0,0,0,306045,30,306046,10,,,1024100011,10000,0,1024100012,4200,4900,1024100013,800,4200,,,,FALSE,1 -102410002,0,0,5000,306031,590,306045,80,306046,80,1024100021,10000,0,1024100022,7400,3500,1024100023,6000,4200,1024100024,900,8400,FALSE,2 -102410003,0,450000,0,301000,10,,,,,1024100031,10000,0,1024100032,8000,2961,1024100033,6000,4200,1024100034,900,8400,TRUE,2 -102420001,0,0,0,306045,30,306049,10,,,1024200011,10000,0,1024200012,5600,4900,1024200013,600,4200,,,,FALSE,1 -102420002,0,0,5000,306006,590,306045,80,306049,80,1024200021,10000,0,1024200022,7900,3500,1024200023,6300,4200,1024200024,800,8400,FALSE,2 -102420003,0,450000,0,301000,10,,,,,1024200031,10000,0,1024200032,8000,3024,1024200033,6000,4200,1024200034,900,8400,TRUE,2 -102430001,0,0,0,306045,60,306048,20,,,1024300011,10000,0,1024300012,5600,4900,1024300013,600,4200,,,,FALSE,1 -102430002,0,0,5000,306015,590,306045,100,306048,80,1024300021,10000,0,1024300022,9000,3500,1024300023,5600,4200,1024300024,800,8400,FALSE,2 -102430003,0,450000,0,301000,10,,,,,1024300031,10000,0,1024300032,8000,3091,1024300033,6000,4200,1024300034,900,8400,TRUE,2 -102440001,0,0,0,306045,60,306047,30,,,1024400011,10000,0,1024400012,4800,4900,1024400013,700,4200,,,,FALSE,1 -102440002,0,0,5000,306053,590,306045,100,306047,80,1024400021,10000,0,1024400022,7400,3500,1024400023,6000,4200,1024400024,900,8400,FALSE,2 -102440003,0,450000,0,301000,10,,,,,1024400031,10000,0,1024400032,8000,3163,1024400033,6000,4200,1024400034,900,8400,TRUE,2 -226,0,0,0,306053,400,306045,50,,,826,10000,0,827,5600,3500,828,600,4200,,,,FALSE,1 -227,0,0,20000,306055,400,306045,50,306047,80,829,10000,0,830,8800,3500,831,5700,4200,832,800,8400,FALSE,2 -228,0,450000,0,301000,10,,,,,833,10000,0,834,8000,12957,835,6000,4200,836,900,8400,TRUE,2 -103500001,0,0,0,306045,120,,,,,1035000011,10000,0,1035000012,4800,4900,1035000013,700,4200,,,,FALSE,1 -103500002,0,0,5000,306046,40,306049,40,306048,50,1035000021,10000,0,1035000022,8500,3500,1035000023,5900,4200,1035000024,800,8400,FALSE,2 +101400001,0,0,0,306045,60,,,,,1014000011,10000,0,1014000012,2800,2450,1014000013,1800,2100,,,,FALSE,1 +101400002,0,0,5000,306046,20,306049,20,306048,20,1014000021,10000,0,1014000022,8400,1750,1014000023,3200,2100,1014000024,2100,4200,FALSE,2 +101400003,0,450000,0,301000,10,,,,,1014000031,10000,0,1014000032,8000,1450,1014000033,6000,2100,1014000034,900,4200,TRUE,2 +101410001,0,0,0,306045,20,306046,10,,,1014100011,10000,0,1014100012,3000,2450,1014100013,1700,2100,,,,FALSE,1 +101410002,0,0,2500,306030,80,306045,30,306046,20,1014100021,10000,0,1014100022,6000,1750,1014100023,4200,2100,1014100024,2200,4200,FALSE,2 +101410003,0,450000,0,301000,10,,,,,1014100031,10000,0,1014100032,8000,1450,1014100033,6000,2100,1014100034,900,4200,TRUE,2 +101420001,0,0,0,306045,20,306049,10,,,1014200011,10000,0,1014200012,2800,2450,1014200013,1800,2100,,,,FALSE,1 +101420002,0,0,5000,306008,80,306045,30,306049,20,1014200021,10000,0,1014200022,9000,1750,1014200023,2800,2100,1014200024,2200,4200,FALSE,2 +101420003,0,450000,0,301000,10,,,,,1014200031,10000,0,1014200032,8000,1500,1014200033,6000,2100,1014200034,900,4200,TRUE,2 +101430001,0,0,0,306045,20,306048,20,,,1014300011,10000,0,1014300012,3400,2450,1014300013,1600,2100,,,,FALSE,1 +101430002,0,0,5000,306016,100,306045,40,306048,30,1014300021,10000,0,1014300022,7900,1750,1014300023,3400,2100,1014300024,2100,4200,FALSE,2 +101430003,0,450000,0,301000,10,,,,20,1014300031,10000,0,1014300032,8000,1500,1014300033,6000,2100,1014300034,900,4200,TRUE,2 +101440001,0,0,0,306045,20,306047,30,,,1014400011,10000,0,1014400012,3000,2450,1014400013,1700,2100,,,,FALSE,1 +101440002,0,0,5000,306054,100,306045,40,306047,30,1014400021,10000,0,1014400022,6000,1750,1014400023,4200,2100,1014400024,2200,4200,FALSE,2 +101440003,0,450000,0,301000,10,,,,,1014400031,10000,0,1014400032,8000,1580,1014400033,6000,2100,1014400034,900,4200,TRUE,2 +102400001,0,0,0,306045,60,,,,,1024000011,10000,0,1024000012,4800,2450,1024000013,1300,2100,,,,FALSE,1 +102400002,0,0,5000,306046,20,306049,20,306048,20,1024000021,10000,0,1024000022,9400,1750,1024000023,5300,2100,1024000024,1400,4200,FALSE,2 +102400003,0,450000,0,301000,10,,,,,1024000031,10000,0,1024000032,8000,2450,1024000033,6000,2100,1024000034,900,4200,TRUE,2 +102410001,0,0,0,306045,20,306046,10,,,1024100011,10000,0,1024100012,4200,2450,1024100013,1400,2100,,,,FALSE,1 +102410002,0,0,5000,306031,80,306045,30,306046,20,1024100021,10000,0,1024100022,7400,1750,1024100023,6000,2100,1024100024,1500,4200,FALSE,2 +102410003,0,450000,0,301000,10,,,,,1024100031,10000,0,1024100032,8000,1430,1024100033,6000,2100,1024100034,900,4200,TRUE,2 +102420001,0,0,0,306045,20,306049,10,,,1024200011,10000,0,1024200012,5600,2450,1024200013,1200,2100,,,,FALSE,1 +102420002,0,0,5000,306006,80,306045,30,306049,80,1024200021,10000,0,1024200022,7900,1750,1024200023,6300,2100,1024200024,1400,4200,FALSE,2 +102420003,0,450000,0,301000,10,,,,,1024200031,10000,0,1024200032,8000,1562,1024200033,6000,2100,1024200034,900,4200,TRUE,2 +102430001,0,0,0,306045,20,306048,10,,,1024300011,10000,0,1024300012,5600,2450,1024300013,1200,2100,,,,FALSE,1 +102430002,0,0,5000,306015,100,306045,40,306048,30,1024300021,10000,0,1024300022,9000,1750,1024300023,5600,2100,1024300024,1400,4200,FALSE,2 +102430003,0,450000,0,301000,10,,,,,1024300031,10000,0,1024300032,8000,1540,1024300033,6000,2100,1024300034,900,4200,TRUE,2 +102440001,0,0,0,306045,20,306047,10,,,1024400011,10000,0,1024400012,4800,2450,1024400013,1300,2100,,,,FALSE,1 +102440002,0,0,5000,306053,100,306045,40,306047,30,1024400021,10000,0,1024400022,7400,1750,1024400023,6000,2100,1024400024,1500,4200,FALSE,2 +102440003,0,450000,0,301000,10,,,,,1024400031,10000,0,1024400032,8000,1580,1024400033,6000,2100,1024400034,900,4200,TRUE,2 +226,0,0,0,306053,50,306045,20,,,826,10000,0,827,5600,3500,828,600,2100,,,,FALSE,1 +227,0,0,5000,306055,50,306045,30,306047,20,829,10000,0,830,8800,3500,831,5700,2100,832,800,4200,FALSE,2 +228,0,450000,0,301000,10,,,,,833,10000,0,834,8000,12957,835,6000,2100,836,900,4200,TRUE,2 +103500001,0,0,0,306045,60,,,,,1035000011,10000,0,1035000012,4800,4900,1035000013,1300,4200,,,,FALSE,1 +103500002,0,0,5000,306046,20,306049,20,306048,20,1035000021,10000,0,1035000022,8500,3500,1035000023,5900,4200,1035000024,1400,8400,FALSE,2 103500003,0,450000,0,301000,10,,,,,1035000031,10000,0,1035000032,8000,2902,1035000033,6000,4200,1035000034,900,8400,TRUE,2 -103510001,0,0,0,306045,30,306046,10,,,1035100011,10000,0,1035100012,5600,4900,1035100013,600,4200,,,,FALSE,1 -103510002,0,0,5000,306029,590,306045,80,306046,80,1035100021,10000,0,1035100022,9500,3500,1035100023,6000,4200,1035100024,700,8400,FALSE,2 +103510001,0,0,0,306045,20,306046,10,,,1035100011,10000,0,1035100012,5600,4900,1035100013,1200,4200,,,,FALSE,1 +103510002,0,0,5000,306029,80,306045,40,306046,30,1035100021,10000,0,1035100022,9500,3500,1035100023,6000,4200,1035100024,1300,8400,FALSE,2 103510003,0,450000,0,301000,10,,,,,1035100031,10000,0,1035100032,8000,2961,1035100033,6000,4200,1035100034,900,8400,TRUE,2 -103520001,0,0,0,306045,30,306049,10,,,1035200011,10000,0,1035200012,4800,4900,1035200013,700,4200,,,,FALSE,1 -103520002,0,0,5000,306007,590,306045,80,306049,80,1035200021,10000,0,1035200022,8400,3500,1035200023,6000,4200,1035200024,800,8400,FALSE,2 +103520001,0,0,0,306045,20,306049,10,,,1035200011,10000,0,1035200012,4800,4900,1035200013,1300,4200,,,,FALSE,1 +103520002,0,0,5000,306007,80,306045,40,306049,30,1035200021,10000,0,1035200022,8400,3500,1035200023,6000,4200,1035200024,1400,8400,FALSE,2 103520003,0,450000,0,301000,10,,,,,1035200031,10000,0,1035200032,8000,3024,1035200033,6000,4200,1035200034,900,8400,TRUE,2 -103530001,0,0,0,306045,60,306048,20,,,1035300011,10000,0,1035300012,5600,4900,1035300013,600,4200,,,,FALSE,1 -103530002,0,0,5000,306017,590,306045,100,306048,80,1035300021,10000,0,1035300022,7600,3500,1035300023,6600,4200,1035300024,800,8400,FALSE,2 +103530001,0,0,0,306045,30,306048,20,,,1035300011,10000,0,1035300012,5600,4900,1035300013,1200,4200,,,,FALSE,1 +103530002,0,0,5000,306017,100,306045,40,306048,30,1035300021,10000,0,1035300022,7600,3500,1035300023,6600,4200,1035300024,1400,8400,FALSE,2 103530003,0,450000,0,301000,10,,,,,1035300031,10000,0,1035300032,8000,3091,1035300033,6000,4200,1035300034,900,8400,TRUE,2 -103540001,0,0,0,306045,60,306047,30,,,1035400011,10000,0,1035400012,5600,4900,1035400013,600,4200,,,,FALSE,1 -103540002,0,0,5000,306055,590,306045,100,306047,80,1035400021,10000,0,1035400022,8800,3500,1035400023,5700,4200,1035400024,800,8400,FALSE,2 +103540001,0,0,0,306045,30,306047,20,,,1035400011,10000,0,1035400012,5600,4900,1035400013,1200,4200,,,,FALSE,1 +103540002,0,0,5000,306055,100,306045,40,306047,30,1035400021,10000,0,1035400022,8800,3500,1035400023,5700,4200,1035400024,1400,8400,FALSE,2 103540003,0,450000,0,301000,10,,,,,1035400031,10000,0,1035400032,8000,3163,1035400033,6000,4200,1035400034,900,8400,TRUE,2 -104500001,0,0,0,306045,120,,,,,1045000011,10000,0,1045000012,3000,4900,1045000013,1100,4200,,,,FALSE,1 -104500002,0,0,5000,306046,40,306049,40,306048,50,1045000021,10000,0,1045000022,6300,3500,1045000023,5300,4200,1045000024,1200,8400,FALSE,2 +104500001,0,0,0,306045,60,,,,,1045000011,10000,0,1045000012,3000,4900,1045000013,1700,4200,,,,FALSE,1 +104500002,0,0,5000,306046,20,306049,20,306048,20,1045000021,10000,0,1045000022,6300,3500,1045000023,5300,4200,1045000024,1800,8400,FALSE,2 104500003,0,450000,0,301000,10,,,,,1045000031,10000,0,1045000032,8000,2902,1045000033,6000,4200,1045000034,900,8400,TRUE,2 -104510001,0,0,0,306045,30,306046,10,,,1045100011,10000,0,1045100012,3700,4900,1045100013,900,4200,,,,FALSE,1 -104510002,0,0,5000,306030,590,306045,80,306046,80,1045100021,10000,0,1045100022,7500,3500,1045100023,4800,4200,1045100024,1100,8400,FALSE,2 +104510001,0,0,0,306045,30,306046,10,,,1045100011,10000,0,1045100012,3700,4900,1045100013,1500,4200,,,,FALSE,1 +104510002,0,0,5000,306030,80,306045,30,306046,20,1045100021,10000,0,1045100022,7500,3500,1045100023,4800,4200,1045100024,1700,8400,FALSE,2 104510003,0,450000,0,301000,10,,,,,1045100031,10000,0,1045100032,8000,2961,1045100033,6000,4200,1045100034,900,8400,TRUE,2 -104520001,0,0,0,306045,30,306049,10,,,1045200011,10000,0,1045200012,3700,4900,1045200013,900,4200,,,,FALSE,1 -104520002,0,0,5000,306008,590,306045,80,306049,80,1045200021,10000,0,1045200022,8000,3500,1045200023,5000,4200,1045200024,1000,8400,FALSE,2 +104520001,0,0,0,306045,30,306049,10,,,1045200011,10000,0,1045200012,3700,4900,1045200013,1500,4200,,,,FALSE,1 +104520002,0,0,5000,306008,80,306045,30,306049,20,1045200021,10000,0,1045200022,8000,3500,1045200023,5000,4200,1045200024,1600,8400,FALSE,2 104520003,0,450000,0,301000,10,,,,,1045200031,10000,0,1045200032,8000,3024,1045200033,6000,4200,1045200034,900,8400,TRUE,2 -104530001,0,0,0,306045,60,306048,20,,,1045300011,10000,0,1045300012,3400,4900,1045300013,1000,4200,,,,FALSE,1 -104530002,0,0,5000,306015,590,306045,100,306048,80,1045300021,10000,0,1045300022,9100,3500,1045300023,4000,4200,1045300024,1100,8400,FALSE,2 +104530001,0,0,0,306045,30,306048,30,,,1045300011,10000,0,1045300012,3400,4900,1045300013,1600,4200,,,,FALSE,1 +104530002,0,0,5000,306015,100,306045,40,306048,30,1045300021,10000,0,1045300022,9100,3500,1045300023,4000,4200,1045300024,1700,8400,FALSE,2 104530003,0,450000,0,301000,10,,,,,1045300031,10000,0,1045300032,8000,3091,1045300033,6000,4200,1045300034,900,8400,TRUE,2 -104540001,0,0,0,306045,60,306047,30,,,1045400011,10000,0,1045400012,3400,4900,1045400013,1000,4200,,,,FALSE,1 -104540002,0,0,5000,306054,590,306045,100,306047,80,1045400021,10000,0,1045400022,7300,3500,1045400023,4600,4200,1045400024,1200,8400,FALSE,2 +104540001,0,0,0,306045,30,306047,30,,,1045400011,10000,0,1045400012,3400,4900,1045400013,1600,4200,,,,FALSE,1 +104540002,0,0,5000,306054,100,306045,40,306047,30,1045400021,10000,0,1045400022,7300,3500,1045400023,4600,4200,1045400024,1800,8400,FALSE,2 104540003,0,450000,0,301000,10,,,,,1045400031,10000,0,1045400032,8000,3163,1045400033,6000,4200,1045400034,900,8400,TRUE,2 -105400001,0,0,0,306045,120,,,,,1054000011,10000,0,1054000012,6800,4900,1054000013,500,4200,,,,FALSE,1 -105400002,0,0,5000,306046,40,306049,40,306048,50,1054000021,10000,0,1054000022,8900,3500,1054000023,7500,4200,1054000024,600,8400,FALSE,2 +105400001,0,0,0,306045,60,,,,,1054000011,10000,0,1054000012,6800,4900,1054000013,1100,4200,,,,FALSE,1 +105400002,0,0,5000,306046,20,306049,20,306048,20,1054000021,10000,0,1054000022,8900,3500,1054000023,7500,4200,1054000024,1200,8400,FALSE,2 105400003,0,450000,0,301000,10,,,,,1054000031,10000,0,1054000032,8000,2902,1054000033,6000,4200,1054000034,500,8400,TRUE,2 -105410001,0,0,0,306045,30,306046,10,,,1054100011,10000,0,1054100012,8500,4900,1054100013,400,4200,,,,FALSE,1 -105410002,0,0,5000,306029,590,306045,80,306046,80,1054100021,10000,0,1054100022,9600,3500,1054100023,8300,4200,1054100024,500,8400,FALSE,2 +105410001,0,0,0,306045,30,306046,10,,,1054100011,10000,0,1054100012,8500,4900,1054100013,1000,4200,,,,FALSE,1 +105410002,0,0,5000,306029,80,306045,30,306046,20,1054100021,10000,0,1054100022,9600,3500,1054100023,8300,4200,1054100024,1100,8400,FALSE,2 105410003,0,450000,0,301000,10,,,,,1054100031,10000,0,1054100032,8000,2961,1054100033,6000,4200,1054100034,500,8400,TRUE,2 -105420001,0,0,0,306045,30,306049,10,,,1054200011,10000,0,1054200012,6800,4900,1054200013,500,4200,,,,FALSE,1 -105420002,0,0,5000,306006,590,306045,80,306049,80,1054200021,10000,0,1054200022,8400,3500,1054200023,7900,4200,1054200024,600,8400,FALSE,2 +105420001,0,0,0,306045,30,306049,10,,,1054200011,10000,0,1054200012,6800,4900,1054200013,1100,4200,,,,FALSE,1 +105420002,0,0,5000,306006,80,306045,30,306049,20,1054200021,10000,0,1054200022,8400,3500,1054200023,7900,4200,1054200024,1200,8400,FALSE,2 105420003,0,450000,0,301000,10,,,,,1054200031,10000,0,1054200032,8000,3024,1054200033,6000,4200,1054200034,500,8400,TRUE,2 -105430001,0,0,0,306045,60,306048,20,,,1054300011,10000,0,1054300012,8500,4900,1054300013,400,4200,,,,FALSE,1 -105430002,0,0,5000,306016,590,306045,100,306048,80,1054300021,10000,0,1054300022,9000,3500,1054300023,8900,4200,1054300024,500,8400,FALSE,2 +105430001,0,0,0,306045,30,306048,30,,,1054300011,10000,0,1054300012,8500,4900,1054300013,1000,4200,,,,FALSE,1 +105430002,0,0,5000,306016,100,306045,40,306048,30,1054300021,10000,0,1054300022,9000,3500,1054300023,8900,4200,1054300024,1100,8400,FALSE,2 105430003,0,450000,0,301000,10,,,,,1054300031,10000,0,1054300032,8000,3091,1054300033,6000,4200,1054300034,500,8400,TRUE,2 -105440001,0,0,0,306045,60,306047,30,,,1054400011,10000,0,1054400012,8500,4900,1054400013,400,4200,,,,FALSE,1 -105440002,0,0,5000,306055,590,306045,100,306047,80,1054400021,10000,0,1054400022,9000,3500,1054400023,8900,4200,1054400024,500,8400,FALSE,2 +105440001,0,0,0,306045,30,306047,30,,,1054400011,10000,0,1054400012,8500,4900,1054400013,1000,4200,,,,FALSE,1 +105440002,0,0,5000,306055,100,306045,40,306047,30,1054400021,10000,0,1054400022,9000,3500,1054400023,8900,4200,1054400024,1100,8400,FALSE,2 105440003,0,450000,0,301000,10,,,,,1054400031,10000,0,1054400032,8000,3163,1054400033,6000,4200,1054400034,500,8400,TRUE,2 120010011,0,0,0,600102,40,,,,,1200100111,10000,0,,,,,,,,,,FALSE,1 120010012,0,0,0,600102,40,,,,,1200100121,10000,0,,,,,,,,,,FALSE,1 @@ -434,66 +434,66 @@ ID,required_action_point,required_gold,required_block_index,material_id,material 120010031,0,0,0,600102,50,600103,20,600104,10,1200100311,10000,0,,,,,,,,,,FALSE,1 120010032,0,0,0,600102,50,600103,20,600104,10,1200100321,10000,0,,,,,,,,,,FALSE,1 120010033,0,0,0,600102,50,600103,20,600104,10,1200100331,10000,0,,,,,,,,,,FALSE,1 -101500001,0,0,0,306080,720,306070,150,,,1015000011,10000,0,1015000012,6000,3780,1015000013,1100,7560,1015000014,500,15120,FALSE,1 -101500002,0,0,0,306080,720,306070,150,,,1015000021,10000,0,1015000022,6000,3780,1015000023,1100,7560,1015000024,500,15120,FALSE,1 -101510001,0,0,0,306075,540,306070,60,306071,40,1015100011,10000,0,1015100012,6000,3780,1015100013,1100,7560,1015100014,500,15120,FALSE,1 -101510002,0,0,0,306075,540,306070,60,306071,40,1015100021,10000,0,1015100022,6000,3780,1015100023,1100,7560,1015100024,500,15120,FALSE,1 -101520001,0,0,0,306075,540,306070,60,306074,40,1015200011,10000,0,1015200012,6000,3780,1015200013,1100,7560,1015200014,500,15120,FALSE,1 -101520002,0,0,0,306075,540,306070,60,306074,40,1015200021,10000,0,1015200022,6000,3780,1015200023,1100,7560,1015200024,500,15120,FALSE,1 -101520003,0,0,0,306075,540,306070,60,306074,40,1015200031,10000,0,1015200032,6000,3780,1015200033,1100,7560,1015200034,500,15120,FALSE,1 -101530001,0,0,0,306080,720,306070,100,306073,60,1015300011,10000,0,1015300012,6000,3780,1015300013,1100,7560,1015300014,500,15120,FALSE,1 -101530002,0,0,0,306080,720,306070,100,306073,60,1015300021,10000,0,1015300022,6000,3780,1015300023,1100,7560,1015300024,500,15120,FALSE,1 -101540001,0,0,0,306080,720,306070,100,306072,60,1015400011,10000,0,1015400012,6000,3780,1015400013,1100,7560,1015400014,500,15120,FALSE,1 -101540002,0,0,0,306080,720,306070,100,306072,60,1015400021,10000,0,1015400022,6000,3780,1015400023,1100,7560,1015400024,500,15120,FALSE,1 -101540003,0,0,0,306080,720,306070,100,306072,60,1015400031,10000,0,1015400032,6000,3780,1015400033,1100,7560,1015400034,500,15120,FALSE,1 -102500011,0,0,0,306082,720,306070,150,,,1025000111,10000,0,1025000112,6000,3780,1025000113,1100,7560,1025000114,500,15120,FALSE,1 -102500012,0,0,0,306082,720,306070,150,,,1025000121,10000,0,1025000122,6000,3780,1025000123,1100,7560,1025000124,500,15120,FALSE,1 -102510011,0,0,0,306077,540,306070,60,306071,40,1025100111,10000,0,1025100112,6000,3780,1025100113,1100,7560,1025100114,500,15120,FALSE,1 -102510012,0,0,0,306077,540,306070,60,306071,40,1025100121,10000,0,1025100122,6000,3780,1025100123,1100,7560,1025100124,500,15120,FALSE,1 -102520011,0,0,0,306077,540,306070,60,306074,40,1025200111,10000,0,1025200112,6000,3780,1025200113,1100,7560,1025200114,500,15120,FALSE,1 -102520012,0,0,0,306077,540,306070,60,306074,40,1025200121,10000,0,1025200122,6000,3780,1025200123,1100,7560,1025200124,500,15120,FALSE,1 -102520013,0,0,0,306077,540,306070,60,306074,40,1025200131,10000,0,1025200132,6000,3780,1025200133,1100,7560,1025200134,500,15120,FALSE,1 -102530011,0,0,0,306082,720,306070,100,306073,60,1025300111,10000,0,1025300112,6000,3780,1025300113,1100,7560,1025300114,500,15120,FALSE,1 -102530012,0,0,0,306082,720,306070,100,306073,60,1025300121,10000,0,1025300122,6000,3780,1025300123,1100,7560,1025300124,500,15120,FALSE,1 -102540011,0,0,0,306082,720,306070,100,306072,60,1025400111,10000,0,1025400112,6000,3780,1025400113,1100,7560,1025400114,500,15120,FALSE,1 -102540012,0,0,0,306082,720,306070,100,306072,60,1025400121,10000,0,1025400122,6000,3780,1025400123,1100,7560,1025400124,500,15120,FALSE,1 -102540013,0,0,0,306082,720,306070,100,306072,60,1025400131,10000,0,1025400132,6000,3780,1025400133,1100,7560,1025400134,500,15120,FALSE,1 -103500011,0,0,0,306081,720,306070,150,,,1035000111,10000,0,1035000112,6000,3780,1035000113,1100,7560,1035000114,500,15120,FALSE,1 -103500012,0,0,0,306081,720,306070,150,,,1035000121,10000,0,1035000122,6000,3780,1035000123,1100,7560,1035000124,500,15120,FALSE,1 -103510011,0,0,0,306076,540,306070,60,306071,40,1035100111,10000,0,1035100112,6000,3780,1035100113,1100,7560,1035100114,500,15120,FALSE,1 -103510012,0,0,0,306076,540,306070,60,306071,40,1035100121,10000,0,1035100122,6000,3780,1035100123,1100,7560,1035100124,500,15120,FALSE,1 -103520011,0,0,0,306076,540,306070,60,306074,40,1035200111,10000,0,1035200112,6000,3780,1035200113,1100,7560,1035200114,500,15120,FALSE,1 -103520012,0,0,0,306076,540,306070,60,306074,40,1035200121,10000,0,1035200122,6000,3780,1035200123,1100,7560,1035200124,500,15120,FALSE,1 -103520013,0,0,0,306076,540,306070,60,306074,40,1035200131,10000,0,1035200132,6000,3780,1035200133,1100,7560,1035200134,500,15120,FALSE,1 -103530011,0,0,0,306081,720,306070,100,306073,60,1035300111,10000,0,1035300112,6000,3780,1035300113,1100,7560,1035300114,500,15120,FALSE,1 -103530012,0,0,0,306081,720,306070,100,306073,60,1035300121,10000,0,1035300122,6000,3780,1035300123,1100,7560,1035300124,500,15120,FALSE,1 -103540011,0,0,0,306081,720,306070,100,306072,60,1035400111,10000,0,1035400112,6000,3780,1035400113,1100,7560,1035400114,500,15120,FALSE,1 -103540012,0,0,0,306081,720,306070,100,306072,60,1035400121,10000,0,1035400122,6000,3780,1035400123,1100,7560,1035400124,500,15120,FALSE,1 -103540013,0,0,0,306081,720,306070,100,306072,60,1035400131,10000,0,1035400132,6000,3780,1035400133,1100,7560,1035400134,500,15120,FALSE,1 -104500011,0,0,0,306083,720,306070,150,,,1045000111,10000,0,1045000112,6000,3780,1045000113,1100,7560,1045000114,500,15120,FALSE,1 -104500012,0,0,0,306083,720,306070,150,,,1045000121,10000,0,1045000122,6000,3780,1045000123,1100,7560,1045000124,500,15120,FALSE,1 -104510011,0,0,0,306078,540,306070,60,306071,40,1045100111,10000,0,1045100112,6000,3780,1045100113,1100,7560,1045100114,500,15120,FALSE,1 -104510012,0,0,0,306078,540,306070,60,306071,40,1045100121,10000,0,1045100122,6000,3780,1045100123,1100,7560,1045100124,500,15120,FALSE,1 -104520011,0,0,0,306078,540,306070,60,306074,40,1045200111,10000,0,1045200112,6000,3780,1045200113,1100,7560,1045200114,500,15120,FALSE,1 -104520012,0,0,0,306078,540,306070,60,306074,40,1045200121,10000,0,1045200122,6000,3780,1045200123,1100,7560,1045200124,500,15120,FALSE,1 -104520013,0,0,0,306078,540,306070,60,306074,40,1045200131,10000,0,1045200132,6000,3780,1045200133,1100,7560,1045200134,500,15120,FALSE,1 -104530011,0,0,0,306083,720,306070,100,306073,60,1045300111,10000,0,1045300112,6000,3780,1045300113,1100,7560,1045300114,500,15120,FALSE,1 -104530012,0,0,0,306083,720,306070,100,306073,60,1045300121,10000,0,1045300122,6000,3780,1045300123,1100,7560,1045300124,500,15120,FALSE,1 -104540011,0,0,0,306083,720,306070,100,306072,60,1045400111,10000,0,1045400112,6000,3780,1045400113,1100,7560,1045400114,500,15120,FALSE,1 -104540012,0,0,0,306083,720,306070,100,306072,60,1045400121,10000,0,1045400122,6000,3780,1045400123,1100,7560,1045400124,500,15120,FALSE,1 -104540013,0,0,0,306083,720,306070,100,306072,60,1045400131,10000,0,1045400132,6000,3780,1045400133,1100,7560,1045400134,500,15120,FALSE,1 -105500001,0,0,0,306084,720,306070,150,,,1055000011,10000,0,1055000012,6000,3780,1055000013,1100,7560,1055000014,500,15120,FALSE,1 -105500002,0,0,0,306084,720,306070,150,,,1055000021,10000,0,1055000022,6000,3780,1055000023,1100,7560,1055000024,500,15120,FALSE,1 -105510001,0,0,0,306079,540,306070,60,306071,40,1055100011,10000,0,1055100012,6000,3780,1055100013,1100,7560,1055100014,500,15120,FALSE,1 -105510002,0,0,0,306079,540,306070,60,306071,40,1055100021,10000,0,1055100022,6000,3780,1055100023,1100,7560,1055100024,500,15120,FALSE,1 -105520001,0,0,0,306079,540,306070,60,306074,40,1055200011,10000,0,1055200012,6000,3780,1055200013,1100,7560,1055200014,500,15120,FALSE,1 -105520002,0,0,0,306079,540,306070,60,306074,40,1055200021,10000,0,1055200022,6000,3780,1055200023,1100,7560,1055200024,500,15120,FALSE,1 -105520003,0,0,0,306079,540,306070,60,306074,40,1055200031,10000,0,1055200032,6000,3780,1055200033,1100,7560,1055200034,500,15120,FALSE,1 -105530001,0,0,0,306084,720,306070,100,306073,60,1055300011,10000,0,1055300012,6000,3780,1055300013,1100,7560,1055300014,500,15120,FALSE,1 -105530002,0,0,0,306084,720,306070,100,306073,60,1055300021,10000,0,1055300022,6000,3780,1055300023,1100,7560,1055300024,500,15120,FALSE,1 -105540001,0,0,0,306084,720,306070,100,306072,60,1055400011,10000,0,1055400012,6000,3780,1055400013,1100,7560,1055400014,500,15120,FALSE,1 -105540002,0,0,0,306084,720,306070,100,306072,60,1055400021,10000,0,1055400022,6000,3780,1055400023,1100,7560,1055400024,500,15120,FALSE,1 -105540003,0,0,0,306084,720,306070,100,306072,60,1055400031,10000,0,1055400032,6000,3780,1055400033,1100,7560,1055400034,500,15120,FALSE,1 +101500001,0,0,0,306080,160,306070,90,,,1015000011,10000,0,1015000012,6000,5400,1015000013,1100,10800,1015000014,1000,21600,FALSE,1 +101500002,0,0,0,306080,160,306070,90,,,1015000021,10000,0,1015000022,6000,5400,1015000023,1100,10800,1015000024,1000,21600,FALSE,1 +101510001,0,0,0,306075,120,306070,30,306071,20,1015100011,10000,0,1015100012,6000,5400,1015100013,1100,10800,1015100014,1000,21600,FALSE,1 +101510002,0,0,0,306075,120,306070,30,306071,20,1015100021,10000,0,1015100022,6000,5400,1015100023,1100,10800,1015100024,1000,21600,FALSE,1 +101520001,0,0,0,306075,120,306070,30,306074,20,1015200011,10000,0,1015200012,6000,5400,1015200013,1100,10800,1015200014,1000,21600,FALSE,1 +101520002,0,0,0,306075,120,306070,30,306074,20,1015200021,10000,0,1015200022,6000,5400,1015200023,1100,10800,1015200024,1000,21600,FALSE,1 +101520003,0,0,0,306075,120,306070,30,306074,20,1015200031,10000,0,1015200032,6000,5400,1015200033,1100,10800,1015200034,1000,21600,FALSE,1 +101530001,0,0,0,306080,160,306070,50,306073,30,1015300011,10000,0,1015300012,6000,5400,1015300013,1100,10800,1015300014,1000,21600,FALSE,1 +101530002,0,0,0,306080,160,306070,50,306073,30,1015300021,10000,0,1015300022,6000,5400,1015300023,1100,10800,1015300024,1000,21600,FALSE,1 +101540001,0,0,0,306080,160,306070,50,306072,30,1015400011,10000,0,1015400012,6000,5400,1015400013,1100,10800,1015400014,1000,21600,FALSE,1 +101540002,0,0,0,306080,160,306070,50,306072,30,1015400021,10000,0,1015400022,6000,5400,1015400023,1100,10800,1015400024,1000,21600,FALSE,1 +101540003,0,0,0,306080,160,306070,50,306072,30,1015400031,10000,0,1015400032,6000,5400,1015400033,1100,10800,1015400034,1000,21600,FALSE,1 +102500011,0,0,0,306082,160,306070,90,,,1025000111,10000,0,1025000112,6000,5400,1025000113,1100,10800,1025000114,1000,21600,FALSE,1 +102500012,0,0,0,306082,160,306070,90,,,1025000121,10000,0,1025000122,6000,5400,1025000123,1100,10800,1025000124,1000,21600,FALSE,1 +102510011,0,0,0,306077,120,306070,30,306071,20,1025100111,10000,0,1025100112,6000,5400,1025100113,1100,10800,1025100114,1000,21600,FALSE,1 +102510012,0,0,0,306077,120,306070,30,306071,20,1025100121,10000,0,1025100122,6000,5400,1025100123,1100,10800,1025100124,1000,21600,FALSE,1 +102520011,0,0,0,306077,120,306070,30,306074,20,1025200111,10000,0,1025200112,6000,5400,1025200113,1100,10800,1025200114,1000,21600,FALSE,1 +102520012,0,0,0,306077,120,306070,30,306074,20,1025200121,10000,0,1025200122,6000,5400,1025200123,1100,10800,1025200124,1000,21600,FALSE,1 +102520013,0,0,0,306077,120,306070,30,306074,20,1025200131,10000,0,1025200132,6000,5400,1025200133,1100,10800,1025200134,1000,21600,FALSE,1 +102530011,0,0,0,306082,160,306070,50,306073,30,1025300111,10000,0,1025300112,6000,5400,1025300113,1100,10800,1025300114,1000,21600,FALSE,1 +102530012,0,0,0,306082,160,306070,50,306073,30,1025300121,10000,0,1025300122,6000,5400,1025300123,1100,10800,1025300124,1000,21600,FALSE,1 +102540011,0,0,0,306082,160,306070,50,306072,30,1025400111,10000,0,1025400112,6000,5400,1025400113,1100,10800,1025400114,1000,21600,FALSE,1 +102540012,0,0,0,306082,160,306070,50,306072,30,1025400121,10000,0,1025400122,6000,5400,1025400123,1100,10800,1025400124,1000,21600,FALSE,1 +102540013,0,0,0,306082,160,306070,50,306072,30,1025400131,10000,0,1025400132,6000,5400,1025400133,1100,10800,1025400134,1000,21600,FALSE,1 +103500011,0,0,0,306081,160,306070,90,,,1035000111,10000,0,1035000112,6000,5400,1035000113,1100,10800,1035000114,1000,21600,FALSE,1 +103500012,0,0,0,306081,160,306070,90,,,1035000121,10000,0,1035000122,6000,5400,1035000123,1100,10800,1035000124,1000,21600,FALSE,1 +103510011,0,0,0,306076,120,306070,30,306071,20,1035100111,10000,0,1035100112,6000,5400,1035100113,1100,10800,1035100114,1000,21600,FALSE,1 +103510012,0,0,0,306076,120,306070,30,306071,20,1035100121,10000,0,1035100122,6000,5400,1035100123,1100,10800,1035100124,1000,21600,FALSE,1 +103520011,0,0,0,306076,120,306070,30,306074,20,1035200111,10000,0,1035200112,6000,5400,1035200113,1100,10800,1035200114,1000,21600,FALSE,1 +103520012,0,0,0,306076,120,306070,30,306074,20,1035200121,10000,0,1035200122,6000,5400,1035200123,1100,10800,1035200124,1000,21600,FALSE,1 +103520013,0,0,0,306076,120,306070,30,306074,20,1035200131,10000,0,1035200132,6000,5400,1035200133,1100,10800,1035200134,1000,21600,FALSE,1 +103530011,0,0,0,306081,160,306070,50,306073,30,1035300111,10000,0,1035300112,6000,5400,1035300113,1100,10800,1035300114,1000,21600,FALSE,1 +103530012,0,0,0,306081,160,306070,50,306073,30,1035300121,10000,0,1035300122,6000,5400,1035300123,1100,10800,1035300124,1000,21600,FALSE,1 +103540011,0,0,0,306081,160,306070,50,306072,30,1035400111,10000,0,1035400112,6000,5400,1035400113,1100,10800,1035400114,1000,21600,FALSE,1 +103540012,0,0,0,306081,160,306070,50,306072,30,1035400121,10000,0,1035400122,6000,5400,1035400123,1100,10800,1035400124,1000,21600,FALSE,1 +103540013,0,0,0,306081,160,306070,50,306072,30,1035400131,10000,0,1035400132,6000,5400,1035400133,1100,10800,1035400134,1000,21600,FALSE,1 +104500011,0,0,0,306083,160,306070,90,,,1045000111,10000,0,1045000112,6000,5400,1045000113,1100,10800,1045000114,1000,21600,FALSE,1 +104500012,0,0,0,306083,160,306070,90,,,1045000121,10000,0,1045000122,6000,5400,1045000123,1100,10800,1045000124,1000,21600,FALSE,1 +104510011,0,0,0,306078,120,306070,30,306071,20,1045100111,10000,0,1045100112,6000,5400,1045100113,1100,10800,1045100114,1000,21600,FALSE,1 +104510012,0,0,0,306078,120,306070,30,306071,20,1045100121,10000,0,1045100122,6000,5400,1045100123,1100,10800,1045100124,1000,21600,FALSE,1 +104520011,0,0,0,306078,120,306070,30,306074,20,1045200111,10000,0,1045200112,6000,5400,1045200113,1100,10800,1045200114,1000,21600,FALSE,1 +104520012,0,0,0,306078,120,306070,30,306074,20,1045200121,10000,0,1045200122,6000,5400,1045200123,1100,10800,1045200124,1000,21600,FALSE,1 +104520013,0,0,0,306078,120,306070,30,306074,20,1045200131,10000,0,1045200132,6000,5400,1045200133,1100,10800,1045200134,1000,21600,FALSE,1 +104530011,0,0,0,306083,160,306070,50,306073,30,1045300111,10000,0,1045300112,6000,5400,1045300113,1100,10800,1045300114,1000,21600,FALSE,1 +104530012,0,0,0,306083,160,306070,50,306073,30,1045300121,10000,0,1045300122,6000,5400,1045300123,1100,10800,1045300124,1000,21600,FALSE,1 +104540011,0,0,0,306083,160,306070,50,306072,30,1045400111,10000,0,1045400112,6000,5400,1045400113,1100,10800,1045400114,1000,21600,FALSE,1 +104540012,0,0,0,306083,160,306070,50,306072,30,1045400121,10000,0,1045400122,6000,5400,1045400123,1100,10800,1045400124,1000,21600,FALSE,1 +104540013,0,0,0,306083,160,306070,50,306072,30,1045400131,10000,0,1045400132,6000,5400,1045400133,1100,10800,1045400134,1000,21600,FALSE,1 +105500001,0,0,0,306084,160,306070,90,,,1055000011,10000,0,1055000012,6000,5400,1055000013,1100,10800,1055000014,1000,21600,FALSE,1 +105500002,0,0,0,306084,160,306070,90,,,1055000021,10000,0,1055000022,6000,5400,1055000023,1100,10800,1055000024,1000,21600,FALSE,1 +105510001,0,0,0,306079,120,306070,30,306071,20,1055100011,10000,0,1055100012,6000,5400,1055100013,1100,10800,1055100014,1000,21600,FALSE,1 +105510002,0,0,0,306079,120,306070,30,306071,20,1055100021,10000,0,1055100022,6000,5400,1055100023,1100,10800,1055100024,1000,21600,FALSE,1 +105520001,0,0,0,306079,120,306070,30,306074,20,1055200011,10000,0,1055200012,6000,5400,1055200013,1100,10800,1055200014,1000,21600,FALSE,1 +105520002,0,0,0,306079,120,306070,30,306074,20,1055200021,10000,0,1055200022,6000,5400,1055200023,1100,10800,1055200024,1000,21600,FALSE,1 +105520003,0,0,0,306079,120,306070,30,306074,20,1055200031,10000,0,1055200032,6000,5400,1055200033,1100,10800,1055200034,1000,21600,FALSE,1 +105530001,0,0,0,306084,160,306070,50,306073,30,1055300011,10000,0,1055300012,6000,5400,1055300013,1100,10800,1055300014,1000,21600,FALSE,1 +105530002,0,0,0,306084,160,306070,50,306073,30,1055300021,10000,0,1055300022,6000,5400,1055300023,1100,10800,1055300024,1000,21600,FALSE,1 +105540001,0,0,0,306084,160,306070,50,306072,30,1055400011,10000,0,1055400012,6000,5400,1055400013,1100,10800,1055400014,1000,21600,FALSE,1 +105540002,0,0,0,306084,160,306070,50,306072,30,1055400021,10000,0,1055400022,6000,5400,1055400023,1100,10800,1055400024,1000,21600,FALSE,1 +105540003,0,0,0,306084,160,306070,50,306072,30,1055400031,10000,0,1055400032,6000,5400,1055400033,1100,10800,1055400034,1000,21600,FALSE,1 106100001,0,0,1,,,,,,,1061000011,10000,0,1061000012,10000,0,1061000013,10000,0,,,,FALSE,1 106200001,0,0,1,,,,,,,1062000011,10000,0,1062000012,10000,0,1062000013,10000,0,,,,FALSE,1 106300001,0,0,1,,,,,,,1063000011,10000,0,1063000012,10000,0,1063000013,10000,0,,,,FALSE,1 @@ -512,66 +512,102 @@ ID,required_action_point,required_gold,required_block_index,material_id,material 106400031,0,0,1,,,,,,,1064000311,10000,0,1064000312,10000,0,1064000313,10000,0,,,,FALSE,1 106500051,0,0,1,,,,,,,1065000511,10000,0,1065000512,10000,0,1065000513,10000,0,,,,FALSE,1 106500061,0,0,1,,,,,,,1065000611,10000,0,1065000612,10000,0,1065000613,10000,0,,,,FALSE,1 -101500011,0,0,0,306095,700,306085,80,,,1015000111,10000,0,1015000112,6000,3780,1015000113,1500,7560,1015000114,800,15120,FALSE,1 -101500012,0,0,0,306095,700,306085,80,,,1015000121,10000,0,1015000122,6000,3780,1015000123,1500,7560,1015000124,800,15120,FALSE,1 -101510011,0,0,0,306090,700,306086,80,,,1015100111,10000,0,1015100112,6000,3780,1015100113,1500,7560,1015100114,800,15120,FALSE,1 -101510012,0,0,0,306090,700,306086,80,,,1015100121,10000,0,1015100122,6000,3780,1015100123,1500,7560,1015100124,800,15120,FALSE,1 -101520011,0,0,0,306090,700,306087,80,,,1015200111,10000,0,1015200112,6000,3780,1015200113,1500,7560,1015200114,800,15120,FALSE,1 -101520012,0,0,0,306090,700,306087,80,,,1015200121,10000,0,1015200122,6000,3780,1015200123,1500,7560,1015200124,800,15120,FALSE,1 -101520013,0,0,0,306090,700,306087,80,,,1015200131,10000,0,1015200132,6000,3780,1015200133,1500,7560,1015200134,800,15120,FALSE,1 -101530011,0,0,0,306095,700,306088,80,,,1015300111,10000,0,1015300112,6000,3780,1015300113,1500,7560,1015300114,800,15120,FALSE,1 -101530012,0,0,0,306095,700,306088,80,,,1015300121,10000,0,1015300122,6000,3780,1015300123,1500,7560,1015300124,800,15120,FALSE,1 -101540011,0,0,0,306090,500,306095,500,306089,100,1015400111,10000,0,1015400112,6000,3780,1015400113,1500,7560,1015400114,800,15120,FALSE,1 -101540012,0,0,0,306090,500,306095,500,306089,100,1015400121,10000,0,1015400122,6000,3780,1015400123,1500,7560,1015400124,800,15120,FALSE,1 -101540013,0,0,0,306090,500,306095,500,306089,100,1015400131,10000,0,1015400132,6000,3780,1015400133,1500,7560,1015400134,800,15120,FALSE,1 -102500001,0,0,0,306097,700,306085,80,,,1025000011,10000,0,1025000012,6000,3780,1025000013,1500,7560,1025000014,800,15120,FALSE,1 -102500002,0,0,0,306097,700,306085,80,,,1025000021,10000,0,1025000022,6000,3780,1025000023,1500,7560,1025000024,800,15120,FALSE,1 -102510001,0,0,0,306091,700,306086,80,,,1025100011,10000,0,1025100012,6000,3780,1025100013,1500,7560,1025100014,800,15120,FALSE,1 -102510002,0,0,0,306091,700,306086,80,,,1025100021,10000,0,1025100022,6000,3780,1025100023,1500,7560,1025100024,800,15120,FALSE,1 -102520001,0,0,0,306091,700,306087,80,,,1025200011,10000,0,1025200012,6000,3780,1025200013,1500,7560,1025200014,800,15120,FALSE,1 -102520002,0,0,0,306091,700,306087,80,,,1025200021,10000,0,1025200022,6000,3780,1025200023,1500,7560,1025200024,800,15120,FALSE,1 -102520003,0,0,0,306091,700,306087,80,,,1025200031,10000,0,1025200032,6000,3780,1025200033,1500,7560,1025200034,800,15120,FALSE,1 -102530001,0,0,0,306097,700,306088,80,,,1025300011,10000,0,1025300012,6000,3780,1025300013,1500,7560,1025300014,800,15120,FALSE,1 -102530002,0,0,0,306097,700,306088,80,,,1025300021,10000,0,1025300022,6000,3780,1025300023,1500,7560,1025300024,800,15120,FALSE,1 -102540001,0,0,0,306092,500,306097,500,306089,100,1025400011,10000,0,1025400012,6000,3780,1025400013,1500,7560,1025400014,800,15120,FALSE,1 -102540002,0,0,0,306091,500,306097,500,306089,100,1025400021,10000,0,1025400022,6000,3780,1025400023,1500,7560,1025400024,800,15120,FALSE,1 -102540003,0,0,0,306091,500,306097,500,306089,100,1025400031,10000,0,1025400032,6000,3780,1025400033,1500,7560,1025400034,800,15120,FALSE,1 -103500021,0,0,0,306096,700,306085,80,,,1035000211,10000,0,1035000212,6000,3780,1035000213,1500,7560,1035000214,800,15120,FALSE,1 -103500022,0,0,0,306096,700,306085,80,,,1035000221,10000,0,1035000222,6000,3780,1035000223,1500,7560,1035000224,800,15120,FALSE,1 -103510021,0,0,0,306092,700,306086,80,,,1035100211,10000,0,1035100212,6000,3780,1035100213,1500,7560,1035100214,800,15120,FALSE,1 -103510022,0,0,0,306092,700,306086,80,,,1035100221,10000,0,1035100222,6000,3780,1035100223,1500,7560,1035100224,800,15120,FALSE,1 -103520021,0,0,0,306092,700,306087,80,,,1035200211,10000,0,1035200212,6000,3780,1035200213,1500,7560,1035200214,800,15120,FALSE,1 -103520022,0,0,0,306092,700,306087,80,,,1035200221,10000,0,1035200222,6000,3780,1035200223,1500,7560,1035200224,800,15120,FALSE,1 -103520023,0,0,0,306092,700,306087,80,,,1035200231,10000,0,1035200232,6000,3780,1035200233,1500,7560,1035200234,800,15120,FALSE,1 -103530021,0,0,0,306096,700,306088,80,,,1035300211,10000,0,1035300212,6000,3780,1035300213,1500,7560,1035300214,800,15120,FALSE,1 -103530022,0,0,0,306096,700,306088,80,,,1035300221,10000,0,1035300222,6000,3780,1035300223,1500,7560,1035300224,800,15120,FALSE,1 -103540021,0,0,0,306092,500,306096,500,306089,100,1035400211,10000,0,1035400212,6000,3780,1035400213,1500,7560,1035400214,800,15120,FALSE,1 -103540022,0,0,0,306092,500,306096,500,306089,100,1035400221,10000,0,1035400222,6000,3780,1035400223,1500,7560,1035400224,800,15120,FALSE,1 -103540023,0,0,0,306092,500,306096,500,306089,100,1035400231,10000,0,1035400232,6000,3780,1035400233,1500,7560,1035400234,800,15120,FALSE,1 -104500021,0,0,0,306098,700,306085,80,,,1045000211,10000,0,1045000212,6000,3780,1045000213,1500,7560,1045000214,800,15120,FALSE,1 -104500022,0,0,0,306098,700,306085,80,,,1045000221,10000,0,1045000222,6000,3780,1045000223,1500,7560,1045000224,800,15120,FALSE,1 -104510021,0,0,0,306093,700,306086,80,,,1045100211,10000,0,1045100212,6000,3780,1045100213,1500,7560,1045100214,800,15120,FALSE,1 -104510022,0,0,0,306093,700,306086,80,,,1045100221,10000,0,1045100222,6000,3780,1045100223,1500,7560,1045100224,800,15120,FALSE,1 -104520021,0,0,0,306093,700,306087,80,,,1045200211,10000,0,1045200212,6000,3780,1045200213,1500,7560,1045200214,800,15120,FALSE,1 -104520022,0,0,0,306093,700,306087,80,,,1045200221,10000,0,1045200222,6000,3780,1045200223,1500,7560,1045200224,800,15120,FALSE,1 -104520023,0,0,0,306093,700,306087,80,,,1045200231,10000,0,1045200232,6000,3780,1045200233,1500,7560,1045200234,800,15120,FALSE,1 -104530021,0,0,0,306098,700,306088,80,,,1045300211,10000,0,1045300212,6000,3780,1045300213,1500,7560,1045300214,800,15120,FALSE,1 -104530022,0,0,0,306098,700,306088,80,,,1045300221,10000,0,1045300222,6000,3780,1045300223,1500,7560,1045300224,800,15120,FALSE,1 -104540021,0,0,0,306093,500,306098,500,306089,100,1045400211,10000,0,1045400212,6000,3780,1045400213,1500,7560,1045400214,800,15120,FALSE,1 -104540022,0,0,0,306093,500,306098,500,306089,100,1045400221,10000,0,1045400222,6000,3780,1045400223,1500,7560,1045400224,800,15120,FALSE,1 -104540023,0,0,0,306093,500,306098,500,306089,100,1045400231,10000,0,1045400232,6000,3780,1045400233,1500,7560,1045400234,800,15120,FALSE,1 -105500011,0,0,0,306099,700,306085,80,,,1055000111,10000,0,1055000112,6000,3780,1055000113,1500,7560,1055000114,800,15120,FALSE,1 -105500012,0,0,0,306099,700,306085,80,,,1055000121,10000,0,1055000122,6000,3780,1055000123,1500,7560,1055000124,800,15120,FALSE,1 -105510011,0,0,0,306094,700,306086,80,,,1055100111,10000,0,1055100112,6000,3780,1055100113,1500,7560,1055100114,800,15120,FALSE,1 -105510012,0,0,0,306094,700,306086,80,,,1055100121,10000,0,1055100122,6000,3780,1055100123,1500,7560,1055100124,800,15120,FALSE,1 -105520011,0,0,0,306094,700,306087,80,,,1055200111,10000,0,1055200112,6000,3780,1055200113,1500,7560,1055200114,800,15120,FALSE,1 -105520012,0,0,0,306094,700,306087,80,,,1055200121,10000,0,1055200122,6000,3780,1055200123,1500,7560,1055200124,800,15120,FALSE,1 -105520013,0,0,0,306094,700,306087,80,,,1055200131,10000,0,1055200132,6000,3780,1055200133,1500,7560,1055200134,800,15120,FALSE,1 -105530011,0,0,0,306099,700,306088,80,,,1055300111,10000,0,1055300112,6000,3780,1055300113,1500,7560,1055300114,800,15120,FALSE,1 -105530012,0,0,0,306099,700,306088,80,,,1055300121,10000,0,1055300122,6000,3780,1055300123,1500,7560,1055300124,800,15120,FALSE,1 -105540011,0,0,0,306094,500,306099,500,306089,100,1055400111,10000,0,1055400112,6000,3780,1055400113,1500,7560,1055400114,800,15120,FALSE,1 -105540012,0,0,0,306094,500,306099,500,306089,100,1055400121,10000,0,1055400122,6000,3780,1055400123,1500,7560,1055400124,800,15120,FALSE,1 -105540013,0,0,0,306094,500,306099,500,306089,100,1055400131,10000,0,1055400132,6000,3780,1055400133,1500,7560,1055400134,800,15120,FALSE,1 +101500011,0,0,0,306095,150,306085,30,,,1015000111,10000,0,1015000112,6000,5400,1015000113,1500,10800,1015000114,1300,21600,FALSE,1 +101500012,0,0,0,306095,150,306085,30,,,1015000121,10000,0,1015000122,6000,5400,1015000123,1500,10800,1015000124,1300,21600,FALSE,1 +101510011,0,0,0,306090,150,306086,30,,,1015100111,10000,0,1015100112,6000,5400,1015100113,1500,10800,1015100114,1300,21600,FALSE,1 +101510012,0,0,0,306090,150,306086,30,,,1015100121,10000,0,1015100122,6000,5400,1015100123,1500,10800,1015100124,1300,21600,FALSE,1 +101520011,0,0,0,306090,150,306087,30,,,1015200111,10000,0,1015200112,6000,5400,1015200113,1500,10800,1015200114,1300,21600,FALSE,1 +101520012,0,0,0,306090,150,306087,30,,,1015200121,10000,0,1015200122,6000,5400,1015200123,1500,10800,1015200124,1300,21600,FALSE,1 +101520013,0,0,0,306090,150,306087,30,,,1015200131,10000,0,1015200132,6000,5400,1015200133,1500,10800,1015200134,1300,21600,FALSE,1 +101530011,0,0,0,306095,150,306088,30,,,1015300111,10000,0,1015300112,6000,5400,1015300113,1500,10800,1015300114,1300,21600,FALSE,1 +101530012,0,0,0,306095,150,306088,30,,,1015300121,10000,0,1015300122,6000,5400,1015300123,1500,10800,1015300124,1300,21600,FALSE,1 +101540011,0,0,0,306090,150,306095,150,306089,40,1015400111,10000,0,1015400112,6000,5400,1015400113,1500,10800,1015400114,1300,21600,FALSE,1 +101540012,0,0,0,306090,150,306095,150,306089,40,1015400121,10000,0,1015400122,6000,5400,1015400123,1500,10800,1015400124,1300,21600,FALSE,1 +101540013,0,0,0,306090,150,306095,150,306089,40,1015400131,10000,0,1015400132,6000,5400,1015400133,1500,10800,1015400134,1300,21600,FALSE,1 +102500001,0,0,0,306097,150,306085,30,,,1025000011,10000,0,1025000012,6000,5400,1025000013,1500,10800,1025000014,1300,21600,FALSE,1 +102500002,0,0,0,306097,150,306085,30,,,1025000021,10000,0,1025000022,6000,5400,1025000023,1500,10800,1025000024,1300,21600,FALSE,1 +102510001,0,0,0,306091,150,306086,30,,,1025100011,10000,0,1025100012,6000,5400,1025100013,1500,10800,1025100014,1300,21600,FALSE,1 +102510002,0,0,0,306091,150,306086,30,,,1025100021,10000,0,1025100022,6000,5400,1025100023,1500,10800,1025100024,1300,21600,FALSE,1 +102520001,0,0,0,306091,150,306087,30,,,1025200011,10000,0,1025200012,6000,5400,1025200013,1500,10800,1025200014,1300,21600,FALSE,1 +102520002,0,0,0,306091,150,306087,30,,,1025200021,10000,0,1025200022,6000,5400,1025200023,1500,10800,1025200024,1300,21600,FALSE,1 +102520003,0,0,0,306091,150,306087,30,,,1025200031,10000,0,1025200032,6000,5400,1025200033,1500,10800,1025200034,1300,21600,FALSE,1 +102530001,0,0,0,306097,150,306088,30,,,1025300011,10000,0,1025300012,6000,5400,1025300013,1500,10800,1025300014,1300,21600,FALSE,1 +102530002,0,0,0,306097,150,306088,30,,,1025300021,10000,0,1025300022,6000,5400,1025300023,1500,10800,1025300024,1300,21600,FALSE,1 +102540001,0,0,0,306092,150,306097,150,306089,40,1025400011,10000,0,1025400012,6000,5400,1025400013,1500,10800,1025400014,1300,21600,FALSE,1 +102540002,0,0,0,306091,150,306097,150,306089,40,1025400021,10000,0,1025400022,6000,5400,1025400023,1500,10800,1025400024,1300,21600,FALSE,1 +102540003,0,0,0,306091,150,306097,150,306089,40,1025400031,10000,0,1025400032,6000,5400,1025400033,1500,10800,1025400034,1300,21600,FALSE,1 +103500021,0,0,0,306096,150,306085,30,,,1035000211,10000,0,1035000212,6000,5400,1035000213,1500,10800,1035000214,1300,21600,FALSE,1 +103500022,0,0,0,306096,150,306085,30,,,1035000221,10000,0,1035000222,6000,5400,1035000223,1500,10800,1035000224,1300,21600,FALSE,1 +103510021,0,0,0,306092,150,306086,30,,,1035100211,10000,0,1035100212,6000,5400,1035100213,1500,10800,1035100214,1300,21600,FALSE,1 +103510022,0,0,0,306092,150,306086,30,,,1035100221,10000,0,1035100222,6000,5400,1035100223,1500,10800,1035100224,1300,21600,FALSE,1 +103520021,0,0,0,306092,150,306087,30,,,1035200211,10000,0,1035200212,6000,5400,1035200213,1500,10800,1035200214,1300,21600,FALSE,1 +103520022,0,0,0,306092,150,306087,30,,,1035200221,10000,0,1035200222,6000,5400,1035200223,1500,10800,1035200224,1300,21600,FALSE,1 +103520023,0,0,0,306092,150,306087,30,,,1035200231,10000,0,1035200232,6000,5400,1035200233,1500,10800,1035200234,1300,21600,FALSE,1 +103530021,0,0,0,306096,150,306088,30,,,1035300211,10000,0,1035300212,6000,5400,1035300213,1500,10800,1035300214,1300,21600,FALSE,1 +103530022,0,0,0,306096,150,306088,30,,,1035300221,10000,0,1035300222,6000,5400,1035300223,1500,10800,1035300224,1300,21600,FALSE,1 +103540021,0,0,0,306092,150,306096,150,306089,40,1035400211,10000,0,1035400212,6000,5400,1035400213,1500,10800,1035400214,1300,21600,FALSE,1 +103540022,0,0,0,306092,150,306096,150,306089,40,1035400221,10000,0,1035400222,6000,5400,1035400223,1500,10800,1035400224,1300,21600,FALSE,1 +103540023,0,0,0,306092,150,306096,150,306089,40,1035400231,10000,0,1035400232,6000,5400,1035400233,1500,10800,1035400234,1300,21600,FALSE,1 +104500021,0,0,0,306098,150,306085,30,,,1045000211,10000,0,1045000212,6000,5400,1045000213,1500,10800,1045000214,1300,21600,FALSE,1 +104500022,0,0,0,306098,150,306085,30,,,1045000221,10000,0,1045000222,6000,5400,1045000223,1500,10800,1045000224,1300,21600,FALSE,1 +104510021,0,0,0,306093,150,306086,30,,,1045100211,10000,0,1045100212,6000,5400,1045100213,1500,10800,1045100214,1300,21600,FALSE,1 +104510022,0,0,0,306093,150,306086,30,,,1045100221,10000,0,1045100222,6000,5400,1045100223,1500,10800,1045100224,1300,21600,FALSE,1 +104520021,0,0,0,306093,150,306087,30,,,1045200211,10000,0,1045200212,6000,5400,1045200213,1500,10800,1045200214,1300,21600,FALSE,1 +104520022,0,0,0,306093,150,306087,30,,,1045200221,10000,0,1045200222,6000,5400,1045200223,1500,10800,1045200224,1300,21600,FALSE,1 +104520023,0,0,0,306093,150,306087,30,,,1045200231,10000,0,1045200232,6000,5400,1045200233,1500,10800,1045200234,1300,21600,FALSE,1 +104530021,0,0,0,306098,150,306088,30,,,1045300211,10000,0,1045300212,6000,5400,1045300213,1500,10800,1045300214,1300,21600,FALSE,1 +104530022,0,0,0,306098,150,306088,30,,,1045300221,10000,0,1045300222,6000,5400,1045300223,1500,10800,1045300224,1300,21600,FALSE,1 +104540021,0,0,0,306093,150,306098,150,306089,40,1045400211,10000,0,1045400212,6000,5400,1045400213,1500,10800,1045400214,1300,21600,FALSE,1 +104540022,0,0,0,306093,150,306098,150,306089,40,1045400221,10000,0,1045400222,6000,5400,1045400223,1500,10800,1045400224,1300,21600,FALSE,1 +104540023,0,0,0,306093,150,306098,150,306089,40,1045400231,10000,0,1045400232,6000,5400,1045400233,1500,10800,1045400234,1300,21600,FALSE,1 +105500011,0,0,0,306099,150,306085,30,,,1055000111,10000,0,1055000112,6000,5400,1055000113,1500,10800,1055000114,1300,21600,FALSE,1 +105500012,0,0,0,306099,150,306085,30,,,1055000121,10000,0,1055000122,6000,5400,1055000123,1500,10800,1055000124,1300,21600,FALSE,1 +105510011,0,0,0,306094,150,306086,30,,,1055100111,10000,0,1055100112,6000,5400,1055100113,1500,10800,1055100114,1300,21600,FALSE,1 +105510012,0,0,0,306094,150,306086,30,,,1055100121,10000,0,1055100122,6000,5400,1055100123,1500,10800,1055100124,1300,21600,FALSE,1 +105520011,0,0,0,306094,150,306087,30,,,1055200111,10000,0,1055200112,6000,5400,1055200113,1500,10800,1055200114,1300,21600,FALSE,1 +105520012,0,0,0,306094,150,306087,30,,,1055200121,10000,0,1055200122,6000,5400,1055200123,1500,10800,1055200124,1300,21600,FALSE,1 +105520013,0,0,0,306094,150,306087,30,,,1055200131,10000,0,1055200132,6000,5400,1055200133,1500,10800,1055200134,1300,21600,FALSE,1 +105530011,0,0,0,306099,150,306088,30,,,1055300111,10000,0,1055300112,6000,5400,1055300113,1500,10800,1055300114,1300,21600,FALSE,1 +105530012,0,0,0,306099,150,306088,30,,,1055300121,10000,0,1055300122,6000,5400,1055300123,1500,10800,1055300124,1300,21600,FALSE,1 +105540011,0,0,0,306094,150,306099,150,306089,40,1055400111,10000,0,1055400112,6000,5400,1055400113,1500,10800,1055400114,1300,21600,FALSE,1 +105540012,0,0,0,306094,150,306099,150,306089,40,1055400121,10000,0,1055400122,6000,5400,1055400123,1500,10800,1055400124,1300,21600,FALSE,1 +105540013,0,0,0,306094,150,306099,150,306089,40,1055400131,10000,0,1055400132,6000,5400,1055400133,1500,10800,1055400134,1300,21600,FALSE,1 106400041,0,0,1,,,,,,,1064000411,10000,0,1064000412,10000,0,1064000413,10000,0,,,,FALSE,1 106500071,0,0,1,,,,,,,1065000711,10000,0,1065000712,10000,0,1065000713,10000,0,,,,FALSE,1 -106600001,0,0,1,,,,,,,1066000011,10000,0,1066000012,10000,0,1066000013,10000,0,,,,FALSE,1 \ No newline at end of file +106600001,0,0,1,,,,,,,1066000011,10000,0,1066000012,10000,0,1066000013,10000,0,,,,FALSE,1 +107300001,0,0,1,,,,,,,1073000011,10000,0,1073000012,10000,0,1073000013,10000,0,1073000014,10000,0,FALSE,1 +107300011,0,0,1,,,,,,,1073000011,10000,0,1073000012,10000,0,1073000013,10000,0,1073000114,10000,0,FALSE,1 +107300021,0,0,1,,,,,,,1073000011,10000,0,1073000012,10000,0,1073000013,10000,0,1073000214,10000,0,FALSE,1 +107300031,0,0,1,,,,,,,1073000311,10000,0,1073000312,10000,0,1073000313,10000,0,1073000314,10000,0,FALSE,1 +107300041,0,0,1,,,,,,,1073000311,10000,0,1073000312,10000,0,1073000313,10000,0,1073000414,10000,0,FALSE,1 +107300051,0,0,1,,,,,,,1073000311,10000,0,1073000312,10000,0,1073000313,10000,0,1073000514,10000,0,FALSE,1 +107300061,0,0,1,,,,,,,1073000611,10000,0,1073000612,10000,0,1073000613,10000,0,1073000614,10000,0,FALSE,1 +107300071,0,0,1,,,,,,,1073000611,10000,0,1073000612,10000,0,1073000613,10000,0,1073000714,10000,0,FALSE,1 +107300081,0,0,1,,,,,,,1073000611,10000,0,1073000612,10000,0,1073000613,10000,0,1073000814,10000,0,FALSE,1 +107400001,0,0,1,,,,,,,1074000011,10000,0,1074000012,10000,0,1074000013,10000,0,1074000014,10000,0,FALSE,1 +107400011,0,0,1,,,,,,,1074000011,10000,0,1074000012,10000,0,1074000013,10000,0,1074000114,10000,0,FALSE,1 +107400021,0,0,1,,,,,,,1074000011,10000,0,1074000012,10000,0,1074000013,10000,0,1074000214,10000,0,FALSE,1 +107400031,0,0,1,,,,,,,1074000311,10000,0,1074000312,10000,0,1074000313,10000,0,1074000314,10000,0,FALSE,1 +107400041,0,0,1,,,,,,,1074000311,10000,0,1074000312,10000,0,1074000313,10000,0,1074000414,10000,0,FALSE,1 +107400051,0,0,1,,,,,,,1074000311,10000,0,1074000312,10000,0,1074000313,10000,0,1074000514,10000,0,FALSE,1 +107400061,0,0,1,,,,,,,1074000611,10000,0,1074000612,10000,0,1074000613,10000,0,1074000614,10000,0,FALSE,1 +107400071,0,0,1,,,,,,,1074000611,10000,0,1074000612,10000,0,1074000613,10000,0,1074000714,10000,0,FALSE,1 +107400081,0,0,1,,,,,,,1074000611,10000,0,1074000612,10000,0,1074000613,10000,0,1074000814,10000,0,FALSE,1 +107500001,0,0,1,,,,,,,1075000011,10000,0,1075000012,10000,0,1075000013,10000,0,1075000014,10000,0,FALSE,1 +107500011,0,0,1,,,,,,,1075000011,10000,0,1075000012,10000,0,1075000013,10000,0,1075000114,10000,0,FALSE,1 +107500021,0,0,1,,,,,,,1075000011,10000,0,1075000012,10000,0,1075000013,10000,0,1075000214,10000,0,FALSE,1 +107500031,0,0,1,,,,,,,1075000311,10000,0,1075000312,10000,0,1075000313,10000,0,1075000314,10000,0,FALSE,1 +107500041,0,0,1,,,,,,,1075000311,10000,0,1075000312,10000,0,1075000313,10000,0,1075000414,10000,0,FALSE,1 +107500051,0,0,1,,,,,,,1075000311,10000,0,1075000312,10000,0,1075000313,10000,0,1075000514,10000,0,FALSE,1 +107500061,0,0,1,,,,,,,1075000611,10000,0,1075000612,10000,0,1075000613,10000,0,1075000614,10000,0,FALSE,1 +107500071,0,0,1,,,,,,,1075000611,10000,0,1075000612,10000,0,1075000613,10000,0,1075000714,10000,0,FALSE,1 +107500081,0,0,1,,,,,,,1075000611,10000,0,1075000612,10000,0,1075000613,10000,0,1075000814,10000,0,FALSE,1 +107600001,0,0,1,,,,,,,1076000011,10000,0,1076000012,10000,0,1076000013,10000,0,1076000014,10000,0,FALSE,1 +107600011,0,0,1,,,,,,,1076000011,10000,0,1076000012,10000,0,1076000013,10000,0,1076000114,10000,0,FALSE,1 +107600021,0,0,1,,,,,,,1076000011,10000,0,1076000012,10000,0,1076000013,10000,0,1076000214,10000,0,FALSE,1 +107600031,0,0,1,,,,,,,1076000311,10000,0,1076000312,10000,0,1076000313,10000,0,1076000314,10000,0,FALSE,1 +107600041,0,0,1,,,,,,,1076000311,10000,0,1076000312,10000,0,1076000313,10000,0,1076000414,10000,0,FALSE,1 +107600051,0,0,1,,,,,,,1076000311,10000,0,1076000312,10000,0,1076000313,10000,0,1076000514,10000,0,FALSE,1 +107600061,0,0,1,,,,,,,1076000611,10000,0,1076000612,10000,0,1076000613,10000,0,1076000614,10000,0,FALSE,1 +107600071,0,0,1,,,,,,,1076000611,10000,0,1076000612,10000,0,1076000613,10000,0,1076000714,10000,0,FALSE,1 +107600081,0,0,1,,,,,,,1076000611,10000,0,1076000612,10000,0,1076000613,10000,0,1076000814,10000,0,FALSE,1 \ No newline at end of file diff --git a/Lib9c/TableCSV/Item/ItemRequirementSheet.csv b/Lib9c/TableCSV/Item/ItemRequirementSheet.csv index 0431076fe..87bb76333 100644 --- a/Lib9c/TableCSV/Item/ItemRequirementSheet.csv +++ b/Lib9c/TableCSV/Item/ItemRequirementSheet.csv @@ -266,6 +266,7 @@ item_id,level,mimislevel 49900019,1,1 49900020,1,1 49900021,1,1 +49900022,1,1 105000,1,1 105001,1,1 105002,1,1 @@ -351,4 +352,39 @@ item_id,level,mimislevel 10640004,1,1 10650007,1,1 10660000,1,1 -10710000,1,1 +10730000,1,1 +10730001,1,1 +10730002,1,1 +10730003,1,1 +10730004,1,1 +10730005,1,1 +10730006,1,1 +10730007,1,1 +10730008,1,1 +10740000,1,1 +10740001,1,1 +10740002,1,1 +10740003,1,1 +10740004,1,1 +10740005,1,1 +10740006,1,1 +10740007,1,1 +10740008,1,1 +10750000,1,1 +10750001,1,1 +10750002,1,1 +10750003,1,1 +10750004,1,1 +10750005,1,1 +10750006,1,1 +10750007,1,1 +10750008,1,1 +10760000,1,1 +10760001,1,1 +10760002,1,1 +10760003,1,1 +10760004,1,1 +10760005,1,1 +10760006,1,1 +10760007,1,1 +10760008,1,1 \ No newline at end of file diff --git a/Lib9c/TableCSV/Item/MaterialItemSheet.csv b/Lib9c/TableCSV/Item/MaterialItemSheet.csv index 23d8848ce..2d308b2cf 100644 --- a/Lib9c/TableCSV/Item/MaterialItemSheet.csv +++ b/Lib9c/TableCSV/Item/MaterialItemSheet.csv @@ -194,7 +194,7 @@ id,_name,item_sub_type,grade,elemental_type 600104,Special Crystal Jewel,EquipmentMaterial,4,Normal 600201,Golden Dust,EquipmentMaterial,4,Normal 600202,Ruby Dust,EquipmentMaterial,4,Normal -600203,Diamond Dust,EquipmentMaterial,5,Normal +600203,Emerald Dust,EquipmentMaterial,4,Normal 600301,망치 커먼,EquipmentMaterial,1,Normal 600302,망치 레어,EquipmentMaterial,2,Normal 600303,망치 에픽,EquipmentMaterial,3,Normal @@ -245,4 +245,4 @@ id,_name,item_sub_type,grade,elemental_type 700906,챔피언 쉽 9 메달,NormalMaterial,5,Normal 701002,시즌 23 메달,NormalMaterial,5,Normal 701004,시즌 24 메달,NormalMaterial,5,Normal -701006,챔피언 쉽 10 메달,NormalMaterial,5,Normal +701006,챔피언 쉽 10 메달,NormalMaterial,5,Normal \ No newline at end of file diff --git a/Lib9c/TableCSV/Rune/RuneListSheet.csv b/Lib9c/TableCSV/Rune/RuneListSheet.csv index 26bd911df..7f4efd5ad 100644 --- a/Lib9c/TableCSV/Rune/RuneListSheet.csv +++ b/Lib9c/TableCSV/Rune/RuneListSheet.csv @@ -18,4 +18,7 @@ id,_name,grade,rune_type,required_level,use_place,bonus_coef 10029,Freya Purity Rune,6,2,1,7,30 10030,Freya Blessing Rune,6,1,1,7,30 10031,Odin Weakness Rune,6,2,1,7,30 -10032,Odin Wisdom Rune,6,1,1,7,30 \ No newline at end of file +10032,Odin Wisdom Rune,6,1,1,7,30 +10033,HIT Rune,5,1,1,7,10 +10034,SPD Rune,5,1,1,7,10 +10035,CRI Rune,5,1,1,7,10 \ No newline at end of file diff --git a/Lib9c/TableCSV/Rune/RuneOptionSheet.csv b/Lib9c/TableCSV/Rune/RuneOptionSheet.csv index 5fa5ed1f0..6c55a99d0 100644 --- a/Lib9c/TableCSV/Rune/RuneOptionSheet.csv +++ b/Lib9c/TableCSV/Rune/RuneOptionSheet.csv @@ -5399,306 +5399,306 @@ rune_id,level,total_cp,stat_type_1,value_1,value_type_1,stat_type_2,value_2,valu 10030,298,3861126,HP,4367235,Add,SPD,349592,Add,NONE,0,Add,,,,,,,, 10030,299,3863587,HP,4369858,Add,SPD,349864,Add,NONE,0,Add,,,,,,,, 10030,300,3866049,HP,4372481,Add,SPD,350136,Add,NONE,0,Add,,,,,,,, -10031,1,404729,ATK,24240,Add,DEF,9278,Add,NONE,0,Add,700015,20,30,-30.09,Percentage,NONE,Caster,10 -10031,2,447753,ATK,26430,Add,DEF,10651,Add,NONE,0,Add,700015,20,30,-30.18,Percentage,NONE,Caster,10 -10031,3,490776,ATK,28620,Add,DEF,12024,Add,NONE,0,Add,700015,20,30,-30.27,Percentage,NONE,Caster,10 -10031,4,533799,ATK,30810,Add,DEF,13397,Add,NONE,0,Add,700015,20,30,-30.36,Percentage,NONE,Caster,10 -10031,5,576822,ATK,33000,Add,DEF,14770,Add,NONE,0,Add,700015,20,30,-30.45,Percentage,NONE,Caster,10 -10031,6,619845,ATK,35190,Add,DEF,16143,Add,NONE,0,Add,700015,20,30,-30.54,Percentage,NONE,Caster,10 -10031,7,662869,ATK,37380,Add,DEF,17516,Add,NONE,0,Add,700015,20,30,-30.63,Percentage,NONE,Caster,10 -10031,8,705892,ATK,39570,Add,DEF,18889,Add,NONE,0,Add,700015,20,30,-30.72,Percentage,NONE,Caster,10 -10031,9,748915,ATK,41760,Add,DEF,20262,Add,NONE,0,Add,700015,20,30,-30.81,Percentage,NONE,Caster,10 -10031,10,791938,ATK,43950,Add,DEF,21635,Add,NONE,0,Add,700015,20,30,-30.9,Percentage,NONE,Caster,10 -10031,11,834962,ATK,46140,Add,DEF,23008,Add,NONE,0,Add,700015,20,30,-30.99,Percentage,NONE,Caster,10 -10031,12,877985,ATK,48330,Add,DEF,24381,Add,NONE,0,Add,700015,20,30,-31.08,Percentage,NONE,Caster,10 -10031,13,921008,ATK,50520,Add,DEF,25754,Add,NONE,0,Add,700015,20,30,-31.17,Percentage,NONE,Caster,10 -10031,14,964031,ATK,52710,Add,DEF,27127,Add,NONE,0,Add,700015,20,30,-31.26,Percentage,NONE,Caster,10 -10031,15,1007055,ATK,54900,Add,DEF,28500,Add,NONE,0,Add,700015,20,30,-31.35,Percentage,NONE,Caster,10 -10031,16,1050078,ATK,57090,Add,DEF,29873,Add,NONE,0,Add,700015,20,30,-31.44,Percentage,NONE,Caster,10 -10031,17,1093101,ATK,59280,Add,DEF,31246,Add,NONE,0,Add,700015,20,30,-31.53,Percentage,NONE,Caster,10 -10031,18,1136124,ATK,61470,Add,DEF,32619,Add,NONE,0,Add,700015,20,30,-31.62,Percentage,NONE,Caster,10 -10031,19,1179147,ATK,63660,Add,DEF,33992,Add,NONE,0,Add,700015,20,30,-31.71,Percentage,NONE,Caster,10 -10031,20,1222171,ATK,65850,Add,DEF,35365,Add,NONE,0,Add,700015,20,30,-31.8,Percentage,NONE,Caster,10 -10031,21,1265194,ATK,68040,Add,DEF,36738,Add,NONE,0,Add,700015,20,30,-31.89,Percentage,NONE,Caster,10 -10031,22,1308217,ATK,70230,Add,DEF,38111,Add,NONE,0,Add,700015,20,30,-31.98,Percentage,NONE,Caster,10 -10031,23,1351240,ATK,72420,Add,DEF,39484,Add,NONE,0,Add,700015,20,30,-32.07,Percentage,NONE,Caster,10 -10031,24,1394264,ATK,74610,Add,DEF,40857,Add,NONE,0,Add,700015,20,30,-32.16,Percentage,NONE,Caster,10 -10031,25,1437287,ATK,76800,Add,DEF,42230,Add,NONE,0,Add,700015,20,30,-32.25,Percentage,NONE,Caster,10 -10031,26,1480310,ATK,78990,Add,DEF,43603,Add,NONE,0,Add,700015,20,30,-32.34,Percentage,NONE,Caster,10 -10031,27,1523333,ATK,81180,Add,DEF,44976,Add,NONE,0,Add,700015,20,30,-32.43,Percentage,NONE,Caster,10 -10031,28,1566356,ATK,83370,Add,DEF,46349,Add,NONE,0,Add,700015,20,30,-32.52,Percentage,NONE,Caster,10 -10031,29,1609380,ATK,85560,Add,DEF,47722,Add,NONE,0,Add,700015,20,30,-32.61,Percentage,NONE,Caster,10 -10031,30,1652403,ATK,87750,Add,DEF,49095,Add,NONE,0,Add,700015,20,30,-32.7,Percentage,NONE,Caster,10 -10031,31,1695426,ATK,89940,Add,DEF,50468,Add,NONE,0,Add,700015,20,30,-32.79,Percentage,NONE,Caster,10 -10031,32,1738449,ATK,92130,Add,DEF,51841,Add,NONE,0,Add,700015,20,30,-32.88,Percentage,NONE,Caster,10 -10031,33,1781473,ATK,94320,Add,DEF,53214,Add,NONE,0,Add,700015,20,30,-32.97,Percentage,NONE,Caster,10 -10031,34,1824496,ATK,96510,Add,DEF,54587,Add,NONE,0,Add,700015,20,30,-33.06,Percentage,NONE,Caster,10 -10031,35,1867519,ATK,98700,Add,DEF,55960,Add,NONE,0,Add,700015,20,30,-33.15,Percentage,NONE,Caster,10 -10031,36,1910542,ATK,100890,Add,DEF,57333,Add,NONE,0,Add,700015,20,30,-33.24,Percentage,NONE,Caster,10 -10031,37,1953565,ATK,103080,Add,DEF,58706,Add,NONE,0,Add,700015,20,30,-33.33,Percentage,NONE,Caster,10 -10031,38,1996589,ATK,105270,Add,DEF,60079,Add,NONE,0,Add,700015,20,30,-33.42,Percentage,NONE,Caster,10 -10031,39,2039612,ATK,107460,Add,DEF,61452,Add,NONE,0,Add,700015,20,30,-33.51,Percentage,NONE,Caster,10 -10031,40,2082635,ATK,109650,Add,DEF,62825,Add,NONE,0,Add,700015,20,30,-33.6,Percentage,NONE,Caster,10 -10031,41,2125658,ATK,111840,Add,DEF,64198,Add,NONE,0,Add,700015,20,30,-33.69,Percentage,NONE,Caster,10 -10031,42,2168682,ATK,114030,Add,DEF,65571,Add,NONE,0,Add,700015,20,30,-33.78,Percentage,NONE,Caster,10 -10031,43,2211705,ATK,116220,Add,DEF,66944,Add,NONE,0,Add,700015,20,30,-33.87,Percentage,NONE,Caster,10 -10031,44,2254728,ATK,118410,Add,DEF,68317,Add,NONE,0,Add,700015,20,30,-33.96,Percentage,NONE,Caster,10 -10031,45,2297751,ATK,120600,Add,DEF,69690,Add,NONE,0,Add,700015,20,30,-34.05,Percentage,NONE,Caster,10 -10031,46,2340774,ATK,122790,Add,DEF,71063,Add,NONE,0,Add,700015,20,30,-34.14,Percentage,NONE,Caster,10 -10031,47,2383798,ATK,124980,Add,DEF,72436,Add,NONE,0,Add,700015,20,30,-34.23,Percentage,NONE,Caster,10 -10031,48,2426821,ATK,127170,Add,DEF,73809,Add,NONE,0,Add,700015,20,30,-34.32,Percentage,NONE,Caster,10 -10031,49,2469844,ATK,129360,Add,DEF,75182,Add,NONE,0,Add,700015,20,30,-34.41,Percentage,NONE,Caster,10 -10031,50,2512867,ATK,131550,Add,DEF,76555,Add,NONE,0,Add,700015,20,30,-34.5,Percentage,NONE,Caster,10 -10031,51,2544238,ATK,133035,Add,DEF,77668,Add,NONE,0,Add,700015,20,30,-34.57,Percentage,NONE,Caster,10 -10031,52,2575609,ATK,134520,Add,DEF,78781,Add,NONE,0,Add,700015,20,30,-34.64,Percentage,NONE,Caster,10 -10031,53,2606980,ATK,136005,Add,DEF,79894,Add,NONE,0,Add,700015,20,30,-34.71,Percentage,NONE,Caster,10 -10031,54,2638351,ATK,137490,Add,DEF,81007,Add,NONE,0,Add,700015,20,30,-34.78,Percentage,NONE,Caster,10 -10031,55,2669722,ATK,138975,Add,DEF,82120,Add,NONE,0,Add,700015,20,30,-34.85,Percentage,NONE,Caster,10 -10031,56,2701092,ATK,140460,Add,DEF,83233,Add,NONE,0,Add,700015,20,30,-34.92,Percentage,NONE,Caster,10 -10031,57,2732463,ATK,141945,Add,DEF,84346,Add,NONE,0,Add,700015,20,30,-34.99,Percentage,NONE,Caster,10 -10031,58,2763834,ATK,143430,Add,DEF,85459,Add,NONE,0,Add,700015,20,30,-35.06,Percentage,NONE,Caster,10 -10031,59,2795205,ATK,144915,Add,DEF,86572,Add,NONE,0,Add,700015,20,30,-35.13,Percentage,NONE,Caster,10 -10031,60,2826576,ATK,146400,Add,DEF,87685,Add,NONE,0,Add,700015,20,30,-35.2,Percentage,NONE,Caster,10 -10031,61,2857947,ATK,147885,Add,DEF,88798,Add,NONE,0,Add,700015,20,30,-35.27,Percentage,NONE,Caster,10 -10031,62,2889318,ATK,149370,Add,DEF,89911,Add,NONE,0,Add,700015,20,30,-35.34,Percentage,NONE,Caster,10 -10031,63,2920688,ATK,150855,Add,DEF,91024,Add,NONE,0,Add,700015,20,30,-35.41,Percentage,NONE,Caster,10 -10031,64,2952059,ATK,152340,Add,DEF,92137,Add,NONE,0,Add,700015,20,30,-35.48,Percentage,NONE,Caster,10 -10031,65,2983430,ATK,153825,Add,DEF,93250,Add,NONE,0,Add,700015,20,30,-35.55,Percentage,NONE,Caster,10 -10031,66,3014801,ATK,155310,Add,DEF,94363,Add,NONE,0,Add,700015,20,30,-35.62,Percentage,NONE,Caster,10 -10031,67,3046172,ATK,156795,Add,DEF,95476,Add,NONE,0,Add,700015,20,30,-35.69,Percentage,NONE,Caster,10 -10031,68,3077543,ATK,158280,Add,DEF,96589,Add,NONE,0,Add,700015,20,30,-35.76,Percentage,NONE,Caster,10 -10031,69,3108914,ATK,159765,Add,DEF,97702,Add,NONE,0,Add,700015,20,30,-35.83,Percentage,NONE,Caster,10 -10031,70,3140284,ATK,161250,Add,DEF,98815,Add,NONE,0,Add,700015,20,30,-35.9,Percentage,NONE,Caster,10 -10031,71,3171655,ATK,162735,Add,DEF,99928,Add,NONE,0,Add,700015,20,30,-35.97,Percentage,NONE,Caster,10 -10031,72,3203026,ATK,164220,Add,DEF,101041,Add,NONE,0,Add,700015,20,30,-36.04,Percentage,NONE,Caster,10 -10031,73,3234397,ATK,165705,Add,DEF,102154,Add,NONE,0,Add,700015,20,30,-36.11,Percentage,NONE,Caster,10 -10031,74,3265768,ATK,167190,Add,DEF,103267,Add,NONE,0,Add,700015,20,30,-36.18,Percentage,NONE,Caster,10 -10031,75,3297139,ATK,168675,Add,DEF,104380,Add,NONE,0,Add,700015,20,30,-36.25,Percentage,NONE,Caster,10 -10031,76,3328509,ATK,170160,Add,DEF,105493,Add,NONE,0,Add,700015,20,30,-36.32,Percentage,NONE,Caster,10 -10031,77,3359880,ATK,171645,Add,DEF,106606,Add,NONE,0,Add,700015,20,30,-36.39,Percentage,NONE,Caster,10 -10031,78,3391251,ATK,173130,Add,DEF,107719,Add,NONE,0,Add,700015,20,30,-36.46,Percentage,NONE,Caster,10 -10031,79,3422622,ATK,174615,Add,DEF,108832,Add,NONE,0,Add,700015,20,30,-36.53,Percentage,NONE,Caster,10 -10031,80,3453993,ATK,176100,Add,DEF,109945,Add,NONE,0,Add,700015,20,30,-36.6,Percentage,NONE,Caster,10 -10031,81,3485364,ATK,177585,Add,DEF,111058,Add,NONE,0,Add,700015,20,30,-36.67,Percentage,NONE,Caster,10 -10031,82,3516735,ATK,179070,Add,DEF,112171,Add,NONE,0,Add,700015,20,30,-36.74,Percentage,NONE,Caster,10 -10031,83,3548105,ATK,180555,Add,DEF,113284,Add,NONE,0,Add,700015,20,30,-36.81,Percentage,NONE,Caster,10 -10031,84,3579476,ATK,182040,Add,DEF,114397,Add,NONE,0,Add,700015,20,30,-36.88,Percentage,NONE,Caster,10 -10031,85,3610847,ATK,183525,Add,DEF,115510,Add,NONE,0,Add,700015,20,30,-36.95,Percentage,NONE,Caster,10 -10031,86,3642218,ATK,185010,Add,DEF,116623,Add,NONE,0,Add,700015,20,30,-37.02,Percentage,NONE,Caster,10 -10031,87,3673589,ATK,186495,Add,DEF,117736,Add,NONE,0,Add,700015,20,30,-37.09,Percentage,NONE,Caster,10 -10031,88,3704960,ATK,187980,Add,DEF,118849,Add,NONE,0,Add,700015,20,30,-37.16,Percentage,NONE,Caster,10 -10031,89,3736331,ATK,189465,Add,DEF,119962,Add,NONE,0,Add,700015,20,30,-37.23,Percentage,NONE,Caster,10 -10031,90,3767701,ATK,190950,Add,DEF,121075,Add,NONE,0,Add,700015,20,30,-37.3,Percentage,NONE,Caster,10 -10031,91,3799072,ATK,192435,Add,DEF,122188,Add,NONE,0,Add,700015,20,30,-37.37,Percentage,NONE,Caster,10 -10031,92,3830443,ATK,193920,Add,DEF,123301,Add,NONE,0,Add,700015,20,30,-37.44,Percentage,NONE,Caster,10 -10031,93,3861814,ATK,195405,Add,DEF,124414,Add,NONE,0,Add,700015,20,30,-37.51,Percentage,NONE,Caster,10 -10031,94,3893185,ATK,196890,Add,DEF,125527,Add,NONE,0,Add,700015,20,30,-37.58,Percentage,NONE,Caster,10 -10031,95,3924556,ATK,198375,Add,DEF,126640,Add,NONE,0,Add,700015,20,30,-37.65,Percentage,NONE,Caster,10 -10031,96,3955926,ATK,199860,Add,DEF,127753,Add,NONE,0,Add,700015,20,30,-37.72,Percentage,NONE,Caster,10 -10031,97,3987297,ATK,201345,Add,DEF,128866,Add,NONE,0,Add,700015,20,30,-37.79,Percentage,NONE,Caster,10 -10031,98,4018668,ATK,202830,Add,DEF,129979,Add,NONE,0,Add,700015,20,30,-37.86,Percentage,NONE,Caster,10 -10031,99,4050039,ATK,204315,Add,DEF,131092,Add,NONE,0,Add,700015,20,30,-37.93,Percentage,NONE,Caster,10 -10031,100,4081410,ATK,205800,Add,DEF,132205,Add,NONE,0,Add,700015,20,30,-38,Percentage,NONE,Caster,10 -10031,101,4108748,ATK,207025,Add,DEF,133244,Add,NONE,0,Add,700015,20,30,-38.05,Percentage,NONE,Caster,10 -10031,102,4136085,ATK,208250,Add,DEF,134283,Add,NONE,0,Add,700015,20,30,-38.1,Percentage,NONE,Caster,10 -10031,103,4163423,ATK,209475,Add,DEF,135322,Add,NONE,0,Add,700015,20,30,-38.15,Percentage,NONE,Caster,10 -10031,104,4190761,ATK,210700,Add,DEF,136361,Add,NONE,0,Add,700015,20,30,-38.2,Percentage,NONE,Caster,10 -10031,105,4218099,ATK,211925,Add,DEF,137400,Add,NONE,0,Add,700015,20,30,-38.25,Percentage,NONE,Caster,10 -10031,106,4245437,ATK,213150,Add,DEF,138439,Add,NONE,0,Add,700015,20,30,-38.3,Percentage,NONE,Caster,10 -10031,107,4272774,ATK,214375,Add,DEF,139478,Add,NONE,0,Add,700015,20,30,-38.35,Percentage,NONE,Caster,10 -10031,108,4300112,ATK,215600,Add,DEF,140517,Add,NONE,0,Add,700015,20,30,-38.4,Percentage,NONE,Caster,10 -10031,109,4327450,ATK,216825,Add,DEF,141556,Add,NONE,0,Add,700015,20,30,-38.45,Percentage,NONE,Caster,10 -10031,110,4354788,ATK,218050,Add,DEF,142595,Add,NONE,0,Add,700015,20,30,-38.5,Percentage,NONE,Caster,10 -10031,111,4382126,ATK,219275,Add,DEF,143634,Add,NONE,0,Add,700015,20,30,-38.55,Percentage,NONE,Caster,10 -10031,112,4409463,ATK,220500,Add,DEF,144673,Add,NONE,0,Add,700015,20,30,-38.6,Percentage,NONE,Caster,10 -10031,113,4436801,ATK,221725,Add,DEF,145712,Add,NONE,0,Add,700015,20,30,-38.65,Percentage,NONE,Caster,10 -10031,114,4464139,ATK,222950,Add,DEF,146751,Add,NONE,0,Add,700015,20,30,-38.7,Percentage,NONE,Caster,10 -10031,115,4491477,ATK,224175,Add,DEF,147790,Add,NONE,0,Add,700015,20,30,-38.75,Percentage,NONE,Caster,10 -10031,116,4518815,ATK,225400,Add,DEF,148829,Add,NONE,0,Add,700015,20,30,-38.8,Percentage,NONE,Caster,10 -10031,117,4546152,ATK,226625,Add,DEF,149868,Add,NONE,0,Add,700015,20,30,-38.85,Percentage,NONE,Caster,10 -10031,118,4573490,ATK,227850,Add,DEF,150907,Add,NONE,0,Add,700015,20,30,-38.9,Percentage,NONE,Caster,10 -10031,119,4600828,ATK,229075,Add,DEF,151946,Add,NONE,0,Add,700015,20,30,-38.95,Percentage,NONE,Caster,10 -10031,120,4628166,ATK,230300,Add,DEF,152985,Add,NONE,0,Add,700015,20,30,-39,Percentage,NONE,Caster,10 -10031,121,4655504,ATK,231525,Add,DEF,154024,Add,NONE,0,Add,700015,20,30,-39.05,Percentage,NONE,Caster,10 -10031,122,4682841,ATK,232750,Add,DEF,155063,Add,NONE,0,Add,700015,20,30,-39.1,Percentage,NONE,Caster,10 -10031,123,4710179,ATK,233975,Add,DEF,156102,Add,NONE,0,Add,700015,20,30,-39.15,Percentage,NONE,Caster,10 -10031,124,4737517,ATK,235200,Add,DEF,157141,Add,NONE,0,Add,700015,20,30,-39.2,Percentage,NONE,Caster,10 -10031,125,4764855,ATK,236425,Add,DEF,158180,Add,NONE,0,Add,700015,20,30,-39.25,Percentage,NONE,Caster,10 -10031,126,4792193,ATK,237650,Add,DEF,159219,Add,NONE,0,Add,700015,20,30,-39.3,Percentage,NONE,Caster,10 -10031,127,4819530,ATK,238875,Add,DEF,160258,Add,NONE,0,Add,700015,20,30,-39.35,Percentage,NONE,Caster,10 -10031,128,4846868,ATK,240100,Add,DEF,161297,Add,NONE,0,Add,700015,20,30,-39.4,Percentage,NONE,Caster,10 -10031,129,4874206,ATK,241325,Add,DEF,162336,Add,NONE,0,Add,700015,20,30,-39.45,Percentage,NONE,Caster,10 -10031,130,4901544,ATK,242550,Add,DEF,163375,Add,NONE,0,Add,700015,20,30,-39.5,Percentage,NONE,Caster,10 -10031,131,4928882,ATK,243775,Add,DEF,164414,Add,NONE,0,Add,700015,20,30,-39.55,Percentage,NONE,Caster,10 -10031,132,4956219,ATK,245000,Add,DEF,165453,Add,NONE,0,Add,700015,20,30,-39.6,Percentage,NONE,Caster,10 -10031,133,4983557,ATK,246225,Add,DEF,166492,Add,NONE,0,Add,700015,20,30,-39.65,Percentage,NONE,Caster,10 -10031,134,5010895,ATK,247450,Add,DEF,167531,Add,NONE,0,Add,700015,20,30,-39.7,Percentage,NONE,Caster,10 -10031,135,5038233,ATK,248675,Add,DEF,168570,Add,NONE,0,Add,700015,20,30,-39.75,Percentage,NONE,Caster,10 -10031,136,5065571,ATK,249900,Add,DEF,169609,Add,NONE,0,Add,700015,20,30,-39.8,Percentage,NONE,Caster,10 -10031,137,5092908,ATK,251125,Add,DEF,170648,Add,NONE,0,Add,700015,20,30,-39.85,Percentage,NONE,Caster,10 -10031,138,5120246,ATK,252350,Add,DEF,171687,Add,NONE,0,Add,700015,20,30,-39.9,Percentage,NONE,Caster,10 -10031,139,5147584,ATK,253575,Add,DEF,172726,Add,NONE,0,Add,700015,20,30,-39.95,Percentage,NONE,Caster,10 -10031,140,5174922,ATK,254800,Add,DEF,173765,Add,NONE,0,Add,700015,20,30,-40,Percentage,NONE,Caster,10 -10031,141,5202260,ATK,256025,Add,DEF,174804,Add,NONE,0,Add,700015,20,30,-40.05,Percentage,NONE,Caster,10 -10031,142,5229597,ATK,257250,Add,DEF,175843,Add,NONE,0,Add,700015,20,30,-40.1,Percentage,NONE,Caster,10 -10031,143,5256935,ATK,258475,Add,DEF,176882,Add,NONE,0,Add,700015,20,30,-40.15,Percentage,NONE,Caster,10 -10031,144,5284273,ATK,259700,Add,DEF,177921,Add,NONE,0,Add,700015,20,30,-40.2,Percentage,NONE,Caster,10 -10031,145,5311611,ATK,260925,Add,DEF,178960,Add,NONE,0,Add,700015,20,30,-40.25,Percentage,NONE,Caster,10 -10031,146,5338949,ATK,262150,Add,DEF,179999,Add,NONE,0,Add,700015,20,30,-40.3,Percentage,NONE,Caster,10 -10031,147,5366286,ATK,263375,Add,DEF,181038,Add,NONE,0,Add,700015,20,30,-40.35,Percentage,NONE,Caster,10 -10031,148,5393624,ATK,264600,Add,DEF,182077,Add,NONE,0,Add,700015,20,30,-40.4,Percentage,NONE,Caster,10 -10031,149,5420962,ATK,265825,Add,DEF,183116,Add,NONE,0,Add,700015,20,30,-40.45,Percentage,NONE,Caster,10 -10031,150,5448300,ATK,267050,Add,DEF,184155,Add,NONE,0,Add,700015,20,30,-40.5,Percentage,NONE,Caster,10 -10031,151,5466219,ATK,267829,Add,DEF,184860,Add,NONE,0,Add,700015,20,30,-40.54,Percentage,NONE,Caster,10 -10031,152,5484138,ATK,268608,Add,DEF,185565,Add,NONE,0,Add,700015,20,30,-40.58,Percentage,NONE,Caster,10 -10031,153,5502058,ATK,269387,Add,DEF,186270,Add,NONE,0,Add,700015,20,30,-40.62,Percentage,NONE,Caster,10 -10031,154,5519977,ATK,270166,Add,DEF,186975,Add,NONE,0,Add,700015,20,30,-40.66,Percentage,NONE,Caster,10 -10031,155,5537896,ATK,270945,Add,DEF,187680,Add,NONE,0,Add,700015,20,30,-40.7,Percentage,NONE,Caster,10 -10031,156,5555816,ATK,271724,Add,DEF,188385,Add,NONE,0,Add,700015,20,30,-40.74,Percentage,NONE,Caster,10 -10031,157,5573735,ATK,272503,Add,DEF,189090,Add,NONE,0,Add,700015,20,30,-40.78,Percentage,NONE,Caster,10 -10031,158,5591654,ATK,273282,Add,DEF,189795,Add,NONE,0,Add,700015,20,30,-40.82,Percentage,NONE,Caster,10 -10031,159,5609574,ATK,274061,Add,DEF,190500,Add,NONE,0,Add,700015,20,30,-40.86,Percentage,NONE,Caster,10 -10031,160,5627493,ATK,274840,Add,DEF,191205,Add,NONE,0,Add,700015,20,30,-40.9,Percentage,NONE,Caster,10 -10031,161,5645412,ATK,275619,Add,DEF,191910,Add,NONE,0,Add,700015,20,30,-40.94,Percentage,NONE,Caster,10 -10031,162,5663331,ATK,276398,Add,DEF,192615,Add,NONE,0,Add,700015,20,30,-40.98,Percentage,NONE,Caster,10 -10031,163,5681251,ATK,277177,Add,DEF,193320,Add,NONE,0,Add,700015,20,30,-41.02,Percentage,NONE,Caster,10 -10031,164,5699170,ATK,277956,Add,DEF,194025,Add,NONE,0,Add,700015,20,30,-41.06,Percentage,NONE,Caster,10 -10031,165,5717089,ATK,278735,Add,DEF,194730,Add,NONE,0,Add,700015,20,30,-41.1,Percentage,NONE,Caster,10 -10031,166,5735009,ATK,279514,Add,DEF,195435,Add,NONE,0,Add,700015,20,30,-41.14,Percentage,NONE,Caster,10 -10031,167,5752928,ATK,280293,Add,DEF,196140,Add,NONE,0,Add,700015,20,30,-41.18,Percentage,NONE,Caster,10 -10031,168,5770847,ATK,281072,Add,DEF,196845,Add,NONE,0,Add,700015,20,30,-41.22,Percentage,NONE,Caster,10 -10031,169,5788767,ATK,281851,Add,DEF,197550,Add,NONE,0,Add,700015,20,30,-41.26,Percentage,NONE,Caster,10 -10031,170,5806686,ATK,282630,Add,DEF,198255,Add,NONE,0,Add,700015,20,30,-41.3,Percentage,NONE,Caster,10 -10031,171,5824605,ATK,283409,Add,DEF,198960,Add,NONE,0,Add,700015,20,30,-41.34,Percentage,NONE,Caster,10 -10031,172,5842524,ATK,284188,Add,DEF,199665,Add,NONE,0,Add,700015,20,30,-41.38,Percentage,NONE,Caster,10 -10031,173,5860444,ATK,284967,Add,DEF,200370,Add,NONE,0,Add,700015,20,30,-41.42,Percentage,NONE,Caster,10 -10031,174,5878363,ATK,285746,Add,DEF,201075,Add,NONE,0,Add,700015,20,30,-41.46,Percentage,NONE,Caster,10 -10031,175,5896282,ATK,286525,Add,DEF,201780,Add,NONE,0,Add,700015,20,30,-41.5,Percentage,NONE,Caster,10 -10031,176,5914202,ATK,287304,Add,DEF,202485,Add,NONE,0,Add,700015,20,30,-41.54,Percentage,NONE,Caster,10 -10031,177,5932121,ATK,288083,Add,DEF,203190,Add,NONE,0,Add,700015,20,30,-41.58,Percentage,NONE,Caster,10 -10031,178,5950040,ATK,288862,Add,DEF,203895,Add,NONE,0,Add,700015,20,30,-41.62,Percentage,NONE,Caster,10 -10031,179,5967960,ATK,289641,Add,DEF,204600,Add,NONE,0,Add,700015,20,30,-41.66,Percentage,NONE,Caster,10 -10031,180,5985879,ATK,290420,Add,DEF,205305,Add,NONE,0,Add,700015,20,30,-41.7,Percentage,NONE,Caster,10 -10031,181,6003798,ATK,291199,Add,DEF,206010,Add,NONE,0,Add,700015,20,30,-41.74,Percentage,NONE,Caster,10 -10031,182,6021717,ATK,291978,Add,DEF,206715,Add,NONE,0,Add,700015,20,30,-41.78,Percentage,NONE,Caster,10 -10031,183,6039637,ATK,292757,Add,DEF,207420,Add,NONE,0,Add,700015,20,30,-41.82,Percentage,NONE,Caster,10 -10031,184,6057556,ATK,293536,Add,DEF,208125,Add,NONE,0,Add,700015,20,30,-41.86,Percentage,NONE,Caster,10 -10031,185,6075475,ATK,294315,Add,DEF,208830,Add,NONE,0,Add,700015,20,30,-41.9,Percentage,NONE,Caster,10 -10031,186,6093395,ATK,295094,Add,DEF,209535,Add,NONE,0,Add,700015,20,30,-41.94,Percentage,NONE,Caster,10 -10031,187,6111314,ATK,295873,Add,DEF,210240,Add,NONE,0,Add,700015,20,30,-41.98,Percentage,NONE,Caster,10 -10031,188,6129233,ATK,296652,Add,DEF,210945,Add,NONE,0,Add,700015,20,30,-42.02,Percentage,NONE,Caster,10 -10031,189,6147153,ATK,297431,Add,DEF,211650,Add,NONE,0,Add,700015,20,30,-42.06,Percentage,NONE,Caster,10 -10031,190,6165072,ATK,298210,Add,DEF,212355,Add,NONE,0,Add,700015,20,30,-42.1,Percentage,NONE,Caster,10 -10031,191,6182991,ATK,298989,Add,DEF,213060,Add,NONE,0,Add,700015,20,30,-42.14,Percentage,NONE,Caster,10 -10031,192,6200910,ATK,299768,Add,DEF,213765,Add,NONE,0,Add,700015,20,30,-42.18,Percentage,NONE,Caster,10 -10031,193,6218830,ATK,300547,Add,DEF,214470,Add,NONE,0,Add,700015,20,30,-42.22,Percentage,NONE,Caster,10 -10031,194,6236749,ATK,301326,Add,DEF,215175,Add,NONE,0,Add,700015,20,30,-42.26,Percentage,NONE,Caster,10 -10031,195,6254668,ATK,302105,Add,DEF,215880,Add,NONE,0,Add,700015,20,30,-42.3,Percentage,NONE,Caster,10 -10031,196,6272588,ATK,302884,Add,DEF,216585,Add,NONE,0,Add,700015,20,30,-42.34,Percentage,NONE,Caster,10 -10031,197,6290507,ATK,303663,Add,DEF,217290,Add,NONE,0,Add,700015,20,30,-42.38,Percentage,NONE,Caster,10 -10031,198,6308426,ATK,304442,Add,DEF,217995,Add,NONE,0,Add,700015,20,30,-42.42,Percentage,NONE,Caster,10 -10031,199,6326346,ATK,305221,Add,DEF,218700,Add,NONE,0,Add,700015,20,30,-42.46,Percentage,NONE,Caster,10 -10031,200,6344265,ATK,306000,Add,DEF,219405,Add,NONE,0,Add,700015,20,30,-42.5,Percentage,NONE,Caster,10 -10031,201,6356352,ATK,306482,Add,DEF,219924,Add,NONE,0,Add,700015,20,30,-42.53,Percentage,NONE,Caster,10 -10031,202,6368439,ATK,306964,Add,DEF,220443,Add,NONE,0,Add,700015,20,30,-42.56,Percentage,NONE,Caster,10 -10031,203,6380526,ATK,307446,Add,DEF,220962,Add,NONE,0,Add,700015,20,30,-42.59,Percentage,NONE,Caster,10 -10031,204,6392613,ATK,307928,Add,DEF,221481,Add,NONE,0,Add,700015,20,30,-42.62,Percentage,NONE,Caster,10 -10031,205,6404700,ATK,308410,Add,DEF,222000,Add,NONE,0,Add,700015,20,30,-42.65,Percentage,NONE,Caster,10 -10031,206,6416787,ATK,308892,Add,DEF,222519,Add,NONE,0,Add,700015,20,30,-42.68,Percentage,NONE,Caster,10 -10031,207,6428874,ATK,309374,Add,DEF,223038,Add,NONE,0,Add,700015,20,30,-42.71,Percentage,NONE,Caster,10 -10031,208,6440961,ATK,309856,Add,DEF,223557,Add,NONE,0,Add,700015,20,30,-42.74,Percentage,NONE,Caster,10 -10031,209,6453049,ATK,310338,Add,DEF,224076,Add,NONE,0,Add,700015,20,30,-42.77,Percentage,NONE,Caster,10 -10031,210,6465136,ATK,310820,Add,DEF,224595,Add,NONE,0,Add,700015,20,30,-42.8,Percentage,NONE,Caster,10 -10031,211,6477223,ATK,311302,Add,DEF,225114,Add,NONE,0,Add,700015,20,30,-42.83,Percentage,NONE,Caster,10 -10031,212,6489310,ATK,311784,Add,DEF,225633,Add,NONE,0,Add,700015,20,30,-42.86,Percentage,NONE,Caster,10 -10031,213,6501397,ATK,312266,Add,DEF,226152,Add,NONE,0,Add,700015,20,30,-42.89,Percentage,NONE,Caster,10 -10031,214,6513484,ATK,312748,Add,DEF,226671,Add,NONE,0,Add,700015,20,30,-42.92,Percentage,NONE,Caster,10 -10031,215,6525571,ATK,313230,Add,DEF,227190,Add,NONE,0,Add,700015,20,30,-42.95,Percentage,NONE,Caster,10 -10031,216,6537658,ATK,313712,Add,DEF,227709,Add,NONE,0,Add,700015,20,30,-42.98,Percentage,NONE,Caster,10 -10031,217,6549745,ATK,314194,Add,DEF,228228,Add,NONE,0,Add,700015,20,30,-43.01,Percentage,NONE,Caster,10 -10031,218,6561832,ATK,314676,Add,DEF,228747,Add,NONE,0,Add,700015,20,30,-43.04,Percentage,NONE,Caster,10 -10031,219,6573919,ATK,315158,Add,DEF,229266,Add,NONE,0,Add,700015,20,30,-43.07,Percentage,NONE,Caster,10 -10031,220,6586006,ATK,315640,Add,DEF,229785,Add,NONE,0,Add,700015,20,30,-43.1,Percentage,NONE,Caster,10 -10031,221,6598093,ATK,316122,Add,DEF,230304,Add,NONE,0,Add,700015,20,30,-43.13,Percentage,NONE,Caster,10 -10031,222,6610181,ATK,316604,Add,DEF,230823,Add,NONE,0,Add,700015,20,30,-43.16,Percentage,NONE,Caster,10 -10031,223,6622268,ATK,317086,Add,DEF,231342,Add,NONE,0,Add,700015,20,30,-43.19,Percentage,NONE,Caster,10 -10031,224,6634355,ATK,317568,Add,DEF,231861,Add,NONE,0,Add,700015,20,30,-43.22,Percentage,NONE,Caster,10 -10031,225,6646442,ATK,318050,Add,DEF,232380,Add,NONE,0,Add,700015,20,30,-43.25,Percentage,NONE,Caster,10 -10031,226,6658529,ATK,318532,Add,DEF,232899,Add,NONE,0,Add,700015,20,30,-43.28,Percentage,NONE,Caster,10 -10031,227,6670616,ATK,319014,Add,DEF,233418,Add,NONE,0,Add,700015,20,30,-43.31,Percentage,NONE,Caster,10 -10031,228,6682703,ATK,319496,Add,DEF,233937,Add,NONE,0,Add,700015,20,30,-43.34,Percentage,NONE,Caster,10 -10031,229,6694790,ATK,319978,Add,DEF,234456,Add,NONE,0,Add,700015,20,30,-43.37,Percentage,NONE,Caster,10 -10031,230,6706877,ATK,320460,Add,DEF,234975,Add,NONE,0,Add,700015,20,30,-43.4,Percentage,NONE,Caster,10 -10031,231,6718964,ATK,320942,Add,DEF,235494,Add,NONE,0,Add,700015,20,30,-43.43,Percentage,NONE,Caster,10 -10031,232,6731051,ATK,321424,Add,DEF,236013,Add,NONE,0,Add,700015,20,30,-43.46,Percentage,NONE,Caster,10 -10031,233,6743138,ATK,321906,Add,DEF,236532,Add,NONE,0,Add,700015,20,30,-43.49,Percentage,NONE,Caster,10 -10031,234,6755225,ATK,322388,Add,DEF,237051,Add,NONE,0,Add,700015,20,30,-43.52,Percentage,NONE,Caster,10 -10031,235,6767313,ATK,322870,Add,DEF,237570,Add,NONE,0,Add,700015,20,30,-43.55,Percentage,NONE,Caster,10 -10031,236,6779400,ATK,323352,Add,DEF,238089,Add,NONE,0,Add,700015,20,30,-43.58,Percentage,NONE,Caster,10 -10031,237,6791487,ATK,323834,Add,DEF,238608,Add,NONE,0,Add,700015,20,30,-43.61,Percentage,NONE,Caster,10 -10031,238,6803574,ATK,324316,Add,DEF,239127,Add,NONE,0,Add,700015,20,30,-43.64,Percentage,NONE,Caster,10 -10031,239,6815661,ATK,324798,Add,DEF,239646,Add,NONE,0,Add,700015,20,30,-43.67,Percentage,NONE,Caster,10 -10031,240,6827748,ATK,325280,Add,DEF,240165,Add,NONE,0,Add,700015,20,30,-43.7,Percentage,NONE,Caster,10 -10031,241,6839835,ATK,325762,Add,DEF,240684,Add,NONE,0,Add,700015,20,30,-43.73,Percentage,NONE,Caster,10 -10031,242,6851922,ATK,326244,Add,DEF,241203,Add,NONE,0,Add,700015,20,30,-43.76,Percentage,NONE,Caster,10 -10031,243,6864009,ATK,326726,Add,DEF,241722,Add,NONE,0,Add,700015,20,30,-43.79,Percentage,NONE,Caster,10 -10031,244,6876096,ATK,327208,Add,DEF,242241,Add,NONE,0,Add,700015,20,30,-43.82,Percentage,NONE,Caster,10 -10031,245,6888183,ATK,327690,Add,DEF,242760,Add,NONE,0,Add,700015,20,30,-43.85,Percentage,NONE,Caster,10 -10031,246,6900270,ATK,328172,Add,DEF,243279,Add,NONE,0,Add,700015,20,30,-43.88,Percentage,NONE,Caster,10 -10031,247,6912357,ATK,328654,Add,DEF,243798,Add,NONE,0,Add,700015,20,30,-43.91,Percentage,NONE,Caster,10 -10031,248,6924444,ATK,329136,Add,DEF,244317,Add,NONE,0,Add,700015,20,30,-43.94,Percentage,NONE,Caster,10 -10031,249,6936532,ATK,329618,Add,DEF,244836,Add,NONE,0,Add,700015,20,30,-43.97,Percentage,NONE,Caster,10 -10031,250,6948619,ATK,330100,Add,DEF,245355,Add,NONE,0,Add,700015,20,30,-44,Percentage,NONE,Caster,10 -10031,251,6958025,ATK,330434,Add,DEF,245800,Add,NONE,0,Add,700015,20,30,-44.02,Percentage,NONE,Caster,10 -10031,252,6967431,ATK,330768,Add,DEF,246245,Add,NONE,0,Add,700015,20,30,-44.04,Percentage,NONE,Caster,10 -10031,253,6976838,ATK,331102,Add,DEF,246690,Add,NONE,0,Add,700015,20,30,-44.06,Percentage,NONE,Caster,10 -10031,254,6986244,ATK,331436,Add,DEF,247135,Add,NONE,0,Add,700015,20,30,-44.08,Percentage,NONE,Caster,10 -10031,255,6995651,ATK,331770,Add,DEF,247580,Add,NONE,0,Add,700015,20,30,-44.1,Percentage,NONE,Caster,10 -10031,256,7005057,ATK,332104,Add,DEF,248025,Add,NONE,0,Add,700015,20,30,-44.12,Percentage,NONE,Caster,10 -10031,257,7014464,ATK,332438,Add,DEF,248470,Add,NONE,0,Add,700015,20,30,-44.14,Percentage,NONE,Caster,10 -10031,258,7023870,ATK,332772,Add,DEF,248915,Add,NONE,0,Add,700015,20,30,-44.16,Percentage,NONE,Caster,10 -10031,259,7033276,ATK,333106,Add,DEF,249360,Add,NONE,0,Add,700015,20,30,-44.18,Percentage,NONE,Caster,10 -10031,260,7042683,ATK,333440,Add,DEF,249805,Add,NONE,0,Add,700015,20,30,-44.2,Percentage,NONE,Caster,10 -10031,261,7052089,ATK,333774,Add,DEF,250250,Add,NONE,0,Add,700015,20,30,-44.22,Percentage,NONE,Caster,10 -10031,262,7061496,ATK,334108,Add,DEF,250695,Add,NONE,0,Add,700015,20,30,-44.24,Percentage,NONE,Caster,10 -10031,263,7070902,ATK,334442,Add,DEF,251140,Add,NONE,0,Add,700015,20,30,-44.26,Percentage,NONE,Caster,10 -10031,264,7080309,ATK,334776,Add,DEF,251585,Add,NONE,0,Add,700015,20,30,-44.28,Percentage,NONE,Caster,10 -10031,265,7089715,ATK,335110,Add,DEF,252030,Add,NONE,0,Add,700015,20,30,-44.3,Percentage,NONE,Caster,10 -10031,266,7099121,ATK,335444,Add,DEF,252475,Add,NONE,0,Add,700015,20,30,-44.32,Percentage,NONE,Caster,10 -10031,267,7108528,ATK,335778,Add,DEF,252920,Add,NONE,0,Add,700015,20,30,-44.34,Percentage,NONE,Caster,10 -10031,268,7117934,ATK,336112,Add,DEF,253365,Add,NONE,0,Add,700015,20,30,-44.36,Percentage,NONE,Caster,10 -10031,269,7127341,ATK,336446,Add,DEF,253810,Add,NONE,0,Add,700015,20,30,-44.38,Percentage,NONE,Caster,10 -10031,270,7136747,ATK,336780,Add,DEF,254255,Add,NONE,0,Add,700015,20,30,-44.4,Percentage,NONE,Caster,10 -10031,271,7146154,ATK,337114,Add,DEF,254700,Add,NONE,0,Add,700015,20,30,-44.42,Percentage,NONE,Caster,10 -10031,272,7155560,ATK,337448,Add,DEF,255145,Add,NONE,0,Add,700015,20,30,-44.44,Percentage,NONE,Caster,10 -10031,273,7164966,ATK,337782,Add,DEF,255590,Add,NONE,0,Add,700015,20,30,-44.46,Percentage,NONE,Caster,10 -10031,274,7174373,ATK,338116,Add,DEF,256035,Add,NONE,0,Add,700015,20,30,-44.48,Percentage,NONE,Caster,10 -10031,275,7183779,ATK,338450,Add,DEF,256480,Add,NONE,0,Add,700015,20,30,-44.5,Percentage,NONE,Caster,10 -10031,276,7193186,ATK,338784,Add,DEF,256925,Add,NONE,0,Add,700015,20,30,-44.52,Percentage,NONE,Caster,10 -10031,277,7202592,ATK,339118,Add,DEF,257370,Add,NONE,0,Add,700015,20,30,-44.54,Percentage,NONE,Caster,10 -10031,278,7211999,ATK,339452,Add,DEF,257815,Add,NONE,0,Add,700015,20,30,-44.56,Percentage,NONE,Caster,10 -10031,279,7221405,ATK,339786,Add,DEF,258260,Add,NONE,0,Add,700015,20,30,-44.58,Percentage,NONE,Caster,10 -10031,280,7230811,ATK,340120,Add,DEF,258705,Add,NONE,0,Add,700015,20,30,-44.6,Percentage,NONE,Caster,10 -10031,281,7240218,ATK,340454,Add,DEF,259150,Add,NONE,0,Add,700015,20,30,-44.62,Percentage,NONE,Caster,10 -10031,282,7249624,ATK,340788,Add,DEF,259595,Add,NONE,0,Add,700015,20,30,-44.64,Percentage,NONE,Caster,10 -10031,283,7259031,ATK,341122,Add,DEF,260040,Add,NONE,0,Add,700015,20,30,-44.66,Percentage,NONE,Caster,10 -10031,284,7268437,ATK,341456,Add,DEF,260485,Add,NONE,0,Add,700015,20,30,-44.68,Percentage,NONE,Caster,10 -10031,285,7277844,ATK,341790,Add,DEF,260930,Add,NONE,0,Add,700015,20,30,-44.7,Percentage,NONE,Caster,10 -10031,286,7287250,ATK,342124,Add,DEF,261375,Add,NONE,0,Add,700015,20,30,-44.72,Percentage,NONE,Caster,10 -10031,287,7296656,ATK,342458,Add,DEF,261820,Add,NONE,0,Add,700015,20,30,-44.74,Percentage,NONE,Caster,10 -10031,288,7306063,ATK,342792,Add,DEF,262265,Add,NONE,0,Add,700015,20,30,-44.76,Percentage,NONE,Caster,10 -10031,289,7315469,ATK,343126,Add,DEF,262710,Add,NONE,0,Add,700015,20,30,-44.78,Percentage,NONE,Caster,10 -10031,290,7324876,ATK,343460,Add,DEF,263155,Add,NONE,0,Add,700015,20,30,-44.8,Percentage,NONE,Caster,10 -10031,291,7334282,ATK,343794,Add,DEF,263600,Add,NONE,0,Add,700015,20,30,-44.82,Percentage,NONE,Caster,10 -10031,292,7343688,ATK,344128,Add,DEF,264045,Add,NONE,0,Add,700015,20,30,-44.84,Percentage,NONE,Caster,10 -10031,293,7353095,ATK,344462,Add,DEF,264490,Add,NONE,0,Add,700015,20,30,-44.86,Percentage,NONE,Caster,10 -10031,294,7362501,ATK,344796,Add,DEF,264935,Add,NONE,0,Add,700015,20,30,-44.88,Percentage,NONE,Caster,10 -10031,295,7371908,ATK,345130,Add,DEF,265380,Add,NONE,0,Add,700015,20,30,-44.9,Percentage,NONE,Caster,10 -10031,296,7381314,ATK,345464,Add,DEF,265825,Add,NONE,0,Add,700015,20,30,-44.92,Percentage,NONE,Caster,10 -10031,297,7390721,ATK,345798,Add,DEF,266270,Add,NONE,0,Add,700015,20,30,-44.94,Percentage,NONE,Caster,10 -10031,298,7400127,ATK,346132,Add,DEF,266715,Add,NONE,0,Add,700015,20,30,-44.96,Percentage,NONE,Caster,10 -10031,299,7409533,ATK,346466,Add,DEF,267160,Add,NONE,0,Add,700015,20,30,-44.98,Percentage,NONE,Caster,10 -10031,300,7418940,ATK,346800,Add,DEF,267605,Add,NONE,0,Add,700015,20,30,-45,Percentage,NONE,Caster,10 +10031,1,404729,ATK,24240,Add,DEF,9278,Add,NONE,0,Add,700015,20,30,-30.09,Add,NONE,Caster,10 +10031,2,447753,ATK,26430,Add,DEF,10651,Add,NONE,0,Add,700015,20,30,-30.18,Add,NONE,Caster,10 +10031,3,490776,ATK,28620,Add,DEF,12024,Add,NONE,0,Add,700015,20,30,-30.27,Add,NONE,Caster,10 +10031,4,533799,ATK,30810,Add,DEF,13397,Add,NONE,0,Add,700015,20,30,-30.36,Add,NONE,Caster,10 +10031,5,576822,ATK,33000,Add,DEF,14770,Add,NONE,0,Add,700015,20,30,-30.45,Add,NONE,Caster,10 +10031,6,619845,ATK,35190,Add,DEF,16143,Add,NONE,0,Add,700015,20,30,-30.54,Add,NONE,Caster,10 +10031,7,662869,ATK,37380,Add,DEF,17516,Add,NONE,0,Add,700015,20,30,-30.63,Add,NONE,Caster,10 +10031,8,705892,ATK,39570,Add,DEF,18889,Add,NONE,0,Add,700015,20,30,-30.72,Add,NONE,Caster,10 +10031,9,748915,ATK,41760,Add,DEF,20262,Add,NONE,0,Add,700015,20,30,-30.81,Add,NONE,Caster,10 +10031,10,791938,ATK,43950,Add,DEF,21635,Add,NONE,0,Add,700015,20,30,-30.9,Add,NONE,Caster,10 +10031,11,834962,ATK,46140,Add,DEF,23008,Add,NONE,0,Add,700015,20,30,-30.99,Add,NONE,Caster,10 +10031,12,877985,ATK,48330,Add,DEF,24381,Add,NONE,0,Add,700015,20,30,-31.08,Add,NONE,Caster,10 +10031,13,921008,ATK,50520,Add,DEF,25754,Add,NONE,0,Add,700015,20,30,-31.17,Add,NONE,Caster,10 +10031,14,964031,ATK,52710,Add,DEF,27127,Add,NONE,0,Add,700015,20,30,-31.26,Add,NONE,Caster,10 +10031,15,1007055,ATK,54900,Add,DEF,28500,Add,NONE,0,Add,700015,20,30,-31.35,Add,NONE,Caster,10 +10031,16,1050078,ATK,57090,Add,DEF,29873,Add,NONE,0,Add,700015,20,30,-31.44,Add,NONE,Caster,10 +10031,17,1093101,ATK,59280,Add,DEF,31246,Add,NONE,0,Add,700015,20,30,-31.53,Add,NONE,Caster,10 +10031,18,1136124,ATK,61470,Add,DEF,32619,Add,NONE,0,Add,700015,20,30,-31.62,Add,NONE,Caster,10 +10031,19,1179147,ATK,63660,Add,DEF,33992,Add,NONE,0,Add,700015,20,30,-31.71,Add,NONE,Caster,10 +10031,20,1222171,ATK,65850,Add,DEF,35365,Add,NONE,0,Add,700015,20,30,-31.8,Add,NONE,Caster,10 +10031,21,1265194,ATK,68040,Add,DEF,36738,Add,NONE,0,Add,700015,20,30,-31.89,Add,NONE,Caster,10 +10031,22,1308217,ATK,70230,Add,DEF,38111,Add,NONE,0,Add,700015,20,30,-31.98,Add,NONE,Caster,10 +10031,23,1351240,ATK,72420,Add,DEF,39484,Add,NONE,0,Add,700015,20,30,-32.07,Add,NONE,Caster,10 +10031,24,1394264,ATK,74610,Add,DEF,40857,Add,NONE,0,Add,700015,20,30,-32.16,Add,NONE,Caster,10 +10031,25,1437287,ATK,76800,Add,DEF,42230,Add,NONE,0,Add,700015,20,30,-32.25,Add,NONE,Caster,10 +10031,26,1480310,ATK,78990,Add,DEF,43603,Add,NONE,0,Add,700015,20,30,-32.34,Add,NONE,Caster,10 +10031,27,1523333,ATK,81180,Add,DEF,44976,Add,NONE,0,Add,700015,20,30,-32.43,Add,NONE,Caster,10 +10031,28,1566356,ATK,83370,Add,DEF,46349,Add,NONE,0,Add,700015,20,30,-32.52,Add,NONE,Caster,10 +10031,29,1609380,ATK,85560,Add,DEF,47722,Add,NONE,0,Add,700015,20,30,-32.61,Add,NONE,Caster,10 +10031,30,1652403,ATK,87750,Add,DEF,49095,Add,NONE,0,Add,700015,20,30,-32.7,Add,NONE,Caster,10 +10031,31,1695426,ATK,89940,Add,DEF,50468,Add,NONE,0,Add,700015,20,30,-32.79,Add,NONE,Caster,10 +10031,32,1738449,ATK,92130,Add,DEF,51841,Add,NONE,0,Add,700015,20,30,-32.88,Add,NONE,Caster,10 +10031,33,1781473,ATK,94320,Add,DEF,53214,Add,NONE,0,Add,700015,20,30,-32.97,Add,NONE,Caster,10 +10031,34,1824496,ATK,96510,Add,DEF,54587,Add,NONE,0,Add,700015,20,30,-33.06,Add,NONE,Caster,10 +10031,35,1867519,ATK,98700,Add,DEF,55960,Add,NONE,0,Add,700015,20,30,-33.15,Add,NONE,Caster,10 +10031,36,1910542,ATK,100890,Add,DEF,57333,Add,NONE,0,Add,700015,20,30,-33.24,Add,NONE,Caster,10 +10031,37,1953565,ATK,103080,Add,DEF,58706,Add,NONE,0,Add,700015,20,30,-33.33,Add,NONE,Caster,10 +10031,38,1996589,ATK,105270,Add,DEF,60079,Add,NONE,0,Add,700015,20,30,-33.42,Add,NONE,Caster,10 +10031,39,2039612,ATK,107460,Add,DEF,61452,Add,NONE,0,Add,700015,20,30,-33.51,Add,NONE,Caster,10 +10031,40,2082635,ATK,109650,Add,DEF,62825,Add,NONE,0,Add,700015,20,30,-33.6,Add,NONE,Caster,10 +10031,41,2125658,ATK,111840,Add,DEF,64198,Add,NONE,0,Add,700015,20,30,-33.69,Add,NONE,Caster,10 +10031,42,2168682,ATK,114030,Add,DEF,65571,Add,NONE,0,Add,700015,20,30,-33.78,Add,NONE,Caster,10 +10031,43,2211705,ATK,116220,Add,DEF,66944,Add,NONE,0,Add,700015,20,30,-33.87,Add,NONE,Caster,10 +10031,44,2254728,ATK,118410,Add,DEF,68317,Add,NONE,0,Add,700015,20,30,-33.96,Add,NONE,Caster,10 +10031,45,2297751,ATK,120600,Add,DEF,69690,Add,NONE,0,Add,700015,20,30,-34.05,Add,NONE,Caster,10 +10031,46,2340774,ATK,122790,Add,DEF,71063,Add,NONE,0,Add,700015,20,30,-34.14,Add,NONE,Caster,10 +10031,47,2383798,ATK,124980,Add,DEF,72436,Add,NONE,0,Add,700015,20,30,-34.23,Add,NONE,Caster,10 +10031,48,2426821,ATK,127170,Add,DEF,73809,Add,NONE,0,Add,700015,20,30,-34.32,Add,NONE,Caster,10 +10031,49,2469844,ATK,129360,Add,DEF,75182,Add,NONE,0,Add,700015,20,30,-34.41,Add,NONE,Caster,10 +10031,50,2512867,ATK,131550,Add,DEF,76555,Add,NONE,0,Add,700015,20,30,-34.5,Add,NONE,Caster,10 +10031,51,2544238,ATK,133035,Add,DEF,77668,Add,NONE,0,Add,700015,20,30,-34.57,Add,NONE,Caster,10 +10031,52,2575609,ATK,134520,Add,DEF,78781,Add,NONE,0,Add,700015,20,30,-34.64,Add,NONE,Caster,10 +10031,53,2606980,ATK,136005,Add,DEF,79894,Add,NONE,0,Add,700015,20,30,-34.71,Add,NONE,Caster,10 +10031,54,2638351,ATK,137490,Add,DEF,81007,Add,NONE,0,Add,700015,20,30,-34.78,Add,NONE,Caster,10 +10031,55,2669722,ATK,138975,Add,DEF,82120,Add,NONE,0,Add,700015,20,30,-34.85,Add,NONE,Caster,10 +10031,56,2701092,ATK,140460,Add,DEF,83233,Add,NONE,0,Add,700015,20,30,-34.92,Add,NONE,Caster,10 +10031,57,2732463,ATK,141945,Add,DEF,84346,Add,NONE,0,Add,700015,20,30,-34.99,Add,NONE,Caster,10 +10031,58,2763834,ATK,143430,Add,DEF,85459,Add,NONE,0,Add,700015,20,30,-35.06,Add,NONE,Caster,10 +10031,59,2795205,ATK,144915,Add,DEF,86572,Add,NONE,0,Add,700015,20,30,-35.13,Add,NONE,Caster,10 +10031,60,2826576,ATK,146400,Add,DEF,87685,Add,NONE,0,Add,700015,20,30,-35.2,Add,NONE,Caster,10 +10031,61,2857947,ATK,147885,Add,DEF,88798,Add,NONE,0,Add,700015,20,30,-35.27,Add,NONE,Caster,10 +10031,62,2889318,ATK,149370,Add,DEF,89911,Add,NONE,0,Add,700015,20,30,-35.34,Add,NONE,Caster,10 +10031,63,2920688,ATK,150855,Add,DEF,91024,Add,NONE,0,Add,700015,20,30,-35.41,Add,NONE,Caster,10 +10031,64,2952059,ATK,152340,Add,DEF,92137,Add,NONE,0,Add,700015,20,30,-35.48,Add,NONE,Caster,10 +10031,65,2983430,ATK,153825,Add,DEF,93250,Add,NONE,0,Add,700015,20,30,-35.55,Add,NONE,Caster,10 +10031,66,3014801,ATK,155310,Add,DEF,94363,Add,NONE,0,Add,700015,20,30,-35.62,Add,NONE,Caster,10 +10031,67,3046172,ATK,156795,Add,DEF,95476,Add,NONE,0,Add,700015,20,30,-35.69,Add,NONE,Caster,10 +10031,68,3077543,ATK,158280,Add,DEF,96589,Add,NONE,0,Add,700015,20,30,-35.76,Add,NONE,Caster,10 +10031,69,3108914,ATK,159765,Add,DEF,97702,Add,NONE,0,Add,700015,20,30,-35.83,Add,NONE,Caster,10 +10031,70,3140284,ATK,161250,Add,DEF,98815,Add,NONE,0,Add,700015,20,30,-35.9,Add,NONE,Caster,10 +10031,71,3171655,ATK,162735,Add,DEF,99928,Add,NONE,0,Add,700015,20,30,-35.97,Add,NONE,Caster,10 +10031,72,3203026,ATK,164220,Add,DEF,101041,Add,NONE,0,Add,700015,20,30,-36.04,Add,NONE,Caster,10 +10031,73,3234397,ATK,165705,Add,DEF,102154,Add,NONE,0,Add,700015,20,30,-36.11,Add,NONE,Caster,10 +10031,74,3265768,ATK,167190,Add,DEF,103267,Add,NONE,0,Add,700015,20,30,-36.18,Add,NONE,Caster,10 +10031,75,3297139,ATK,168675,Add,DEF,104380,Add,NONE,0,Add,700015,20,30,-36.25,Add,NONE,Caster,10 +10031,76,3328509,ATK,170160,Add,DEF,105493,Add,NONE,0,Add,700015,20,30,-36.32,Add,NONE,Caster,10 +10031,77,3359880,ATK,171645,Add,DEF,106606,Add,NONE,0,Add,700015,20,30,-36.39,Add,NONE,Caster,10 +10031,78,3391251,ATK,173130,Add,DEF,107719,Add,NONE,0,Add,700015,20,30,-36.46,Add,NONE,Caster,10 +10031,79,3422622,ATK,174615,Add,DEF,108832,Add,NONE,0,Add,700015,20,30,-36.53,Add,NONE,Caster,10 +10031,80,3453993,ATK,176100,Add,DEF,109945,Add,NONE,0,Add,700015,20,30,-36.6,Add,NONE,Caster,10 +10031,81,3485364,ATK,177585,Add,DEF,111058,Add,NONE,0,Add,700015,20,30,-36.67,Add,NONE,Caster,10 +10031,82,3516735,ATK,179070,Add,DEF,112171,Add,NONE,0,Add,700015,20,30,-36.74,Add,NONE,Caster,10 +10031,83,3548105,ATK,180555,Add,DEF,113284,Add,NONE,0,Add,700015,20,30,-36.81,Add,NONE,Caster,10 +10031,84,3579476,ATK,182040,Add,DEF,114397,Add,NONE,0,Add,700015,20,30,-36.88,Add,NONE,Caster,10 +10031,85,3610847,ATK,183525,Add,DEF,115510,Add,NONE,0,Add,700015,20,30,-36.95,Add,NONE,Caster,10 +10031,86,3642218,ATK,185010,Add,DEF,116623,Add,NONE,0,Add,700015,20,30,-37.02,Add,NONE,Caster,10 +10031,87,3673589,ATK,186495,Add,DEF,117736,Add,NONE,0,Add,700015,20,30,-37.09,Add,NONE,Caster,10 +10031,88,3704960,ATK,187980,Add,DEF,118849,Add,NONE,0,Add,700015,20,30,-37.16,Add,NONE,Caster,10 +10031,89,3736331,ATK,189465,Add,DEF,119962,Add,NONE,0,Add,700015,20,30,-37.23,Add,NONE,Caster,10 +10031,90,3767701,ATK,190950,Add,DEF,121075,Add,NONE,0,Add,700015,20,30,-37.3,Add,NONE,Caster,10 +10031,91,3799072,ATK,192435,Add,DEF,122188,Add,NONE,0,Add,700015,20,30,-37.37,Add,NONE,Caster,10 +10031,92,3830443,ATK,193920,Add,DEF,123301,Add,NONE,0,Add,700015,20,30,-37.44,Add,NONE,Caster,10 +10031,93,3861814,ATK,195405,Add,DEF,124414,Add,NONE,0,Add,700015,20,30,-37.51,Add,NONE,Caster,10 +10031,94,3893185,ATK,196890,Add,DEF,125527,Add,NONE,0,Add,700015,20,30,-37.58,Add,NONE,Caster,10 +10031,95,3924556,ATK,198375,Add,DEF,126640,Add,NONE,0,Add,700015,20,30,-37.65,Add,NONE,Caster,10 +10031,96,3955926,ATK,199860,Add,DEF,127753,Add,NONE,0,Add,700015,20,30,-37.72,Add,NONE,Caster,10 +10031,97,3987297,ATK,201345,Add,DEF,128866,Add,NONE,0,Add,700015,20,30,-37.79,Add,NONE,Caster,10 +10031,98,4018668,ATK,202830,Add,DEF,129979,Add,NONE,0,Add,700015,20,30,-37.86,Add,NONE,Caster,10 +10031,99,4050039,ATK,204315,Add,DEF,131092,Add,NONE,0,Add,700015,20,30,-37.93,Add,NONE,Caster,10 +10031,100,4081410,ATK,205800,Add,DEF,132205,Add,NONE,0,Add,700015,20,30,-38,Add,NONE,Caster,10 +10031,101,4108748,ATK,207025,Add,DEF,133244,Add,NONE,0,Add,700015,20,30,-38.05,Add,NONE,Caster,10 +10031,102,4136085,ATK,208250,Add,DEF,134283,Add,NONE,0,Add,700015,20,30,-38.1,Add,NONE,Caster,10 +10031,103,4163423,ATK,209475,Add,DEF,135322,Add,NONE,0,Add,700015,20,30,-38.15,Add,NONE,Caster,10 +10031,104,4190761,ATK,210700,Add,DEF,136361,Add,NONE,0,Add,700015,20,30,-38.2,Add,NONE,Caster,10 +10031,105,4218099,ATK,211925,Add,DEF,137400,Add,NONE,0,Add,700015,20,30,-38.25,Add,NONE,Caster,10 +10031,106,4245437,ATK,213150,Add,DEF,138439,Add,NONE,0,Add,700015,20,30,-38.3,Add,NONE,Caster,10 +10031,107,4272774,ATK,214375,Add,DEF,139478,Add,NONE,0,Add,700015,20,30,-38.35,Add,NONE,Caster,10 +10031,108,4300112,ATK,215600,Add,DEF,140517,Add,NONE,0,Add,700015,20,30,-38.4,Add,NONE,Caster,10 +10031,109,4327450,ATK,216825,Add,DEF,141556,Add,NONE,0,Add,700015,20,30,-38.45,Add,NONE,Caster,10 +10031,110,4354788,ATK,218050,Add,DEF,142595,Add,NONE,0,Add,700015,20,30,-38.5,Add,NONE,Caster,10 +10031,111,4382126,ATK,219275,Add,DEF,143634,Add,NONE,0,Add,700015,20,30,-38.55,Add,NONE,Caster,10 +10031,112,4409463,ATK,220500,Add,DEF,144673,Add,NONE,0,Add,700015,20,30,-38.6,Add,NONE,Caster,10 +10031,113,4436801,ATK,221725,Add,DEF,145712,Add,NONE,0,Add,700015,20,30,-38.65,Add,NONE,Caster,10 +10031,114,4464139,ATK,222950,Add,DEF,146751,Add,NONE,0,Add,700015,20,30,-38.7,Add,NONE,Caster,10 +10031,115,4491477,ATK,224175,Add,DEF,147790,Add,NONE,0,Add,700015,20,30,-38.75,Add,NONE,Caster,10 +10031,116,4518815,ATK,225400,Add,DEF,148829,Add,NONE,0,Add,700015,20,30,-38.8,Add,NONE,Caster,10 +10031,117,4546152,ATK,226625,Add,DEF,149868,Add,NONE,0,Add,700015,20,30,-38.85,Add,NONE,Caster,10 +10031,118,4573490,ATK,227850,Add,DEF,150907,Add,NONE,0,Add,700015,20,30,-38.9,Add,NONE,Caster,10 +10031,119,4600828,ATK,229075,Add,DEF,151946,Add,NONE,0,Add,700015,20,30,-38.95,Add,NONE,Caster,10 +10031,120,4628166,ATK,230300,Add,DEF,152985,Add,NONE,0,Add,700015,20,30,-39,Add,NONE,Caster,10 +10031,121,4655504,ATK,231525,Add,DEF,154024,Add,NONE,0,Add,700015,20,30,-39.05,Add,NONE,Caster,10 +10031,122,4682841,ATK,232750,Add,DEF,155063,Add,NONE,0,Add,700015,20,30,-39.1,Add,NONE,Caster,10 +10031,123,4710179,ATK,233975,Add,DEF,156102,Add,NONE,0,Add,700015,20,30,-39.15,Add,NONE,Caster,10 +10031,124,4737517,ATK,235200,Add,DEF,157141,Add,NONE,0,Add,700015,20,30,-39.2,Add,NONE,Caster,10 +10031,125,4764855,ATK,236425,Add,DEF,158180,Add,NONE,0,Add,700015,20,30,-39.25,Add,NONE,Caster,10 +10031,126,4792193,ATK,237650,Add,DEF,159219,Add,NONE,0,Add,700015,20,30,-39.3,Add,NONE,Caster,10 +10031,127,4819530,ATK,238875,Add,DEF,160258,Add,NONE,0,Add,700015,20,30,-39.35,Add,NONE,Caster,10 +10031,128,4846868,ATK,240100,Add,DEF,161297,Add,NONE,0,Add,700015,20,30,-39.4,Add,NONE,Caster,10 +10031,129,4874206,ATK,241325,Add,DEF,162336,Add,NONE,0,Add,700015,20,30,-39.45,Add,NONE,Caster,10 +10031,130,4901544,ATK,242550,Add,DEF,163375,Add,NONE,0,Add,700015,20,30,-39.5,Add,NONE,Caster,10 +10031,131,4928882,ATK,243775,Add,DEF,164414,Add,NONE,0,Add,700015,20,30,-39.55,Add,NONE,Caster,10 +10031,132,4956219,ATK,245000,Add,DEF,165453,Add,NONE,0,Add,700015,20,30,-39.6,Add,NONE,Caster,10 +10031,133,4983557,ATK,246225,Add,DEF,166492,Add,NONE,0,Add,700015,20,30,-39.65,Add,NONE,Caster,10 +10031,134,5010895,ATK,247450,Add,DEF,167531,Add,NONE,0,Add,700015,20,30,-39.7,Add,NONE,Caster,10 +10031,135,5038233,ATK,248675,Add,DEF,168570,Add,NONE,0,Add,700015,20,30,-39.75,Add,NONE,Caster,10 +10031,136,5065571,ATK,249900,Add,DEF,169609,Add,NONE,0,Add,700015,20,30,-39.8,Add,NONE,Caster,10 +10031,137,5092908,ATK,251125,Add,DEF,170648,Add,NONE,0,Add,700015,20,30,-39.85,Add,NONE,Caster,10 +10031,138,5120246,ATK,252350,Add,DEF,171687,Add,NONE,0,Add,700015,20,30,-39.9,Add,NONE,Caster,10 +10031,139,5147584,ATK,253575,Add,DEF,172726,Add,NONE,0,Add,700015,20,30,-39.95,Add,NONE,Caster,10 +10031,140,5174922,ATK,254800,Add,DEF,173765,Add,NONE,0,Add,700015,20,30,-40,Add,NONE,Caster,10 +10031,141,5202260,ATK,256025,Add,DEF,174804,Add,NONE,0,Add,700015,20,30,-40.05,Add,NONE,Caster,10 +10031,142,5229597,ATK,257250,Add,DEF,175843,Add,NONE,0,Add,700015,20,30,-40.1,Add,NONE,Caster,10 +10031,143,5256935,ATK,258475,Add,DEF,176882,Add,NONE,0,Add,700015,20,30,-40.15,Add,NONE,Caster,10 +10031,144,5284273,ATK,259700,Add,DEF,177921,Add,NONE,0,Add,700015,20,30,-40.2,Add,NONE,Caster,10 +10031,145,5311611,ATK,260925,Add,DEF,178960,Add,NONE,0,Add,700015,20,30,-40.25,Add,NONE,Caster,10 +10031,146,5338949,ATK,262150,Add,DEF,179999,Add,NONE,0,Add,700015,20,30,-40.3,Add,NONE,Caster,10 +10031,147,5366286,ATK,263375,Add,DEF,181038,Add,NONE,0,Add,700015,20,30,-40.35,Add,NONE,Caster,10 +10031,148,5393624,ATK,264600,Add,DEF,182077,Add,NONE,0,Add,700015,20,30,-40.4,Add,NONE,Caster,10 +10031,149,5420962,ATK,265825,Add,DEF,183116,Add,NONE,0,Add,700015,20,30,-40.45,Add,NONE,Caster,10 +10031,150,5448300,ATK,267050,Add,DEF,184155,Add,NONE,0,Add,700015,20,30,-40.5,Add,NONE,Caster,10 +10031,151,5466219,ATK,267829,Add,DEF,184860,Add,NONE,0,Add,700015,20,30,-40.54,Add,NONE,Caster,10 +10031,152,5484138,ATK,268608,Add,DEF,185565,Add,NONE,0,Add,700015,20,30,-40.58,Add,NONE,Caster,10 +10031,153,5502058,ATK,269387,Add,DEF,186270,Add,NONE,0,Add,700015,20,30,-40.62,Add,NONE,Caster,10 +10031,154,5519977,ATK,270166,Add,DEF,186975,Add,NONE,0,Add,700015,20,30,-40.66,Add,NONE,Caster,10 +10031,155,5537896,ATK,270945,Add,DEF,187680,Add,NONE,0,Add,700015,20,30,-40.7,Add,NONE,Caster,10 +10031,156,5555816,ATK,271724,Add,DEF,188385,Add,NONE,0,Add,700015,20,30,-40.74,Add,NONE,Caster,10 +10031,157,5573735,ATK,272503,Add,DEF,189090,Add,NONE,0,Add,700015,20,30,-40.78,Add,NONE,Caster,10 +10031,158,5591654,ATK,273282,Add,DEF,189795,Add,NONE,0,Add,700015,20,30,-40.82,Add,NONE,Caster,10 +10031,159,5609574,ATK,274061,Add,DEF,190500,Add,NONE,0,Add,700015,20,30,-40.86,Add,NONE,Caster,10 +10031,160,5627493,ATK,274840,Add,DEF,191205,Add,NONE,0,Add,700015,20,30,-40.9,Add,NONE,Caster,10 +10031,161,5645412,ATK,275619,Add,DEF,191910,Add,NONE,0,Add,700015,20,30,-40.94,Add,NONE,Caster,10 +10031,162,5663331,ATK,276398,Add,DEF,192615,Add,NONE,0,Add,700015,20,30,-40.98,Add,NONE,Caster,10 +10031,163,5681251,ATK,277177,Add,DEF,193320,Add,NONE,0,Add,700015,20,30,-41.02,Add,NONE,Caster,10 +10031,164,5699170,ATK,277956,Add,DEF,194025,Add,NONE,0,Add,700015,20,30,-41.06,Add,NONE,Caster,10 +10031,165,5717089,ATK,278735,Add,DEF,194730,Add,NONE,0,Add,700015,20,30,-41.1,Add,NONE,Caster,10 +10031,166,5735009,ATK,279514,Add,DEF,195435,Add,NONE,0,Add,700015,20,30,-41.14,Add,NONE,Caster,10 +10031,167,5752928,ATK,280293,Add,DEF,196140,Add,NONE,0,Add,700015,20,30,-41.18,Add,NONE,Caster,10 +10031,168,5770847,ATK,281072,Add,DEF,196845,Add,NONE,0,Add,700015,20,30,-41.22,Add,NONE,Caster,10 +10031,169,5788767,ATK,281851,Add,DEF,197550,Add,NONE,0,Add,700015,20,30,-41.26,Add,NONE,Caster,10 +10031,170,5806686,ATK,282630,Add,DEF,198255,Add,NONE,0,Add,700015,20,30,-41.3,Add,NONE,Caster,10 +10031,171,5824605,ATK,283409,Add,DEF,198960,Add,NONE,0,Add,700015,20,30,-41.34,Add,NONE,Caster,10 +10031,172,5842524,ATK,284188,Add,DEF,199665,Add,NONE,0,Add,700015,20,30,-41.38,Add,NONE,Caster,10 +10031,173,5860444,ATK,284967,Add,DEF,200370,Add,NONE,0,Add,700015,20,30,-41.42,Add,NONE,Caster,10 +10031,174,5878363,ATK,285746,Add,DEF,201075,Add,NONE,0,Add,700015,20,30,-41.46,Add,NONE,Caster,10 +10031,175,5896282,ATK,286525,Add,DEF,201780,Add,NONE,0,Add,700015,20,30,-41.5,Add,NONE,Caster,10 +10031,176,5914202,ATK,287304,Add,DEF,202485,Add,NONE,0,Add,700015,20,30,-41.54,Add,NONE,Caster,10 +10031,177,5932121,ATK,288083,Add,DEF,203190,Add,NONE,0,Add,700015,20,30,-41.58,Add,NONE,Caster,10 +10031,178,5950040,ATK,288862,Add,DEF,203895,Add,NONE,0,Add,700015,20,30,-41.62,Add,NONE,Caster,10 +10031,179,5967960,ATK,289641,Add,DEF,204600,Add,NONE,0,Add,700015,20,30,-41.66,Add,NONE,Caster,10 +10031,180,5985879,ATK,290420,Add,DEF,205305,Add,NONE,0,Add,700015,20,30,-41.7,Add,NONE,Caster,10 +10031,181,6003798,ATK,291199,Add,DEF,206010,Add,NONE,0,Add,700015,20,30,-41.74,Add,NONE,Caster,10 +10031,182,6021717,ATK,291978,Add,DEF,206715,Add,NONE,0,Add,700015,20,30,-41.78,Add,NONE,Caster,10 +10031,183,6039637,ATK,292757,Add,DEF,207420,Add,NONE,0,Add,700015,20,30,-41.82,Add,NONE,Caster,10 +10031,184,6057556,ATK,293536,Add,DEF,208125,Add,NONE,0,Add,700015,20,30,-41.86,Add,NONE,Caster,10 +10031,185,6075475,ATK,294315,Add,DEF,208830,Add,NONE,0,Add,700015,20,30,-41.9,Add,NONE,Caster,10 +10031,186,6093395,ATK,295094,Add,DEF,209535,Add,NONE,0,Add,700015,20,30,-41.94,Add,NONE,Caster,10 +10031,187,6111314,ATK,295873,Add,DEF,210240,Add,NONE,0,Add,700015,20,30,-41.98,Add,NONE,Caster,10 +10031,188,6129233,ATK,296652,Add,DEF,210945,Add,NONE,0,Add,700015,20,30,-42.02,Add,NONE,Caster,10 +10031,189,6147153,ATK,297431,Add,DEF,211650,Add,NONE,0,Add,700015,20,30,-42.06,Add,NONE,Caster,10 +10031,190,6165072,ATK,298210,Add,DEF,212355,Add,NONE,0,Add,700015,20,30,-42.1,Add,NONE,Caster,10 +10031,191,6182991,ATK,298989,Add,DEF,213060,Add,NONE,0,Add,700015,20,30,-42.14,Add,NONE,Caster,10 +10031,192,6200910,ATK,299768,Add,DEF,213765,Add,NONE,0,Add,700015,20,30,-42.18,Add,NONE,Caster,10 +10031,193,6218830,ATK,300547,Add,DEF,214470,Add,NONE,0,Add,700015,20,30,-42.22,Add,NONE,Caster,10 +10031,194,6236749,ATK,301326,Add,DEF,215175,Add,NONE,0,Add,700015,20,30,-42.26,Add,NONE,Caster,10 +10031,195,6254668,ATK,302105,Add,DEF,215880,Add,NONE,0,Add,700015,20,30,-42.3,Add,NONE,Caster,10 +10031,196,6272588,ATK,302884,Add,DEF,216585,Add,NONE,0,Add,700015,20,30,-42.34,Add,NONE,Caster,10 +10031,197,6290507,ATK,303663,Add,DEF,217290,Add,NONE,0,Add,700015,20,30,-42.38,Add,NONE,Caster,10 +10031,198,6308426,ATK,304442,Add,DEF,217995,Add,NONE,0,Add,700015,20,30,-42.42,Add,NONE,Caster,10 +10031,199,6326346,ATK,305221,Add,DEF,218700,Add,NONE,0,Add,700015,20,30,-42.46,Add,NONE,Caster,10 +10031,200,6344265,ATK,306000,Add,DEF,219405,Add,NONE,0,Add,700015,20,30,-42.5,Add,NONE,Caster,10 +10031,201,6356352,ATK,306482,Add,DEF,219924,Add,NONE,0,Add,700015,20,30,-42.53,Add,NONE,Caster,10 +10031,202,6368439,ATK,306964,Add,DEF,220443,Add,NONE,0,Add,700015,20,30,-42.56,Add,NONE,Caster,10 +10031,203,6380526,ATK,307446,Add,DEF,220962,Add,NONE,0,Add,700015,20,30,-42.59,Add,NONE,Caster,10 +10031,204,6392613,ATK,307928,Add,DEF,221481,Add,NONE,0,Add,700015,20,30,-42.62,Add,NONE,Caster,10 +10031,205,6404700,ATK,308410,Add,DEF,222000,Add,NONE,0,Add,700015,20,30,-42.65,Add,NONE,Caster,10 +10031,206,6416787,ATK,308892,Add,DEF,222519,Add,NONE,0,Add,700015,20,30,-42.68,Add,NONE,Caster,10 +10031,207,6428874,ATK,309374,Add,DEF,223038,Add,NONE,0,Add,700015,20,30,-42.71,Add,NONE,Caster,10 +10031,208,6440961,ATK,309856,Add,DEF,223557,Add,NONE,0,Add,700015,20,30,-42.74,Add,NONE,Caster,10 +10031,209,6453049,ATK,310338,Add,DEF,224076,Add,NONE,0,Add,700015,20,30,-42.77,Add,NONE,Caster,10 +10031,210,6465136,ATK,310820,Add,DEF,224595,Add,NONE,0,Add,700015,20,30,-42.8,Add,NONE,Caster,10 +10031,211,6477223,ATK,311302,Add,DEF,225114,Add,NONE,0,Add,700015,20,30,-42.83,Add,NONE,Caster,10 +10031,212,6489310,ATK,311784,Add,DEF,225633,Add,NONE,0,Add,700015,20,30,-42.86,Add,NONE,Caster,10 +10031,213,6501397,ATK,312266,Add,DEF,226152,Add,NONE,0,Add,700015,20,30,-42.89,Add,NONE,Caster,10 +10031,214,6513484,ATK,312748,Add,DEF,226671,Add,NONE,0,Add,700015,20,30,-42.92,Add,NONE,Caster,10 +10031,215,6525571,ATK,313230,Add,DEF,227190,Add,NONE,0,Add,700015,20,30,-42.95,Add,NONE,Caster,10 +10031,216,6537658,ATK,313712,Add,DEF,227709,Add,NONE,0,Add,700015,20,30,-42.98,Add,NONE,Caster,10 +10031,217,6549745,ATK,314194,Add,DEF,228228,Add,NONE,0,Add,700015,20,30,-43.01,Add,NONE,Caster,10 +10031,218,6561832,ATK,314676,Add,DEF,228747,Add,NONE,0,Add,700015,20,30,-43.04,Add,NONE,Caster,10 +10031,219,6573919,ATK,315158,Add,DEF,229266,Add,NONE,0,Add,700015,20,30,-43.07,Add,NONE,Caster,10 +10031,220,6586006,ATK,315640,Add,DEF,229785,Add,NONE,0,Add,700015,20,30,-43.1,Add,NONE,Caster,10 +10031,221,6598093,ATK,316122,Add,DEF,230304,Add,NONE,0,Add,700015,20,30,-43.13,Add,NONE,Caster,10 +10031,222,6610181,ATK,316604,Add,DEF,230823,Add,NONE,0,Add,700015,20,30,-43.16,Add,NONE,Caster,10 +10031,223,6622268,ATK,317086,Add,DEF,231342,Add,NONE,0,Add,700015,20,30,-43.19,Add,NONE,Caster,10 +10031,224,6634355,ATK,317568,Add,DEF,231861,Add,NONE,0,Add,700015,20,30,-43.22,Add,NONE,Caster,10 +10031,225,6646442,ATK,318050,Add,DEF,232380,Add,NONE,0,Add,700015,20,30,-43.25,Add,NONE,Caster,10 +10031,226,6658529,ATK,318532,Add,DEF,232899,Add,NONE,0,Add,700015,20,30,-43.28,Add,NONE,Caster,10 +10031,227,6670616,ATK,319014,Add,DEF,233418,Add,NONE,0,Add,700015,20,30,-43.31,Add,NONE,Caster,10 +10031,228,6682703,ATK,319496,Add,DEF,233937,Add,NONE,0,Add,700015,20,30,-43.34,Add,NONE,Caster,10 +10031,229,6694790,ATK,319978,Add,DEF,234456,Add,NONE,0,Add,700015,20,30,-43.37,Add,NONE,Caster,10 +10031,230,6706877,ATK,320460,Add,DEF,234975,Add,NONE,0,Add,700015,20,30,-43.4,Add,NONE,Caster,10 +10031,231,6718964,ATK,320942,Add,DEF,235494,Add,NONE,0,Add,700015,20,30,-43.43,Add,NONE,Caster,10 +10031,232,6731051,ATK,321424,Add,DEF,236013,Add,NONE,0,Add,700015,20,30,-43.46,Add,NONE,Caster,10 +10031,233,6743138,ATK,321906,Add,DEF,236532,Add,NONE,0,Add,700015,20,30,-43.49,Add,NONE,Caster,10 +10031,234,6755225,ATK,322388,Add,DEF,237051,Add,NONE,0,Add,700015,20,30,-43.52,Add,NONE,Caster,10 +10031,235,6767313,ATK,322870,Add,DEF,237570,Add,NONE,0,Add,700015,20,30,-43.55,Add,NONE,Caster,10 +10031,236,6779400,ATK,323352,Add,DEF,238089,Add,NONE,0,Add,700015,20,30,-43.58,Add,NONE,Caster,10 +10031,237,6791487,ATK,323834,Add,DEF,238608,Add,NONE,0,Add,700015,20,30,-43.61,Add,NONE,Caster,10 +10031,238,6803574,ATK,324316,Add,DEF,239127,Add,NONE,0,Add,700015,20,30,-43.64,Add,NONE,Caster,10 +10031,239,6815661,ATK,324798,Add,DEF,239646,Add,NONE,0,Add,700015,20,30,-43.67,Add,NONE,Caster,10 +10031,240,6827748,ATK,325280,Add,DEF,240165,Add,NONE,0,Add,700015,20,30,-43.7,Add,NONE,Caster,10 +10031,241,6839835,ATK,325762,Add,DEF,240684,Add,NONE,0,Add,700015,20,30,-43.73,Add,NONE,Caster,10 +10031,242,6851922,ATK,326244,Add,DEF,241203,Add,NONE,0,Add,700015,20,30,-43.76,Add,NONE,Caster,10 +10031,243,6864009,ATK,326726,Add,DEF,241722,Add,NONE,0,Add,700015,20,30,-43.79,Add,NONE,Caster,10 +10031,244,6876096,ATK,327208,Add,DEF,242241,Add,NONE,0,Add,700015,20,30,-43.82,Add,NONE,Caster,10 +10031,245,6888183,ATK,327690,Add,DEF,242760,Add,NONE,0,Add,700015,20,30,-43.85,Add,NONE,Caster,10 +10031,246,6900270,ATK,328172,Add,DEF,243279,Add,NONE,0,Add,700015,20,30,-43.88,Add,NONE,Caster,10 +10031,247,6912357,ATK,328654,Add,DEF,243798,Add,NONE,0,Add,700015,20,30,-43.91,Add,NONE,Caster,10 +10031,248,6924444,ATK,329136,Add,DEF,244317,Add,NONE,0,Add,700015,20,30,-43.94,Add,NONE,Caster,10 +10031,249,6936532,ATK,329618,Add,DEF,244836,Add,NONE,0,Add,700015,20,30,-43.97,Add,NONE,Caster,10 +10031,250,6948619,ATK,330100,Add,DEF,245355,Add,NONE,0,Add,700015,20,30,-44,Add,NONE,Caster,10 +10031,251,6958025,ATK,330434,Add,DEF,245800,Add,NONE,0,Add,700015,20,30,-44.02,Add,NONE,Caster,10 +10031,252,6967431,ATK,330768,Add,DEF,246245,Add,NONE,0,Add,700015,20,30,-44.04,Add,NONE,Caster,10 +10031,253,6976838,ATK,331102,Add,DEF,246690,Add,NONE,0,Add,700015,20,30,-44.06,Add,NONE,Caster,10 +10031,254,6986244,ATK,331436,Add,DEF,247135,Add,NONE,0,Add,700015,20,30,-44.08,Add,NONE,Caster,10 +10031,255,6995651,ATK,331770,Add,DEF,247580,Add,NONE,0,Add,700015,20,30,-44.1,Add,NONE,Caster,10 +10031,256,7005057,ATK,332104,Add,DEF,248025,Add,NONE,0,Add,700015,20,30,-44.12,Add,NONE,Caster,10 +10031,257,7014464,ATK,332438,Add,DEF,248470,Add,NONE,0,Add,700015,20,30,-44.14,Add,NONE,Caster,10 +10031,258,7023870,ATK,332772,Add,DEF,248915,Add,NONE,0,Add,700015,20,30,-44.16,Add,NONE,Caster,10 +10031,259,7033276,ATK,333106,Add,DEF,249360,Add,NONE,0,Add,700015,20,30,-44.18,Add,NONE,Caster,10 +10031,260,7042683,ATK,333440,Add,DEF,249805,Add,NONE,0,Add,700015,20,30,-44.2,Add,NONE,Caster,10 +10031,261,7052089,ATK,333774,Add,DEF,250250,Add,NONE,0,Add,700015,20,30,-44.22,Add,NONE,Caster,10 +10031,262,7061496,ATK,334108,Add,DEF,250695,Add,NONE,0,Add,700015,20,30,-44.24,Add,NONE,Caster,10 +10031,263,7070902,ATK,334442,Add,DEF,251140,Add,NONE,0,Add,700015,20,30,-44.26,Add,NONE,Caster,10 +10031,264,7080309,ATK,334776,Add,DEF,251585,Add,NONE,0,Add,700015,20,30,-44.28,Add,NONE,Caster,10 +10031,265,7089715,ATK,335110,Add,DEF,252030,Add,NONE,0,Add,700015,20,30,-44.3,Add,NONE,Caster,10 +10031,266,7099121,ATK,335444,Add,DEF,252475,Add,NONE,0,Add,700015,20,30,-44.32,Add,NONE,Caster,10 +10031,267,7108528,ATK,335778,Add,DEF,252920,Add,NONE,0,Add,700015,20,30,-44.34,Add,NONE,Caster,10 +10031,268,7117934,ATK,336112,Add,DEF,253365,Add,NONE,0,Add,700015,20,30,-44.36,Add,NONE,Caster,10 +10031,269,7127341,ATK,336446,Add,DEF,253810,Add,NONE,0,Add,700015,20,30,-44.38,Add,NONE,Caster,10 +10031,270,7136747,ATK,336780,Add,DEF,254255,Add,NONE,0,Add,700015,20,30,-44.4,Add,NONE,Caster,10 +10031,271,7146154,ATK,337114,Add,DEF,254700,Add,NONE,0,Add,700015,20,30,-44.42,Add,NONE,Caster,10 +10031,272,7155560,ATK,337448,Add,DEF,255145,Add,NONE,0,Add,700015,20,30,-44.44,Add,NONE,Caster,10 +10031,273,7164966,ATK,337782,Add,DEF,255590,Add,NONE,0,Add,700015,20,30,-44.46,Add,NONE,Caster,10 +10031,274,7174373,ATK,338116,Add,DEF,256035,Add,NONE,0,Add,700015,20,30,-44.48,Add,NONE,Caster,10 +10031,275,7183779,ATK,338450,Add,DEF,256480,Add,NONE,0,Add,700015,20,30,-44.5,Add,NONE,Caster,10 +10031,276,7193186,ATK,338784,Add,DEF,256925,Add,NONE,0,Add,700015,20,30,-44.52,Add,NONE,Caster,10 +10031,277,7202592,ATK,339118,Add,DEF,257370,Add,NONE,0,Add,700015,20,30,-44.54,Add,NONE,Caster,10 +10031,278,7211999,ATK,339452,Add,DEF,257815,Add,NONE,0,Add,700015,20,30,-44.56,Add,NONE,Caster,10 +10031,279,7221405,ATK,339786,Add,DEF,258260,Add,NONE,0,Add,700015,20,30,-44.58,Add,NONE,Caster,10 +10031,280,7230811,ATK,340120,Add,DEF,258705,Add,NONE,0,Add,700015,20,30,-44.6,Add,NONE,Caster,10 +10031,281,7240218,ATK,340454,Add,DEF,259150,Add,NONE,0,Add,700015,20,30,-44.62,Add,NONE,Caster,10 +10031,282,7249624,ATK,340788,Add,DEF,259595,Add,NONE,0,Add,700015,20,30,-44.64,Add,NONE,Caster,10 +10031,283,7259031,ATK,341122,Add,DEF,260040,Add,NONE,0,Add,700015,20,30,-44.66,Add,NONE,Caster,10 +10031,284,7268437,ATK,341456,Add,DEF,260485,Add,NONE,0,Add,700015,20,30,-44.68,Add,NONE,Caster,10 +10031,285,7277844,ATK,341790,Add,DEF,260930,Add,NONE,0,Add,700015,20,30,-44.7,Add,NONE,Caster,10 +10031,286,7287250,ATK,342124,Add,DEF,261375,Add,NONE,0,Add,700015,20,30,-44.72,Add,NONE,Caster,10 +10031,287,7296656,ATK,342458,Add,DEF,261820,Add,NONE,0,Add,700015,20,30,-44.74,Add,NONE,Caster,10 +10031,288,7306063,ATK,342792,Add,DEF,262265,Add,NONE,0,Add,700015,20,30,-44.76,Add,NONE,Caster,10 +10031,289,7315469,ATK,343126,Add,DEF,262710,Add,NONE,0,Add,700015,20,30,-44.78,Add,NONE,Caster,10 +10031,290,7324876,ATK,343460,Add,DEF,263155,Add,NONE,0,Add,700015,20,30,-44.8,Add,NONE,Caster,10 +10031,291,7334282,ATK,343794,Add,DEF,263600,Add,NONE,0,Add,700015,20,30,-44.82,Add,NONE,Caster,10 +10031,292,7343688,ATK,344128,Add,DEF,264045,Add,NONE,0,Add,700015,20,30,-44.84,Add,NONE,Caster,10 +10031,293,7353095,ATK,344462,Add,DEF,264490,Add,NONE,0,Add,700015,20,30,-44.86,Add,NONE,Caster,10 +10031,294,7362501,ATK,344796,Add,DEF,264935,Add,NONE,0,Add,700015,20,30,-44.88,Add,NONE,Caster,10 +10031,295,7371908,ATK,345130,Add,DEF,265380,Add,NONE,0,Add,700015,20,30,-44.9,Add,NONE,Caster,10 +10031,296,7381314,ATK,345464,Add,DEF,265825,Add,NONE,0,Add,700015,20,30,-44.92,Add,NONE,Caster,10 +10031,297,7390721,ATK,345798,Add,DEF,266270,Add,NONE,0,Add,700015,20,30,-44.94,Add,NONE,Caster,10 +10031,298,7400127,ATK,346132,Add,DEF,266715,Add,NONE,0,Add,700015,20,30,-44.96,Add,NONE,Caster,10 +10031,299,7409533,ATK,346466,Add,DEF,267160,Add,NONE,0,Add,700015,20,30,-44.98,Add,NONE,Caster,10 +10031,300,7418940,ATK,346800,Add,DEF,267605,Add,NONE,0,Add,700015,20,30,-45,Add,NONE,Caster,10 10032,1,164459,HP,81982,Add,HIT,22047,Add,SPD,17796,Add,,,,,,,, 10032,2,192391,HP,107795,Add,HIT,23835,Add,SPD,19752,Add,,,,,,,, 10032,3,220323,HP,133608,Add,HIT,25623,Add,SPD,21708,Add,,,,,,,, @@ -5998,4 +5998,904 @@ rune_id,level,total_cp,stat_type_1,value_1,value_type_1,stat_type_2,value_2,valu 10032,297,4542600,HP,3709882,Add,HIT,420940,Add,SPD,296897,Add,,,,,,,, 10032,298,4546711,HP,3712111,Add,HIT,421613,Add,SPD,297128,Add,,,,,,,, 10032,299,4550821,HP,3714340,Add,HIT,422286,Add,SPD,297359,Add,,,,,,,, -10032,300,4554932,HP,3716569,Add,HIT,422959,Add,SPD,297590,Add,,,,,,,, \ No newline at end of file +10032,300,4554932,HP,3716569,Add,HIT,422959,Add,SPD,297590,Add,,,,,,,, +10033,1,25476,HIT,8492,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,2,26685,HIT,8895,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,3,27894,HIT,9298,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,4,29103,HIT,9701,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,5,30312,HIT,10104,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,6,31521,HIT,10507,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,7,32730,HIT,10910,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,8,33939,HIT,11313,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,9,35148,HIT,11716,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,10,36357,HIT,12119,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,11,37566,HIT,12522,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,12,38775,HIT,12925,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,13,39984,HIT,13328,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,14,41193,HIT,13731,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,15,42402,HIT,14134,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,16,43611,HIT,14537,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,17,44820,HIT,14940,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,18,46029,HIT,15343,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,19,47238,HIT,15746,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,20,48447,HIT,16149,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,21,49656,HIT,16552,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,22,50865,HIT,16955,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,23,52074,HIT,17358,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,24,53283,HIT,17761,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,25,54492,HIT,18164,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,26,55701,HIT,18567,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,27,56910,HIT,18970,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,28,58119,HIT,19373,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,29,59328,HIT,19776,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,30,60537,HIT,20179,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,31,61746,HIT,20582,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,32,62955,HIT,20985,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,33,64164,HIT,21388,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,34,65373,HIT,21791,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,35,66582,HIT,22194,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,36,67791,HIT,22597,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,37,69000,HIT,23000,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,38,70209,HIT,23403,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,39,71418,HIT,23806,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,40,72627,HIT,24209,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,41,73836,HIT,24612,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,42,75045,HIT,25015,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,43,76254,HIT,25418,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,44,77463,HIT,25821,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,45,78672,HIT,26224,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,46,79881,HIT,26627,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,47,81090,HIT,27030,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,48,82299,HIT,27433,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,49,83508,HIT,27836,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,50,84717,HIT,28239,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,51,105507,HIT,35169,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,52,126297,HIT,42099,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,53,147087,HIT,49029,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,54,167877,HIT,55959,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,55,188667,HIT,62889,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,56,209457,HIT,69819,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,57,230247,HIT,76749,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,58,251037,HIT,83679,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,59,271827,HIT,90609,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,60,292617,HIT,97539,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,61,313407,HIT,104469,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,62,334197,HIT,111399,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,63,354987,HIT,118329,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,64,375777,HIT,125259,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,65,396567,HIT,132189,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,66,417357,HIT,139119,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,67,438147,HIT,146049,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,68,458937,HIT,152979,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,69,479727,HIT,159909,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,70,500517,HIT,166839,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,71,521307,HIT,173769,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,72,542097,HIT,180699,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,73,562887,HIT,187629,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,74,583677,HIT,194559,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,75,604467,HIT,201489,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,76,625257,HIT,208419,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,77,646047,HIT,215349,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,78,666837,HIT,222279,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,79,687627,HIT,229209,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,80,708417,HIT,236139,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,81,729207,HIT,243069,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,82,749997,HIT,249999,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,83,770787,HIT,256929,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,84,791577,HIT,263859,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,85,812367,HIT,270789,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,86,833157,HIT,277719,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,87,853947,HIT,284649,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,88,874737,HIT,291579,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,89,895527,HIT,298509,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,90,916317,HIT,305439,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,91,937107,HIT,312369,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,92,957897,HIT,319299,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,93,978687,HIT,326229,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,94,999477,HIT,333159,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,95,1020267,HIT,340089,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,96,1041057,HIT,347019,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,97,1061847,HIT,353949,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,98,1082637,HIT,360879,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,99,1103427,HIT,367809,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,100,1124217,HIT,374739,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,101,1149996,HIT,383332,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,102,1175775,HIT,391925,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,103,1201554,HIT,400518,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,104,1227333,HIT,409111,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,105,1253112,HIT,417704,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,106,1278891,HIT,426297,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,107,1304670,HIT,434890,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,108,1330449,HIT,443483,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,109,1356228,HIT,452076,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,110,1382007,HIT,460669,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,111,1407786,HIT,469262,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,112,1433565,HIT,477855,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,113,1459344,HIT,486448,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,114,1485123,HIT,495041,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,115,1510902,HIT,503634,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,116,1536681,HIT,512227,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,117,1562460,HIT,520820,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,118,1588239,HIT,529413,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,119,1614018,HIT,538006,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,120,1639797,HIT,546599,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,121,1665576,HIT,555192,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,122,1691355,HIT,563785,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,123,1717134,HIT,572378,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,124,1742913,HIT,580971,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,125,1768692,HIT,589564,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,126,1794471,HIT,598157,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,127,1820250,HIT,606750,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,128,1846029,HIT,615343,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,129,1871808,HIT,623936,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,130,1897587,HIT,632529,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,131,1923366,HIT,641122,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,132,1949145,HIT,649715,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,133,1974924,HIT,658308,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,134,2000703,HIT,666901,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,135,2026482,HIT,675494,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,136,2052261,HIT,684087,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,137,2078040,HIT,692680,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,138,2103819,HIT,701273,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,139,2129598,HIT,709866,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,140,2155377,HIT,718459,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,141,2181156,HIT,727052,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,142,2206935,HIT,735645,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,143,2232714,HIT,744238,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,144,2258493,HIT,752831,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,145,2284272,HIT,761424,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,146,2310051,HIT,770017,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,147,2335830,HIT,778610,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,148,2361609,HIT,787203,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,149,2387388,HIT,795796,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,150,2413167,HIT,804389,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,151,2441517,HIT,813839,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,152,2469867,HIT,823289,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,153,2498217,HIT,832739,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,154,2526567,HIT,842189,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,155,2554917,HIT,851639,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,156,2583267,HIT,861089,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,157,2611617,HIT,870539,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,158,2639967,HIT,879989,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,159,2668317,HIT,889439,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,160,2696667,HIT,898889,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,161,2725017,HIT,908339,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,162,2753367,HIT,917789,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,163,2781717,HIT,927239,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,164,2810067,HIT,936689,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,165,2838417,HIT,946139,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,166,2866767,HIT,955589,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,167,2895117,HIT,965039,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,168,2923467,HIT,974489,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,169,2951817,HIT,983939,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,170,2980167,HIT,993389,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,171,3008517,HIT,1002839,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,172,3036867,HIT,1012289,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,173,3065217,HIT,1021739,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,174,3093567,HIT,1031189,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,175,3121917,HIT,1040639,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,176,3150267,HIT,1050089,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,177,3178617,HIT,1059539,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,178,3206967,HIT,1068989,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,179,3235317,HIT,1078439,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,180,3263667,HIT,1087889,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,181,3292017,HIT,1097339,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,182,3320367,HIT,1106789,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,183,3348717,HIT,1116239,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,184,3377067,HIT,1125689,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,185,3405417,HIT,1135139,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,186,3433767,HIT,1144589,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,187,3462117,HIT,1154039,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,188,3490467,HIT,1163489,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,189,3518817,HIT,1172939,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,190,3547167,HIT,1182389,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,191,3575517,HIT,1191839,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,192,3603867,HIT,1201289,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,193,3632217,HIT,1210739,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,194,3660567,HIT,1220189,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,195,3688917,HIT,1229639,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,196,3717267,HIT,1239089,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,197,3745617,HIT,1248539,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,198,3773967,HIT,1257989,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,199,3802317,HIT,1267439,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,200,3830667,HIT,1276889,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,201,3859332,HIT,1286444,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,202,3887997,HIT,1295999,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,203,3916662,HIT,1305554,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,204,3945327,HIT,1315109,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,205,3973992,HIT,1324664,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,206,4002657,HIT,1334219,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,207,4031322,HIT,1343774,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,208,4059987,HIT,1353329,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,209,4088652,HIT,1362884,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,210,4117317,HIT,1372439,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,211,4145982,HIT,1381994,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,212,4174647,HIT,1391549,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,213,4203312,HIT,1401104,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,214,4231977,HIT,1410659,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,215,4260642,HIT,1420214,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,216,4289307,HIT,1429769,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,217,4317972,HIT,1439324,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,218,4346637,HIT,1448879,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,219,4375302,HIT,1458434,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,220,4403967,HIT,1467989,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,221,4432632,HIT,1477544,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,222,4461297,HIT,1487099,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,223,4489962,HIT,1496654,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,224,4518627,HIT,1506209,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,225,4547292,HIT,1515764,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,226,4575957,HIT,1525319,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,227,4604622,HIT,1534874,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,228,4633287,HIT,1544429,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,229,4661952,HIT,1553984,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,230,4690617,HIT,1563539,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,231,4719282,HIT,1573094,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,232,4747947,HIT,1582649,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,233,4776612,HIT,1592204,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,234,4805277,HIT,1601759,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,235,4833942,HIT,1611314,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,236,4862607,HIT,1620869,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,237,4891272,HIT,1630424,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,238,4919937,HIT,1639979,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,239,4948602,HIT,1649534,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,240,4977267,HIT,1659089,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,241,5005932,HIT,1668644,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,242,5034597,HIT,1678199,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,243,5063262,HIT,1687754,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,244,5091927,HIT,1697309,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,245,5120592,HIT,1706864,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,246,5149257,HIT,1716419,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,247,5177922,HIT,1725974,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,248,5206587,HIT,1735529,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,249,5235252,HIT,1745084,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,250,5263917,HIT,1754639,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,251,5292834,HIT,1764278,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,252,5321751,HIT,1773917,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,253,5350668,HIT,1783556,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,254,5379585,HIT,1793195,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,255,5408502,HIT,1802834,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,256,5437419,HIT,1812473,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,257,5466336,HIT,1822112,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,258,5495253,HIT,1831751,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,259,5524170,HIT,1841390,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,260,5553087,HIT,1851029,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,261,5582004,HIT,1860668,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,262,5610921,HIT,1870307,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,263,5639838,HIT,1879946,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,264,5668755,HIT,1889585,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,265,5697672,HIT,1899224,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,266,5726589,HIT,1908863,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,267,5755506,HIT,1918502,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,268,5784423,HIT,1928141,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,269,5813340,HIT,1937780,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,270,5842257,HIT,1947419,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,271,5871174,HIT,1957058,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,272,5900091,HIT,1966697,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,273,5929008,HIT,1976336,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,274,5957925,HIT,1985975,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,275,5986842,HIT,1995614,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,276,6015759,HIT,2005253,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,277,6044676,HIT,2014892,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,278,6073593,HIT,2024531,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,279,6102510,HIT,2034170,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,280,6131427,HIT,2043809,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,281,6160344,HIT,2053448,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,282,6189261,HIT,2063087,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,283,6218178,HIT,2072726,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,284,6247095,HIT,2082365,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,285,6276012,HIT,2092004,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,286,6304929,HIT,2101643,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,287,6333846,HIT,2111282,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,288,6362763,HIT,2120921,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,289,6391680,HIT,2130560,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,290,6420597,HIT,2140199,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,291,6449514,HIT,2149838,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,292,6478431,HIT,2159477,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,293,6507348,HIT,2169116,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,294,6536265,HIT,2178755,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,295,6565182,HIT,2188394,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,296,6594099,HIT,2198033,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,297,6623016,HIT,2207672,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,298,6651933,HIT,2217311,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,299,6680850,HIT,2226950,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10033,300,6709767,HIT,2236589,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,1,14864,SPD,6463,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,2,15182,SPD,6601,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,3,15499,SPD,6739,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,4,15817,SPD,6877,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,5,16134,SPD,7015,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,6,16451,SPD,7153,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,7,16769,SPD,7291,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,8,17086,SPD,7429,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,9,17404,SPD,7567,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,10,17721,SPD,7705,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,11,18038,SPD,7843,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,12,18356,SPD,7981,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,13,18673,SPD,8119,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,14,18991,SPD,8257,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,15,19308,SPD,8395,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,16,19625,SPD,8533,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,17,19943,SPD,8671,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,18,20260,SPD,8809,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,19,20578,SPD,8947,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,20,20895,SPD,9085,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,21,21212,SPD,9223,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,22,21530,SPD,9361,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,23,21847,SPD,9499,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,24,22165,SPD,9637,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,25,22482,SPD,9775,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,26,22799,SPD,9913,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,27,23117,SPD,10051,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,28,23434,SPD,10189,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,29,23752,SPD,10327,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,30,24069,SPD,10465,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,31,24386,SPD,10603,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,32,24704,SPD,10741,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,33,25021,SPD,10879,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,34,25339,SPD,11017,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,35,25656,SPD,11155,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,36,25973,SPD,11293,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,37,26291,SPD,11431,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,38,26608,SPD,11569,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,39,26926,SPD,11707,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,40,27243,SPD,11845,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,41,27560,SPD,11983,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,42,27878,SPD,12121,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,43,28195,SPD,12259,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,44,28513,SPD,12397,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,45,28830,SPD,12535,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,46,29147,SPD,12673,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,47,29465,SPD,12811,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,48,29782,SPD,12949,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,49,30100,SPD,13087,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,50,30417,SPD,13225,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,51,38387,SPD,16690,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,52,46356,SPD,20155,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,53,54326,SPD,23620,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,54,62295,SPD,27085,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,55,70265,SPD,30550,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,56,78234,SPD,34015,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,57,86204,SPD,37480,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,58,94173,SPD,40945,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,59,102143,SPD,44410,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,60,110112,SPD,47875,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,61,118082,SPD,51340,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,62,126051,SPD,54805,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,63,134021,SPD,58270,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,64,141990,SPD,61735,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,65,149960,SPD,65200,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,66,157929,SPD,68665,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,67,165899,SPD,72130,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,68,173868,SPD,75595,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,69,181838,SPD,79060,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,70,189807,SPD,82525,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,71,197777,SPD,85990,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,72,205746,SPD,89455,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,73,213716,SPD,92920,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,74,221685,SPD,96385,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,75,229655,SPD,99850,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,76,237624,SPD,103315,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,77,245594,SPD,106780,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,78,253563,SPD,110245,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,79,261533,SPD,113710,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,80,269502,SPD,117175,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,81,277472,SPD,120640,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,82,285441,SPD,124105,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,83,293411,SPD,127570,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,84,301380,SPD,131035,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,85,309350,SPD,134500,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,86,317319,SPD,137965,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,87,325289,SPD,141430,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,88,333258,SPD,144895,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,89,341228,SPD,148360,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,90,349197,SPD,151825,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,91,357167,SPD,155290,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,92,365136,SPD,158755,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,93,373106,SPD,162220,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,94,381075,SPD,165685,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,95,389045,SPD,169150,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,96,397014,SPD,172615,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,97,404984,SPD,176080,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,98,412953,SPD,179545,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,99,420923,SPD,183010,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,100,428892,SPD,186475,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,101,438136,SPD,190494,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,102,447379,SPD,194513,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,103,456623,SPD,198532,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,104,465867,SPD,202551,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,105,475111,SPD,206570,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,106,484354,SPD,210589,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,107,493598,SPD,214608,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,108,502842,SPD,218627,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,109,512085,SPD,222646,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,110,521329,SPD,226665,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,111,530573,SPD,230684,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,112,539816,SPD,234703,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,113,549060,SPD,238722,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,114,558304,SPD,242741,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,115,567548,SPD,246760,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,116,576791,SPD,250779,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,117,586035,SPD,254798,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,118,595279,SPD,258817,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,119,604522,SPD,262836,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,120,613766,SPD,266855,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,121,623010,SPD,270874,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,122,632253,SPD,274893,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,123,641497,SPD,278912,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,124,650741,SPD,282931,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,125,659985,SPD,286950,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,126,669228,SPD,290969,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,127,678472,SPD,294988,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,128,687716,SPD,299007,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,129,696959,SPD,303026,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,130,706203,SPD,307045,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,131,715447,SPD,311064,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,132,724690,SPD,315083,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,133,733934,SPD,319102,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,134,743178,SPD,323121,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,135,752422,SPD,327140,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,136,761665,SPD,331159,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,137,770909,SPD,335178,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,138,780153,SPD,339197,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,139,789396,SPD,343216,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,140,798640,SPD,347235,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,141,807884,SPD,351254,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,142,817127,SPD,355273,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,143,826371,SPD,359292,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,144,835615,SPD,363311,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,145,844859,SPD,367330,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,146,854102,SPD,371349,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,147,863346,SPD,375368,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,148,872590,SPD,379387,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,149,881833,SPD,383406,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,150,891077,SPD,387425,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,151,903249,SPD,392717,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,152,915420,SPD,398009,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,153,927592,SPD,403301,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,154,939763,SPD,408593,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,155,951935,SPD,413885,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,156,964107,SPD,419177,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,157,976278,SPD,424469,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,158,988450,SPD,429761,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,159,1000621,SPD,435053,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,160,1012793,SPD,440345,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,161,1024965,SPD,445637,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,162,1037136,SPD,450929,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,163,1049308,SPD,456221,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,164,1061479,SPD,461513,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,165,1073651,SPD,466805,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,166,1085823,SPD,472097,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,167,1097994,SPD,477389,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,168,1110166,SPD,482681,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,169,1122337,SPD,487973,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,170,1134509,SPD,493265,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,171,1146681,SPD,498557,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,172,1158852,SPD,503849,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,173,1171024,SPD,509141,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,174,1183195,SPD,514433,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,175,1195367,SPD,519725,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,176,1207539,SPD,525017,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,177,1219710,SPD,530309,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,178,1231882,SPD,535601,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,179,1244053,SPD,540893,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,180,1256225,SPD,546185,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,181,1268397,SPD,551477,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,182,1280568,SPD,556769,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,183,1292740,SPD,562061,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,184,1304911,SPD,567353,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,185,1317083,SPD,572645,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,186,1329255,SPD,577937,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,187,1341426,SPD,583229,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,188,1353598,SPD,588521,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,189,1365769,SPD,593813,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,190,1377941,SPD,599105,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,191,1390113,SPD,604397,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,192,1402284,SPD,609689,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,193,1414456,SPD,614981,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,194,1426627,SPD,620273,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,195,1438799,SPD,625565,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,196,1450971,SPD,630857,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,197,1463142,SPD,636149,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,198,1475314,SPD,641441,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,199,1487485,SPD,646733,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,200,1499657,SPD,652025,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,201,1518575,SPD,660250,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,202,1537492,SPD,668475,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,203,1556410,SPD,676700,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,204,1575327,SPD,684925,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,205,1594245,SPD,693150,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,206,1613162,SPD,701375,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,207,1632080,SPD,709600,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,208,1650997,SPD,717825,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,209,1669915,SPD,726050,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,210,1688832,SPD,734275,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,211,1707750,SPD,742500,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,212,1726667,SPD,750725,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,213,1745585,SPD,758950,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,214,1764502,SPD,767175,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,215,1783420,SPD,775400,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,216,1802337,SPD,783625,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,217,1821255,SPD,791850,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,218,1840172,SPD,800075,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,219,1859090,SPD,808300,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,220,1878007,SPD,816525,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,221,1896925,SPD,824750,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,222,1915842,SPD,832975,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,223,1934760,SPD,841200,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,224,1953677,SPD,849425,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,225,1972595,SPD,857650,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,226,1991512,SPD,865875,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,227,2010430,SPD,874100,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,228,2029347,SPD,882325,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,229,2048265,SPD,890550,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,230,2067182,SPD,898775,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,231,2086100,SPD,907000,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,232,2105017,SPD,915225,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,233,2123935,SPD,923450,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,234,2142852,SPD,931675,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,235,2161770,SPD,939900,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,236,2180687,SPD,948125,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,237,2199605,SPD,956350,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,238,2218522,SPD,964575,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,239,2237440,SPD,972800,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,240,2256357,SPD,981025,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,241,2275275,SPD,989250,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,242,2294192,SPD,997475,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,243,2313110,SPD,1005700,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,244,2332027,SPD,1013925,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,245,2350945,SPD,1022150,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,246,2369862,SPD,1030375,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,247,2388780,SPD,1038600,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,248,2407697,SPD,1046825,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,249,2426615,SPD,1055050,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,250,2445532,SPD,1063275,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,251,2469788,SPD,1073821,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,252,2494044,SPD,1084367,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,253,2518299,SPD,1094913,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,254,2542555,SPD,1105459,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,255,2566811,SPD,1116005,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,256,2591067,SPD,1126551,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,257,2615323,SPD,1137097,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,258,2639578,SPD,1147643,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,259,2663834,SPD,1158189,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,260,2688090,SPD,1168735,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,261,2712346,SPD,1179281,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,262,2736602,SPD,1189827,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,263,2760857,SPD,1200373,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,264,2785113,SPD,1210919,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,265,2809369,SPD,1221465,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,266,2833625,SPD,1232011,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,267,2857881,SPD,1242557,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,268,2882136,SPD,1253103,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,269,2906392,SPD,1263649,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,270,2930648,SPD,1274195,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,271,2954904,SPD,1284741,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,272,2979160,SPD,1295287,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,273,3003415,SPD,1305833,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,274,3027671,SPD,1316379,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,275,3051927,SPD,1326925,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,276,3076183,SPD,1337471,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,277,3100439,SPD,1348017,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,278,3124694,SPD,1358563,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,279,3148950,SPD,1369109,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,280,3173206,SPD,1379655,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,281,3197462,SPD,1390201,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,282,3221718,SPD,1400747,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,283,3245973,SPD,1411293,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,284,3270229,SPD,1421839,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,285,3294485,SPD,1432385,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,286,3318741,SPD,1442931,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,287,3342997,SPD,1453477,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,288,3367252,SPD,1464023,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,289,3391508,SPD,1474569,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,290,3415764,SPD,1485115,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,291,3440020,SPD,1495661,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,292,3464276,SPD,1506207,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,293,3488531,SPD,1516753,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,294,3512787,SPD,1527299,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,295,3537043,SPD,1537845,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,296,3561299,SPD,1548391,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,297,3585555,SPD,1558937,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,298,3609810,SPD,1569483,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,299,3634066,SPD,1580029,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10034,300,3658322,SPD,1590575,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,1,15000,CRI,1.06,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,2,17000,CRI,1.12,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,3,19000,CRI,1.18,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,4,21000,CRI,1.24,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,5,23000,CRI,1.3,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,6,25000,CRI,1.36,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,7,27000,CRI,1.42,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,8,29000,CRI,1.48,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,9,31000,CRI,1.54,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,10,33000,CRI,1.6,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,11,35000,CRI,1.66,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,12,37000,CRI,1.72,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,13,39000,CRI,1.78,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,14,41000,CRI,1.84,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,15,43000,CRI,1.9,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,16,45000,CRI,1.96,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,17,47000,CRI,2.02,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,18,49000,CRI,2.08,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,19,51000,CRI,2.14,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,20,53000,CRI,2.2,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,21,55000,CRI,2.26,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,22,57000,CRI,2.32,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,23,59000,CRI,2.38,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,24,61000,CRI,2.44,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,25,63000,CRI,2.5,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,26,65000,CRI,2.56,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,27,67000,CRI,2.62,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,28,69000,CRI,2.68,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,29,71000,CRI,2.74,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,30,73000,CRI,2.8,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,31,75000,CRI,2.86,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,32,77000,CRI,2.92,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,33,79000,CRI,2.98,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,34,81000,CRI,3.04,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,35,83000,CRI,3.1,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,36,85000,CRI,3.16,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,37,87000,CRI,3.22,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,38,89000,CRI,3.28,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,39,91000,CRI,3.34,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,40,93000,CRI,3.4,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,41,95000,CRI,3.46,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,42,97000,CRI,3.52,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,43,99000,CRI,3.58,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,44,101000,CRI,3.64,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,45,103000,CRI,3.7,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,46,105000,CRI,3.76,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,47,107000,CRI,3.82,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,48,109000,CRI,3.88,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,49,111000,CRI,3.94,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,50,113000,CRI,4,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,51,117000,CRI,4.07,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,52,121000,CRI,4.14,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,53,125000,CRI,4.21,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,54,129000,CRI,4.28,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,55,133000,CRI,4.35,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,56,137000,CRI,4.42,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,57,141000,CRI,4.49,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,58,145000,CRI,4.56,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,59,149000,CRI,4.63,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,60,153000,CRI,4.7,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,61,157000,CRI,4.77,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,62,161000,CRI,4.84,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,63,165000,CRI,4.91,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,64,169000,CRI,4.98,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,65,173000,CRI,5.05,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,66,177000,CRI,5.12,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,67,181000,CRI,5.19,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,68,185000,CRI,5.26,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,69,189000,CRI,5.33,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,70,193000,CRI,5.4,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,71,197000,CRI,5.47,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,72,201000,CRI,5.54,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,73,205000,CRI,5.61,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,74,209000,CRI,5.68,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,75,213000,CRI,5.75,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,76,217000,CRI,5.82,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,77,221000,CRI,5.89,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,78,225000,CRI,5.96,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,79,229000,CRI,6.03,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,80,233000,CRI,6.1,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,81,237000,CRI,6.17,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,82,241000,CRI,6.24,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,83,245000,CRI,6.31,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,84,249000,CRI,6.38,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,85,253000,CRI,6.45,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,86,257000,CRI,6.52,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,87,261000,CRI,6.59,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,88,265000,CRI,6.66,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,89,269000,CRI,6.73,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,90,273000,CRI,6.8,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,91,277000,CRI,6.87,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,92,281000,CRI,6.94,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,93,285000,CRI,7.01,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,94,289000,CRI,7.08,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,95,293000,CRI,7.15,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,96,297000,CRI,7.22,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,97,301000,CRI,7.29,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,98,305000,CRI,7.36,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,99,309000,CRI,7.43,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,100,313000,CRI,7.5,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,101,318000,CRI,7.58,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,102,323000,CRI,7.66,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,103,328000,CRI,7.74,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,104,333000,CRI,7.82,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,105,338000,CRI,7.9,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,106,343000,CRI,7.98,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,107,348000,CRI,8.06,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,108,353000,CRI,8.14,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,109,358000,CRI,8.22,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,110,363000,CRI,8.3,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,111,368000,CRI,8.38,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,112,373000,CRI,8.46,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,113,378000,CRI,8.54,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,114,383000,CRI,8.62,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,115,388000,CRI,8.7,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,116,393000,CRI,8.78,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,117,398000,CRI,8.86,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,118,403000,CRI,8.94,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,119,408000,CRI,9.02,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,120,413000,CRI,9.1,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,121,418000,CRI,9.18,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,122,423000,CRI,9.26,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,123,428000,CRI,9.34,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,124,433000,CRI,9.42,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,125,438000,CRI,9.5,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,126,443000,CRI,9.58,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,127,448000,CRI,9.66,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,128,453000,CRI,9.74,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,129,458000,CRI,9.82,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,130,463000,CRI,9.9,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,131,468000,CRI,9.98,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,132,473000,CRI,10.06,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,133,478000,CRI,10.14,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,134,483000,CRI,10.22,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,135,488000,CRI,10.3,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,136,493000,CRI,10.38,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,137,498000,CRI,10.46,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,138,503000,CRI,10.54,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,139,508000,CRI,10.62,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,140,513000,CRI,10.7,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,141,518000,CRI,10.78,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,142,523000,CRI,10.86,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,143,528000,CRI,10.94,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,144,533000,CRI,11.02,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,145,538000,CRI,11.1,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,146,543000,CRI,11.18,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,147,548000,CRI,11.26,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,148,553000,CRI,11.34,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,149,558000,CRI,11.42,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,150,563000,CRI,11.5,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,151,569000,CRI,11.57,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,152,575000,CRI,11.64,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,153,581000,CRI,11.71,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,154,587000,CRI,11.78,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,155,593000,CRI,11.85,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,156,599000,CRI,11.92,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,157,605000,CRI,11.99,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,158,611000,CRI,12.06,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,159,617000,CRI,12.13,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,160,623000,CRI,12.2,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,161,629000,CRI,12.27,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,162,635000,CRI,12.34,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,163,641000,CRI,12.41,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,164,647000,CRI,12.48,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,165,653000,CRI,12.55,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,166,659000,CRI,12.62,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,167,665000,CRI,12.69,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,168,671000,CRI,12.76,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,169,677000,CRI,12.83,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,170,683000,CRI,12.9,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,171,689000,CRI,12.97,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,172,695000,CRI,13.04,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,173,701000,CRI,13.11,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,174,707000,CRI,13.18,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,175,713000,CRI,13.25,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,176,719000,CRI,13.32,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,177,725000,CRI,13.39,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,178,731000,CRI,13.46,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,179,737000,CRI,13.53,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,180,743000,CRI,13.6,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,181,749000,CRI,13.67,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,182,755000,CRI,13.74,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,183,761000,CRI,13.81,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,184,767000,CRI,13.88,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,185,773000,CRI,13.95,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,186,779000,CRI,14.02,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,187,785000,CRI,14.09,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,188,791000,CRI,14.16,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,189,797000,CRI,14.23,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,190,803000,CRI,14.3,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,191,809000,CRI,14.37,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,192,815000,CRI,14.44,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,193,821000,CRI,14.51,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,194,827000,CRI,14.58,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,195,833000,CRI,14.65,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,196,839000,CRI,14.72,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,197,845000,CRI,14.79,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,198,851000,CRI,14.86,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,199,857000,CRI,14.93,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,200,863000,CRI,15,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,201,872000,CRI,15.06,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,202,881000,CRI,15.12,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,203,890000,CRI,15.18,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,204,899000,CRI,15.24,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,205,908000,CRI,15.3,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,206,917000,CRI,15.36,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,207,926000,CRI,15.42,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,208,935000,CRI,15.48,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,209,944000,CRI,15.54,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,210,953000,CRI,15.6,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,211,962000,CRI,15.66,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,212,971000,CRI,15.72,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,213,980000,CRI,15.78,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,214,989000,CRI,15.84,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,215,998000,CRI,15.9,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,216,1007000,CRI,15.96,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,217,1016000,CRI,16.02,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,218,1025000,CRI,16.08,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,219,1034000,CRI,16.14,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,220,1043000,CRI,16.2,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,221,1052000,CRI,16.26,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,222,1061000,CRI,16.32,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,223,1070000,CRI,16.38,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,224,1079000,CRI,16.44,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,225,1088000,CRI,16.5,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,226,1097000,CRI,16.56,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,227,1106000,CRI,16.62,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,228,1115000,CRI,16.68,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,229,1124000,CRI,16.74,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,230,1133000,CRI,16.8,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,231,1142000,CRI,16.86,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,232,1151000,CRI,16.92,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,233,1160000,CRI,16.98,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,234,1169000,CRI,17.04,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,235,1178000,CRI,17.1,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,236,1187000,CRI,17.16,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,237,1196000,CRI,17.22,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,238,1205000,CRI,17.28,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,239,1214000,CRI,17.34,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,240,1223000,CRI,17.4,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,241,1232000,CRI,17.46,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,242,1241000,CRI,17.52,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,243,1250000,CRI,17.58,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,244,1259000,CRI,17.64,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,245,1268000,CRI,17.7,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,246,1277000,CRI,17.76,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,247,1286000,CRI,17.82,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,248,1295000,CRI,17.88,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,249,1304000,CRI,17.94,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,250,1313000,CRI,18,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,251,1328000,CRI,18.04,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,252,1343000,CRI,18.08,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,253,1358000,CRI,18.12,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,254,1373000,CRI,18.16,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,255,1388000,CRI,18.2,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,256,1403000,CRI,18.24,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,257,1418000,CRI,18.28,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,258,1433000,CRI,18.32,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,259,1448000,CRI,18.36,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,260,1463000,CRI,18.4,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,261,1478000,CRI,18.44,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,262,1493000,CRI,18.48,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,263,1508000,CRI,18.52,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,264,1523000,CRI,18.56,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,265,1538000,CRI,18.6,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,266,1553000,CRI,18.64,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,267,1568000,CRI,18.68,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,268,1583000,CRI,18.72,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,269,1598000,CRI,18.76,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,270,1613000,CRI,18.8,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,271,1628000,CRI,18.84,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,272,1643000,CRI,18.88,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,273,1658000,CRI,18.92,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,274,1673000,CRI,18.96,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,275,1688000,CRI,19,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,276,1703000,CRI,19.04,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,277,1718000,CRI,19.08,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,278,1733000,CRI,19.12,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,279,1748000,CRI,19.16,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,280,1763000,CRI,19.2,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,281,1778000,CRI,19.24,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,282,1793000,CRI,19.28,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,283,1808000,CRI,19.32,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,284,1823000,CRI,19.36,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,285,1838000,CRI,19.4,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,286,1853000,CRI,19.44,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,287,1868000,CRI,19.48,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,288,1883000,CRI,19.52,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,289,1898000,CRI,19.56,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,290,1913000,CRI,19.6,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,291,1928000,CRI,19.64,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,292,1943000,CRI,19.68,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,293,1958000,CRI,19.72,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,294,1973000,CRI,19.76,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,295,1988000,CRI,19.8,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,296,2003000,CRI,19.84,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,297,2018000,CRI,19.88,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,298,2033000,CRI,19.92,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,299,2048000,CRI,19.96,Add,NONE,0,Add,NONE,0,Add,,,,,,,, +10035,300,2063000,CRI,20,Add,NONE,0,Add,NONE,0,Add,,,,,,,, \ No newline at end of file diff --git a/Lib9c/TableCSV/RuneCostSheet.csv b/Lib9c/TableCSV/RuneCostSheet.csv index 9b553fe31..ad8de452e 100644 --- a/Lib9c/TableCSV/RuneCostSheet.csv +++ b/Lib9c/TableCSV/RuneCostSheet.csv @@ -5998,4 +5998,904 @@ id,_name,rune_level,rune_stone_quantity,crystal_quantity,ncg_quantity,level_up_s 10032,Odin Wisdom Rune,297,40,500000,0,10000 10032,Odin Wisdom Rune,298,40,500000,0,10000 10032,Odin Wisdom Rune,299,40,500000,0,10000 -10032,Odin Wisdom Rune,300,40,2000000,0,10000 \ No newline at end of file +10032,Odin Wisdom Rune,300,40,2000000,0,10000 +10033,HIT Rune,1,20,20000,0,10000 +10033,HIT Rune,2,20,20000,0,10000 +10033,HIT Rune,3,20,20000,0,10000 +10033,HIT Rune,4,20,20000,0,10000 +10033,HIT Rune,5,20,20000,0,10000 +10033,HIT Rune,6,20,20000,0,10000 +10033,HIT Rune,7,20,20000,0,10000 +10033,HIT Rune,8,20,20000,0,10000 +10033,HIT Rune,9,20,20000,0,10000 +10033,HIT Rune,10,20,100000,0,10000 +10033,HIT Rune,11,20,20000,0,10000 +10033,HIT Rune,12,20,20000,0,10000 +10033,HIT Rune,13,20,20000,0,10000 +10033,HIT Rune,14,20,20000,0,10000 +10033,HIT Rune,15,20,20000,0,10000 +10033,HIT Rune,16,20,20000,0,10000 +10033,HIT Rune,17,20,20000,0,10000 +10033,HIT Rune,18,20,20000,0,10000 +10033,HIT Rune,19,20,20000,0,10000 +10033,HIT Rune,20,20,100000,0,10000 +10033,HIT Rune,21,20,20000,0,10000 +10033,HIT Rune,22,20,20000,0,10000 +10033,HIT Rune,23,20,20000,0,10000 +10033,HIT Rune,24,20,20000,0,10000 +10033,HIT Rune,25,20,20000,0,10000 +10033,HIT Rune,26,20,20000,0,10000 +10033,HIT Rune,27,20,20000,0,10000 +10033,HIT Rune,28,20,20000,0,10000 +10033,HIT Rune,29,20,20000,0,10000 +10033,HIT Rune,30,20,100000,0,10000 +10033,HIT Rune,31,20,30000,0,10000 +10033,HIT Rune,32,20,30000,0,10000 +10033,HIT Rune,33,20,30000,0,10000 +10033,HIT Rune,34,20,30000,0,10000 +10033,HIT Rune,35,20,30000,0,10000 +10033,HIT Rune,36,20,30000,0,10000 +10033,HIT Rune,37,20,30000,0,10000 +10033,HIT Rune,38,20,30000,0,10000 +10033,HIT Rune,39,20,30000,0,10000 +10033,HIT Rune,40,20,150000,0,10000 +10033,HIT Rune,41,20,30000,0,10000 +10033,HIT Rune,42,20,30000,0,10000 +10033,HIT Rune,43,20,30000,0,10000 +10033,HIT Rune,44,20,30000,0,10000 +10033,HIT Rune,45,20,30000,0,10000 +10033,HIT Rune,46,20,30000,0,10000 +10033,HIT Rune,47,20,30000,0,10000 +10033,HIT Rune,48,20,30000,0,10000 +10033,HIT Rune,49,20,30000,0,10000 +10033,HIT Rune,50,20,150000,0,10000 +10033,HIT Rune,51,60,30000,50,10000 +10033,HIT Rune,52,60,30000,0,10000 +10033,HIT Rune,53,60,30000,0,10000 +10033,HIT Rune,54,60,30000,0,10000 +10033,HIT Rune,55,60,30000,0,10000 +10033,HIT Rune,56,60,30000,0,10000 +10033,HIT Rune,57,60,30000,0,10000 +10033,HIT Rune,58,60,30000,0,10000 +10033,HIT Rune,59,60,30000,0,10000 +10033,HIT Rune,60,60,150000,0,10000 +10033,HIT Rune,61,60,30000,0,10000 +10033,HIT Rune,62,60,30000,0,10000 +10033,HIT Rune,63,60,30000,0,10000 +10033,HIT Rune,64,60,30000,0,10000 +10033,HIT Rune,65,60,30000,0,10000 +10033,HIT Rune,66,60,30000,0,10000 +10033,HIT Rune,67,60,30000,0,10000 +10033,HIT Rune,68,60,30000,0,10000 +10033,HIT Rune,69,60,30000,0,10000 +10033,HIT Rune,70,60,150000,0,10000 +10033,HIT Rune,71,60,50000,0,10000 +10033,HIT Rune,72,60,50000,0,10000 +10033,HIT Rune,73,60,50000,0,10000 +10033,HIT Rune,74,60,50000,0,10000 +10033,HIT Rune,75,60,50000,0,10000 +10033,HIT Rune,76,60,50000,0,10000 +10033,HIT Rune,77,60,50000,0,10000 +10033,HIT Rune,78,60,50000,0,10000 +10033,HIT Rune,79,60,50000,0,10000 +10033,HIT Rune,80,60,250000,0,10000 +10033,HIT Rune,81,60,50000,0,10000 +10033,HIT Rune,82,60,50000,0,10000 +10033,HIT Rune,83,60,50000,0,10000 +10033,HIT Rune,84,60,50000,0,10000 +10033,HIT Rune,85,60,50000,0,10000 +10033,HIT Rune,86,60,50000,0,10000 +10033,HIT Rune,87,60,50000,0,10000 +10033,HIT Rune,88,60,50000,0,10000 +10033,HIT Rune,89,60,50000,0,10000 +10033,HIT Rune,90,60,250000,0,10000 +10033,HIT Rune,91,60,50000,0,10000 +10033,HIT Rune,92,60,50000,0,10000 +10033,HIT Rune,93,60,50000,0,10000 +10033,HIT Rune,94,60,50000,0,10000 +10033,HIT Rune,95,60,50000,0,10000 +10033,HIT Rune,96,60,50000,0,10000 +10033,HIT Rune,97,60,50000,0,10000 +10033,HIT Rune,98,60,50000,0,10000 +10033,HIT Rune,99,60,50000,0,10000 +10033,HIT Rune,100,60,250000,0,10000 +10033,HIT Rune,101,100,50000,100,10000 +10033,HIT Rune,102,100,50000,0,10000 +10033,HIT Rune,103,100,50000,0,10000 +10033,HIT Rune,104,100,50000,0,10000 +10033,HIT Rune,105,100,50000,0,10000 +10033,HIT Rune,106,100,50000,0,10000 +10033,HIT Rune,107,100,50000,0,10000 +10033,HIT Rune,108,100,50000,0,10000 +10033,HIT Rune,109,100,50000,0,10000 +10033,HIT Rune,110,100,250000,0,10000 +10033,HIT Rune,111,100,50000,0,10000 +10033,HIT Rune,112,100,50000,0,10000 +10033,HIT Rune,113,100,50000,0,10000 +10033,HIT Rune,114,100,50000,0,10000 +10033,HIT Rune,115,100,50000,0,10000 +10033,HIT Rune,116,100,50000,0,10000 +10033,HIT Rune,117,100,50000,0,10000 +10033,HIT Rune,118,100,50000,0,10000 +10033,HIT Rune,119,100,50000,0,10000 +10033,HIT Rune,120,100,250000,0,10000 +10033,HIT Rune,121,100,50000,0,10000 +10033,HIT Rune,122,100,50000,0,10000 +10033,HIT Rune,123,100,50000,0,10000 +10033,HIT Rune,124,100,50000,0,10000 +10033,HIT Rune,125,100,50000,0,10000 +10033,HIT Rune,126,100,50000,0,10000 +10033,HIT Rune,127,100,50000,0,10000 +10033,HIT Rune,128,100,50000,0,10000 +10033,HIT Rune,129,100,50000,0,10000 +10033,HIT Rune,130,100,250000,0,10000 +10033,HIT Rune,131,100,75000,0,10000 +10033,HIT Rune,132,100,75000,0,10000 +10033,HIT Rune,133,100,75000,0,10000 +10033,HIT Rune,134,100,75000,0,10000 +10033,HIT Rune,135,100,75000,0,10000 +10033,HIT Rune,136,100,75000,0,10000 +10033,HIT Rune,137,100,75000,0,10000 +10033,HIT Rune,138,100,75000,0,10000 +10033,HIT Rune,139,100,75000,0,10000 +10033,HIT Rune,140,100,300000,0,10000 +10033,HIT Rune,141,100,75000,0,10000 +10033,HIT Rune,142,100,75000,0,10000 +10033,HIT Rune,143,100,75000,0,10000 +10033,HIT Rune,144,100,75000,0,10000 +10033,HIT Rune,145,100,75000,0,10000 +10033,HIT Rune,146,100,75000,0,10000 +10033,HIT Rune,147,100,75000,0,10000 +10033,HIT Rune,148,100,75000,0,10000 +10033,HIT Rune,149,100,75000,0,10000 +10033,HIT Rune,150,100,300000,0,10000 +10033,HIT Rune,151,200,75000,100,10000 +10033,HIT Rune,152,200,75000,0,10000 +10033,HIT Rune,153,200,75000,0,10000 +10033,HIT Rune,154,200,75000,0,10000 +10033,HIT Rune,155,200,75000,0,10000 +10033,HIT Rune,156,200,75000,0,10000 +10033,HIT Rune,157,200,75000,0,10000 +10033,HIT Rune,158,200,75000,0,10000 +10033,HIT Rune,159,200,75000,0,10000 +10033,HIT Rune,160,200,300000,0,10000 +10033,HIT Rune,161,200,75000,0,10000 +10033,HIT Rune,162,200,75000,0,10000 +10033,HIT Rune,163,200,75000,0,10000 +10033,HIT Rune,164,200,75000,0,10000 +10033,HIT Rune,165,200,75000,0,10000 +10033,HIT Rune,166,200,75000,0,10000 +10033,HIT Rune,167,200,75000,0,10000 +10033,HIT Rune,168,200,75000,0,10000 +10033,HIT Rune,169,200,75000,0,10000 +10033,HIT Rune,170,200,300000,0,10000 +10033,HIT Rune,171,200,75000,0,10000 +10033,HIT Rune,172,200,75000,0,10000 +10033,HIT Rune,173,200,75000,0,10000 +10033,HIT Rune,174,200,75000,0,10000 +10033,HIT Rune,175,200,75000,0,10000 +10033,HIT Rune,176,200,75000,0,10000 +10033,HIT Rune,177,200,75000,0,10000 +10033,HIT Rune,178,200,75000,0,10000 +10033,HIT Rune,179,200,75000,0,10000 +10033,HIT Rune,180,200,300000,0,10000 +10033,HIT Rune,181,200,75000,0,10000 +10033,HIT Rune,182,200,75000,0,10000 +10033,HIT Rune,183,200,75000,0,10000 +10033,HIT Rune,184,200,75000,0,10000 +10033,HIT Rune,185,200,75000,0,10000 +10033,HIT Rune,186,200,75000,0,10000 +10033,HIT Rune,187,200,75000,0,10000 +10033,HIT Rune,188,200,75000,0,10000 +10033,HIT Rune,189,200,75000,0,10000 +10033,HIT Rune,190,200,300000,0,10000 +10033,HIT Rune,191,200,75000,0,10000 +10033,HIT Rune,192,200,75000,0,10000 +10033,HIT Rune,193,200,75000,0,10000 +10033,HIT Rune,194,200,75000,0,10000 +10033,HIT Rune,195,200,75000,0,10000 +10033,HIT Rune,196,200,75000,0,10000 +10033,HIT Rune,197,200,75000,0,10000 +10033,HIT Rune,198,200,75000,0,10000 +10033,HIT Rune,199,200,75000,0,10000 +10033,HIT Rune,200,200,300000,0,10000 +10033,HIT Rune,201,800,100000,300,10000 +10033,HIT Rune,202,800,100000,0,10000 +10033,HIT Rune,203,800,100000,0,10000 +10033,HIT Rune,204,800,100000,0,10000 +10033,HIT Rune,205,800,100000,0,10000 +10033,HIT Rune,206,800,100000,0,10000 +10033,HIT Rune,207,800,100000,0,10000 +10033,HIT Rune,208,800,100000,0,10000 +10033,HIT Rune,209,800,100000,0,10000 +10033,HIT Rune,210,800,400000,0,10000 +10033,HIT Rune,211,800,100000,0,10000 +10033,HIT Rune,212,800,100000,0,10000 +10033,HIT Rune,213,800,100000,0,10000 +10033,HIT Rune,214,800,100000,0,10000 +10033,HIT Rune,215,800,100000,0,10000 +10033,HIT Rune,216,800,100000,0,10000 +10033,HIT Rune,217,800,100000,0,10000 +10033,HIT Rune,218,800,100000,0,10000 +10033,HIT Rune,219,800,100000,0,10000 +10033,HIT Rune,220,800,400000,0,10000 +10033,HIT Rune,221,800,100000,0,10000 +10033,HIT Rune,222,800,100000,0,10000 +10033,HIT Rune,223,800,100000,0,10000 +10033,HIT Rune,224,800,100000,0,10000 +10033,HIT Rune,225,800,100000,0,10000 +10033,HIT Rune,226,800,100000,0,10000 +10033,HIT Rune,227,800,100000,0,10000 +10033,HIT Rune,228,800,100000,0,10000 +10033,HIT Rune,229,800,100000,0,10000 +10033,HIT Rune,230,800,400000,0,10000 +10033,HIT Rune,231,800,100000,0,10000 +10033,HIT Rune,232,800,100000,0,10000 +10033,HIT Rune,233,800,100000,0,10000 +10033,HIT Rune,234,800,100000,0,10000 +10033,HIT Rune,235,800,100000,0,10000 +10033,HIT Rune,236,800,100000,0,10000 +10033,HIT Rune,237,800,100000,0,10000 +10033,HIT Rune,238,800,100000,0,10000 +10033,HIT Rune,239,800,100000,0,10000 +10033,HIT Rune,240,800,400000,0,10000 +10033,HIT Rune,241,800,100000,400,10000 +10033,HIT Rune,242,800,100000,0,10000 +10033,HIT Rune,243,800,100000,0,10000 +10033,HIT Rune,244,800,100000,0,10000 +10033,HIT Rune,245,800,100000,0,10000 +10033,HIT Rune,246,800,100000,0,10000 +10033,HIT Rune,247,800,100000,0,10000 +10033,HIT Rune,248,800,100000,0,10000 +10033,HIT Rune,249,800,100000,0,10000 +10033,HIT Rune,250,800,400000,0,10000 +10033,HIT Rune,251,1600,100000,0,10000 +10033,HIT Rune,252,1600,100000,0,10000 +10033,HIT Rune,253,1600,100000,0,10000 +10033,HIT Rune,254,1600,100000,0,10000 +10033,HIT Rune,255,1600,100000,0,10000 +10033,HIT Rune,256,1600,100000,0,10000 +10033,HIT Rune,257,1600,100000,0,10000 +10033,HIT Rune,258,1600,100000,0,10000 +10033,HIT Rune,259,1600,100000,0,10000 +10033,HIT Rune,260,1600,400000,0,10000 +10033,HIT Rune,261,1600,100000,0,10000 +10033,HIT Rune,262,1600,100000,0,10000 +10033,HIT Rune,263,1600,100000,0,10000 +10033,HIT Rune,264,1600,100000,0,10000 +10033,HIT Rune,265,1600,100000,0,10000 +10033,HIT Rune,266,1600,100000,0,10000 +10033,HIT Rune,267,1600,100000,0,10000 +10033,HIT Rune,268,1600,100000,0,10000 +10033,HIT Rune,269,1600,100000,0,10000 +10033,HIT Rune,270,1600,400000,0,10000 +10033,HIT Rune,271,1600,100000,0,10000 +10033,HIT Rune,272,1600,100000,0,10000 +10033,HIT Rune,273,1600,100000,0,10000 +10033,HIT Rune,274,1600,100000,0,10000 +10033,HIT Rune,275,1600,100000,0,10000 +10033,HIT Rune,276,1600,100000,0,10000 +10033,HIT Rune,277,1600,100000,0,10000 +10033,HIT Rune,278,1600,100000,0,10000 +10033,HIT Rune,279,1600,100000,0,10000 +10033,HIT Rune,280,1600,400000,0,10000 +10033,HIT Rune,281,1600,100000,500,10000 +10033,HIT Rune,282,1600,100000,0,10000 +10033,HIT Rune,283,1600,100000,0,10000 +10033,HIT Rune,284,1600,100000,0,10000 +10033,HIT Rune,285,1600,100000,0,10000 +10033,HIT Rune,286,1600,100000,0,10000 +10033,HIT Rune,287,1600,100000,0,10000 +10033,HIT Rune,288,1600,100000,0,10000 +10033,HIT Rune,289,1600,100000,0,10000 +10033,HIT Rune,290,1600,400000,0,10000 +10033,HIT Rune,291,1600,100000,0,10000 +10033,HIT Rune,292,1600,100000,0,10000 +10033,HIT Rune,293,1600,100000,0,10000 +10033,HIT Rune,294,1600,100000,0,10000 +10033,HIT Rune,295,1600,100000,0,10000 +10033,HIT Rune,296,1600,100000,0,10000 +10033,HIT Rune,297,1600,100000,0,10000 +10033,HIT Rune,298,1600,100000,0,10000 +10033,HIT Rune,299,1600,100000,0,10000 +10033,HIT Rune,300,1600,400000,0,10000 +10034,SPD Rune,1,20,20000,0,10000 +10034,SPD Rune,2,20,20000,0,10000 +10034,SPD Rune,3,20,20000,0,10000 +10034,SPD Rune,4,20,20000,0,10000 +10034,SPD Rune,5,20,20000,0,10000 +10034,SPD Rune,6,20,20000,0,10000 +10034,SPD Rune,7,20,20000,0,10000 +10034,SPD Rune,8,20,20000,0,10000 +10034,SPD Rune,9,20,20000,0,10000 +10034,SPD Rune,10,20,100000,0,10000 +10034,SPD Rune,11,20,20000,0,10000 +10034,SPD Rune,12,20,20000,0,10000 +10034,SPD Rune,13,20,20000,0,10000 +10034,SPD Rune,14,20,20000,0,10000 +10034,SPD Rune,15,20,20000,0,10000 +10034,SPD Rune,16,20,20000,0,10000 +10034,SPD Rune,17,20,20000,0,10000 +10034,SPD Rune,18,20,20000,0,10000 +10034,SPD Rune,19,20,20000,0,10000 +10034,SPD Rune,20,20,100000,0,10000 +10034,SPD Rune,21,20,20000,0,10000 +10034,SPD Rune,22,20,20000,0,10000 +10034,SPD Rune,23,20,20000,0,10000 +10034,SPD Rune,24,20,20000,0,10000 +10034,SPD Rune,25,20,20000,0,10000 +10034,SPD Rune,26,20,20000,0,10000 +10034,SPD Rune,27,20,20000,0,10000 +10034,SPD Rune,28,20,20000,0,10000 +10034,SPD Rune,29,20,20000,0,10000 +10034,SPD Rune,30,20,100000,0,10000 +10034,SPD Rune,31,20,30000,0,10000 +10034,SPD Rune,32,20,30000,0,10000 +10034,SPD Rune,33,20,30000,0,10000 +10034,SPD Rune,34,20,30000,0,10000 +10034,SPD Rune,35,20,30000,0,10000 +10034,SPD Rune,36,20,30000,0,10000 +10034,SPD Rune,37,20,30000,0,10000 +10034,SPD Rune,38,20,30000,0,10000 +10034,SPD Rune,39,20,30000,0,10000 +10034,SPD Rune,40,20,150000,0,10000 +10034,SPD Rune,41,20,30000,0,10000 +10034,SPD Rune,42,20,30000,0,10000 +10034,SPD Rune,43,20,30000,0,10000 +10034,SPD Rune,44,20,30000,0,10000 +10034,SPD Rune,45,20,30000,0,10000 +10034,SPD Rune,46,20,30000,0,10000 +10034,SPD Rune,47,20,30000,0,10000 +10034,SPD Rune,48,20,30000,0,10000 +10034,SPD Rune,49,20,30000,0,10000 +10034,SPD Rune,50,20,150000,0,10000 +10034,SPD Rune,51,60,30000,50,10000 +10034,SPD Rune,52,60,30000,0,10000 +10034,SPD Rune,53,60,30000,0,10000 +10034,SPD Rune,54,60,30000,0,10000 +10034,SPD Rune,55,60,30000,0,10000 +10034,SPD Rune,56,60,30000,0,10000 +10034,SPD Rune,57,60,30000,0,10000 +10034,SPD Rune,58,60,30000,0,10000 +10034,SPD Rune,59,60,30000,0,10000 +10034,SPD Rune,60,60,150000,0,10000 +10034,SPD Rune,61,60,30000,0,10000 +10034,SPD Rune,62,60,30000,0,10000 +10034,SPD Rune,63,60,30000,0,10000 +10034,SPD Rune,64,60,30000,0,10000 +10034,SPD Rune,65,60,30000,0,10000 +10034,SPD Rune,66,60,30000,0,10000 +10034,SPD Rune,67,60,30000,0,10000 +10034,SPD Rune,68,60,30000,0,10000 +10034,SPD Rune,69,60,30000,0,10000 +10034,SPD Rune,70,60,150000,0,10000 +10034,SPD Rune,71,60,50000,0,10000 +10034,SPD Rune,72,60,50000,0,10000 +10034,SPD Rune,73,60,50000,0,10000 +10034,SPD Rune,74,60,50000,0,10000 +10034,SPD Rune,75,60,50000,0,10000 +10034,SPD Rune,76,60,50000,0,10000 +10034,SPD Rune,77,60,50000,0,10000 +10034,SPD Rune,78,60,50000,0,10000 +10034,SPD Rune,79,60,50000,0,10000 +10034,SPD Rune,80,60,250000,0,10000 +10034,SPD Rune,81,60,50000,0,10000 +10034,SPD Rune,82,60,50000,0,10000 +10034,SPD Rune,83,60,50000,0,10000 +10034,SPD Rune,84,60,50000,0,10000 +10034,SPD Rune,85,60,50000,0,10000 +10034,SPD Rune,86,60,50000,0,10000 +10034,SPD Rune,87,60,50000,0,10000 +10034,SPD Rune,88,60,50000,0,10000 +10034,SPD Rune,89,60,50000,0,10000 +10034,SPD Rune,90,60,250000,0,10000 +10034,SPD Rune,91,60,50000,0,10000 +10034,SPD Rune,92,60,50000,0,10000 +10034,SPD Rune,93,60,50000,0,10000 +10034,SPD Rune,94,60,50000,0,10000 +10034,SPD Rune,95,60,50000,0,10000 +10034,SPD Rune,96,60,50000,0,10000 +10034,SPD Rune,97,60,50000,0,10000 +10034,SPD Rune,98,60,50000,0,10000 +10034,SPD Rune,99,60,50000,0,10000 +10034,SPD Rune,100,60,250000,0,10000 +10034,SPD Rune,101,100,50000,100,10000 +10034,SPD Rune,102,100,50000,0,10000 +10034,SPD Rune,103,100,50000,0,10000 +10034,SPD Rune,104,100,50000,0,10000 +10034,SPD Rune,105,100,50000,0,10000 +10034,SPD Rune,106,100,50000,0,10000 +10034,SPD Rune,107,100,50000,0,10000 +10034,SPD Rune,108,100,50000,0,10000 +10034,SPD Rune,109,100,50000,0,10000 +10034,SPD Rune,110,100,250000,0,10000 +10034,SPD Rune,111,100,50000,0,10000 +10034,SPD Rune,112,100,50000,0,10000 +10034,SPD Rune,113,100,50000,0,10000 +10034,SPD Rune,114,100,50000,0,10000 +10034,SPD Rune,115,100,50000,0,10000 +10034,SPD Rune,116,100,50000,0,10000 +10034,SPD Rune,117,100,50000,0,10000 +10034,SPD Rune,118,100,50000,0,10000 +10034,SPD Rune,119,100,50000,0,10000 +10034,SPD Rune,120,100,250000,0,10000 +10034,SPD Rune,121,100,50000,0,10000 +10034,SPD Rune,122,100,50000,0,10000 +10034,SPD Rune,123,100,50000,0,10000 +10034,SPD Rune,124,100,50000,0,10000 +10034,SPD Rune,125,100,50000,0,10000 +10034,SPD Rune,126,100,50000,0,10000 +10034,SPD Rune,127,100,50000,0,10000 +10034,SPD Rune,128,100,50000,0,10000 +10034,SPD Rune,129,100,50000,0,10000 +10034,SPD Rune,130,100,250000,0,10000 +10034,SPD Rune,131,100,75000,0,10000 +10034,SPD Rune,132,100,75000,0,10000 +10034,SPD Rune,133,100,75000,0,10000 +10034,SPD Rune,134,100,75000,0,10000 +10034,SPD Rune,135,100,75000,0,10000 +10034,SPD Rune,136,100,75000,0,10000 +10034,SPD Rune,137,100,75000,0,10000 +10034,SPD Rune,138,100,75000,0,10000 +10034,SPD Rune,139,100,75000,0,10000 +10034,SPD Rune,140,100,300000,0,10000 +10034,SPD Rune,141,100,75000,0,10000 +10034,SPD Rune,142,100,75000,0,10000 +10034,SPD Rune,143,100,75000,0,10000 +10034,SPD Rune,144,100,75000,0,10000 +10034,SPD Rune,145,100,75000,0,10000 +10034,SPD Rune,146,100,75000,0,10000 +10034,SPD Rune,147,100,75000,0,10000 +10034,SPD Rune,148,100,75000,0,10000 +10034,SPD Rune,149,100,75000,0,10000 +10034,SPD Rune,150,100,300000,0,10000 +10034,SPD Rune,151,200,75000,100,10000 +10034,SPD Rune,152,200,75000,0,10000 +10034,SPD Rune,153,200,75000,0,10000 +10034,SPD Rune,154,200,75000,0,10000 +10034,SPD Rune,155,200,75000,0,10000 +10034,SPD Rune,156,200,75000,0,10000 +10034,SPD Rune,157,200,75000,0,10000 +10034,SPD Rune,158,200,75000,0,10000 +10034,SPD Rune,159,200,75000,0,10000 +10034,SPD Rune,160,200,300000,0,10000 +10034,SPD Rune,161,200,75000,0,10000 +10034,SPD Rune,162,200,75000,0,10000 +10034,SPD Rune,163,200,75000,0,10000 +10034,SPD Rune,164,200,75000,0,10000 +10034,SPD Rune,165,200,75000,0,10000 +10034,SPD Rune,166,200,75000,0,10000 +10034,SPD Rune,167,200,75000,0,10000 +10034,SPD Rune,168,200,75000,0,10000 +10034,SPD Rune,169,200,75000,0,10000 +10034,SPD Rune,170,200,300000,0,10000 +10034,SPD Rune,171,200,75000,0,10000 +10034,SPD Rune,172,200,75000,0,10000 +10034,SPD Rune,173,200,75000,0,10000 +10034,SPD Rune,174,200,75000,0,10000 +10034,SPD Rune,175,200,75000,0,10000 +10034,SPD Rune,176,200,75000,0,10000 +10034,SPD Rune,177,200,75000,0,10000 +10034,SPD Rune,178,200,75000,0,10000 +10034,SPD Rune,179,200,75000,0,10000 +10034,SPD Rune,180,200,300000,0,10000 +10034,SPD Rune,181,200,75000,0,10000 +10034,SPD Rune,182,200,75000,0,10000 +10034,SPD Rune,183,200,75000,0,10000 +10034,SPD Rune,184,200,75000,0,10000 +10034,SPD Rune,185,200,75000,0,10000 +10034,SPD Rune,186,200,75000,0,10000 +10034,SPD Rune,187,200,75000,0,10000 +10034,SPD Rune,188,200,75000,0,10000 +10034,SPD Rune,189,200,75000,0,10000 +10034,SPD Rune,190,200,300000,0,10000 +10034,SPD Rune,191,200,75000,0,10000 +10034,SPD Rune,192,200,75000,0,10000 +10034,SPD Rune,193,200,75000,0,10000 +10034,SPD Rune,194,200,75000,0,10000 +10034,SPD Rune,195,200,75000,0,10000 +10034,SPD Rune,196,200,75000,0,10000 +10034,SPD Rune,197,200,75000,0,10000 +10034,SPD Rune,198,200,75000,0,10000 +10034,SPD Rune,199,200,75000,0,10000 +10034,SPD Rune,200,200,300000,0,10000 +10034,SPD Rune,201,800,100000,300,10000 +10034,SPD Rune,202,800,100000,0,10000 +10034,SPD Rune,203,800,100000,0,10000 +10034,SPD Rune,204,800,100000,0,10000 +10034,SPD Rune,205,800,100000,0,10000 +10034,SPD Rune,206,800,100000,0,10000 +10034,SPD Rune,207,800,100000,0,10000 +10034,SPD Rune,208,800,100000,0,10000 +10034,SPD Rune,209,800,100000,0,10000 +10034,SPD Rune,210,800,400000,0,10000 +10034,SPD Rune,211,800,100000,0,10000 +10034,SPD Rune,212,800,100000,0,10000 +10034,SPD Rune,213,800,100000,0,10000 +10034,SPD Rune,214,800,100000,0,10000 +10034,SPD Rune,215,800,100000,0,10000 +10034,SPD Rune,216,800,100000,0,10000 +10034,SPD Rune,217,800,100000,0,10000 +10034,SPD Rune,218,800,100000,0,10000 +10034,SPD Rune,219,800,100000,0,10000 +10034,SPD Rune,220,800,400000,0,10000 +10034,SPD Rune,221,800,100000,0,10000 +10034,SPD Rune,222,800,100000,0,10000 +10034,SPD Rune,223,800,100000,0,10000 +10034,SPD Rune,224,800,100000,0,10000 +10034,SPD Rune,225,800,100000,0,10000 +10034,SPD Rune,226,800,100000,0,10000 +10034,SPD Rune,227,800,100000,0,10000 +10034,SPD Rune,228,800,100000,0,10000 +10034,SPD Rune,229,800,100000,0,10000 +10034,SPD Rune,230,800,400000,0,10000 +10034,SPD Rune,231,800,100000,0,10000 +10034,SPD Rune,232,800,100000,0,10000 +10034,SPD Rune,233,800,100000,0,10000 +10034,SPD Rune,234,800,100000,0,10000 +10034,SPD Rune,235,800,100000,0,10000 +10034,SPD Rune,236,800,100000,0,10000 +10034,SPD Rune,237,800,100000,0,10000 +10034,SPD Rune,238,800,100000,0,10000 +10034,SPD Rune,239,800,100000,0,10000 +10034,SPD Rune,240,800,400000,0,10000 +10034,SPD Rune,241,800,100000,400,10000 +10034,SPD Rune,242,800,100000,0,10000 +10034,SPD Rune,243,800,100000,0,10000 +10034,SPD Rune,244,800,100000,0,10000 +10034,SPD Rune,245,800,100000,0,10000 +10034,SPD Rune,246,800,100000,0,10000 +10034,SPD Rune,247,800,100000,0,10000 +10034,SPD Rune,248,800,100000,0,10000 +10034,SPD Rune,249,800,100000,0,10000 +10034,SPD Rune,250,800,400000,0,10000 +10034,SPD Rune,251,1600,100000,0,10000 +10034,SPD Rune,252,1600,100000,0,10000 +10034,SPD Rune,253,1600,100000,0,10000 +10034,SPD Rune,254,1600,100000,0,10000 +10034,SPD Rune,255,1600,100000,0,10000 +10034,SPD Rune,256,1600,100000,0,10000 +10034,SPD Rune,257,1600,100000,0,10000 +10034,SPD Rune,258,1600,100000,0,10000 +10034,SPD Rune,259,1600,100000,0,10000 +10034,SPD Rune,260,1600,400000,0,10000 +10034,SPD Rune,261,1600,100000,0,10000 +10034,SPD Rune,262,1600,100000,0,10000 +10034,SPD Rune,263,1600,100000,0,10000 +10034,SPD Rune,264,1600,100000,0,10000 +10034,SPD Rune,265,1600,100000,0,10000 +10034,SPD Rune,266,1600,100000,0,10000 +10034,SPD Rune,267,1600,100000,0,10000 +10034,SPD Rune,268,1600,100000,0,10000 +10034,SPD Rune,269,1600,100000,0,10000 +10034,SPD Rune,270,1600,400000,0,10000 +10034,SPD Rune,271,1600,100000,0,10000 +10034,SPD Rune,272,1600,100000,0,10000 +10034,SPD Rune,273,1600,100000,0,10000 +10034,SPD Rune,274,1600,100000,0,10000 +10034,SPD Rune,275,1600,100000,0,10000 +10034,SPD Rune,276,1600,100000,0,10000 +10034,SPD Rune,277,1600,100000,0,10000 +10034,SPD Rune,278,1600,100000,0,10000 +10034,SPD Rune,279,1600,100000,0,10000 +10034,SPD Rune,280,1600,400000,0,10000 +10034,SPD Rune,281,1600,100000,500,10000 +10034,SPD Rune,282,1600,100000,0,10000 +10034,SPD Rune,283,1600,100000,0,10000 +10034,SPD Rune,284,1600,100000,0,10000 +10034,SPD Rune,285,1600,100000,0,10000 +10034,SPD Rune,286,1600,100000,0,10000 +10034,SPD Rune,287,1600,100000,0,10000 +10034,SPD Rune,288,1600,100000,0,10000 +10034,SPD Rune,289,1600,100000,0,10000 +10034,SPD Rune,290,1600,400000,0,10000 +10034,SPD Rune,291,1600,100000,0,10000 +10034,SPD Rune,292,1600,100000,0,10000 +10034,SPD Rune,293,1600,100000,0,10000 +10034,SPD Rune,294,1600,100000,0,10000 +10034,SPD Rune,295,1600,100000,0,10000 +10034,SPD Rune,296,1600,100000,0,10000 +10034,SPD Rune,297,1600,100000,0,10000 +10034,SPD Rune,298,1600,100000,0,10000 +10034,SPD Rune,299,1600,100000,0,10000 +10034,SPD Rune,300,1600,400000,0,10000 +10035,CRI Rune,1,20,20000,0,10000 +10035,CRI Rune,2,20,20000,0,10000 +10035,CRI Rune,3,20,20000,0,10000 +10035,CRI Rune,4,20,20000,0,10000 +10035,CRI Rune,5,20,20000,0,10000 +10035,CRI Rune,6,20,20000,0,10000 +10035,CRI Rune,7,20,20000,0,10000 +10035,CRI Rune,8,20,20000,0,10000 +10035,CRI Rune,9,20,20000,0,10000 +10035,CRI Rune,10,20,100000,0,10000 +10035,CRI Rune,11,20,20000,0,10000 +10035,CRI Rune,12,20,20000,0,10000 +10035,CRI Rune,13,20,20000,0,10000 +10035,CRI Rune,14,20,20000,0,10000 +10035,CRI Rune,15,20,20000,0,10000 +10035,CRI Rune,16,20,20000,0,10000 +10035,CRI Rune,17,20,20000,0,10000 +10035,CRI Rune,18,20,20000,0,10000 +10035,CRI Rune,19,20,20000,0,10000 +10035,CRI Rune,20,20,100000,0,10000 +10035,CRI Rune,21,20,20000,0,10000 +10035,CRI Rune,22,20,20000,0,10000 +10035,CRI Rune,23,20,20000,0,10000 +10035,CRI Rune,24,20,20000,0,10000 +10035,CRI Rune,25,20,20000,0,10000 +10035,CRI Rune,26,20,20000,0,10000 +10035,CRI Rune,27,20,20000,0,10000 +10035,CRI Rune,28,20,20000,0,10000 +10035,CRI Rune,29,20,20000,0,10000 +10035,CRI Rune,30,20,100000,0,10000 +10035,CRI Rune,31,20,30000,0,10000 +10035,CRI Rune,32,20,30000,0,10000 +10035,CRI Rune,33,20,30000,0,10000 +10035,CRI Rune,34,20,30000,0,10000 +10035,CRI Rune,35,20,30000,0,10000 +10035,CRI Rune,36,20,30000,0,10000 +10035,CRI Rune,37,20,30000,0,10000 +10035,CRI Rune,38,20,30000,0,10000 +10035,CRI Rune,39,20,30000,0,10000 +10035,CRI Rune,40,20,150000,0,10000 +10035,CRI Rune,41,20,30000,0,10000 +10035,CRI Rune,42,20,30000,0,10000 +10035,CRI Rune,43,20,30000,0,10000 +10035,CRI Rune,44,20,30000,0,10000 +10035,CRI Rune,45,20,30000,0,10000 +10035,CRI Rune,46,20,30000,0,10000 +10035,CRI Rune,47,20,30000,0,10000 +10035,CRI Rune,48,20,30000,0,10000 +10035,CRI Rune,49,20,30000,0,10000 +10035,CRI Rune,50,20,150000,0,10000 +10035,CRI Rune,51,60,30000,50,10000 +10035,CRI Rune,52,60,30000,0,10000 +10035,CRI Rune,53,60,30000,0,10000 +10035,CRI Rune,54,60,30000,0,10000 +10035,CRI Rune,55,60,30000,0,10000 +10035,CRI Rune,56,60,30000,0,10000 +10035,CRI Rune,57,60,30000,0,10000 +10035,CRI Rune,58,60,30000,0,10000 +10035,CRI Rune,59,60,30000,0,10000 +10035,CRI Rune,60,60,150000,0,10000 +10035,CRI Rune,61,60,30000,0,10000 +10035,CRI Rune,62,60,30000,0,10000 +10035,CRI Rune,63,60,30000,0,10000 +10035,CRI Rune,64,60,30000,0,10000 +10035,CRI Rune,65,60,30000,0,10000 +10035,CRI Rune,66,60,30000,0,10000 +10035,CRI Rune,67,60,30000,0,10000 +10035,CRI Rune,68,60,30000,0,10000 +10035,CRI Rune,69,60,30000,0,10000 +10035,CRI Rune,70,60,150000,0,10000 +10035,CRI Rune,71,60,50000,0,10000 +10035,CRI Rune,72,60,50000,0,10000 +10035,CRI Rune,73,60,50000,0,10000 +10035,CRI Rune,74,60,50000,0,10000 +10035,CRI Rune,75,60,50000,0,10000 +10035,CRI Rune,76,60,50000,0,10000 +10035,CRI Rune,77,60,50000,0,10000 +10035,CRI Rune,78,60,50000,0,10000 +10035,CRI Rune,79,60,50000,0,10000 +10035,CRI Rune,80,60,250000,0,10000 +10035,CRI Rune,81,60,50000,0,10000 +10035,CRI Rune,82,60,50000,0,10000 +10035,CRI Rune,83,60,50000,0,10000 +10035,CRI Rune,84,60,50000,0,10000 +10035,CRI Rune,85,60,50000,0,10000 +10035,CRI Rune,86,60,50000,0,10000 +10035,CRI Rune,87,60,50000,0,10000 +10035,CRI Rune,88,60,50000,0,10000 +10035,CRI Rune,89,60,50000,0,10000 +10035,CRI Rune,90,60,250000,0,10000 +10035,CRI Rune,91,60,50000,0,10000 +10035,CRI Rune,92,60,50000,0,10000 +10035,CRI Rune,93,60,50000,0,10000 +10035,CRI Rune,94,60,50000,0,10000 +10035,CRI Rune,95,60,50000,0,10000 +10035,CRI Rune,96,60,50000,0,10000 +10035,CRI Rune,97,60,50000,0,10000 +10035,CRI Rune,98,60,50000,0,10000 +10035,CRI Rune,99,60,50000,0,10000 +10035,CRI Rune,100,60,250000,0,10000 +10035,CRI Rune,101,100,50000,100,10000 +10035,CRI Rune,102,100,50000,0,10000 +10035,CRI Rune,103,100,50000,0,10000 +10035,CRI Rune,104,100,50000,0,10000 +10035,CRI Rune,105,100,50000,0,10000 +10035,CRI Rune,106,100,50000,0,10000 +10035,CRI Rune,107,100,50000,0,10000 +10035,CRI Rune,108,100,50000,0,10000 +10035,CRI Rune,109,100,50000,0,10000 +10035,CRI Rune,110,100,250000,0,10000 +10035,CRI Rune,111,100,50000,0,10000 +10035,CRI Rune,112,100,50000,0,10000 +10035,CRI Rune,113,100,50000,0,10000 +10035,CRI Rune,114,100,50000,0,10000 +10035,CRI Rune,115,100,50000,0,10000 +10035,CRI Rune,116,100,50000,0,10000 +10035,CRI Rune,117,100,50000,0,10000 +10035,CRI Rune,118,100,50000,0,10000 +10035,CRI Rune,119,100,50000,0,10000 +10035,CRI Rune,120,100,250000,0,10000 +10035,CRI Rune,121,100,50000,0,10000 +10035,CRI Rune,122,100,50000,0,10000 +10035,CRI Rune,123,100,50000,0,10000 +10035,CRI Rune,124,100,50000,0,10000 +10035,CRI Rune,125,100,50000,0,10000 +10035,CRI Rune,126,100,50000,0,10000 +10035,CRI Rune,127,100,50000,0,10000 +10035,CRI Rune,128,100,50000,0,10000 +10035,CRI Rune,129,100,50000,0,10000 +10035,CRI Rune,130,100,250000,0,10000 +10035,CRI Rune,131,100,75000,0,10000 +10035,CRI Rune,132,100,75000,0,10000 +10035,CRI Rune,133,100,75000,0,10000 +10035,CRI Rune,134,100,75000,0,10000 +10035,CRI Rune,135,100,75000,0,10000 +10035,CRI Rune,136,100,75000,0,10000 +10035,CRI Rune,137,100,75000,0,10000 +10035,CRI Rune,138,100,75000,0,10000 +10035,CRI Rune,139,100,75000,0,10000 +10035,CRI Rune,140,100,300000,0,10000 +10035,CRI Rune,141,100,75000,0,10000 +10035,CRI Rune,142,100,75000,0,10000 +10035,CRI Rune,143,100,75000,0,10000 +10035,CRI Rune,144,100,75000,0,10000 +10035,CRI Rune,145,100,75000,0,10000 +10035,CRI Rune,146,100,75000,0,10000 +10035,CRI Rune,147,100,75000,0,10000 +10035,CRI Rune,148,100,75000,0,10000 +10035,CRI Rune,149,100,75000,0,10000 +10035,CRI Rune,150,100,300000,0,10000 +10035,CRI Rune,151,200,75000,100,10000 +10035,CRI Rune,152,200,75000,0,10000 +10035,CRI Rune,153,200,75000,0,10000 +10035,CRI Rune,154,200,75000,0,10000 +10035,CRI Rune,155,200,75000,0,10000 +10035,CRI Rune,156,200,75000,0,10000 +10035,CRI Rune,157,200,75000,0,10000 +10035,CRI Rune,158,200,75000,0,10000 +10035,CRI Rune,159,200,75000,0,10000 +10035,CRI Rune,160,200,300000,0,10000 +10035,CRI Rune,161,200,75000,0,10000 +10035,CRI Rune,162,200,75000,0,10000 +10035,CRI Rune,163,200,75000,0,10000 +10035,CRI Rune,164,200,75000,0,10000 +10035,CRI Rune,165,200,75000,0,10000 +10035,CRI Rune,166,200,75000,0,10000 +10035,CRI Rune,167,200,75000,0,10000 +10035,CRI Rune,168,200,75000,0,10000 +10035,CRI Rune,169,200,75000,0,10000 +10035,CRI Rune,170,200,300000,0,10000 +10035,CRI Rune,171,200,75000,0,10000 +10035,CRI Rune,172,200,75000,0,10000 +10035,CRI Rune,173,200,75000,0,10000 +10035,CRI Rune,174,200,75000,0,10000 +10035,CRI Rune,175,200,75000,0,10000 +10035,CRI Rune,176,200,75000,0,10000 +10035,CRI Rune,177,200,75000,0,10000 +10035,CRI Rune,178,200,75000,0,10000 +10035,CRI Rune,179,200,75000,0,10000 +10035,CRI Rune,180,200,300000,0,10000 +10035,CRI Rune,181,200,75000,0,10000 +10035,CRI Rune,182,200,75000,0,10000 +10035,CRI Rune,183,200,75000,0,10000 +10035,CRI Rune,184,200,75000,0,10000 +10035,CRI Rune,185,200,75000,0,10000 +10035,CRI Rune,186,200,75000,0,10000 +10035,CRI Rune,187,200,75000,0,10000 +10035,CRI Rune,188,200,75000,0,10000 +10035,CRI Rune,189,200,75000,0,10000 +10035,CRI Rune,190,200,300000,0,10000 +10035,CRI Rune,191,200,75000,0,10000 +10035,CRI Rune,192,200,75000,0,10000 +10035,CRI Rune,193,200,75000,0,10000 +10035,CRI Rune,194,200,75000,0,10000 +10035,CRI Rune,195,200,75000,0,10000 +10035,CRI Rune,196,200,75000,0,10000 +10035,CRI Rune,197,200,75000,0,10000 +10035,CRI Rune,198,200,75000,0,10000 +10035,CRI Rune,199,200,75000,0,10000 +10035,CRI Rune,200,200,300000,0,10000 +10035,CRI Rune,201,800,100000,300,10000 +10035,CRI Rune,202,800,100000,0,10000 +10035,CRI Rune,203,800,100000,0,10000 +10035,CRI Rune,204,800,100000,0,10000 +10035,CRI Rune,205,800,100000,0,10000 +10035,CRI Rune,206,800,100000,0,10000 +10035,CRI Rune,207,800,100000,0,10000 +10035,CRI Rune,208,800,100000,0,10000 +10035,CRI Rune,209,800,100000,0,10000 +10035,CRI Rune,210,800,400000,0,10000 +10035,CRI Rune,211,800,100000,0,10000 +10035,CRI Rune,212,800,100000,0,10000 +10035,CRI Rune,213,800,100000,0,10000 +10035,CRI Rune,214,800,100000,0,10000 +10035,CRI Rune,215,800,100000,0,10000 +10035,CRI Rune,216,800,100000,0,10000 +10035,CRI Rune,217,800,100000,0,10000 +10035,CRI Rune,218,800,100000,0,10000 +10035,CRI Rune,219,800,100000,0,10000 +10035,CRI Rune,220,800,400000,0,10000 +10035,CRI Rune,221,800,100000,0,10000 +10035,CRI Rune,222,800,100000,0,10000 +10035,CRI Rune,223,800,100000,0,10000 +10035,CRI Rune,224,800,100000,0,10000 +10035,CRI Rune,225,800,100000,0,10000 +10035,CRI Rune,226,800,100000,0,10000 +10035,CRI Rune,227,800,100000,0,10000 +10035,CRI Rune,228,800,100000,0,10000 +10035,CRI Rune,229,800,100000,0,10000 +10035,CRI Rune,230,800,400000,0,10000 +10035,CRI Rune,231,800,100000,0,10000 +10035,CRI Rune,232,800,100000,0,10000 +10035,CRI Rune,233,800,100000,0,10000 +10035,CRI Rune,234,800,100000,0,10000 +10035,CRI Rune,235,800,100000,0,10000 +10035,CRI Rune,236,800,100000,0,10000 +10035,CRI Rune,237,800,100000,0,10000 +10035,CRI Rune,238,800,100000,0,10000 +10035,CRI Rune,239,800,100000,0,10000 +10035,CRI Rune,240,800,400000,0,10000 +10035,CRI Rune,241,800,100000,400,10000 +10035,CRI Rune,242,800,100000,0,10000 +10035,CRI Rune,243,800,100000,0,10000 +10035,CRI Rune,244,800,100000,0,10000 +10035,CRI Rune,245,800,100000,0,10000 +10035,CRI Rune,246,800,100000,0,10000 +10035,CRI Rune,247,800,100000,0,10000 +10035,CRI Rune,248,800,100000,0,10000 +10035,CRI Rune,249,800,100000,0,10000 +10035,CRI Rune,250,800,400000,0,10000 +10035,CRI Rune,251,1600,100000,0,10000 +10035,CRI Rune,252,1600,100000,0,10000 +10035,CRI Rune,253,1600,100000,0,10000 +10035,CRI Rune,254,1600,100000,0,10000 +10035,CRI Rune,255,1600,100000,0,10000 +10035,CRI Rune,256,1600,100000,0,10000 +10035,CRI Rune,257,1600,100000,0,10000 +10035,CRI Rune,258,1600,100000,0,10000 +10035,CRI Rune,259,1600,100000,0,10000 +10035,CRI Rune,260,1600,400000,0,10000 +10035,CRI Rune,261,1600,100000,0,10000 +10035,CRI Rune,262,1600,100000,0,10000 +10035,CRI Rune,263,1600,100000,0,10000 +10035,CRI Rune,264,1600,100000,0,10000 +10035,CRI Rune,265,1600,100000,0,10000 +10035,CRI Rune,266,1600,100000,0,10000 +10035,CRI Rune,267,1600,100000,0,10000 +10035,CRI Rune,268,1600,100000,0,10000 +10035,CRI Rune,269,1600,100000,0,10000 +10035,CRI Rune,270,1600,400000,0,10000 +10035,CRI Rune,271,1600,100000,0,10000 +10035,CRI Rune,272,1600,100000,0,10000 +10035,CRI Rune,273,1600,100000,0,10000 +10035,CRI Rune,274,1600,100000,0,10000 +10035,CRI Rune,275,1600,100000,0,10000 +10035,CRI Rune,276,1600,100000,0,10000 +10035,CRI Rune,277,1600,100000,0,10000 +10035,CRI Rune,278,1600,100000,0,10000 +10035,CRI Rune,279,1600,100000,0,10000 +10035,CRI Rune,280,1600,400000,0,10000 +10035,CRI Rune,281,1600,100000,500,10000 +10035,CRI Rune,282,1600,100000,0,10000 +10035,CRI Rune,283,1600,100000,0,10000 +10035,CRI Rune,284,1600,100000,0,10000 +10035,CRI Rune,285,1600,100000,0,10000 +10035,CRI Rune,286,1600,100000,0,10000 +10035,CRI Rune,287,1600,100000,0,10000 +10035,CRI Rune,288,1600,100000,0,10000 +10035,CRI Rune,289,1600,100000,0,10000 +10035,CRI Rune,290,1600,400000,0,10000 +10035,CRI Rune,291,1600,100000,0,10000 +10035,CRI Rune,292,1600,100000,0,10000 +10035,CRI Rune,293,1600,100000,0,10000 +10035,CRI Rune,294,1600,100000,0,10000 +10035,CRI Rune,295,1600,100000,0,10000 +10035,CRI Rune,296,1600,100000,0,10000 +10035,CRI Rune,297,1600,100000,0,10000 +10035,CRI Rune,298,1600,100000,0,10000 +10035,CRI Rune,299,1600,100000,0,10000 +10035,CRI Rune,300,1600,400000,0,10000 \ No newline at end of file diff --git a/Lib9c/TableCSV/RuneSheet.csv b/Lib9c/TableCSV/RuneSheet.csv index f1a4f0ca9..f3d7900f2 100644 --- a/Lib9c/TableCSV/RuneSheet.csv +++ b/Lib9c/TableCSV/RuneSheet.csv @@ -18,4 +18,7 @@ id,_name,ticker 10029,Freya Liberation Rune,RUNESTONE_FREYA_LIBERATION 10030,Freya Blessing Rune,RUNESTONE_FREYA_BLESSING 10031,Odin Weakness Rune,RUNESTONE_ODIN_WEAKNESS -10032,Odin Wisdom Rune,RUNESTONE_ODIN_WISDOM \ No newline at end of file +10032,Odin Wisdom Rune,RUNESTONE_ODIN_WISDOM +10033,HIT Rune,RUNESTONE_HIT +10034,SPD Rune,RUNESTONE_SPD +10035,CRI Rune,RUNESTONE_CRI \ No newline at end of file diff --git a/Lib9c/TableCSV/Skill/SkillBuffSheet.csv b/Lib9c/TableCSV/Skill/SkillBuffSheet.csv index 63a96c874..723ef33f6 100644 --- a/Lib9c/TableCSV/Skill/SkillBuffSheet.csv +++ b/Lib9c/TableCSV/Skill/SkillBuffSheet.csv @@ -244,3 +244,68 @@ skill_id,buff_id 401003,103008 401003,106004 401003,106005 +401004,103012 +401004,102012 +401004,106004 +401004,106005 +401005,103013 +401005,102013 +401005,106004 +401005,106005 +401006,103014 +401006,102014 +401006,106004 +401006,106005 +401007,103015 +401007,102015 +401007,106004 +401007,106005 +401008,102016 +401008,106009 +401008,205004 +401008,205005 +401009,102017 +401009,106010 +401009,205004 +401009,205005 +401010,102018 +401010,106011 +401010,205004 +401010,205005 +401011,102019 +401011,106012 +401011,205004 +401011,205005 +401012,102016 +401012,109000 +401012,104006 +401012,104007 +401012,203005 +401012,203006 +401013,102017 +401013,109001 +401013,104006 +401013,104007 +401013,203005 +401013,203006 +401014,102018 +401014,109002 +401014,104006 +401014,104007 +401014,203005 +401014,203006 +401015,102019 +401015,109003 +401015,104006 +401015,104007 +401015,203005 +401015,203006 +210013,102009 +210014,102010 +210015,102011 +220009,103009 +220010,103010 +220011,103011 +250008,106006 +250009,106007 +250010,106008 \ No newline at end of file diff --git a/Lib9c/TableCSV/Skill/SkillSheet.csv b/Lib9c/TableCSV/Skill/SkillSheet.csv index 24107f035..9e539acb5 100644 --- a/Lib9c/TableCSV/Skill/SkillSheet.csv +++ b/Lib9c/TableCSV/Skill/SkillSheet.csv @@ -48,6 +48,9 @@ _210001,공격 강화(전체),Normal,Buff,AttackBuff,Ally,1,1 // 미구현, 210010,ATK Down (HP),Normal,Debuff,AttackBuff,Enemy,1,10, 210011,Double edged sword,Normal,Buff,AttackBuff,Self,1,10, 210012,ATK Down (Aegis Aura),Normal,Debuff,AttackBuff,Enemy,1,14, +210013,ATK UP (ATK Grimoire),Normal,Buff,AttackBuff,Self,1,25, +210014,ATK UP (ATK Grimoire),Normal,Buff,AttackBuff,Self,1,25, +210015,ATK UP (ATK Grimoire),Normal,Buff,AttackBuff,Self,1,25, 220000,방어 강화,Normal,Buff,DefenseBuff,Self,1,25, _220001,방어 강화(전체),Normal,Buff,DefenseBuff,Ally,1,1 // 미구현, 220002,방어 약화,Normal,Debuff,DefenseBuff,Enemy,1,10, @@ -57,6 +60,9 @@ _220001,방어 강화(전체),Normal,Buff,DefenseBuff,Ally,1,1 // 미구현, 220006,DEF Down (HP),Normal,Debuff,DefenseBuff,Enemy,1,10, 220007,DEF Down (HIT),Normal,Debuff,DefenseBuff,Enemy,1,10, 220008,DEF Down (SPD),Normal,Debuff,DefenseBuff,Enemy,1,10, +220009,DEF UP (DEF Grimoire),Normal,Buff,DefenseBuff,Self,1,25, +220010,DEF UP (DEF Grimoire),Normal,Buff,DefenseBuff,Self,1,25, +220011,DEF UP (DEF Grimoire),Normal,Buff,DefenseBuff,Self,1,25, 230000,치명 증가,Normal,Buff,CriticalBuff,Self,1,25, _230001,치명 증가(전체),Normal,Buff,CriticalBuff,Ally,1,1 // 미구현, 230002,치명 감소,Normal,Debuff,CriticalBuff,Enemy,1,10, @@ -82,6 +88,9 @@ _250001,속도 증가(전체),Normal,Buff,SpeedBuff,Ally,1,1 // 미구현, 250005,SPD Down (HP),Normal,Debuff,SpeedBuff,Enemy,1,10, 250006,SPD Down (HIT),Normal,Debuff,SpeedBuff,Enemy,1,10, 250007,SPD Up (ATK),Normal,Buff,SpeedBuff,Self,1,10, +250008,SPD UP (SPD Grimoire),Normal,Buff,SpeedBuff,Self,1,25, +250009,SPD UP (SPD Grimoire),Normal,Buff,SpeedBuff,Self,1,25, +250010,SPD UP (SPD Grimoire),Normal,Buff,SpeedBuff,Self,1,25, 260000,Armor Penetration (ATK),Normal,Buff,Buff,Self,1,10, 260001,Armor Penetration (DEF),Normal,Buff,Buff,Self,1,10, 270000,Thorn (HP),Normal,Buff,Buff,Self,1,10, @@ -150,10 +159,22 @@ _250001,속도 증가(전체),Normal,Buff,SpeedBuff,Ally,1,1 // 미구현, 400053,B 방어명중 치명,Normal,Buff,DefenseBuff,Self,1,999, 400054,B 방어 속도 치명,Normal,Buff,DefenseBuff,Self,1,999, 400055,B 명중 속도 치명,Normal,Buff,SpeedBuff,Self,1,999, -401000,어드벤쳐 A탑 버프 1,Normal,Buff,Buff,Self,1,10, -401001,어드벤쳐 A탑 버프 2,Normal,Buff,Buff,Self,1,10, -401002,어드벤쳐 A탑 버프 3,Normal,Buff,Buff,Self,1,10, -401003,어드벤쳐 A탑 버프 4,Normal,Buff,Buff,Self,1,10, +401000,수르트 (AdventureBoss Stage Buff) 1,Normal,Buff,Buff,Self,1,10, +401001,수르트 (AdventureBoss Stage Buff) 2,Normal,Buff,Buff,Self,1,10, +401002,수르트 (AdventureBoss Stage Buff) 3,Normal,Buff,Buff,Self,1,10, +401003,수르트 (AdventureBoss Stage Buff) 4,Normal,Buff,Buff,Self,1,10, +401004,라우페이 (AdventureBoss Stage Buff) 1,Normal,Buff,Buff,Self,1,10, +401005,라우페이 (AdventureBoss Stage Buff) 2,Normal,Buff,Buff,Self,1,10, +401006,라우페이 (AdventureBoss Stage Buff) 3,Normal,Buff,Buff,Self,1,10, +401007,라우페이 (AdventureBoss Stage Buff) 4,Normal,Buff,Buff,Self,1,10, +401008,요르문간드 (AdventureBoss Stage Buff) 1,Normal,Buff,Buff,Self,1,10, +401009,요르문간드 (AdventureBoss Stage Buff) 2,Normal,Buff,Buff,Self,1,10, +401010,요르문간드 (AdventureBoss Stage Buff) 3,Normal,Buff,Buff,Self,1,10, +401011,요르문간드 (AdventureBoss Stage Buff) 4,Normal,Buff,Buff,Self,1,10, +401012,헤라 (AdventureBoss Stage Buff) 1,Normal,Buff,Buff,Self,1,10, +401013,헤라 (AdventureBoss Stage Buff) 2,Normal,Buff,Buff,Self,1,10, +401014,헤라 (AdventureBoss Stage Buff) 3,Normal,Buff,Buff,Self,1,10, +401015,헤라 (AdventureBoss Stage Buff) 4,Normal,Buff,Buff,Self,1,10, 500001,분노,Normal,Attack,BlowAttack,Enemy,1,0, 500002,물어뜯기,Normal,Attack,BuffRemovalAttack,Enemy,1,0, 500003,할퀴기,Normal,Attack,BlowAttack,Enemy,1,0, diff --git a/Lib9c/TableCSV/Skill/StatBuffSheet.csv b/Lib9c/TableCSV/Skill/StatBuffSheet.csv index 8cd50799b..39a4fcd65 100644 --- a/Lib9c/TableCSV/Skill/StatBuffSheet.csv +++ b/Lib9c/TableCSV/Skill/StatBuffSheet.csv @@ -6,25 +6,45 @@ id,group,_name,chance,duration,target_type,stat_type,modify_type,modify_value,is 102002,102000,공격 강화,100,10,Self,ATK,Percentage,25,true, 102003,102000,ATK UP (Stat conversion),100,10,Self,ATK,Add,0,true, 102004,102004,Double edged sword (ATK),100,20,Self,ATK,Percentage,30,true, -102005,102005,ATK UP (AdventureBoss Stage Buff),100,150,Enemies,ATK,Percentage,50,true, -102006,102005,ATK UP (AdventureBoss Stage Buff),100,150,Enemies,ATK,Percentage,100,true, -102007,102005,ATK UP (AdventureBoss Stage Buff),100,150,Enemies,ATK,Percentage,200,true, -102008,102005,ATK UP (AdventureBoss Stage Buff),100,150,Enemies,ATK,Percentage,400,true, +102005,102005,수르트 (AdventureBoss Stage Buff),100,150,Enemies,ATK,Percentage,50,true, +102006,102005,수르트 (AdventureBoss Stage Buff),100,150,Enemies,ATK,Percentage,100,true, +102007,102005,수르트 (AdventureBoss Stage Buff),100,150,Enemies,ATK,Percentage,200,true, +102008,102005,수르트 (AdventureBoss Stage Buff),100,150,Enemies,ATK,Percentage,400,true, +102009,102009,ATK UP (ATK Grimoire),100,25,Self,ATK,Percentage,10,true, +102010,102009,ATK UP (ATK Grimoire),100,25,Self,ATK,Percentage,20,true, +102011,102009,ATK UP (ATK Grimoire),100,25,Self,ATK,Percentage,30,true, +102012,102005,라우페이 (AdventureBoss Stage Buff),100,150,Self,ATK,Percentage,50,true, +102013,102005,라우페이 (AdventureBoss Stage Buff),100,150,Self,ATK,Percentage,100,true, +102014,102005,라우페이 (AdventureBoss Stage Buff),100,150,Self,ATK,Percentage,200,true, +102015,102005,라우페이 (AdventureBoss Stage Buff),100,150,Self,ATK,Percentage,400,true, +102016,102005,요르문간드 헤라 (AdventureBoss Stage Buff),100,150,Enemies,ATK,Percentage,50,true, +102017,102005,요르문간드 헤라 (AdventureBoss Stage Buff),100,150,Enemies,ATK,Percentage,100,true, +102018,102005,요르문간드 헤라 (AdventureBoss Stage Buff),100,150,Enemies,ATK,Percentage,150,true, +102019,102005,요르문간드 헤라 (AdventureBoss Stage Buff),100,150,Enemies,ATK,Percentage,200,true, 103000,103000,방어 강화,20,10,Self,DEF,Percentage,25,true, 103001,103000,방어 강화,100,25,Self,DEF,Percentage,50,true, 103002,103000,방어 강화,100,10,Self,DEF,Percentage,25,true, 103003,103000,DEF UP (Stat conversion),100,10,Self,DEF,Add,0,true, 103004,103001,DEF UP (Stat conversion),100,10,Self,DEF,Percentage,0,true, -103005,103005,DEF UP (AdventureBoss Stage Buff),100,150,Self,DEF,Percentage,50,true, -103006,103005,DEF UP (AdventureBoss Stage Buff),100,150,Self,DEF,Percentage,75,true, -103007,103005,DEF UP (AdventureBoss Stage Buff),100,150,Self,DEF,Percentage,100,true, -103008,103005,DEF UP (AdventureBoss Stage Buff),100,150,Self,DEF,Percentage,200,true, +103005,103005,수르트 (AdventureBoss Stage Buff),100,150,Self,DEF,Percentage,50,true, +103006,103005,수르트 (AdventureBoss Stage Buff),100,150,Self,DEF,Percentage,75,true, +103007,103005,수르트 (AdventureBoss Stage Buff),100,150,Self,DEF,Percentage,100,true, +103008,103005,수르트 (AdventureBoss Stage Buff),100,150,Self,DEF,Percentage,200,true, +103009,103009,DEF UP (DEF Grimoire),100,25,Self,DEF,Percentage,10,true, +103010,103009,DEF UP (DEF Grimoire),100,25,Self,DEF,Percentage,20,true, +103011,103009,DEF UP (DEF Grimoire),100,25,Self,DEF,Percentage,30,true, +103012,103005,라우페이 (AdventureBoss Stage Buff),100,150,Enemies,DEF,Percentage,50,true, +103013,103005,라우페이 (AdventureBoss Stage Buff),100,150,Enemies,DEF,Percentage,75,true, +103014,103005,라우페이 (AdventureBoss Stage Buff),100,150,Enemies,DEF,Percentage,100,true, +103015,103005,라우페이 (AdventureBoss Stage Buff),100,150,Enemies,DEF,Percentage,200,true, 104000,104000,치명 증가,20,10,Self,CRI,Percentage,50,true, 104001,104000,치명 증가,100,25,Self,CRI,Percentage,75,true, 104002,104000,치명 증가,100,10,Self,CRI,Percentage,25,true, 104003,104003,Frenzied CRI(Self) Lv1,100,20,Self,CRI,Percentage,0,true, 104004,104003,Frenzied CRI(Self) LV2,100,20,Self,CRI,Percentage,0,true, 104005,104003,Frenzied CRI(Self) Lv3,100,20,Self,CRI,Percentage,0,true, +104006,104006,헤라 (AdventureBoss Stage Buff),100,150,Self,CRI,Percentage,50,true, +104007,104006,헤라 (AdventureBoss Stage Buff),100,150,Enemies,CRI,Percentage,50,true, 105000,105000,회피 증가,20,10,Self,HIT,Percentage,50,true, 105001,105000,회피 증가,100,25,Self,HIT,Percentage,75,true, 105002,105000,회피 증가,100,10,Self,HIT,Percentage,25,true, @@ -33,10 +53,21 @@ id,group,_name,chance,duration,target_type,stat_type,modify_type,modify_value,is 106001,106000,속도 증가,100,25,Self,SPD,Percentage,75,true, 106002,106000,속도 증가,100,10,Self,SPD,Percentage,25,true, 106003,106000,SPD UP (Stat conversion),100,10,Self,SPD,Add,0,true, -106004,106004,SPD UP (AdventureBoss Stage Buff),100,150,Self,SPD,Percentage,50,true, -106005,106004,SPD UP (AdventureBoss Stage Buff),100,150,Enemies,SPD,Percentage,50,true, +106004,106004,수르트 라우페이 (AdventureBoss Stage Buff),100,150,Self,SPD,Percentage,50,true, +106005,106004,수르트 라우페이 (AdventureBoss Stage Buff),100,150,Enemies,SPD,Percentage,50,true, +106006,106006,SPD UP (SPD Grimoire),100,25,Self,SPD,Percentage,10,true, +106007,106006,SPD UP (SPD Grimoire),100,25,Self,SPD,Percentage,20,true, +106008,106006,SPD UP (SPD Grimoire),100,25,Self,SPD,Percentage,30,true, +106009,106004,요르문간드 (AdventureBoss Stage Buff),100,150,Self,SPD,Percentage,50,true, +106010,106004,요르문간드 (AdventureBoss Stage Buff),100,150,Self,SPD,Percentage,75,true, +106011,106004,요르문간드 (AdventureBoss Stage Buff),100,150,Self,SPD,Percentage,100,true, +106012,106004,요르문간드 (AdventureBoss Stage Buff),100,150,Self,SPD,Percentage,200,true, 107000,107000,Armor Penetration (Stat conversion),100,10,Self,ArmorPenetration,Add,0,true, 108000,108000,Thorn (Stat conversion),100,10,Self,Thorn,Add,0,true, +109000,109000,헤라 (AdventureBoss Stage Buff),100,150,Self,CDMG,Add,15000,true, +109001,109000,헤라 (AdventureBoss Stage Buff),100,150,Self,CDMG,Add,20000,true, +109002,109000,헤라 (AdventureBoss Stage Buff),100,150,Self,CDMG,Add,25000,true, +109003,109000,헤라 (AdventureBoss Stage Buff),100,150,Self,CDMG,Add,30000,true, 202000,202000,공격 약화,20,10,Enemy,ATK,Percentage,-25,true, 202001,202000,공격 약화,100,10,Enemy,ATK,Percentage,-25,true, 202002,202000,ATK Down (Stat conversion),100,10,Enemy,ATK,Add,0,true, @@ -47,12 +78,16 @@ id,group,_name,chance,duration,target_type,stat_type,modify_type,modify_value,is 203002,203000,DEF Down (Stat conversion),100,10,Enemy,DEF,Add,0,true, 203003,203003,Double edged sword (DEF),100,20,Self,DEF,Percentage,-20,false, 203004,203004,DEF Down (Odin Rune),100,0,Enemies,DEF,Percentage,0,true, +203005,203005,헤라 (AdventureBoss Stage Buff),100,150,Self,DEF,Percentage,-100,true, +203006,203005,헤라 (AdventureBoss Stage Buff),100,150,Enemies,DEF,Percentage,-100,true, 204001,204000,치명 감소,100,10,Enemy,CRI,Percentage,-25,true, 204002,204002,Frenzied CRI(Enemy) Lv1,100,20,Enemies,CRI,Percentage,-50,false, 204003,204002,Frenzied CRI(Enemy) Lv2_3,100,20,Enemies,CRI,Percentage,-500,false, 205001,205000,회피 감소,100,10,Enemy,HIT,Percentage,-25,true, 205002,205000,HIT Down (Stat conversion),100,10,Enemy,HIT,Add,0,true, 205003,205003,HIT Down (Odin Rune),100,0,Enemies,HIT,Percentage,0,true, +205004,205004,요르문간드 (AdventureBoss Stage Buff),100,150,Self,HIT,Percentage,-50,true, +205005,205004,요르문간드 (AdventureBoss Stage Buff),100,150,Enemies,HIT,Percentage,-50,true, 206001,206000,속도 감소,100,10,Enemy,SPD,Percentage,-25,true, 206002,206000,SPD Down (Stat conversion),100,10,Enemy,SPD,Add,0,true, 301000,301000,체력 강화 (10),100,150,Self,HP,Percentage,10,true, @@ -139,4 +174,4 @@ id,group,_name,chance,duration,target_type,stat_type,modify_type,modify_value,is 703000,703000,CDMG (Rune),100,0,Self,CDMG,Add,0,true, 709000,709000,Frostbite 1 (Aura),100,5,Enemy,SPD,Percentage,-3,true,5 709001,709000,Frostbite 2 (Aura),100,5,Enemy,SPD,Percentage,-7,true,5 -709002,709000,Frostbite 3 (Aura),100,5,Enemy,SPD,Percentage,-10,true,5 +709002,709000,Frostbite 3 (Aura),100,5,Enemy,SPD,Percentage,-10,true,5 \ No newline at end of file diff --git a/Lib9c/TableCSV/Summon/SummonSheet.csv b/Lib9c/TableCSV/Summon/SummonSheet.csv index 6ebd3febb..3ce47ecda 100644 --- a/Lib9c/TableCSV/Summon/SummonSheet.csv +++ b/Lib9c/TableCSV/Summon/SummonSheet.csv @@ -1,6 +1,7 @@ -groupID,cost_material,cost_material_count,cost_ncg,recipe1ID,recipe1ratio,recipe2ID,recipe2ratio,recipe3ID,recipe3ratio,recipe4ID,recipe4ratio,recipe5ID,recipe5ratio,recipe6ID,recipe6ratio,recipe7ID,recipe7ratio,recipe8ID,recipe8ratio,recipe9ID,recipe9ratio,recipe10ID,recipe10ratio,recipe11ID,recipe11ratio,recipe12ID,recipe12ratio,recipe13ID,recipe13ratio,recipe14ID,recipe14ratio,recipe15ID,recipe15ratio,recipe16ID,recipe16ratio,recipe17ID,recipe17ratio,recipe18ID,recipe18ratio -10001,800201,10,0,173,100,172,3500,171,6000,176,3,181,3,186,3,175,30,180,30,185,30,174,100,179,100,184,100,,,,,,,,,,,, -10002,600201,20,0,216,150,215,1100,214,12750,178,150,183,150,188,150,177,1100,182,1100,187,1100,176,12750,181,12750,186,12750,175,98000,180,98000,185,98000,174,216667,179,216667,184,216667 -20001,600201,20,0,10031,75,10032,75,10029,75,10030,75,10023,200,10024,200,10021,200,10022,200,10027,400,10028,400,10025,400,10026,400,10003,800,10013,800,10002,1000,10012,1000,10001,1850,10011,1850 -30001,600202,20,0,216,2,215,32,214,60,177,32,182,32,187,32,176,70,181,70,186,70,175,200,180,200,185,200,,,,,,,,,,,, -30002,600202,20,0,10027,15,10028,15,10025,15,10026,15,10023,8,10024,8,10021,8,10022,8,10029,2,10030,2,10031,2,10032,2,,,,,,,,,,,, \ No newline at end of file +groupID,cost_material,cost_material_count,cost_ncg,recipe1ID,recipe1ratio,recipe2ID,recipe2ratio,recipe3ID,recipe3ratio,recipe4ID,recipe4ratio,recipe5ID,recipe5ratio,recipe6ID,recipe6ratio,recipe7ID,recipe7ratio,recipe8ID,recipe8ratio,recipe9ID,recipe9ratio,recipe10ID,recipe10ratio,recipe11ID,recipe11ratio,recipe12ID,recipe12ratio,recipe13ID,recipe13ratio,recipe14ID,recipe14ratio,recipe15ID,recipe15ratio,recipe16ID,recipe16ratio,recipe17ID,recipe17ratio,recipe18ID,recipe18ratio,recipe19ID,recipe19ratio,recipe20ID,recipe20ratio,recipe21ID,recipe21ratio,recipe22ID,recipe22ratio,recipe23ID,recipe23ratio,recipe24ID,recipe24ratio,recipe25ID,recipe25ratio,recipe26ID,recipe26ratio,recipe27ID,recipe27ratio,recipe28ID,recipe28ratio,recipe29ID,recipe29ratio,recipe30ID,recipe30ratio,recipe31ID,recipe31ratio,recipe32ID,recipe32ratio,recipe33ID,recipe33ratio,recipe34ID,recipe34ratio,recipe35ID,recipe35ratio,recipe36ID,recipe36ratio +10001,800201,10,0,173,100,172,3500,171,6000,176,3,181,3,186,3,175,30,180,30,185,30,174,100,179,100,184,100,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +10002,600201,20,0,216,150,215,1100,214,12750,178,150,183,150,188,150,177,1100,182,1100,187,1100,176,12750,181,12750,186,12750,175,98000,180,98000,185,98000,174,216667,179,216667,184,216667,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +20001,600201,20,0,10031,75,10032,75,10029,75,10030,75,10023,200,10024,200,10021,200,10022,200,10027,400,10028,400,10025,400,10026,400,10003,800,10013,800,10002,1000,10012,1000,10001,1850,10011,1850,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +30001,600202,20,0,216,5,215,37,214,370,177,36,182,36,187,36,176,360,181,360,186,360,175,2800,180,2800,185,2800,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +30002,600202,20,0,10027,15,10028,15,10025,15,10026,15,10023,8,10024,8,10021,8,10022,8,10029,2,10030,2,10031,2,10032,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +40001,600203,20,0,217,60,218,60,219,60,220,60,221,60,222,60,223,60,224,60,225,60,226,30,227,30,228,30,229,30,230,30,231,30,232,30,233,30,234,30,235,9,236,9,237,9,238,9,239,9,240,9,241,9,242,9,243,9,244,1,245,1,246,1,247,1,248,1,249,1,250,1,251,1,252,1 \ No newline at end of file diff --git a/Lib9c/TableCSV/WorldAndStage/StageSheet.csv b/Lib9c/TableCSV/WorldAndStage/StageSheet.csv index c367946c3..90082cca4 100644 --- a/Lib9c/TableCSV/WorldAndStage/StageSheet.csv +++ b/Lib9c/TableCSV/WorldAndStage/StageSheet.csv @@ -199,206 +199,206 @@ id,cost_ap,turn_limit,hp_additional,atk_additional,def_additional,cri_additional 198,5,150,265,300,262,0,403,333,chapter_04_03,bgm_asgard_03,303203,0.1,1,2,303302,0.1,1,2,303402,0.1,1,2,306017,0.5,2,3,306035,0.12,1,2,306038,0.08,1,1,,,,,,,,,,,,,,,,,3,4 199,5,150,269,305,266,0,393,327,chapter_04_03,bgm_asgard_03,303203,0.1,1,2,303302,0.1,1,2,303402,0.1,1,2,306007,0.5,2,3,306035,0.12,1,2,306039,0.08,1,1,,,,,,,,,,,,,,,,,3,4 200,5,150,273,310,270,0,437,364,chapter_04_03,bgm_asgard_03,303002,0.1,1,2,303203,0.1,1,2,303302,0.1,1,2,306029,0.5,2,3,306035,0.12,1,2,306036,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -201,5,150,120,220,150,0,480,400,chapter_05_01,bgm_muspelheim_01,303002,0.223,1,1,303102,0.223,1,1,303201,0.223,1,1,306017,0.3,1,2,306045,0.024,1,1,306048,0.007,1,1,,,,,,,,,,,,,,,,,1,2 -202,5,150,121,220,150,0,526,438,chapter_05_01,bgm_muspelheim_01,303102,0.223,1,1,303301,0.223,1,1,303401,0.223,1,1,306015,0.3,1,2,306045,0.024,1,1,306048,0.007,1,1,,,,,,,,,,,,,,,,,1,2 -203,5,150,121,215,150,0,700,424,chapter_05_02,bgm_muspelheim_02,303102,0.223,1,1,303201,0.223,1,1,303301,0.223,1,1,306055,0.3,1,2,306045,0.024,1,1,306047,0.007,1,1,,,,,,,,,,,,,,,,,1,2 -204,5,150,122,215,150,0,684,570,chapter_05_01,bgm_muspelheim_01,303002,0.223,1,1,303201,0.223,1,1,303301,0.223,1,1,306055,0.3,1,2,306045,0.024,1,1,306047,0.007,1,1,,,,,,,,,,,,,,,,,1,2 -205,5,150,122,210,150,0,668,556,chapter_05_01,bgm_muspelheim_01,303002,0.223,1,1,303201,0.223,1,1,303401,0.223,1,1,306016,0.3,1,2,306045,0.024,1,1,306048,0.007,1,1,,,,,,,,,,,,,,,,,1,2 -206,5,150,123,210,150,0,705,587,chapter_05_02,bgm_muspelheim_02,303002,0.223,1,1,303301,0.223,1,1,303401,0.223,1,1,306017,0.3,1,2,306045,0.024,1,1,306048,0.007,1,1,,,,,,,,,,,,,,,,,1,2 -207,5,150,123,205,150,0,735,613,chapter_05_01,bgm_muspelheim_01,303201,0.223,1,1,303301,0.223,1,1,303401,0.223,1,1,306053,0.3,1,2,306045,0.024,1,1,306047,0.007,1,1,,,,,,,,,,,,,,,,,1,2 -208,5,150,124,205,150,0,830,692,chapter_05_02,bgm_muspelheim_02,303102,0.223,1,1,303301,0.223,1,1,303401,0.223,1,1,306055,0.3,1,2,306045,0.024,1,1,306047,0.007,1,1,,,,,,,,,,,,,,,,,1,2 -209,5,150,124,200,150,0,714,595,chapter_05_01,bgm_muspelheim_01,303002,0.223,1,1,303102,0.223,1,1,303301,0.223,1,1,306015,0.3,1,2,306045,0.024,1,1,306048,0.007,1,1,,,,,,,,,,,,,,,,,1,2 -210,5,150,125,200,150,0,793,660,chapter_05_03,bgm_muspelheim_03,303002,0.22,1,1,303102,0.22,1,1,303201,0.22,1,1,306054,0.3,1,2,306045,0.03,1,1,306047,0.01,1,1,,,,,,,,,,,,,,,,,1,2 -211,5,150,122,190,150,0,835,695,chapter_05_01,bgm_muspelheim_01,303102,0.22,1,1,303201,0.22,1,1,303401,0.22,1,1,306055,0.3,1,2,306045,0.03,1,1,306047,0.01,1,1,,,,,,,,,,,,,,,,,1,2 -212,5,150,124,190,150,0,850,646,chapter_05_01,bgm_muspelheim_01,303002,0.22,1,1,303201,0.22,1,1,303302,0.22,1,1,306016,0.3,1,2,306045,0.03,1,1,306048,0.01,1,1,,,,,,,,,,,,,,,,,1,2 -213,5,150,126,190,150,0,900,657,chapter_05_02,bgm_muspelheim_02,303002,0.22,1,1,303102,0.22,1,1,303401,0.22,1,1,306016,0.3,1,2,306045,0.03,1,1,306048,0.01,1,1,,,,,,,,,,,,,,,,,1,2 -214,5,150,128,190,150,0,880,642,chapter_05_01,bgm_muspelheim_01,303102,0.22,1,1,303302,0.22,1,1,303401,0.22,1,1,306054,0.3,1,2,306045,0.03,1,1,306047,0.01,1,1,,,,,,,,,,,,,,,,,1,2 -215,5,150,130,190,150,0,860,638,chapter_05_01,bgm_muspelheim_01,303201,0.22,1,1,303302,0.22,1,1,303401,0.22,1,1,306015,0.3,1,2,306045,0.03,1,1,306048,0.01,1,1,,,,,,,,,,,,,,,,,1,2 -216,5,150,132,190,150,0,900,667,chapter_05_02,bgm_muspelheim_02,303102,0.218,1,1,303202,0.218,1,1,303401,0.218,1,1,306016,0.3,1,2,306045,0.036,1,1,306048,0.01,1,1,,,,,,,,,,,,,,,,,1,2 -217,5,150,134,190,150,0,950,715,chapter_05_01,bgm_muspelheim_01,303102,0.218,1,1,303202,0.218,1,1,303302,0.218,1,1,306054,0.3,1,2,306045,0.036,1,1,306047,0.01,1,1,,,,,,,,,,,,,,,,,1,2 -218,5,150,136,190,150,0,920,679,chapter_05_02,bgm_muspelheim_02,303002,0.218,1,1,303302,0.218,1,1,303401,0.218,1,1,306017,0.3,1,2,306045,0.036,1,1,306048,0.01,1,1,,,,,,,,,,,,,,,,,1,2 -219,5,150,138,190,150,0,950,710,chapter_05_01,bgm_muspelheim_01,303002,0.218,1,1,303202,0.218,1,1,303401,0.218,1,1,306053,0.3,1,2,306045,0.036,1,1,306047,0.01,1,1,,,,,,,,,,,,,,,,,1,2 -220,5,150,140,190,150,0,900,720,chapter_05_03,bgm_muspelheim_03,303002,0.217,1,1,303102,0.217,1,1,303202,0.217,1,1,306017,0.3,1,2,306045,0.038,1,1,306048,0.011,1,1,,,,,,,,,,,,,,,,,1,2 -221,5,150,211,229,195,0,903,740,chapter_05_01,bgm_muspelheim_01,303202,0.217,1,1,303302,0.217,1,1,303401,0.217,1,1,306017,0.3,1,2,306045,0.038,1,1,306048,0.011,1,1,,,,,,,,,,,,,,,,,1,2 -222,5,150,282,268,240,0,988,760,chapter_05_01,bgm_muspelheim_01,303102,0.217,1,1,303302,0.217,1,1,303401,0.217,1,1,306015,0.3,1,2,306045,0.038,1,1,306048,0.011,1,1,,,,,,,,,,,,,,,,,1,2 -223,5,150,353,307,285,0,1107,780,chapter_05_02,bgm_muspelheim_02,303002,0.217,1,1,303202,0.217,1,1,303302,0.217,1,1,306055,0.3,1,2,306045,0.038,1,1,306047,0.011,1,1,,,,,,,,,,,,,,,,,1,2 -224,5,150,424,346,330,0,1133,800,chapter_05_01,bgm_muspelheim_01,303002,0.217,1,1,303202,0.217,1,1,303302,0.217,1,1,306016,0.3,1,2,306045,0.038,1,1,306048,0.011,1,1,,,,,,,,,,,,,,,,,1,2 -225,5,150,495,385,375,0,1140,800,chapter_05_01,bgm_muspelheim_01,303102,0.217,1,1,303202,0.217,1,1,303402,0.217,1,1,306016,0.3,1,2,306045,0.038,1,1,306048,0.011,1,1,,,,,,,,,,,,,,,,,1,2 -226,5,150,566,424,420,0,1147,800,chapter_05_02,bgm_muspelheim_02,303002,0.217,1,1,303102,0.217,1,1,303302,0.217,1,1,306015,0.3,1,2,306045,0.038,1,1,306048,0.011,1,1,,,,,,,,,,,,,,,,,1,2 -227,5,150,637,463,465,0,1154,800,chapter_05_01,bgm_muspelheim_01,303002,0.217,1,1,303102,0.217,1,1,303402,0.217,1,1,306053,0.3,1,2,306045,0.038,1,1,306047,0.011,1,1,,,,,,,,,,,,,,,,,1,2 -228,5,150,708,502,510,0,1152,800,chapter_05_02,bgm_muspelheim_02,303102,0.217,1,1,303302,0.217,1,1,303402,0.217,1,1,306017,0.3,1,2,306045,0.038,1,1,306048,0.011,1,1,,,,,,,,,,,,,,,,,1,2 -229,5,150,779,541,555,0,1156,803,chapter_05_01,bgm_muspelheim_01,303202,0.217,1,1,303302,0.217,1,1,303402,0.217,1,1,306015,0.3,1,2,306045,0.038,1,1,306048,0.011,1,1,,,,,,,,,,,,,,,,,1,2 -230,5,150,850,580,600,0,1160,806,chapter_05_03,bgm_muspelheim_03,303002,0.216,1,1,303102,0.216,1,1,303202,0.216,1,1,306016,0.3,1,2,306045,0.04,1,1,306048,0.012,1,1,,,,,,,,,,,,,,,,,1,2 -231,5,150,850,580,600,0,1164,809,chapter_05_01,bgm_muspelheim_01,303202,0.216,1,1,303302,0.216,1,1,303402,0.216,1,1,306055,0.3,1,2,306045,0.04,1,1,306047,0.012,1,1,,,,,,,,,,,,,,,,,1,2 -232,5,150,850,580,600,0,1168,812,chapter_05_01,bgm_muspelheim_01,303002,0.216,1,1,303202,0.216,1,1,303302,0.216,1,1,306054,0.3,1,2,306045,0.04,1,1,306047,0.012,1,1,,,,,,,,,,,,,,,,,1,2 -233,5,150,850,580,600,0,1086,815,chapter_05_02,bgm_muspelheim_02,303102,0.216,1,1,303202,0.216,1,1,303302,0.216,1,1,306015,0.3,1,2,306045,0.04,1,1,306048,0.012,1,1,,,,,,,,,,,,,,,,,1,2 -234,5,150,850,580,600,0,1110,818,chapter_05_01,bgm_muspelheim_01,303202,0.216,1,1,303302,0.216,1,1,303402,0.216,1,1,306053,0.3,1,2,306045,0.04,1,1,306047,0.012,1,1,,,,,,,,,,,,,,,,,1,2 -235,5,150,850,580,600,0,1164,821,chapter_05_01,bgm_muspelheim_01,303202,0.216,1,1,303302,0.216,1,1,303402,0.216,1,1,306054,0.3,1,2,306045,0.04,1,1,306047,0.012,1,1,,,,,,,,,,,,,,,,,1,2 -236,5,150,850,580,600,0,1278,824,chapter_05_02,bgm_muspelheim_02,303002,0.216,1,1,303102,0.216,1,1,303402,0.216,1,1,306017,0.3,1,2,306045,0.04,1,1,306048,0.012,1,1,,,,,,,,,,,,,,,,,1,2 -237,5,150,850,580,600,0,1190,827,chapter_05_01,bgm_muspelheim_01,303102,0.216,1,1,303202,0.216,1,1,303302,0.216,1,1,306054,0.3,1,2,306045,0.04,1,1,306047,0.012,1,1,,,,,,,,,,,,,,,,,1,2 -238,5,150,850,580,600,0,1214,830,chapter_05_02,bgm_muspelheim_02,303203,0.216,1,1,303302,0.216,1,1,303402,0.216,1,1,306007,0.3,1,2,306045,0.04,1,1,306049,0.012,1,1,,,,,,,,,,,,,,,,,1,2 -239,5,150,850,580,600,0,1131,833,chapter_05_01,bgm_muspelheim_01,303002,0.216,1,1,303102,0.216,1,1,303402,0.216,1,1,306008,0.3,1,2,306045,0.04,1,1,306049,0.012,1,1,,,,,,,,,,,,,,,,,1,2 -240,5,150,855,610,610,0,1276,836,chapter_05_03,bgm_muspelheim_03,303002,0.215,1,1,303302,0.215,1,1,303402,0.215,1,1,306006,0.3,1,2,306045,0.042,1,1,306049,0.013,1,1,,,,,,,,,,,,,,,,,1,2 -241,5,150,894,659,629,0,1346,880,chapter_05_01,bgm_muspelheim_01,303102,0.215,1,1,303302,0.215,1,1,303402,0.215,1,1,306017,0.3,1,2,306045,0.042,1,1,306048,0.013,1,1,,,,,,,,,,,,,,,,,1,2 -242,5,150,928,708,648,0,1280,882,chapter_05_01,bgm_muspelheim_01,303102,0.215,1,1,303203,0.215,1,1,303402,0.215,1,1,306053,0.3,1,2,306045,0.042,1,1,306047,0.013,1,1,,,,,,,,,,,,,,,,,1,2 -243,5,150,962,757,667,0,1346,884,chapter_05_02,bgm_muspelheim_02,303002,0.215,1,1,303302,0.215,1,1,303402,0.215,1,1,306017,0.3,1,2,306045,0.042,1,1,306048,0.013,1,1,,,,,,,,,,,,,,,,,1,2 -244,5,150,996,806,686,0,1307,886,chapter_05_01,bgm_muspelheim_01,303002,0.215,1,1,303102,0.215,1,1,303402,0.215,1,1,306055,0.3,1,2,306045,0.042,1,1,306047,0.013,1,1,,,,,,,,,,,,,,,,,1,2 -245,5,150,1030,855,705,0,1307,888,chapter_05_01,bgm_muspelheim_01,303002,0.215,1,1,303102,0.215,1,1,303203,0.215,1,1,306007,0.3,1,2,306045,0.042,1,1,306049,0.013,1,1,,,,,,,,,,,,,,,,,1,2 -246,5,150,1064,904,724,0,1254,890,chapter_05_02,bgm_muspelheim_02,303303,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 -247,5,150,1098,953,743,0,1293,892,chapter_05_01,bgm_muspelheim_01,303002,0.215,1,1,303102,0.215,1,1,303303,0.215,1,1,306029,0.3,1,2,306045,0.042,1,1,306046,0.013,1,1,,,,,,,,,,,,,,,,,1,2 -248,5,150,1132,1002,762,0,1346,894,chapter_05_02,bgm_muspelheim_02,303002,0.215,1,1,303102,0.215,1,1,303303,0.215,1,1,306031,0.3,1,2,306045,0.042,1,1,306046,0.013,1,1,,,,,,,,,,,,,,,,,1,2 -249,5,150,1166,1051,781,0,1307,896,chapter_05_01,bgm_muspelheim_01,303002,0.215,1,1,303203,0.215,1,1,303303,0.215,1,1,306030,0.3,1,2,306045,0.042,1,1,306046,0.013,1,1,,,,,,,,,,,,,,,,,1,2 -250,5,150,1200,1100,800,0,1400,898,chapter_05_03,bgm_muspelheim_03,303002,0.214,1,1,303102,0.214,1,1,303203,0.214,1,1,306030,0.3,1,2,306045,0.044,1,1,306046,0.014,1,1,,,,,,,,,,,,,,,,,1,2 -251,5,150,550,690,470,0,1540,1540,chapter_06_01,bgm_jotunheim_01,303202,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3 -252,5,150,558,650,472,0,1561,1561,chapter_06_01,bgm_jotunheim_01,303003,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -253,5,150,562,650,473,0,1583,1583,chapter_06_02,bgm_jotunheim_02,303003,0.43,1,2,306055,0.5,3,3,306045,0.05,1,1,306046,0.02,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -254,5,150,566,650,474,0,1604,1604,chapter_06_01,bgm_jotunheim_01,303303,0.43,1,2,306030,0.5,3,3,306045,0.05,1,1,306046,0.02,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -255,5,150,570,650,475,0,1626,1626,chapter_06_01,bgm_jotunheim_01,303403,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -256,5,150,574,650,476,0,1648,1648,chapter_06_02,bgm_jotunheim_02,303403,0.43,1,2,306029,0.5,3,3,306045,0.06,1,2,306046,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -257,5,150,578,650,477,0,1700,1700,chapter_06_01,bgm_jotunheim_01,303203,0.43,1,2,306030,0.5,3,3,306045,0.06,1,2,306046,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -258,5,150,582,650,478,0,1691,1691,chapter_06_02,bgm_jotunheim_02,303203,0.43,1,2,306029,0.5,3,3,306045,0.06,1,2,306046,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -259,5,150,586,650,479,0,1703,1703,chapter_06_01,bgm_jotunheim_01,303103,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -260,5,150,590,650,480,0,1724,1724,chapter_06_03,bgm_jotunheim_03,303103,0.43,1,2,306031,0.5,3,3,306045,0.06,1,2,306046,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -261,5,150,1345,653,493,0,1746,1746,chapter_06_01,bgm_jotunheim_01,303303,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -262,5,150,1361,656,498,0,1767,1767,chapter_06_01,bgm_jotunheim_01,303303,0.43,1,2,306008,0.5,3,3,306045,0.05,1,1,306049,0.02,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -263,5,150,1418,659,503,0,1789,1789,chapter_06_02,bgm_jotunheim_02,303003,0.43,1,2,306031,0.5,3,3,306045,0.05,1,1,306049,0.02,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -264,5,150,1438,662,508,0,1811,1811,chapter_06_01,bgm_jotunheim_01,303003,0.43,1,2,306008,0.5,3,3,306045,0.05,1,1,306049,0.02,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -265,5,150,1349,665,513,0,1932,1932,chapter_06_01,bgm_jotunheim_01,303403,0.43,1,2,306006,0.5,3,3,306045,0.05,1,1,306049,0.02,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -266,5,150,1365,668,518,0,1954,1954,chapter_06_02,bgm_jotunheim_02,303403,0.43,1,2,306007,0.5,3,3,306045,0.05,1,1,306049,0.02,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -267,5,150,1382,671,523,0,1876,1876,chapter_06_01,bgm_jotunheim_01,303203,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -268,5,150,1398,674,528,0,1897,1897,chapter_06_02,bgm_jotunheim_02,303203,0.43,1,2,306006,0.5,3,3,306045,0.06,1,1,306049,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -269,5,150,1414,677,533,0,1919,1919,chapter_06_01,bgm_jotunheim_01,303103,0.43,1,2,306007,0.5,3,3,306045,0.06,1,1,306049,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -270,5,150,610,680,538,0,1941,1941,chapter_06_03,bgm_jotunheim_03,303103,0.43,1,2,306015,0.5,3,3,306045,0.06,1,1,306049,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -271,5,150,769,772,606,0,1962,1962,chapter_06_01,bgm_jotunheim_01,303303,0.43,1,2,306016,0.5,3,3,306045,0.05,1,1,306048,0.02,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -272,5,150,928,864,672,0,1984,1984,chapter_06_01,bgm_jotunheim_01,303303,0.43,1,2,306015,0.5,3,3,306045,0.05,1,1,306048,0.02,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -273,5,150,1087,956,738,0,2005,2005,chapter_06_02,bgm_jotunheim_02,303403,0.43,1,2,306016,0.5,3,3,306045,0.05,1,1,306048,0.02,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -274,5,150,1246,1048,804,0,2027,2027,chapter_06_01,bgm_jotunheim_01,303403,0.43,1,2,306017,0.5,3,3,306045,0.05,1,1,306048,0.02,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -275,5,150,1405,1140,870,0,2049,2049,chapter_06_01,bgm_jotunheim_01,303003,0.43,1,2,306016,0.5,3,3,306045,0.05,1,1,306048,0.02,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -276,5,150,1564,1232,936,0,2070,2070,chapter_06_02,bgm_jotunheim_02,303003,0.43,1,2,306017,0.5,3,3,306045,0.05,1,1,306048,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -277,5,150,1723,1324,1002,0,2092,2092,chapter_06_01,bgm_jotunheim_01,303203,0.43,1,2,306015,0.5,3,3,306045,0.05,1,1,306048,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -278,5,150,1882,1416,1068,0,2114,2114,chapter_06_02,bgm_jotunheim_02,303203,0.43,1,2,306054,0.5,3,3,306045,0.05,1,1,306048,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -279,5,150,2041,1508,1134,0,2135,2135,chapter_06_01,bgm_jotunheim_01,303103,0.43,1,2,306015,0.5,3,3,306045,0.05,1,1,306048,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -280,5,150,2200,1600,1200,0,2157,2157,chapter_06_03,bgm_jotunheim_03,303103,0.43,1,2,306055,0.5,3,3,306045,0.05,1,1,306048,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -281,5,150,2220,1611,1210,0,2178,2178,chapter_06_01,bgm_jotunheim_01,303303,0.43,1,2,306054,0.5,3,3,306045,0.05,1,1,306047,0.02,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -282,5,150,2240,1622,1220,0,2200,2200,chapter_06_01,bgm_jotunheim_01,303303,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3 -283,5,150,2260,1633,1230,0,2222,2222,chapter_06_02,bgm_jotunheim_02,303403,0.43,1,2,306055,0.5,3,3,306045,0.05,1,1,306047,0.02,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -284,5,150,2280,1644,1240,0,2243,2243,chapter_06_01,bgm_jotunheim_01,303403,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3 -285,5,150,2300,1655,1250,0,2265,2265,chapter_06_01,bgm_jotunheim_01,303103,0.43,1,2,306053,0.5,3,3,306045,0.05,1,1,306047,0.02,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -286,5,150,2320,1666,1260,0,2287,2287,chapter_06_02,bgm_jotunheim_02,303103,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3 -287,5,150,2340,1677,1270,0,2308,2308,chapter_06_01,bgm_jotunheim_01,303203,0.43,1,2,306055,0.5,3,3,306045,0.05,1,1,306047,0.02,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -288,5,150,2360,1688,1280,0,2330,2330,chapter_06_02,bgm_jotunheim_02,303203,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3 -289,5,150,2380,1699,1290,0,2352,2352,chapter_06_01,bgm_jotunheim_01,303003,0.43,1,2,306054,0.5,3,3,306045,0.05,1,1,306047,0.02,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -290,5,150,2400,1710,1300,0,2373,2373,chapter_06_03,bgm_jotunheim_03,303003,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3 -291,5,150,2425,1729,1305,0,2395,2395,chapter_06_01,bgm_jotunheim_01,303303,0.43,1,2,306054,0.5,3,3,306045,0.05,1,1,306046,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -292,5,150,2450,1748,1310,0,2416,2416,chapter_06_01,bgm_jotunheim_01,303303,0.43,1,2,306053,0.5,3,3,306045,0.05,1,1,306046,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -293,5,150,2475,1767,1315,0,2438,2438,chapter_06_02,bgm_jotunheim_02,303103,0.43,1,2,306054,0.5,3,3,306045,0.05,1,1,306049,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -294,5,150,2500,1786,1320,0,2460,2460,chapter_06_01,bgm_jotunheim_01,303103,0.43,1,2,306053,0.5,3,3,306045,0.05,1,1,306048,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -295,5,150,2525,1805,1325,0,2481,2481,chapter_06_01,bgm_jotunheim_01,303203,0.43,1,2,306054,0.5,3,3,306045,0.05,1,1,306047,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -296,5,150,2550,1824,1330,0,2503,2503,chapter_06_02,bgm_jotunheim_02,303203,0.43,1,2,306055,0.5,3,3,306045,0.05,1,1,306046,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -297,5,150,2575,1843,1335,0,2525,2525,chapter_06_01,bgm_jotunheim_01,303403,0.43,1,2,306053,0.5,3,3,306045,0.05,1,1,306049,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -298,5,150,2600,1862,1340,0,2346,2346,chapter_06_02,bgm_jotunheim_02,303403,0.43,1,2,306054,0.5,3,3,306045,0.05,1,1,306048,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -299,5,150,2625,1881,1345,0,2503,2503,chapter_06_01,bgm_jotunheim_01,303003,0.43,1,2,306055,0.5,3,3,306045,0.05,1,1,306047,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -300,5,150,2650,1900,1350,0,2525,2525,chapter_06_03,bgm_jotunheim_03,303003,0.75,3,3,306045,0.1,3,3,306046,0.05,1,1,306049,0.05,1,1,306048,0.05,1,1,,,,,,,,,,,,,,,,,,,,,2,3 -301,5,150,1700,1350,200,0,3100,2777,chapter_07_01,bgm_niflheim_01,303004,1,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,4 -302,5,150,1730,1380,206,0,3200,2798,chapter_07_01,bgm_niflheim_01,303004,0.4,1,1,306075,0.45,2,3,306070,0.1,1,1,306071,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 -303,5,150,1745,1395,209,0,3300,2820,chapter_07_02,bgm_niflheim_02,303004,0.4,1,1,306075,0.45,2,3,306070,0.1,1,1,306071,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 -304,5,150,1760,1410,212,0,3400,2841,chapter_07_01,bgm_niflheim_01,303004,0.4,1,1,306075,0.45,2,3,306070,0.1,1,1,306074,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 -305,5,150,1775,1425,215,0,3500,2863,chapter_07_01,bgm_niflheim_01,303004,0.4,1,1,306075,0.45,2,3,306070,0.1,1,1,306074,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 -306,5,150,1790,1440,218,0,3800,2885,chapter_07_02,bgm_niflheim_02,303204,1,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,4 -307,5,150,1805,1455,221,0,4100,2937,chapter_07_01,bgm_niflheim_01,303204,0.4,1,1,306076,0.45,2,3,306070,0.1,1,1,306071,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 -308,5,150,1820,1470,224,0,4400,2928,chapter_07_02,bgm_niflheim_02,303204,0.4,1,1,306076,0.45,2,3,306070,0.1,1,1,306071,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 -309,5,150,1835,1485,227,0,4700,2940,chapter_07_01,bgm_niflheim_01,303204,0.4,1,1,306076,0.45,2,3,306070,0.1,1,1,306074,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 -310,5,150,1850,1500,230,0,5000,2961,chapter_07_03,bgm_niflheim_03,303204,0.4,1,1,306076,0.45,2,3,306070,0.1,1,1,306074,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 -311,5,150,1853,1515,220,0,5300,2883,chapter_07_01,bgm_niflheim_01,303104,1,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,4 -312,5,150,1856,1530,220,0,5600,2904,chapter_07_01,bgm_niflheim_01,303104,0.4,1,1,306077,0.45,2,3,306070,0.1,1,1,306071,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 -313,5,150,1859,1545,220,0,5900,2926,chapter_07_02,bgm_niflheim_02,303104,0.4,1,1,306077,0.45,2,3,306070,0.1,1,1,306071,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 -314,5,150,1862,1560,220,0,6200,2948,chapter_07_01,bgm_niflheim_01,303104,0.4,1,1,306077,0.45,2,3,306070,0.1,1,1,306074,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 -315,5,150,1865,1575,220,0,6500,3200,chapter_07_01,bgm_niflheim_01,303104,0.4,1,1,306077,0.45,2,3,306070,0.1,1,1,306074,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 -316,5,150,1868,1590,220,0,6800,3222,chapter_07_02,bgm_niflheim_02,303304,1,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,4 -317,5,150,1871,1605,220,0,7100,3144,chapter_07_01,bgm_niflheim_01,303304,0.4,1,1,306078,0.45,2,3,306070,0.1,1,1,306071,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 -318,5,150,1874,1620,220,0,7400,3165,chapter_07_02,bgm_niflheim_02,303304,0.4,1,1,306078,0.45,2,3,306070,0.1,1,1,306071,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 -319,5,150,1877,1635,220,0,7700,3187,chapter_07_01,bgm_niflheim_01,303304,0.4,1,1,306078,0.45,2,3,306070,0.1,1,1,306074,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 -320,5,150,1880,1650,220,0,8000,3159,chapter_07_03,bgm_niflheim_03,303304,0.4,1,1,306078,0.45,2,3,306070,0.1,1,1,306074,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 -321,5,150,2047,1805,498,0,8300,3230,chapter_07_01,bgm_niflheim_01,303404,1,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,4 -322,5,150,2214,1960,776,0,8600,3252,chapter_07_01,bgm_niflheim_01,303404,0.4,1,1,306079,0.45,2,3,306070,0.1,1,1,306071,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 -323,5,150,2381,2115,1054,0,8900,3273,chapter_07_02,bgm_niflheim_02,303404,0.4,1,1,306079,0.45,2,3,306070,0.1,1,1,306071,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 -324,5,150,2548,2270,1332,0,9200,3295,chapter_07_01,bgm_niflheim_01,303404,0.4,1,1,306079,0.45,2,3,306070,0.1,1,1,306074,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 -325,5,150,2715,2425,1610,0,9500,3367,chapter_07_01,bgm_niflheim_01,303404,0.4,1,1,306079,0.45,2,3,306070,0.1,1,1,306074,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 -326,5,150,2882,2580,1888,0,10000,3388,chapter_07_02,bgm_niflheim_02,303004,1,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,6 -327,5,150,3049,2735,2166,0,10500,3410,chapter_07_01,bgm_niflheim_01,303204,1,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,6 -328,5,150,3216,2890,2444,0,11000,3432,chapter_07_02,bgm_niflheim_02,303004,0.4,1,1,306080,0.45,3,4,306070,0.1,1,1,306073,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,3,4 -329,5,150,3383,3045,2722,0,11500,3453,chapter_07_01,bgm_niflheim_01,303204,0.4,1,1,306081,0.45,3,4,306070,0.1,1,1,306072,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,3,4 -330,5,150,3550,3200,3000,0,12000,3525,chapter_07_03,bgm_niflheim_03,303004,0.4,1,1,306080,0.45,3,4,306070,0.1,1,1,306072,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,3,4 -331,5,150,3550,3150,3020,0,12100,3546,chapter_07_01,bgm_niflheim_01,303204,0.4,1,1,306081,0.45,3,4,306070,0.1,1,1,306073,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,3,4 -332,5,150,3550,3150,3040,0,12200,3568,chapter_07_01,bgm_niflheim_01,303004,0.4,1,1,306080,0.45,3,4,306070,0.1,1,1,306073,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,3,4 -333,5,150,3550,3150,3060,0,12300,3590,chapter_07_02,bgm_niflheim_02,303204,0.4,1,1,306081,0.45,3,4,306070,0.1,1,1,306072,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,3,4 -334,5,150,3550,3150,3080,0,12400,3611,chapter_07_01,bgm_niflheim_01,303104,1,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,6 -335,5,150,3550,3150,3100,0,12500,3683,chapter_07_01,bgm_niflheim_01,303304,1,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,6 -336,5,150,3550,3150,3120,0,12000,3705,chapter_07_02,bgm_niflheim_02,303104,0.4,1,1,306082,0.45,3,4,306070,0.1,1,1,306073,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,3,4 -337,5,150,3550,3150,3140,0,11500,3726,chapter_07_01,bgm_niflheim_01,303304,0.4,1,1,306083,0.45,3,4,306070,0.1,1,1,306072,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,3,4 -338,5,150,3550,3150,3160,0,11000,3748,chapter_07_02,bgm_niflheim_02,303104,0.4,1,1,306082,0.45,3,4,306070,0.1,1,1,306072,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,3,4 -339,5,150,3550,3150,3180,0,10500,3770,chapter_07_01,bgm_niflheim_01,303304,0.4,1,1,306083,0.45,3,4,306070,0.1,1,1,306073,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,3,4 -340,5,150,3550,3150,3200,0,10000,3841,chapter_07_03,bgm_niflheim_03,303104,0.4,1,1,306082,0.45,3,4,306070,0.1,1,1,306073,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,3,4 -341,5,150,3618,2360,3230,0,10100,3863,chapter_07_01,bgm_niflheim_01,303304,0.4,1,1,306083,0.45,3,4,306070,0.1,1,1,306072,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,3,4 -342,5,150,3686,2570,3260,0,10700,3884,chapter_07_01,bgm_niflheim_01,303404,1,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,6 -343,5,150,3754,2780,3290,0,11300,3906,chapter_07_02,bgm_niflheim_02,303404,0.4,1,1,306084,0.45,3,4,306070,0.1,1,1,306073,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,3,4 -344,5,150,3822,2990,3320,0,11900,3928,chapter_07_01,bgm_niflheim_01,303404,0.4,1,1,306084,0.45,3,4,306070,0.1,1,1,306072,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,3,4 -345,5,150,3890,3200,3350,0,12500,3999,chapter_07_01,bgm_niflheim_01,303404,0.4,1,1,306084,0.45,3,4,306070,0.1,1,1,306072,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,3,4 -346,5,150,3958,3410,3380,0,13500,4400,chapter_07_02,bgm_niflheim_02,303004,0.4,2,3,306070,0.2,1,1,306071,0.1,1,1,306074,0.1,1,1,306073,0.1,1,1,306072,0.1,1,1,306072,0.1,1,1,,,,,,,,,,,,,2,3 -347,5,150,4026,3620,3410,0,14500,4800,chapter_07_01,bgm_niflheim_01,303104,0.4,2,3,306070,0.2,1,1,306071,0.1,1,1,306074,0.1,1,1,306073,0.1,1,1,306072,0.1,1,1,306072,0.1,1,1,,,,,,,,,,,,,2,3 -348,5,150,4094,3830,3440,0,15500,5200,chapter_07_02,bgm_niflheim_02,303204,0.4,2,3,306070,0.2,1,1,306071,0.1,1,1,306074,0.1,1,1,306073,0.1,1,1,306072,0.1,1,1,306072,0.1,1,1,,,,,,,,,,,,,2,3 -349,5,150,4162,4040,3470,0,16000,5600,chapter_07_01,bgm_niflheim_01,303304,0.4,2,3,306070,0.2,1,1,306071,0.1,1,1,306074,0.1,1,1,306073,0.1,1,1,306072,0.1,1,1,306072,0.1,1,1,,,,,,,,,,,,,2,3 -350,5,150,4230,4250,3500,0,16500,6000,chapter_07_03,bgm_niflheim_03,303404,0.4,2,3,306070,0.2,1,1,306071,0.1,1,1,306074,0.1,1,1,306073,0.1,1,1,306072,0.1,1,1,306072,0.1,1,1,,,,,,,,,,,,,2,3 -351,5,150,2500,800,1000,0,10600,4300,chapter_08_01,bgm_hel_01,303005,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2 -352,5,150,2500,800,1000,0,10600,4300,chapter_08_01,bgm_hel_01,303005,0.4,1,1,306090,0.45,2,3,306086,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 -353,5,150,2500,800,1000,0,10600,4300,chapter_08_02,bgm_hel_02,303005,0.4,1,1,306090,0.45,2,3,306086,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 -354,5,150,2500,800,1000,0,10600,4300,chapter_08_01,bgm_hel_01,303005,0.4,1,1,306090,0.45,2,3,306087,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 -355,5,150,2500,800,1000,0,10600,4300,chapter_08_01,bgm_hel_01,303005,0.4,1,1,306090,0.45,2,3,306087,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 -356,5,150,3020,1140,2000,0,11780,4300,chapter_08_02,bgm_hel_02,303205,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2 -357,5,150,3540,1480,3000,0,12960,4300,chapter_08_01,bgm_hel_01,303205,0.4,1,1,306092,0.45,2,3,306087,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 -358,5,150,4060,1820,4000,0,14140,4300,chapter_08_02,bgm_hel_02,303205,0.4,1,1,306092,0.45,2,3,306087,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 -359,5,150,4580,2160,5000,0,15320,4300,chapter_08_01,bgm_hel_01,303205,0.4,1,1,306092,0.45,2,3,306086,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 -360,5,150,5100,2500,6000,0,16500,4300,chapter_08_03,bgm_hel_03,303205,0.4,1,1,306092,0.45,2,3,306086,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 -361,5,150,5180,2550,6050,0,16750,4470,chapter_08_01,bgm_hel_01,303105,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2 -362,5,150,5260,2600,6100,0,17000,4640,chapter_08_01,bgm_hel_01,303105,0.4,1,1,306091,0.45,2,3,306086,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 -363,5,150,5340,2650,6150,0,17250,4810,chapter_08_02,bgm_hel_02,303105,0.4,1,1,306091,0.45,2,3,306086,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 -364,5,150,5420,2700,6200,0,17500,4980,chapter_08_01,bgm_hel_01,303105,0.4,1,1,306091,0.45,2,3,306087,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 -365,5,150,5500,2750,6250,0,17750,5150,chapter_08_01,bgm_hel_01,303105,0.4,1,1,306091,0.45,2,3,306087,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 -366,5,150,5580,2800,6300,0,18000,5320,chapter_08_02,bgm_hel_02,303305,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2 -367,5,150,5660,2850,6350,0,18250,5490,chapter_08_01,bgm_hel_01,303305,0.4,1,1,306093,0.45,2,3,306087,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 -368,5,150,5740,2900,6400,0,18500,5660,chapter_08_02,bgm_hel_02,303305,0.4,1,1,306093,0.45,2,3,306087,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 -369,5,150,5820,2950,6450,0,18750,5830,chapter_08_01,bgm_hel_01,303305,0.4,1,1,306093,0.45,2,3,306086,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 -370,5,150,5900,3000,6500,0,19000,6000,chapter_08_03,bgm_hel_03,303305,0.4,1,1,306093,0.45,2,3,306086,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 -371,5,150,5990,3190,6550,0,20630,6000,chapter_08_01,bgm_hel_01,303405,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2 -372,5,150,6080,3380,6600,0,22260,6000,chapter_08_01,bgm_hel_01,303405,0.4,1,1,306094,0.45,2,3,306086,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 -373,5,150,6170,3570,6650,0,23890,6000,chapter_08_02,bgm_hel_02,303405,0.4,1,1,306094,0.45,2,3,306086,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 -374,5,150,6260,3760,6700,0,25520,6000,chapter_08_01,bgm_hel_01,303405,0.4,1,1,306094,0.45,2,3,306087,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 -375,5,150,6350,3950,6750,0,27150,6000,chapter_08_01,bgm_hel_01,303405,0.4,1,1,306094,0.45,2,3,306087,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 -376,5,150,6440,4140,6800,0,28780,6000,chapter_08_02,bgm_hel_02,303005,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,3 -377,5,150,6530,4330,6850,0,30410,6000,chapter_08_01,bgm_hel_01,303205,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,3 -378,5,150,6620,4520,6900,0,32040,6000,chapter_08_02,bgm_hel_02,303005,0.4,1,1,306095,0.45,3,4,306097,0.45,1,1,306085,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -379,5,150,6710,4710,6950,0,33670,6000,chapter_08_01,bgm_hel_01,303005,0.4,1,1,306095,0.45,3,4,306097,0.1,1,1,306085,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -380,5,150,6800,4900,7000,0,35300,6000,chapter_08_03,bgm_hel_03,303205,0.4,1,1,306097,0.45,3,4,306095,0.1,1,1,306088,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -381,5,150,7720,6780,6800,0,39520,6300,chapter_08_01,bgm_hel_01,303105,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,3 -382,5,150,8640,8660,7600,0,43740,7100,chapter_08_01,bgm_hel_01,303305,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,3 -383,5,150,9560,10540,8400,0,47960,7900,chapter_08_02,bgm_hel_02,303105,0.4,1,1,306096,0.45,3,4,306098,0.1,1,1,306088,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -384,5,150,10480,12420,9200,0,52180,8700,chapter_08_01,bgm_hel_01,303105,0.4,1,1,306096,0.45,3,4,306098,0.1,1,1,306088,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -385,5,150,11400,14300,10000,0,56400,9500,chapter_08_01,bgm_hel_01,303305,0.4,1,1,306098,0.45,3,4,306096,0.1,1,1,306085,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -386,5,150,12320,16180,10800,0,60620,10300,chapter_08_02,bgm_hel_02,303405,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,3 -387,5,150,13240,18060,11600,0,64840,11100,chapter_08_01,bgm_hel_01,303405,0.4,1,1,306099,0.45,3,4,306085,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -388,5,150,14160,19940,12400,0,69060,11900,chapter_08_02,bgm_hel_02,303405,0.4,1,1,306099,0.45,3,4,306085,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -389,5,150,15080,21820,13200,0,73280,12700,chapter_08_01,bgm_hel_01,303405,0.4,1,1,306099,0.45,3,4,306088,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -390,5,150,16000,23700,14000,0,77500,13500,chapter_08_03,bgm_hel_03,303405,0.4,1,1,306099,0.45,3,4,306088,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -391,5,150,16830,24450,14720,0,85250,13900,chapter_08_01,bgm_hel_01,303205,0.4,1,2,306092,0.3,1,2,306097,0.3,1,2,306089,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -392,5,150,17660,25200,15440,0,93000,14800,chapter_08_01,bgm_hel_01,303205,0.4,1,2,306092,0.3,1,2,306097,0.3,1,2,306089,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -393,5,150,18490,25950,16160,0,100750,15700,chapter_08_02,bgm_hel_02,303305,0.4,1,2,306093,0.3,1,2,306098,0.3,1,2,306089,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -394,5,150,19320,26700,16880,0,108500,16600,chapter_08_01,bgm_hel_01,303305,0.4,1,2,306093,0.3,1,2,306098,0.3,1,2,306089,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -395,5,150,20150,27450,17600,0,116250,17500,chapter_08_01,bgm_hel_01,303405,0.4,1,2,306094,0.3,1,2,306099,0.3,1,2,306089,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -396,5,150,20980,28200,18320,0,124000,18400,chapter_08_02,bgm_hel_02,303405,0.4,1,2,306094,0.3,1,2,306099,0.3,1,2,306089,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -397,5,150,21810,28950,19040,0,131750,19300,chapter_08_01,bgm_hel_01,303105,0.4,1,2,306091,0.3,1,2,306096,0.3,1,2,306089,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -398,5,150,22640,29700,19760,0,139500,20200,chapter_08_02,bgm_hel_02,303105,0.4,1,2,306091,0.3,1,2,306096,0.3,1,2,306089,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -399,5,150,23470,30450,20480,0,147250,21100,chapter_08_01,bgm_hel_01,303005,0.4,1,2,306090,0.3,1,2,306095,0.3,1,2,306089,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 -400,5,150,24300,31200,21200,0,155000,22000,chapter_08_03,bgm_hel_03,303005,0.4,1,2,306090,0.3,1,2,306095,0.3,1,2,306089,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +201,5,150,108,198,135,0,432,360,chapter_05_01,bgm_muspelheim_01,303002,0.223,1,1,303102,0.223,1,1,303201,0.223,1,1,306017,0.3,1,2,306045,0.024,1,1,306048,0.007,1,1,,,,,,,,,,,,,,,,,1,2 +202,5,150,109,198,135,0,474,395,chapter_05_01,bgm_muspelheim_01,303102,0.223,1,1,303301,0.223,1,1,303401,0.223,1,1,306015,0.3,1,2,306045,0.024,1,1,306048,0.007,1,1,,,,,,,,,,,,,,,,,1,2 +203,5,150,109,194,135,0,630,382,chapter_05_02,bgm_muspelheim_02,303102,0.223,1,1,303201,0.223,1,1,303301,0.223,1,1,306055,0.3,1,2,306045,0.024,1,1,306047,0.007,1,1,,,,,,,,,,,,,,,,,1,2 +204,5,150,110,194,135,0,616,513,chapter_05_01,bgm_muspelheim_01,303002,0.223,1,1,303201,0.223,1,1,303301,0.223,1,1,306055,0.3,1,2,306045,0.024,1,1,306047,0.007,1,1,,,,,,,,,,,,,,,,,1,2 +205,5,150,110,189,135,0,602,501,chapter_05_01,bgm_muspelheim_01,303002,0.223,1,1,303201,0.223,1,1,303401,0.223,1,1,306016,0.3,1,2,306045,0.024,1,1,306048,0.007,1,1,,,,,,,,,,,,,,,,,1,2 +206,5,150,111,189,135,0,635,529,chapter_05_02,bgm_muspelheim_02,303002,0.223,1,1,303301,0.223,1,1,303401,0.223,1,1,306017,0.3,1,2,306045,0.024,1,1,306048,0.007,1,1,,,,,,,,,,,,,,,,,1,2 +207,5,150,111,185,135,0,662,552,chapter_05_01,bgm_muspelheim_01,303201,0.223,1,1,303301,0.223,1,1,303401,0.223,1,1,306053,0.3,1,2,306045,0.024,1,1,306047,0.007,1,1,,,,,,,,,,,,,,,,,1,2 +208,5,150,112,185,135,0,747,623,chapter_05_02,bgm_muspelheim_02,303102,0.223,1,1,303301,0.223,1,1,303401,0.223,1,1,306055,0.3,1,2,306045,0.024,1,1,306047,0.007,1,1,,,,,,,,,,,,,,,,,1,2 +209,5,150,112,180,135,0,643,536,chapter_05_01,bgm_muspelheim_01,303002,0.223,1,1,303102,0.223,1,1,303301,0.223,1,1,306015,0.3,1,2,306045,0.024,1,1,306048,0.007,1,1,,,,,,,,,,,,,,,,,1,2 +210,5,150,113,180,135,0,714,594,chapter_05_03,bgm_muspelheim_03,303002,0.22,1,1,303102,0.22,1,1,303201,0.22,1,1,306054,0.3,1,2,306045,0.03,1,1,306047,0.01,1,1,,,,,,,,,,,,,,,,,1,2 +211,5,150,110,171,135,0,752,626,chapter_05_01,bgm_muspelheim_01,303102,0.22,1,1,303201,0.22,1,1,303401,0.22,1,1,306055,0.3,1,2,306045,0.03,1,1,306047,0.01,1,1,,,,,,,,,,,,,,,,,1,2 +212,5,150,112,171,135,0,765,582,chapter_05_01,bgm_muspelheim_01,303002,0.22,1,1,303201,0.22,1,1,303302,0.22,1,1,306016,0.3,1,2,306045,0.03,1,1,306048,0.01,1,1,,,,,,,,,,,,,,,,,1,2 +213,5,150,114,171,135,0,810,592,chapter_05_02,bgm_muspelheim_02,303002,0.22,1,1,303102,0.22,1,1,303401,0.22,1,1,306016,0.3,1,2,306045,0.03,1,1,306048,0.01,1,1,,,,,,,,,,,,,,,,,1,2 +214,5,150,116,171,135,0,792,578,chapter_05_01,bgm_muspelheim_01,303102,0.22,1,1,303302,0.22,1,1,303401,0.22,1,1,306054,0.3,1,2,306045,0.03,1,1,306047,0.01,1,1,,,,,,,,,,,,,,,,,1,2 +215,5,150,117,171,135,0,774,575,chapter_05_01,bgm_muspelheim_01,303201,0.22,1,1,303302,0.22,1,1,303401,0.22,1,1,306015,0.3,1,2,306045,0.03,1,1,306048,0.01,1,1,,,,,,,,,,,,,,,,,1,2 +216,5,150,119,171,135,0,810,601,chapter_05_02,bgm_muspelheim_02,303102,0.218,1,1,303202,0.218,1,1,303401,0.218,1,1,306016,0.3,1,2,306045,0.036,1,1,306048,0.01,1,1,,,,,,,,,,,,,,,,,1,2 +217,5,150,121,171,135,0,855,644,chapter_05_01,bgm_muspelheim_01,303102,0.218,1,1,303202,0.218,1,1,303302,0.218,1,1,306054,0.3,1,2,306045,0.036,1,1,306047,0.01,1,1,,,,,,,,,,,,,,,,,1,2 +218,5,150,123,171,135,0,828,612,chapter_05_02,bgm_muspelheim_02,303002,0.218,1,1,303302,0.218,1,1,303401,0.218,1,1,306017,0.3,1,2,306045,0.036,1,1,306048,0.01,1,1,,,,,,,,,,,,,,,,,1,2 +219,5,150,125,171,135,0,855,639,chapter_05_01,bgm_muspelheim_01,303002,0.218,1,1,303202,0.218,1,1,303401,0.218,1,1,306053,0.3,1,2,306045,0.036,1,1,306047,0.01,1,1,,,,,,,,,,,,,,,,,1,2 +220,5,150,126,171,135,0,810,648,chapter_05_03,bgm_muspelheim_03,303002,0.217,1,1,303102,0.217,1,1,303202,0.217,1,1,306017,0.3,1,2,306045,0.038,1,1,306048,0.011,1,1,,,,,,,,,,,,,,,,,1,2 +221,5,150,190,207,176,0,813,666,chapter_05_01,bgm_muspelheim_01,303202,0.217,1,1,303302,0.217,1,1,303401,0.217,1,1,306017,0.3,1,2,306045,0.038,1,1,306048,0.011,1,1,,,,,,,,,,,,,,,,,1,2 +222,5,150,254,242,216,0,890,684,chapter_05_01,bgm_muspelheim_01,303102,0.217,1,1,303302,0.217,1,1,303401,0.217,1,1,306015,0.3,1,2,306045,0.038,1,1,306048,0.011,1,1,,,,,,,,,,,,,,,,,1,2 +223,5,150,318,277,257,0,997,702,chapter_05_02,bgm_muspelheim_02,303002,0.217,1,1,303202,0.217,1,1,303302,0.217,1,1,306055,0.3,1,2,306045,0.038,1,1,306047,0.011,1,1,,,,,,,,,,,,,,,,,1,2 +224,5,150,382,312,297,0,1020,720,chapter_05_01,bgm_muspelheim_01,303002,0.217,1,1,303202,0.217,1,1,303302,0.217,1,1,306016,0.3,1,2,306045,0.038,1,1,306048,0.011,1,1,,,,,,,,,,,,,,,,,1,2 +225,5,150,446,347,338,0,1026,720,chapter_05_01,bgm_muspelheim_01,303102,0.217,1,1,303202,0.217,1,1,303402,0.217,1,1,306016,0.3,1,2,306045,0.038,1,1,306048,0.011,1,1,,,,,,,,,,,,,,,,,1,2 +226,5,150,510,382,378,0,1033,720,chapter_05_02,bgm_muspelheim_02,303002,0.217,1,1,303102,0.217,1,1,303302,0.217,1,1,306015,0.3,1,2,306045,0.038,1,1,306048,0.011,1,1,,,,,,,,,,,,,,,,,1,2 +227,5,150,574,417,419,0,1039,720,chapter_05_01,bgm_muspelheim_01,303002,0.217,1,1,303102,0.217,1,1,303402,0.217,1,1,306053,0.3,1,2,306045,0.038,1,1,306047,0.011,1,1,,,,,,,,,,,,,,,,,1,2 +228,5,150,638,452,459,0,1037,720,chapter_05_02,bgm_muspelheim_02,303102,0.217,1,1,303302,0.217,1,1,303402,0.217,1,1,306017,0.3,1,2,306045,0.038,1,1,306048,0.011,1,1,,,,,,,,,,,,,,,,,1,2 +229,5,150,702,487,500,0,1041,723,chapter_05_01,bgm_muspelheim_01,303202,0.217,1,1,303302,0.217,1,1,303402,0.217,1,1,306015,0.3,1,2,306045,0.038,1,1,306048,0.011,1,1,,,,,,,,,,,,,,,,,1,2 +230,5,150,765,522,540,0,1044,726,chapter_05_03,bgm_muspelheim_03,303002,0.216,1,1,303102,0.216,1,1,303202,0.216,1,1,306016,0.3,1,2,306045,0.04,1,1,306048,0.012,1,1,,,,,,,,,,,,,,,,,1,2 +231,5,150,765,522,540,0,1048,729,chapter_05_01,bgm_muspelheim_01,303202,0.216,1,1,303302,0.216,1,1,303402,0.216,1,1,306055,0.3,1,2,306045,0.04,1,1,306047,0.012,1,1,,,,,,,,,,,,,,,,,1,2 +232,5,150,765,522,540,0,1052,731,chapter_05_01,bgm_muspelheim_01,303002,0.216,1,1,303202,0.216,1,1,303302,0.216,1,1,306054,0.3,1,2,306045,0.04,1,1,306047,0.012,1,1,,,,,,,,,,,,,,,,,1,2 +233,5,150,765,522,540,0,978,734,chapter_05_02,bgm_muspelheim_02,303102,0.216,1,1,303202,0.216,1,1,303302,0.216,1,1,306015,0.3,1,2,306045,0.04,1,1,306048,0.012,1,1,,,,,,,,,,,,,,,,,1,2 +234,5,150,765,522,540,0,999,737,chapter_05_01,bgm_muspelheim_01,303202,0.216,1,1,303302,0.216,1,1,303402,0.216,1,1,306053,0.3,1,2,306045,0.04,1,1,306047,0.012,1,1,,,,,,,,,,,,,,,,,1,2 +235,5,150,765,522,540,0,1048,739,chapter_05_01,bgm_muspelheim_01,303202,0.216,1,1,303302,0.216,1,1,303402,0.216,1,1,306054,0.3,1,2,306045,0.04,1,1,306047,0.012,1,1,,,,,,,,,,,,,,,,,1,2 +236,5,150,765,522,540,0,1151,742,chapter_05_02,bgm_muspelheim_02,303002,0.216,1,1,303102,0.216,1,1,303402,0.216,1,1,306017,0.3,1,2,306045,0.04,1,1,306048,0.012,1,1,,,,,,,,,,,,,,,,,1,2 +237,5,150,765,522,540,0,1071,745,chapter_05_01,bgm_muspelheim_01,303102,0.216,1,1,303202,0.216,1,1,303302,0.216,1,1,306054,0.3,1,2,306045,0.04,1,1,306047,0.012,1,1,,,,,,,,,,,,,,,,,1,2 +238,5,150,765,522,540,0,1093,747,chapter_05_02,bgm_muspelheim_02,303203,0.216,1,1,303302,0.216,1,1,303402,0.216,1,1,306007,0.3,1,2,306045,0.04,1,1,306049,0.012,1,1,,,,,,,,,,,,,,,,,1,2 +239,5,150,765,522,540,0,1018,750,chapter_05_01,bgm_muspelheim_01,303002,0.216,1,1,303102,0.216,1,1,303402,0.216,1,1,306008,0.3,1,2,306045,0.04,1,1,306049,0.012,1,1,,,,,,,,,,,,,,,,,1,2 +240,5,150,770,549,549,0,1149,753,chapter_05_03,bgm_muspelheim_03,303002,0.215,1,1,303302,0.215,1,1,303402,0.215,1,1,306006,0.3,1,2,306045,0.042,1,1,306049,0.013,1,1,,,,,,,,,,,,,,,,,1,2 +241,5,150,805,594,567,0,1212,792,chapter_05_01,bgm_muspelheim_01,303102,0.215,1,1,303302,0.215,1,1,303402,0.215,1,1,306017,0.3,1,2,306045,0.042,1,1,306048,0.013,1,1,,,,,,,,,,,,,,,,,1,2 +242,5,150,836,638,584,0,1152,794,chapter_05_01,bgm_muspelheim_01,303102,0.215,1,1,303203,0.215,1,1,303402,0.215,1,1,306053,0.3,1,2,306045,0.042,1,1,306047,0.013,1,1,,,,,,,,,,,,,,,,,1,2 +243,5,150,866,682,601,0,1212,796,chapter_05_02,bgm_muspelheim_02,303002,0.215,1,1,303302,0.215,1,1,303402,0.215,1,1,306017,0.3,1,2,306045,0.042,1,1,306048,0.013,1,1,,,,,,,,,,,,,,,,,1,2 +244,5,150,897,726,618,0,1177,798,chapter_05_01,bgm_muspelheim_01,303002,0.215,1,1,303102,0.215,1,1,303402,0.215,1,1,306055,0.3,1,2,306045,0.042,1,1,306047,0.013,1,1,,,,,,,,,,,,,,,,,1,2 +245,5,150,927,770,635,0,1177,800,chapter_05_01,bgm_muspelheim_01,303002,0.215,1,1,303102,0.215,1,1,303203,0.215,1,1,306007,0.3,1,2,306045,0.042,1,1,306049,0.013,1,1,,,,,,,,,,,,,,,,,1,2 +246,5,150,958,814,652,0,1129,801,chapter_05_02,bgm_muspelheim_02,303303,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 +247,5,150,989,858,669,0,1164,803,chapter_05_01,bgm_muspelheim_01,303002,0.215,1,1,303102,0.215,1,1,303303,0.215,1,1,306029,0.3,1,2,306045,0.042,1,1,306046,0.013,1,1,,,,,,,,,,,,,,,,,1,2 +248,5,150,1019,902,686,0,1212,805,chapter_05_02,bgm_muspelheim_02,303002,0.215,1,1,303102,0.215,1,1,303303,0.215,1,1,306031,0.3,1,2,306045,0.042,1,1,306046,0.013,1,1,,,,,,,,,,,,,,,,,1,2 +249,5,150,1050,946,703,0,1177,807,chapter_05_01,bgm_muspelheim_01,303002,0.215,1,1,303203,0.215,1,1,303303,0.215,1,1,306030,0.3,1,2,306045,0.042,1,1,306046,0.013,1,1,,,,,,,,,,,,,,,,,1,2 +250,5,150,1080,990,720,0,1260,809,chapter_05_03,bgm_muspelheim_03,303002,0.214,1,1,303102,0.214,1,1,303203,0.214,1,1,306030,0.3,1,2,306045,0.044,1,1,306046,0.014,1,1,,,,,,,,,,,,,,,,,1,2 +251,5,150,446,559,381,0,1248,1248,chapter_06_01,bgm_jotunheim_01,303202,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3 +252,5,150,453,527,383,0,1265,1265,chapter_06_01,bgm_jotunheim_01,303003,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +253,5,150,456,527,384,0,1283,1283,chapter_06_02,bgm_jotunheim_02,303003,0.43,1,2,306055,0.5,3,3,306045,0.05,1,1,306046,0.02,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +254,5,150,459,527,385,0,1300,1300,chapter_06_01,bgm_jotunheim_01,303303,0.43,1,2,306030,0.5,3,3,306045,0.05,1,1,306046,0.02,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +255,5,150,462,527,386,0,1318,1318,chapter_06_01,bgm_jotunheim_01,303403,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +256,5,150,466,527,387,0,1336,1336,chapter_06_02,bgm_jotunheim_02,303403,0.43,1,2,306029,0.5,3,3,306045,0.06,1,2,306046,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +257,5,150,469,527,387,0,1377,1377,chapter_06_01,bgm_jotunheim_01,303203,0.43,1,2,306030,0.5,3,3,306045,0.06,1,2,306046,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +258,5,150,472,527,388,0,1370,1370,chapter_06_02,bgm_jotunheim_02,303203,0.43,1,2,306029,0.5,3,3,306045,0.06,1,2,306046,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +259,5,150,476,527,389,0,1380,1380,chapter_06_01,bgm_jotunheim_01,303103,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +260,5,150,478,527,389,0,1397,1397,chapter_06_03,bgm_jotunheim_03,303103,0.43,1,2,306031,0.5,3,3,306045,0.06,1,2,306046,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +261,5,150,1090,530,400,0,1415,1415,chapter_06_01,bgm_jotunheim_01,303303,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +262,5,150,1103,532,405,0,1432,1432,chapter_06_01,bgm_jotunheim_01,303303,0.43,1,2,306008,0.5,3,3,306045,0.05,1,1,306049,0.02,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +263,5,150,1150,535,408,0,1450,1450,chapter_06_02,bgm_jotunheim_02,303003,0.43,1,2,306031,0.5,3,3,306045,0.05,1,1,306049,0.02,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +264,5,150,1166,537,413,0,1467,1467,chapter_06_01,bgm_jotunheim_01,303003,0.43,1,2,306008,0.5,3,3,306045,0.05,1,1,306049,0.02,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +265,5,150,1094,540,416,0,1566,1566,chapter_06_01,bgm_jotunheim_01,303403,0.43,1,2,306006,0.5,3,3,306045,0.05,1,1,306049,0.02,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +266,5,150,1107,542,421,0,1584,1584,chapter_06_02,bgm_jotunheim_02,303403,0.43,1,2,306007,0.5,3,3,306045,0.05,1,1,306049,0.02,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +267,5,150,1120,544,424,0,1521,1521,chapter_06_01,bgm_jotunheim_01,303203,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +268,5,150,1134,547,429,0,1538,1538,chapter_06_02,bgm_jotunheim_02,303203,0.43,1,2,306006,0.5,3,3,306045,0.06,1,1,306049,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +269,5,150,1146,549,432,0,1556,1556,chapter_06_01,bgm_jotunheim_01,303103,0.43,1,2,306007,0.5,3,3,306045,0.06,1,1,306049,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +270,5,150,495,551,437,0,1573,1573,chapter_06_03,bgm_jotunheim_03,303103,0.43,1,2,306015,0.5,3,3,306045,0.06,1,1,306049,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +271,5,150,624,626,492,0,1590,1590,chapter_06_01,bgm_jotunheim_01,303303,0.43,1,2,306016,0.5,3,3,306045,0.05,1,1,306048,0.02,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +272,5,150,753,701,545,0,1608,1608,chapter_06_01,bgm_jotunheim_01,303303,0.43,1,2,306015,0.5,3,3,306045,0.05,1,1,306048,0.02,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +273,5,150,882,775,599,0,1625,1625,chapter_06_02,bgm_jotunheim_02,303403,0.43,1,2,306016,0.5,3,3,306045,0.05,1,1,306048,0.02,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +274,5,150,1010,850,652,0,1643,1643,chapter_06_01,bgm_jotunheim_01,303403,0.43,1,2,306017,0.5,3,3,306045,0.05,1,1,306048,0.02,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +275,5,150,1139,924,705,0,1661,1661,chapter_06_01,bgm_jotunheim_01,303003,0.43,1,2,306016,0.5,3,3,306045,0.05,1,1,306048,0.02,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +276,5,150,1268,999,759,0,1677,1677,chapter_06_02,bgm_jotunheim_02,303003,0.43,1,2,306017,0.5,3,3,306045,0.05,1,1,306048,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +277,5,150,1396,1073,812,0,1695,1695,chapter_06_01,bgm_jotunheim_01,303203,0.43,1,2,306015,0.5,3,3,306045,0.05,1,1,306048,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +278,5,150,1525,1148,866,0,1713,1713,chapter_06_02,bgm_jotunheim_02,303203,0.43,1,2,306054,0.5,3,3,306045,0.05,1,1,306048,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +279,5,150,1654,1223,919,0,1730,1730,chapter_06_01,bgm_jotunheim_01,303103,0.43,1,2,306015,0.5,3,3,306045,0.05,1,1,306048,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +280,5,150,1782,1296,972,0,1748,1748,chapter_06_03,bgm_jotunheim_03,303103,0.43,1,2,306055,0.5,3,3,306045,0.05,1,1,306048,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +281,5,150,1799,1305,981,0,1765,1765,chapter_06_01,bgm_jotunheim_01,303303,0.43,1,2,306054,0.5,3,3,306045,0.05,1,1,306047,0.02,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +282,5,150,1815,1314,989,0,1782,1782,chapter_06_01,bgm_jotunheim_01,303303,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3 +283,5,150,1831,1323,997,0,1800,1800,chapter_06_02,bgm_jotunheim_02,303403,0.43,1,2,306055,0.5,3,3,306045,0.05,1,1,306047,0.02,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +284,5,150,1847,1332,1005,0,1818,1818,chapter_06_01,bgm_jotunheim_01,303403,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3 +285,5,150,1863,1341,1013,0,1836,1836,chapter_06_01,bgm_jotunheim_01,303103,0.43,1,2,306053,0.5,3,3,306045,0.05,1,1,306047,0.02,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +286,5,150,1880,1350,1021,0,1854,1854,chapter_06_02,bgm_jotunheim_02,303103,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3 +287,5,150,1896,1359,1029,0,1871,1871,chapter_06_01,bgm_jotunheim_01,303203,0.43,1,2,306055,0.5,3,3,306045,0.05,1,1,306047,0.02,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +288,5,150,1912,1368,1037,0,1888,1888,chapter_06_02,bgm_jotunheim_02,303203,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3 +289,5,150,1928,1377,1045,0,1906,1906,chapter_06_01,bgm_jotunheim_01,303003,0.43,1,2,306054,0.5,3,3,306045,0.05,1,1,306047,0.02,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +290,5,150,1944,1386,1053,0,1923,1923,chapter_06_03,bgm_jotunheim_03,303003,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3 +291,5,150,1965,1402,1058,0,1941,1941,chapter_06_01,bgm_jotunheim_01,303303,0.43,1,2,306054,0.5,3,3,306045,0.05,1,1,306046,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +292,5,150,1985,1417,1062,0,1958,1958,chapter_06_01,bgm_jotunheim_01,303303,0.43,1,2,306053,0.5,3,3,306045,0.05,1,1,306046,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +293,5,150,2006,1432,1066,0,1976,1976,chapter_06_02,bgm_jotunheim_02,303103,0.43,1,2,306054,0.5,3,3,306045,0.05,1,1,306049,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +294,5,150,2025,1448,1070,0,1993,1993,chapter_06_01,bgm_jotunheim_01,303103,0.43,1,2,306053,0.5,3,3,306045,0.05,1,1,306048,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +295,5,150,2046,1463,1074,0,2010,2010,chapter_06_01,bgm_jotunheim_01,303203,0.43,1,2,306054,0.5,3,3,306045,0.05,1,1,306047,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +296,5,150,2066,1478,1078,0,2028,2028,chapter_06_02,bgm_jotunheim_02,303203,0.43,1,2,306055,0.5,3,3,306045,0.05,1,1,306046,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +297,5,150,2087,1494,1082,0,2046,2046,chapter_06_01,bgm_jotunheim_01,303403,0.43,1,2,306053,0.5,3,3,306045,0.05,1,1,306049,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +298,5,150,2106,1509,1086,0,1901,1901,chapter_06_02,bgm_jotunheim_02,303403,0.43,1,2,306054,0.5,3,3,306045,0.05,1,1,306048,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +299,5,150,2127,1524,1090,0,2028,2028,chapter_06_01,bgm_jotunheim_01,303003,0.43,1,2,306055,0.5,3,3,306045,0.05,1,1,306047,0.03,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +300,5,150,2147,1539,1094,0,2046,2046,chapter_06_03,bgm_jotunheim_03,303003,0.75,3,3,306045,0.1,3,3,306046,0.05,1,1,306049,0.05,1,1,306048,0.05,1,1,,,,,,,,,,,,,,,,,,,,,2,3 +301,5,150,1101,875,129,0,2008,1800,chapter_07_01,bgm_niflheim_01,303004,1,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,4 +302,5,150,1121,894,134,0,2073,1814,chapter_07_01,bgm_niflheim_01,303004,0.4,1,1,306075,0.45,2,3,306070,0.1,1,1,306071,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 +303,5,150,1131,904,136,0,2138,1828,chapter_07_02,bgm_niflheim_02,303004,0.4,1,1,306075,0.45,2,3,306070,0.1,1,1,306071,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 +304,5,150,1140,914,137,0,2203,1841,chapter_07_01,bgm_niflheim_01,303004,0.4,1,1,306075,0.45,2,3,306070,0.1,1,1,306074,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 +305,5,150,1151,924,140,0,2268,1856,chapter_07_01,bgm_niflheim_01,303004,0.4,1,1,306075,0.45,2,3,306070,0.1,1,1,306074,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 +306,5,150,1160,933,142,0,2462,1870,chapter_07_02,bgm_niflheim_02,303204,1,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,4 +307,5,150,1170,943,144,0,2656,1904,chapter_07_01,bgm_niflheim_01,303204,0.4,1,1,306076,0.45,2,3,306070,0.1,1,1,306071,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 +308,5,150,1180,952,145,0,2851,1898,chapter_07_02,bgm_niflheim_02,303204,0.4,1,1,306076,0.45,2,3,306070,0.1,1,1,306071,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 +309,5,150,1189,963,148,0,3045,1905,chapter_07_01,bgm_niflheim_01,303204,0.4,1,1,306076,0.45,2,3,306070,0.1,1,1,306074,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 +310,5,150,1199,972,149,0,3240,1919,chapter_07_03,bgm_niflheim_03,303204,0.4,1,1,306076,0.45,2,3,306070,0.1,1,1,306074,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 +311,5,150,1201,982,143,0,3434,1868,chapter_07_01,bgm_niflheim_01,303104,1,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,4 +312,5,150,1203,992,143,0,3628,1882,chapter_07_01,bgm_niflheim_01,303104,0.4,1,1,306077,0.45,2,3,306070,0.1,1,1,306071,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 +313,5,150,1205,1001,143,0,3823,1896,chapter_07_02,bgm_niflheim_02,303104,0.4,1,1,306077,0.45,2,3,306070,0.1,1,1,306071,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 +314,5,150,1207,1011,143,0,4017,1911,chapter_07_01,bgm_niflheim_01,303104,0.4,1,1,306077,0.45,2,3,306070,0.1,1,1,306074,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 +315,5,150,1209,1021,143,0,4212,2073,chapter_07_01,bgm_niflheim_01,303104,0.4,1,1,306077,0.45,2,3,306070,0.1,1,1,306074,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 +316,5,150,1211,1030,143,0,4406,2088,chapter_07_02,bgm_niflheim_02,303304,1,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,4 +317,5,150,1212,1040,143,0,4600,2037,chapter_07_01,bgm_niflheim_01,303304,0.4,1,1,306078,0.45,2,3,306070,0.1,1,1,306071,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 +318,5,150,1215,1050,143,0,4795,2052,chapter_07_02,bgm_niflheim_02,303304,0.4,1,1,306078,0.45,2,3,306070,0.1,1,1,306071,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 +319,5,150,1216,1060,143,0,4989,2066,chapter_07_01,bgm_niflheim_01,303304,0.4,1,1,306078,0.45,2,3,306070,0.1,1,1,306074,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 +320,5,150,1218,1069,143,0,5184,2048,chapter_07_03,bgm_niflheim_03,303304,0.4,1,1,306078,0.45,2,3,306070,0.1,1,1,306074,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 +321,5,150,1327,1170,324,0,5378,2093,chapter_07_01,bgm_niflheim_01,303404,1,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,4 +322,5,150,1435,1270,504,0,5572,2108,chapter_07_01,bgm_niflheim_01,303404,0.4,1,1,306079,0.45,2,3,306070,0.1,1,1,306071,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 +323,5,150,1543,1371,684,0,5767,2121,chapter_07_02,bgm_niflheim_02,303404,0.4,1,1,306079,0.45,2,3,306070,0.1,1,1,306071,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 +324,5,150,1652,1471,864,0,5961,2136,chapter_07_01,bgm_niflheim_01,303404,0.4,1,1,306079,0.45,2,3,306070,0.1,1,1,306074,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 +325,5,150,1760,1572,1044,0,6156,2182,chapter_07_01,bgm_niflheim_01,303404,0.4,1,1,306079,0.45,2,3,306070,0.1,1,1,306074,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,3 +326,5,150,1868,1672,1224,0,6480,2196,chapter_07_02,bgm_niflheim_02,303004,1,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,6 +327,5,150,1976,1772,1404,0,6804,2210,chapter_07_01,bgm_niflheim_01,303204,1,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,6 +328,5,150,2084,1872,1584,0,7128,2224,chapter_07_02,bgm_niflheim_02,303004,0.4,1,1,306080,0.45,3,4,306070,0.1,1,1,306073,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,3,4 +329,5,150,2192,1973,1764,0,7452,2238,chapter_07_01,bgm_niflheim_01,303204,0.4,1,1,306081,0.45,3,4,306070,0.1,1,1,306072,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,3,4 +330,5,150,2300,2073,1944,0,7776,2284,chapter_07_03,bgm_niflheim_03,303004,0.4,1,1,306080,0.45,3,4,306070,0.1,1,1,306072,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,3,4 +331,5,150,2300,2041,1957,0,7840,2298,chapter_07_01,bgm_niflheim_01,303204,0.4,1,1,306081,0.45,3,4,306070,0.1,1,1,306073,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,3,4 +332,5,150,2300,2041,1970,0,7905,2312,chapter_07_01,bgm_niflheim_01,303004,0.4,1,1,306080,0.45,3,4,306070,0.1,1,1,306073,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,3,4 +333,5,150,2300,2041,1983,0,7970,2326,chapter_07_02,bgm_niflheim_02,303204,0.4,1,1,306081,0.45,3,4,306070,0.1,1,1,306072,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,3,4 +334,5,150,2300,2041,1996,0,8035,2340,chapter_07_01,bgm_niflheim_01,303104,1,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,6 +335,5,150,2300,2041,2008,0,8100,2387,chapter_07_01,bgm_niflheim_01,303304,1,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,6 +336,5,150,2300,2041,2022,0,7776,2401,chapter_07_02,bgm_niflheim_02,303104,0.4,1,1,306082,0.45,3,4,306070,0.1,1,1,306073,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,3,4 +337,5,150,2300,2041,2035,0,7452,2415,chapter_07_01,bgm_niflheim_01,303304,0.4,1,1,306083,0.45,3,4,306070,0.1,1,1,306072,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,3,4 +338,5,150,2300,2041,2048,0,7128,2429,chapter_07_02,bgm_niflheim_02,303104,0.4,1,1,306082,0.45,3,4,306070,0.1,1,1,306072,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,3,4 +339,5,150,2300,2041,2060,0,6804,2443,chapter_07_01,bgm_niflheim_01,303304,0.4,1,1,306083,0.45,3,4,306070,0.1,1,1,306073,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,3,4 +340,5,150,2300,2041,2073,0,6480,2489,chapter_07_03,bgm_niflheim_03,303104,0.4,1,1,306082,0.45,3,4,306070,0.1,1,1,306073,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,3,4 +341,5,150,2345,1529,2093,0,6544,2504,chapter_07_01,bgm_niflheim_01,303304,0.4,1,1,306083,0.45,3,4,306070,0.1,1,1,306072,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,3,4 +342,5,150,2389,1665,2112,0,6933,2517,chapter_07_01,bgm_niflheim_01,303404,1,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,6 +343,5,150,2433,1801,2132,0,7322,2532,chapter_07_02,bgm_niflheim_02,303404,0.4,1,1,306084,0.45,3,4,306070,0.1,1,1,306073,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,3,4 +344,5,150,2476,1937,2152,0,7711,2546,chapter_07_01,bgm_niflheim_01,303404,0.4,1,1,306084,0.45,3,4,306070,0.1,1,1,306072,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,3,4 +345,5,150,2520,2073,2171,0,8100,2592,chapter_07_01,bgm_niflheim_01,303404,0.4,1,1,306084,0.45,3,4,306070,0.1,1,1,306072,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,3,4 +346,5,150,2565,2210,2190,0,8748,2851,chapter_07_02,bgm_niflheim_02,303004,0.4,2,3,306070,0.2,1,1,306071,0.1,1,1,306074,0.1,1,1,306073,0.1,1,1,306072,0.1,1,1,306072,0.1,1,1,,,,,,,,,,,,,2,3 +347,5,150,2609,2346,2210,0,9396,3110,chapter_07_01,bgm_niflheim_01,303104,0.4,2,3,306070,0.2,1,1,306071,0.1,1,1,306074,0.1,1,1,306073,0.1,1,1,306072,0.1,1,1,306072,0.1,1,1,,,,,,,,,,,,,2,3 +348,5,150,2653,2482,2229,0,10044,3369,chapter_07_02,bgm_niflheim_02,303204,0.4,2,3,306070,0.2,1,1,306071,0.1,1,1,306074,0.1,1,1,306073,0.1,1,1,306072,0.1,1,1,306072,0.1,1,1,,,,,,,,,,,,,2,3 +349,5,150,2697,2618,2248,0,10368,3628,chapter_07_01,bgm_niflheim_01,303304,0.4,2,3,306070,0.2,1,1,306071,0.1,1,1,306074,0.1,1,1,306073,0.1,1,1,306072,0.1,1,1,306072,0.1,1,1,,,,,,,,,,,,,2,3 +350,5,150,2741,2754,2268,0,10692,3888,chapter_07_03,bgm_niflheim_03,303404,0.4,2,3,306070,0.2,1,1,306071,0.1,1,1,306074,0.1,1,1,306073,0.1,1,1,306072,0.1,1,1,306072,0.1,1,1,,,,,,,,,,,,,2,3 +351,5,150,1620,518,648,0,6868,2786,chapter_08_01,bgm_hel_01,303005,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2 +352,5,150,1620,518,648,0,6868,2786,chapter_08_01,bgm_hel_01,303005,0.4,1,1,306090,0.45,2,3,306086,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 +353,5,150,1620,518,648,0,6868,2786,chapter_08_02,bgm_hel_02,303005,0.4,1,1,306090,0.45,2,3,306086,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 +354,5,150,1620,518,648,0,6868,2786,chapter_08_01,bgm_hel_01,303005,0.4,1,1,306090,0.45,2,3,306087,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 +355,5,150,1620,518,648,0,6868,2786,chapter_08_01,bgm_hel_01,303005,0.4,1,1,306090,0.45,2,3,306087,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 +356,5,150,1957,739,1296,0,7633,2786,chapter_08_02,bgm_hel_02,303205,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2 +357,5,150,2294,959,1944,0,8398,2786,chapter_08_01,bgm_hel_01,303205,0.4,1,1,306092,0.45,2,3,306087,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 +358,5,150,2631,1180,2592,0,9163,2786,chapter_08_02,bgm_hel_02,303205,0.4,1,1,306092,0.45,2,3,306087,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 +359,5,150,2968,1400,3240,0,9928,2786,chapter_08_01,bgm_hel_01,303205,0.4,1,1,306092,0.45,2,3,306086,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 +360,5,150,3304,1620,3888,0,10692,2786,chapter_08_03,bgm_hel_03,303205,0.4,1,1,306092,0.45,2,3,306086,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 +361,5,150,3356,1652,3920,0,10854,2896,chapter_08_01,bgm_hel_01,303105,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2 +362,5,150,3408,1684,3952,0,11016,3007,chapter_08_01,bgm_hel_01,303105,0.4,1,1,306091,0.45,2,3,306086,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 +363,5,150,3460,1717,3985,0,11178,3117,chapter_08_02,bgm_hel_02,303105,0.4,1,1,306091,0.45,2,3,306086,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 +364,5,150,3512,1749,4017,0,11340,3227,chapter_08_01,bgm_hel_01,303105,0.4,1,1,306091,0.45,2,3,306087,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 +365,5,150,3564,1782,4050,0,11502,3337,chapter_08_01,bgm_hel_01,303105,0.4,1,1,306091,0.45,2,3,306087,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 +366,5,150,3616,1814,4082,0,11664,3448,chapter_08_02,bgm_hel_02,303305,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2 +367,5,150,3668,1847,4115,0,11826,3557,chapter_08_01,bgm_hel_01,303305,0.4,1,1,306093,0.45,2,3,306087,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 +368,5,150,3720,1879,4147,0,11988,3668,chapter_08_02,bgm_hel_02,303305,0.4,1,1,306093,0.45,2,3,306087,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 +369,5,150,3772,1912,4180,0,12150,3778,chapter_08_01,bgm_hel_01,303305,0.4,1,1,306093,0.45,2,3,306086,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 +370,5,150,3823,1944,4212,0,12312,3888,chapter_08_03,bgm_hel_03,303305,0.4,1,1,306093,0.45,2,3,306086,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 +371,5,150,3881,2067,4244,0,13368,3888,chapter_08_01,bgm_hel_01,303405,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2 +372,5,150,3940,2190,4276,0,14424,3888,chapter_08_01,bgm_hel_01,303405,0.4,1,1,306094,0.45,2,3,306086,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 +373,5,150,3998,2313,4309,0,15480,3888,chapter_08_02,bgm_hel_02,303405,0.4,1,1,306094,0.45,2,3,306086,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 +374,5,150,4056,2436,4341,0,16537,3888,chapter_08_01,bgm_hel_01,303405,0.4,1,1,306094,0.45,2,3,306087,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 +375,5,150,4115,2560,4374,0,17593,3888,chapter_08_01,bgm_hel_01,303405,0.4,1,1,306094,0.45,2,3,306087,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 +376,5,150,4173,2683,4406,0,18649,3888,chapter_08_02,bgm_hel_02,303005,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,3 +377,5,150,4232,2806,4439,0,19706,3888,chapter_08_01,bgm_hel_01,303205,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,3 +378,5,150,4290,2929,4471,0,20762,3888,chapter_08_02,bgm_hel_02,303005,0.4,1,1,306095,0.45,3,4,306097,0.45,1,1,306085,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +379,5,150,4348,3052,4504,0,21818,3888,chapter_08_01,bgm_hel_01,303005,0.4,1,1,306095,0.45,3,4,306097,0.1,1,1,306085,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +380,5,150,4406,3175,4536,0,22874,3888,chapter_08_03,bgm_hel_03,303205,0.4,1,1,306097,0.45,3,4,306095,0.1,1,1,306088,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +381,5,150,5003,4393,4406,0,25609,4082,chapter_08_01,bgm_hel_01,303105,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,3 +382,5,150,5599,5612,4924,0,28344,4600,chapter_08_01,bgm_hel_01,303305,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,3 +383,5,150,6195,6830,5443,0,31078,5119,chapter_08_02,bgm_hel_02,303105,0.4,1,1,306096,0.45,3,4,306098,0.1,1,1,306088,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +384,5,150,6791,8048,5961,0,33812,5637,chapter_08_01,bgm_hel_01,303105,0.4,1,1,306096,0.45,3,4,306098,0.1,1,1,306088,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +385,5,150,7387,9266,6480,0,36547,6156,chapter_08_01,bgm_hel_01,303305,0.4,1,1,306098,0.45,3,4,306096,0.1,1,1,306085,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +386,5,150,7984,10484,6998,0,39282,6674,chapter_08_02,bgm_hel_02,303405,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,3 +387,5,150,8580,11703,7516,0,42016,7192,chapter_08_01,bgm_hel_01,303405,0.4,1,1,306099,0.45,3,4,306085,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +388,5,150,9176,12921,8035,0,44751,7711,chapter_08_02,bgm_hel_02,303405,0.4,1,1,306099,0.45,3,4,306085,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +389,5,150,9772,14140,8553,0,47485,8229,chapter_08_01,bgm_hel_01,303405,0.4,1,1,306099,0.45,3,4,306088,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +390,5,150,10368,15357,9072,0,50220,8748,chapter_08_03,bgm_hel_03,303405,0.4,1,1,306099,0.45,3,4,306088,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +391,5,150,10906,15844,9539,0,55242,9007,chapter_08_01,bgm_hel_01,303205,0.4,1,2,306092,0.3,1,2,306097,0.3,1,2,306089,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +392,5,150,11444,16329,10005,0,60264,9590,chapter_08_01,bgm_hel_01,303205,0.4,1,2,306092,0.3,1,2,306097,0.3,1,2,306089,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +393,5,150,11981,16816,10472,0,65286,10173,chapter_08_02,bgm_hel_02,303305,0.4,1,2,306093,0.3,1,2,306098,0.3,1,2,306089,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +394,5,150,12520,17301,10938,0,70308,10756,chapter_08_01,bgm_hel_01,303305,0.4,1,2,306093,0.3,1,2,306098,0.3,1,2,306089,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +395,5,150,13057,17788,11404,0,75330,11340,chapter_08_01,bgm_hel_01,303405,0.4,1,2,306094,0.3,1,2,306099,0.3,1,2,306089,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +396,5,150,13595,18273,11872,0,80352,11923,chapter_08_02,bgm_hel_02,303405,0.4,1,2,306094,0.3,1,2,306099,0.3,1,2,306089,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +397,5,150,14133,18760,12338,0,85374,12506,chapter_08_01,bgm_hel_01,303105,0.4,1,2,306091,0.3,1,2,306096,0.3,1,2,306089,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +398,5,150,14671,19245,12804,0,90396,13089,chapter_08_02,bgm_hel_02,303105,0.4,1,2,306091,0.3,1,2,306096,0.3,1,2,306089,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +399,5,150,15208,19732,13271,0,95418,13672,chapter_08_01,bgm_hel_01,303005,0.4,1,2,306090,0.3,1,2,306095,0.3,1,2,306089,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 +400,5,150,15746,20217,13737,0,100440,14256,chapter_08_03,bgm_hel_03,303005,0.4,1,2,306090,0.3,1,2,306095,0.3,1,2,306089,0.05,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,3 10000001,10,150,184,132,132,0,184,132,chapter_99_01,bgm_hard1,303200,0.15,1,1,306064,0.25,1,2,306065,0.1,1,2,306058,0.4,1,1,306059,0.1,1,1,,,,,,,,,,,,,,,,,,,,,4,4 10000002,10,150,228,163,163,0,228,163,chapter_99_01,bgm_hard2,303200,0.15,1,1,306064,0.25,1,2,306065,0.1,1,2,306058,0.4,1,1,306059,0.1,1,1,,,,,,,,,,,,,,,,,,,,,4,4 10000003,10,150,245,175,175,0,245,175,chapter_99_01,bgm_hard1,303200,0.15,1,1,306064,0.25,1,2,306065,0.1,1,2,306058,0.4,1,1,306059,0.1,1,1,,,,,,,,,,,,,,,,,,,,,4,4 diff --git a/Lib9c/TableCSV/WorldAndStage/StageWaveSheet.csv b/Lib9c/TableCSV/WorldAndStage/StageWaveSheet.csv index e5238c300..306837260 100644 --- a/Lib9c/TableCSV/WorldAndStage/StageWaveSheet.csv +++ b/Lib9c/TableCSV/WorldAndStage/StageWaveSheet.csv @@ -764,93 +764,93 @@ stage_id,wave,monster1_id,monster1_level,monster1_count,monster2_id,monster2_lev 255,1,207000,259,2,207001,259,1,,,,,,,0 255,2,207000,259,3,,,,,,,,,,0 255,3,207000,259,2,207001,259,1,,,,,,,0 -256,1,207000,260,2,207001,260,2,,,,,,,0 +256,1,207000,260,2,207001,260,1,,,,,,,0 256,2,207000,260,2,,,,,,,,,,0 256,3,207003,261,1,207000,261,1,,,,,,,1 257,1,207000,261,2,207002,261,1,,,,,,,0 257,2,207000,261,2,207001,261,1,,,,,,,0 257,3,207000,261,1,207002,261,2,,,,,,,0 -258,1,207000,262,2,207002,262,2,,,,,,,0 +258,1,207000,262,2,207002,262,1,,,,,,,0 258,2,207000,262,2,207001,262,1,,,,,,,0 258,3,207000,262,1,207002,262,1,,,,,,,0 -259,1,207000,263,3,207001,263,2,,,,,,,0 -259,2,207000,263,3,207002,263,1,,,,,,,0 +259,1,207000,263,2,207001,263,1,,,,,,,0 +259,2,207000,263,2,207002,263,1,,,,,,,0 259,3,207000,263,1,207002,263,2,,,,,,,0 -260,1,207000,264,3,207002,264,2,,,,,,,0 +260,1,207000,264,2,207002,264,1,,,,,,,0 260,2,207001,264,2,207002,264,1,,,,,,,0 260,3,207003,265,1,207001,265,1,,,,,,,1 -261,1,207000,265,2,207002,265,3,,,,,,,0 -261,2,207001,265,2,207002,265,2,,,,,,,0 -261,3,207001,265,2,207002,265,2,,,,,,,0 -262,1,207000,266,2,207001,266,2,,,,,,,0 -262,2,207000,266,1,207001,266,3,,,,,,,0 -262,3,207000,266,2,207002,266,3,,,,,,,0 -263,1,207001,267,3,207002,267,2,,,,,,,0 -263,2,207000,267,3,207002,267,2,,,,,,,0 +261,1,207000,265,1,207002,265,2,,,,,,,0 +261,2,207001,265,2,207002,265,1,,,,,,,0 +261,3,207001,265,2,207002,265,1,,,,,,,0 +262,1,207000,266,2,207001,266,1,,,,,,,0 +262,2,207000,266,1,207001,266,2,,,,,,,0 +262,3,207000,266,1,207002,266,2,,,,,,,0 +263,1,207001,267,2,207002,267,1,,,,,,,0 +263,2,207000,267,2,207002,267,1,,,,,,,0 263,3,207001,268,1,207003,268,1,,,,,,,1 -264,1,207000,268,2,207001,268,2,207002,268,1,,,,0 +264,1,207000,268,1,207001,268,1,207002,268,1,,,,0 264,2,207001,268,2,207002,268,1,,,,,,,0 -264,3,207001,268,2,207002,268,2,,,,,,,0 +264,3,207001,268,2,207002,268,1,,,,,,,0 265,1,207003,269,2,,,,,,,,,,0 -265,2,207001,269,1,207002,269,3,,,,,,,0 +265,2,207001,269,1,207002,269,2,,,,,,,0 265,3,207001,269,2,207003,269,1,,,,,,,0 -266,1,207001,270,2,207002,270,2,,,,,,,0 -266,2,207000,270,3,207002,270,1,,,,,,,0 +266,1,207001,270,2,207002,270,1,,,,,,,0 +266,2,207000,270,2,207002,270,1,,,,,,,0 266,3,207001,271,1,207004,271,1,,,,,,,1 -267,1,207000,271,2,207001,271,1,207003,271,1,,,,0 -267,2,207001,271,2,207002,271,2,,,,,,,0 -267,3,207000,271,2,207001,271,1,207002,271,2,,,,0 +267,1,207000,271,1,207001,271,1,207003,271,1,,,,0 +267,2,207001,271,2,207002,271,1,,,,,,,0 +267,3,207000,271,1,207001,271,1,207002,271,2,,,,0 268,1,207000,272,1,207001,272,1,207002,272,1,,,,0 -268,2,207001,272,1,207002,272,3,,,,,,,0 -268,3,207000,272,2,207002,272,2,207003,272,1,,,,0 -269,1,207003,273,1,207001,273,1,207002,273,2,,,,0 -269,2,207001,273,3,207002,273,1,,,,,,,0 -269,3,207001,273,2,207002,273,1,207003,273,1,,,,0 -270,1,207003,274,1,207000,274,2,207001,274,1,,,,0 +268,2,207001,272,1,207002,272,2,,,,,,,0 +268,3,207000,272,1,207002,272,1,207003,272,1,,,,0 +269,1,207003,273,1,207001,273,1,207002,273,1,,,,0 +269,2,207001,273,2,207002,273,1,,,,,,,0 +269,3,207001,273,1,207002,273,1,207003,273,1,,,,0 +270,1,207003,274,1,207000,274,1,207001,274,1,,,,0 270,2,207001,274,1,207002,274,2,,,,,,,0 270,3,207001,275,2,207004,275,1,,,,,,,1 -271,1,207003,275,1,207000,275,1,207001,275,2,,,,0 -271,2,207000,275,1,207001,275,2,207002,275,1,,,,0 +271,1,207003,275,1,207000,275,1,207001,275,1,,,,0 +271,2,207000,275,1,207001,275,1,207002,275,1,,,,0 271,3,207003,275,1,207000,275,2,207001,275,1,,,,0 -272,1,207000,276,1,207001,276,2,207002,276,2,,,,0 -272,2,207000,276,2,207001,276,2,207002,276,1,,,,0 +272,1,207000,276,1,207001,276,2,207002,276,1,,,,0 +272,2,207000,276,2,207001,276,1,207002,276,1,,,,0 272,3,207003,276,1,207000,276,1,207002,276,3,,,,0 -273,1,207000,277,2,207001,277,1,207002,277,2,,,,0 -273,2,207000,277,2,207001,277,1,207002,277,2,,,,0 +273,1,207000,277,2,207001,277,1,207002,277,1,,,,0 +273,2,207000,277,2,207001,277,1,207002,277,1,,,,0 273,3,207000,278,2,207002,278,1,207004,278,1,,,,1 274,1,207004,278,1,207002,278,1,,,,,,,0 274,2,207000,278,1,207001,278,1,207002,278,1,,,,0 274,3,207003,278,1,207002,278,1,,,,,,,0 275,1,207004,279,1,207001,279,1,,,,,,,0 275,2,207002,279,3,,,,,,,,,,0 -275,3,207003,279,1,207000,279,2,207002,279,1,,,,0 -276,1,207001,280,2,207002,280,2,207003,280,1,,,,0 -276,2,207000,280,3,207002,280,2,,,,,,,0 +275,3,207003,279,1,207000,279,1,207002,279,1,,,,0 +276,1,207001,280,2,207002,280,1,207003,280,1,,,,0 +276,2,207000,280,2,207002,280,2,,,,,,,0 276,3,207005,281,1,207000,281,1,,,,,,,1 277,1,207004,281,1,207002,281,1,,,,,,,0 -277,2,207001,281,3,207002,281,2,,,,,,,0 +277,2,207001,281,2,207002,281,2,,,,,,,0 277,3,207004,281,1,207002,281,1,,,,,,,0 -278,1,207000,282,3,207002,282,1,207003,282,1,,,,0 -278,2,207001,282,3,207002,282,2,,,,,,,0 +278,1,207000,282,2,207002,282,1,207003,282,1,,,,0 +278,2,207001,282,2,207002,282,2,,,,,,,0 278,3,207004,282,1,207000,282,1,207002,282,1,,,,0 -279,1,207001,283,2,207002,283,3,207003,283,1,,,,0 -279,2,207001,283,2,207002,283,3,,,,,,,0 -279,3,207000,283,2,207002,283,2,207003,283,2,,,,0 -280,1,207001,284,2,207002,284,2,207003,284,1,,,,0 -280,2,207001,284,3,207002,284,2,,,,,,,0 +279,1,207001,283,1,207002,283,2,207003,283,1,,,,0 +279,2,207001,283,2,207002,283,2,,,,,,,0 +279,3,207000,283,2,207002,283,1,207003,283,1,,,,0 +280,1,207001,284,2,207002,284,1,207003,284,1,,,,0 +280,2,207001,284,2,207002,284,1,,,,,,,0 280,3,207005,285,1,207003,285,1,207002,285,1,,,,1 281,1,207000,285,3,207002,285,1,207003,285,1,,,,0 -281,2,207000,285,1,207001,285,2,207002,285,2,,,,0 +281,2,207000,285,1,207001,285,2,207002,285,1,,,,0 281,3,207004,285,2,,,,,,,,,,0 282,1,207004,286,1,207000,286,3,,,,,,,0 -282,2,207000,286,3,207002,286,1,207003,286,1,,,,0 +282,2,207000,286,2,207002,286,1,207003,286,1,,,,0 282,3,207004,286,1,207002,286,2,,,,,,,0 283,1,207004,287,1,207001,287,1,207002,287,1,,,,0 -283,2,207000,287,2,207001,287,1,207002,287,2,,,,0 +283,2,207000,287,2,207001,287,1,207002,287,1,,,,0 283,3,207002,288,2,207005,288,1,,,,,,,1 284,1,207004,288,1,207000,288,2,,,,,,,0 284,2,207003,288,1,207000,288,1,207002,288,2,,,,0 -284,3,207005,288,1,207002,288,1,,288,,,,,0 +284,3,207005,288,1,207002,288,1,,,,,,,0 285,1,207004,289,1,207002,289,1,,,,,,,0 285,2,207003,289,1,207002,289,1,,,,,,,0 285,3,207005,289,1,207000,289,2,207001,289,1,,,,0 @@ -861,31 +861,31 @@ stage_id,wave,monster1_id,monster1_level,monster1_count,monster2_id,monster2_lev 287,2,207004,291,1,207000,291,1,,,,,,,0 287,3,207004,291,1,207002,291,2,207003,291,1,,,,0 288,1,207004,292,1,207001,292,1,207002,292,1,,,,0 -288,2,207003,292,1,207000,292,3,207002,292,3,,,,0 +288,2,207003,292,1,207000,292,1,207002,292,2,,,,0 288,3,207005,292,1,207004,292,1,207002,292,2,,,,0 -289,1,207002,293,3,207003,293,1,207004,293,1,,,,0 -289,2,207003,293,1,207001,293,2,207002,293,2,,,,0 +289,1,207002,293,2,207003,293,1,207004,293,1,,,,0 +289,2,207003,293,1,207001,293,1,207002,293,2,,,,0 289,3,207004,293,2,,,,,,,,,,0 290,1,207004,294,1,207005,294,1,,,,,,,0 290,2,207001,294,2,207003,294,1,,,,,,,0 290,3,207000,295,2,207006,295,1,,,,,,,1 291,1,207004,295,1,207003,295,1,207002,295,1,,,,0 291,2,207000,295,3,207005,295,1,,,,,,,0 -291,3,207003,295,3,207002,295,2,,,,,,,0 -292,1,207000,296,3,207003,296,2,207002,296,2,,,,0 -292,2,207000,296,2,207004,296,1,207002,296,2,,,,0 +291,3,207003,295,2,207002,295,2,,,,,,,0 +292,1,207000,296,3,207003,296,1,207002,296,1,,,,0 +292,2,207000,296,1,207004,296,1,207002,296,2,,,,0 292,3,207005,296,1,207001,296,3,,,,,,,0 -293,1,207001,297,2,207002,297,3,207003,297,2,,,,0 -293,2,207000,297,3,207004,297,1,207002,297,1,,,,0 +293,1,207001,297,1,207002,297,2,207003,297,1,,,,0 +293,2,207000,297,2,207004,297,1,207002,297,1,,,,0 293,3,207006,298,1,207004,298,1,,,,,,,1 294,1,207005,298,1,207002,298,3,,,,,,,0 294,2,207003,298,2,207000,298,1,207002,298,1,207001,298,1,0 -294,3,207000,298,3,207005,298,1,207001,298,2,,,,0 +294,3,207000,298,1,207005,298,1,207001,298,2,,,,0 295,1,207003,299,1,207004,299,1,207001,299,2,,,,0 295,2,207001,299,2,207002,299,1,207003,299,1,,,,0 295,3,207003,299,1,207004,299,1,207000,299,2,,,,0 -296,1,207005,300,1,207003,300,2,207002,300,2,,,,0 -296,2,207001,300,1,207002,300,2,207003,300,2,,,,0 +296,1,207005,300,1,207003,300,1,207002,300,2,,,,0 +296,2,207001,300,1,207002,300,1,207003,300,2,,,,0 296,3,207006,301,1,207003,301,1,,,,,,,1 297,1,207005,301,2,,,,,,,,,,0 297,2,207002,301,3,207004,301,1,,,,,,,0 @@ -901,144 +901,144 @@ stage_id,wave,monster1_id,monster1_level,monster1_count,monster2_id,monster2_lev 300,3,207007,305,1,,,,,,,,,,1 301,1,208000,305,2,,,,,,,,,,0 301,2,208001,305,2,,,,,,,,,,0 -301,3,208000,305,3,,,,,,,,,,0 +301,3,208000,305,2,,,,,,,,,,0 302,1,208000,306,2,,,,,,,,,,0 302,2,208001,306,2,,,,,,,,,,0 302,3,208000,307,2,208001,307,1,,,,,,,1 303,1,208000,307,1,208001,307,1,,,,,,,0 303,2,208001,307,2,,,,,,,,,,0 303,3,208003,307,1,,,,,,,,,,0 -304,1,208000,308,3,,,,,,,,,,0 +304,1,208000,308,2,,,,,,,,,,0 304,2,208001,308,1,208000,308,1,,,,,,,0 304,3,208000,309,1,208001,309,2,,,,,,,1 305,1,208000,309,2,208001,309,1,,,,,,,0 -305,2,208000,309,3,,,,,,,,,,0 +305,2,208000,309,2,,,,,,,,,,0 305,3,208000,309,2,208001,309,1,,,,,,,0 -306,1,208000,310,2,208001,310,2,,,,,,,0 -306,2,208000,310,3,208001,310,1,,,,,,,0 +306,1,208000,310,2,208001,310,1,,,,,,,0 +306,2,208000,310,2,208001,310,1,,,,,,,0 306,3,208003,311,1,208000,311,1,,,,,,,1 307,1,208000,311,2,208002,311,1,,,,,,,0 -307,2,208000,311,4,208001,311,1,,,,,,,0 -307,3,208000,311,3,208002,311,2,,,,,,,0 -308,1,208000,312,3,208002,312,1,,,,,,,0 -308,2,208000,312,3,208001,312,2,,,,,,,0 -308,3,208000,313,4,208002,313,2,,,,,,,1 -309,1,208000,313,3,208001,313,2,,,,,,,0 -309,2,208000,313,4,208002,313,1,,,,,,,0 -309,3,208000,313,3,208002,313,3,,,,,,,0 -310,1,208000,314,3,208002,314,2,,,,,,,0 -310,2,208001,314,3,208002,314,1,,,,,,,0 +307,2,208000,311,2,208001,311,1,,,,,,,0 +307,3,208000,311,2,208002,311,1,,,,,,,0 +308,1,208000,312,2,208002,312,1,,,,,,,0 +308,2,208000,312,2,208001,312,1,,,,,,,0 +308,3,208000,313,2,208002,313,1,,,,,,,1 +309,1,208000,313,2,208001,313,1,,,,,,,0 +309,2,208000,313,2,208002,313,1,,,,,,,0 +309,3,208000,313,2,208002,313,1,,,,,,,0 +310,1,208000,314,2,208002,314,1,,,,,,,0 +310,2,208001,314,2,208002,314,1,,,,,,,0 310,3,208003,315,1,208001,315,1,,,,,,,1 -311,1,208000,315,4,208002,315,2,,,,,,,0 -311,2,208001,315,3,208001,315,2,,,,,,,0 -311,3,208001,315,3,208002,315,2,,,,,,,0 -312,1,208001,316,3,208002,316,2,,,,,,,0 -312,2,208000,316,4,208002,316,2,,,,,,,0 -312,3,208001,317,1,208002,317,4,,,,,,,1 -313,1,208001,317,4,208002,317,2,,,,,,,0 -313,2,208000,317,5,208002,317,2,,,,,,,0 +311,1,208000,315,2,208002,315,1,,,,,,,0 +311,2,208001,315,2,208001,315,1,,,,,,,0 +311,3,208001,315,2,208002,315,1,,,,,,,0 +312,1,208001,316,2,208002,316,2,,,,,,,0 +312,2,208000,316,2,208002,316,1,,,,,,,0 +312,3,208001,317,1,208002,317,2,,,,,,,1 +313,1,208001,317,2,208002,317,2,,,,,,,0 +313,2,208000,317,3,208002,317,1,,,,,,,0 313,3,208003,317,1,208001,317,1,,,,,,,0 -314,1,208000,318,4,208001,318,3,208002,318,1,,,,0 -314,2,208001,318,3,208002,318,3,,,,,,,0 -314,3,208001,319,3,208002,319,3,,,,,,,1 -315,1,208000,319,2,208002,319,2,208003,319,1,,,,0 -315,2,208001,319,3,208002,319,3,,,,,,,0 -315,3,208001,319,2,208002,319,2,208003,319,1,,,,0 -316,1,208001,320,4,208002,320,4,,,,,,,0 -316,2,208000,320,5,208002,320,3,,,,,,,0 -316,3,208004,321,1,208000,321,2,208001,321,2,,,,1 -317,1,208000,321,3,208001,321,2,208003,321,1,,,,0 -317,2,208001,321,4,208002,321,3,,,,,,,0 -317,3,208000,321,1,208001,321,2,208002,321,6,,,,0 -318,1,208000,322,3,208001,322,2,208002,322,4,,,,0 -318,2,208001,322,3,208002,322,4,,,,,,,0 -318,3,208000,323,2,208002,323,2,208003,323,1,,,,1 -319,1,208000,323,2,208001,323,2,208002,323,5,,,,0 -319,2,208001,323,4,208002,323,3,,,,,,,0 -319,3,208001,323,3,208002,323,1,208003,323,1,,,,0 -320,1,208003,324,1,208000,324,4,208001,324,2,,,,0 -320,2,208001,324,3,208002,324,4,,,,,,,0 +314,1,208000,318,2,208001,318,1,208002,318,1,,,,0 +314,2,208001,318,2,208002,318,2,,,,,,,0 +314,3,208001,319,2,208002,319,2,,,,,,,1 +315,1,208000,319,2,208002,319,1,208003,319,1,,,,0 +315,2,208001,319,2,208002,319,2,,,,,,,0 +315,3,208001,319,2,208002,319,1,208003,319,1,,,,0 +316,1,208001,320,2,208002,320,2,,,,,,,0 +316,2,208000,320,3,208002,320,2,,,,,,,0 +316,3,208004,321,1,208000,321,2,208001,321,1,,,,1 +317,1,208000,321,1,208001,321,2,208003,321,1,,,,0 +317,2,208001,321,2,208002,321,1,,,,,,,0 +317,3,208000,321,1,208001,321,1,208002,321,3,,,,0 +318,1,208000,322,1,208001,322,1,208002,322,2,,,,0 +318,2,208001,322,2,208002,322,2,,,,,,,0 +318,3,208000,323,2,208002,323,1,208003,323,1,,,,1 +319,1,208000,323,2,208001,323,1,208002,323,3,,,,0 +319,2,208001,323,2,208002,323,2,,,,,,,0 +319,3,208001,323,2,208002,323,1,208003,323,1,,,,0 +320,1,208003,324,1,208000,324,2,208001,324,1,,,,0 +320,2,208001,324,2,208002,324,2,,,,,,,0 320,3,208004,325,1,208001,325,3,,,,,,,1 -321,1,208003,325,1,208000,325,3,208001,325,3,,,,0 -321,2,208000,325,1,208001,325,4,208002,325,3,,,,0 -321,3,208003,325,1,208000,325,4,208001,325,2,,,,0 -322,1,208000,326,5,208001,326,3,208002,326,3,,,,0 -322,2,208000,326,3,208001,326,4,208002,326,2,,,,0 -322,3,208003,327,1,208000,327,3,208002,327,3,,,,1 -323,1,208000,327,3,208001,327,4,208002,327,4,,,,0 -323,2,208000,327,2,208001,327,4,208002,327,3,,,,0 -323,3,208004,327,1,208000,327,2,208002,327,3,,,,0 +321,1,208003,325,1,208000,325,2,208001,325,2,,,,0 +321,2,208000,325,1,208001,325,2,208002,325,2,,,,0 +321,3,208003,325,1,208000,325,3,208001,325,1,,,,0 +322,1,208000,326,3,208001,326,1,208002,326,1,,,,0 +322,2,208000,326,2,208001,326,2,208002,326,1,,,,0 +322,3,208003,327,1,208000,327,2,208002,327,2,,,,1 +323,1,208000,327,1,208001,327,2,208002,327,2,,,,0 +323,2,208000,327,1,208001,327,3,208002,327,2,,,,0 +323,3,208004,327,1,208000,327,2,208002,327,2,,,,0 324,1,208004,328,1,208001,328,2,208002,328,2,,,,0 -324,2,208000,328,3,208001,328,4,208002,328,3,,,,0 -324,3,208003,329,1,208001,329,3,208002,329,3,,,,1 +324,2,208000,328,1,208001,328,2,208002,328,2,,,,0 +324,3,208003,329,1,208001,329,2,208002,329,2,,,,1 325,1,208004,329,1,208003,329,1,,,,,,,0 325,2,208002,329,3,208003,329,1,,,,,,,0 -325,3,208004,329,1,208000,329,3,208002,329,3,,,,0 -326,1,208001,330,3,208002,330,3,208003,330,1,,,,0 -326,2,208000,330,3,208002,330,5,,,,,,,0 +325,3,208004,329,1,208000,329,2,208002,329,2,,,,0 +326,1,208001,330,1,208002,330,2,208003,330,1,,,,0 +326,2,208000,330,1,208002,330,3,,,,,,,0 326,3,208005,331,1,208002,331,3,,,,,,,1 327,1,208004,331,1,208003,331,1,208002,331,3,,,,0 -327,2,208001,331,3,208002,331,4,,,,,,,0 +327,2,208001,331,2,208002,331,3,,,,,,,0 327,3,208004,331,1,208003,331,1,,,,,,,0 -328,1,208000,332,4,208002,332,4,208003,332,1,,,,0 -328,2,208001,332,3,208002,332,5,,,,,,,0 -328,3,208004,333,1,208000,333,5,208002,333,4,,,,1 -329,1,208001,333,3,208002,333,4,208003,333,1,,,,0 -329,2,208001,333,2,208002,333,6,,,,,,,0 -329,3,208000,333,5,208002,333,3,208003,333,2,,,,0 -330,1,208001,334,3,208002,334,4,208003,334,1,,,,0 -330,2,208001,334,4,208002,334,4,,,,,,,0 +328,1,208000,332,2,208002,332,3,208003,332,1,,,,0 +328,2,208001,332,2,208002,332,3,,,,,,,0 +328,3,208004,333,1,208000,333,3,208002,333,2,,,,1 +329,1,208001,333,2,208002,333,3,208003,333,1,,,,0 +329,2,208001,333,2,208002,333,4,,,,,,,0 +329,3,208000,333,3,208002,333,2,208003,333,1,,,,0 +330,1,208001,334,2,208002,334,2,208003,334,1,,,,0 +330,2,208001,334,2,208002,334,4,,,,,,,0 330,3,208005,335,1,208003,335,1,208002,335,1,,,,1 -331,1,208000,335,4,208002,335,4,208003,335,1,,,,0 -331,2,208000,335,3,208001,335,3,208002,335,3,,,,0 -331,3,208004,335,2,208001,335,4,208002,335,1,,,,0 -332,1,208004,336,1,208000,336,4,208001,336,4,,,,0 +331,1,208000,335,2,208002,335,3,208003,335,1,,,,0 +331,2,208000,335,2,208001,335,2,208002,335,2,,,,0 +331,3,208004,335,2,208001,335,3,208002,335,1,,,,0 +332,1,208004,336,1,208000,336,2,208001,336,3,,,,0 332,2,208000,336,3,208002,336,2,208003,336,1,,,,0 332,3,208004,337,2,208002,337,4,,,,,,,1 -333,1,208004,337,1,208001,337,4,208002,337,3,,,,0 -333,2,208000,337,2,208001,337,3,208002,337,4,,,,0 +333,1,208004,337,1,208001,337,3,208002,337,2,,,,0 +333,2,208000,337,1,208001,337,2,208002,337,3,,,,0 333,3,208005,337,1,208004,337,1,,,,,,,0 334,1,208004,338,2,208001,338,2,,,,,,,0 334,2,208003,338,1,208000,338,2,208002,338,2,,,,0 -334,3,208005,339,1,208001,339,3,208002,339,3,,,,1 +334,3,208005,339,1,208001,339,2,208002,339,3,,,,1 335,1,208004,339,2,208002,339,2,,,,,,,0 335,2,208003,339,1,208002,339,4,,,,,,,0 -335,3,208005,339,1,208000,339,3,208001,339,4,,,,0 +335,3,208005,339,1,208000,339,3,208001,339,3,,,,0 336,1,208004,340,1,208003,340,1,208002,340,4,,,,0 -336,2,208003,340,1,208001,340,5,,,,,,,0 +336,2,208003,340,1,208001,340,4,,,,,,,0 336,3,208006,341,1,208000,341,3,,,,,,,1 337,1,208005,341,1,208001,341,4,,,,,,,0 337,2,208004,341,1,208000,341,4,,,,,,,0 337,3,208004,341,1,208002,341,4,208003,341,1,,,,0 -338,1,208004,342,1,208001,342,3,208002,342,3,,,,0 -338,2,208003,342,1,208000,342,3,208002,342,3,,,,0 +338,1,208004,342,1,208001,342,2,208002,342,3,,,,0 +338,2,208003,342,1,208000,342,2,208002,342,3,,,,0 338,3,208005,343,1,208004,343,1,,,,,,,1 339,1,208002,343,3,208003,343,2,,,,,,,0 -339,2,208003,343,1,208001,343,3,208002,343,3,,,,0 +339,2,208003,343,1,208001,343,2,208002,343,3,,,,0 339,3,208004,343,2,208002,343,3,,,,,,,0 340,1,208004,344,1,208005,344,1,208003,344,1,,,,0 340,2,208003,344,2,208001,344,2,,,,,,,0 340,3,208006,345,1,208003,345,1,,,,,,,1 341,1,208004,345,1,208003,345,1,208002,345,1,,,,0 341,2,208000,345,3,208005,345,1,,,,,,,0 -341,3,208003,345,3,208001,345,3,208002,345,3,,,,0 -342,1,208000,346,3,208001,346,3,208003,346,2,,,,0 +341,3,208003,345,2,208001,345,2,208002,345,2,,,,0 +342,1,208000,346,2,208001,346,2,208003,346,2,,,,0 342,2,208000,346,3,208004,346,1,208002,346,2,,,,0 342,3,208005,347,2,208001,347,3,,,,,,,1 -343,1,208001,347,2,208002,347,3,208003,347,2,,,,0 -343,2,208000,347,3,208004,347,1,208002,347,3,,,,0 +343,1,208001,347,1,208002,347,3,208003,347,2,,,,0 +343,2,208000,347,2,208004,347,1,208002,347,3,,,,0 343,3,208006,347,1,208004,347,1,,,,,,,0 -344,1,208005,348,2,208002,348,3,208000,348,2,,,,0 +344,1,208005,348,2,208002,348,2,208000,348,2,,,,0 344,2,208000,348,1,208001,348,1,208002,348,1,208003,348,2,0 344,3,208004,349,1,208005,349,1,208001,349,2,,,,1 345,1,208004,349,2,208003,349,1,208001,349,3,,,,0 345,2,208001,349,2,208002,349,1,208003,349,2,,,,0 345,3,208003,349,2,208004,349,1,208000,349,2,,,,0 -346,1,208005,350,1,208003,350,2,208002,350,4,,,,0 +346,1,208005,350,1,208003,350,2,208002,350,3,,,,0 346,2,208001,350,1,208002,350,2,208003,350,2,,,,0 346,3,208006,351,1,208005,351,1,,,,,,,1 347,1,208005,351,2,208003,351,1,,,,,,,0 -347,2,208002,351,3,208001,351,4,208004,351,1,,,,0 +347,2,208002,351,2,208001,351,3,208004,351,1,,,,0 347,3,208004,351,2,208003,351,1,208002,351,3,,,,0 348,1,208003,352,3,208004,352,1,208000,352,2,,,,0 348,2,208002,352,2,208001,352,2,208003,352,2,,,,0 @@ -1047,148 +1047,148 @@ stage_id,wave,monster1_id,monster1_level,monster1_count,monster2_id,monster2_lev 349,2,208000,353,3,208005,353,2,,,,,,,0 349,3,208006,353,1,208005,353,1,208002,353,3,,,,0 350,1,208004,354,2,208003,354,1,208005,354,1,,,,0 -350,2,208001,354,4,208002,354,3,208003,354,3,,,,0 +350,2,208001,354,2,208002,354,1,208003,354,3,,,,0 350,3,208007,355,1,,,,,,,,,,1 351,1,209000,355,2,,,,,,,,,,0 351,2,209001,355,2,,,,,,,,,,0 -351,3,209000,355,3,,,,,,,,,,0 +351,3,209000,355,2,,,,,,,,,,0 352,1,209000,356,2,,,,,,,,,,0 352,2,209001,356,2,,,,,,,,,,0 352,3,209000,357,2,209001,357,1,,,,,,,0 353,1,209000,357,1,209001,357,1,,,,,,,0 353,2,209001,357,2,,,,,,,,,,0 353,3,209003,357,1,,,,,,,,,,1 -354,1,209000,358,3,,,,,,,,,,0 +354,1,209000,358,2,,,,,,,,,,0 354,2,209001,358,1,209000,358,1,,,,,,,0 354,3,209000,359,1,209001,359,2,,,,,,,0 355,1,209000,359,2,209001,359,1,,,,,,,0 -355,2,209000,359,3,,,,,,,,,,0 +355,2,209000,359,2,,,,,,,,,,0 355,3,209000,359,2,209001,359,1,,,,,,,0 -356,1,209000,360,2,209001,360,2,,,,,,,0 -356,2,209000,360,3,209001,360,1,,,,,,,0 +356,1,209000,360,2,209001,360,1,,,,,,,0 +356,2,209000,360,2,209001,360,1,,,,,,,0 356,3,209003,361,1,209000,361,1,,,,,,,1 357,1,209000,361,2,209002,361,1,,,,,,,0 -357,2,209000,361,4,209001,361,1,,,,,,,0 -357,3,209000,361,3,209002,361,2,,,,,,,0 -358,1,209000,362,3,209002,362,1,,,,,,,0 -358,2,209000,362,3,209001,362,2,,,,,,,0 -358,3,209000,363,4,209002,363,2,,,,,,,0 -359,1,209000,363,3,209001,363,2,,,,,,,0 -359,2,209000,363,4,209002,363,1,,,,,,,0 -359,3,209000,363,3,209002,363,2,,,,,,,0 -360,1,209000,364,3,209002,364,2,,,,,,,0 -360,2,209001,364,3,209002,364,1,,,,,,,0 +357,2,209000,361,2,209001,361,1,,,,,,,0 +357,3,209000,361,2,209002,361,1,,,,,,,0 +358,1,209000,362,2,209002,362,1,,,,,,,0 +358,2,209000,362,2,209001,362,1,,,,,,,0 +358,3,209000,363,2,209002,363,1,,,,,,,0 +359,1,209000,363,2,209001,363,1,,,,,,,0 +359,2,209000,363,2,209002,363,1,,,,,,,0 +359,3,209000,363,2,209002,363,1,,,,,,,0 +360,1,209000,364,2,209002,364,1,,,,,,,0 +360,2,209001,364,2,209002,364,1,,,,,,,0 360,3,209003,365,1,209001,365,1,,,,,,,1 -361,1,209000,365,4,209002,365,2,,,,,,,0 -361,2,209001,365,3,209001,365,2,,,,,,,0 -361,3,209001,365,3,209002,365,2,,,,,,,0 -362,1,209001,366,3,209002,366,2,,,,,,,0 -362,2,209000,366,4,209002,366,2,,,,,,,0 -362,3,209001,367,2,209002,367,2,,,,,,,0 -363,1,209001,367,4,209002,367,2,,,,,,,0 -363,2,209000,367,5,209002,367,2,,,,,,,0 +361,1,209000,365,2,209002,365,1,,,,,,,0 +361,2,209001,365,2,209001,365,1,,,,,,,0 +361,3,209001,365,2,209002,365,1,,,,,,,0 +362,1,209001,366,2,209002,366,2,,,,,,,0 +362,2,209000,366,2,209002,366,1,,,,,,,0 +362,3,209001,367,1,209002,367,2,,,,,,,0 +363,1,209001,367,2,209002,367,2,,,,,,,0 +363,2,209000,367,3,209002,367,1,,,,,,,0 363,3,209003,367,1,209001,367,1,,,,,,,1 -364,1,209000,368,4,209001,368,3,209002,368,1,,,,0 -364,2,209001,368,4,209002,368,2,,,,,,,0 -364,3,209001,369,3,209002,369,3,,,,,,,0 -365,1,209000,369,2,209002,369,2,209003,369,1,,,,0 -365,2,209001,369,4,209002,369,2,,,,,,,0 -365,3,209001,369,2,209002,369,2,209003,369,1,,,,0 -366,1,209001,370,4,209002,370,4,,,,,,,0 -366,2,209000,370,5,209002,370,3,,,,,,,0 -366,3,209004,371,1,209000,371,2,209001,371,2,,,,1 -367,1,209000,371,3,209001,371,2,209003,371,1,,,,0 -367,2,209001,371,4,209002,371,3,,,,,,,0 -367,3,209000,371,1,209001,371,2,209002,371,6,,,,0 -368,1,209000,372,3,209001,372,2,209002,372,4,,,,0 -368,2,209001,372,3,209002,372,4,,,,,,,0 -368,3,209000,373,2,209002,373,2,209003,373,1,,,,0 -369,1,209000,373,2,209001,373,2,209002,373,5,,,,0 -369,2,209001,373,4,209002,373,3,,,,,,,0 -369,3,209001,373,3,209002,373,1,209003,373,1,,,,0 -370,1,209003,374,1,209000,374,4,209001,374,2,,,,0 -370,2,209001,374,3,209002,374,4,,,,,,,0 +364,1,209000,368,2,209001,368,1,209002,368,1,,,,0 +364,2,209001,368,2,209002,368,2,,,,,,,0 +364,3,209001,369,2,209002,369,2,,,,,,,0 +365,1,209000,369,2,209002,369,1,209003,369,1,,,,0 +365,2,209001,369,2,209002,369,2,,,,,,,0 +365,3,209001,369,2,209002,369,1,209003,369,1,,,,0 +366,1,209001,370,2,209002,370,2,,,,,,,0 +366,2,209000,370,3,209002,370,2,,,,,,,0 +366,3,209004,371,1,209000,371,2,209001,371,1,,,,1 +367,1,209000,371,1,209001,371,2,209003,371,1,,,,0 +367,2,209001,371,2,209002,371,1,,,,,,,0 +367,3,209000,371,1,209001,371,1,209002,371,3,,,,0 +368,1,209000,372,1,209001,372,1,209002,372,2,,,,0 +368,2,209001,372,2,209002,372,2,,,,,,,0 +368,3,209000,373,2,209002,373,1,209003,373,1,,,,0 +369,1,209000,373,2,209001,373,1,209002,373,3,,,,0 +369,2,209001,373,2,209002,373,2,,,,,,,0 +369,3,209001,373,2,209002,373,1,209003,373,1,,,,0 +370,1,209003,374,1,209000,374,2,209001,374,1,,,,0 +370,2,209001,374,2,209002,374,2,,,,,,,0 370,3,209004,375,1,209001,375,3,,,,,,,1 -371,1,209003,375,1,209000,375,3,209001,375,3,,,,0 -371,2,209000,375,1,209001,375,4,209002,375,3,,,,0 -371,3,209003,375,1,209000,375,4,209001,375,2,,,,0 -372,1,209000,376,5,209001,376,3,209002,376,3,,,,0 -372,2,209000,376,3,209001,376,4,209002,376,2,,,,0 -372,3,209003,377,1,209000,377,3,209002,377,3,,,,0 -373,1,209000,377,3,209001,377,4,209002,377,4,,,,0 -373,2,209000,377,2,209001,377,4,209002,377,3,,,,0 -373,3,209004,377,1,209000,377,2,209002,377,3,,,,1 +371,1,209003,375,1,209000,375,2,209001,375,2,,,,0 +371,2,209000,375,1,209001,375,2,209002,375,2,,,,0 +371,3,209003,375,1,209000,375,3,209001,375,1,,,,0 +372,1,209000,376,3,209001,376,1,209002,376,1,,,,0 +372,2,209000,376,2,209001,376,2,209002,376,1,,,,0 +372,3,209003,377,1,209000,377,2,209002,377,2,,,,0 +373,1,209000,377,1,209001,377,2,209002,377,2,,,,0 +373,2,209000,377,1,209001,377,3,209002,377,2,,,,0 +373,3,209004,377,1,209000,377,2,209002,377,2,,,,1 374,1,209004,378,1,209001,378,2,209002,378,2,,,,0 -374,2,209000,378,3,209001,378,4,209002,378,3,,,,0 -374,3,209003,379,1,209001,379,3,209002,379,3,,,,0 +374,2,209000,378,1,209001,378,2,209002,378,2,,,,0 +374,3,209003,379,1,209001,379,2,209002,379,2,,,,0 375,1,209004,379,1,209003,379,1,,,,,,,0 375,2,209002,379,3,209003,379,1,,,,,,,0 -375,3,209004,379,1,209000,379,3,209002,379,3,,,,0 -376,1,209001,380,3,209002,380,3,209003,380,1,,,,0 -376,2,209000,380,3,209002,380,5,,,,,,,0 +375,3,209004,379,1,209000,379,2,209002,379,2,,,,0 +376,1,209001,380,1,209002,380,2,209003,380,1,,,,0 +376,2,209000,380,1,209002,380,3,,,,,,,0 376,3,209005,381,1,209002,381,3,,,,,,,1 377,1,209004,381,1,209003,381,1,209002,381,3,,,,0 -377,2,209001,381,3,209002,381,4,,,,,,,0 +377,2,209001,381,2,209002,381,3,,,,,,,0 377,3,209004,381,1,209003,381,1,,,,,,,0 -378,1,209000,382,4,209002,382,4,209003,382,1,,,,0 -378,2,209001,382,3,209002,382,5,,,,,,,0 -378,3,209004,383,1,209000,383,5,209002,383,4,,,,0 -379,1,209001,383,3,209002,383,4,209003,383,1,,,,0 -379,2,209001,383,2,209002,383,6,,,,,,,0 -379,3,209000,383,5,209002,383,3,209003,383,2,,,,0 -380,1,209001,384,3,209002,384,4,209003,384,1,,,,0 -380,2,209001,384,4,209002,384,4,,,,,,,0 +378,1,209000,382,2,209002,382,3,209003,382,1,,,,0 +378,2,209001,382,2,209002,382,3,,,,,,,0 +378,3,209004,383,1,209000,383,3,209002,383,2,,,,0 +379,1,209001,383,2,209002,383,3,209003,383,1,,,,0 +379,2,209001,383,2,209002,383,4,,,,,,,0 +379,3,209000,383,3,209002,383,2,209003,383,1,,,,0 +380,1,209001,384,2,209002,384,2,209003,384,1,,,,0 +380,2,209001,384,2,209002,384,4,,,,,,,0 380,3,209005,385,1,209003,385,1,209002,385,1,,,,1 -381,1,209000,385,4,209002,385,4,209003,385,1,,,,0 -381,2,209000,385,3,209001,385,3,209002,385,3,,,,0 -381,3,209004,385,2,209001,385,4,209002,385,1,,,,0 -382,1,209004,386,1,209000,386,4,209001,386,4,,,,0 +381,1,209000,385,2,209002,385,3,209003,385,1,,,,0 +381,2,209000,385,2,209001,385,2,209002,385,2,,,,0 +381,3,209004,385,2,209001,385,3,209002,385,1,,,,0 +382,1,209004,386,1,209000,386,2,209001,386,3,,,,0 382,2,209000,386,3,209002,386,2,209003,386,1,,,,0 382,3,209004,387,2,209002,387,4,,,,,,,0 -383,1,209004,387,1,209001,387,4,209002,387,3,,,,0 -383,2,209000,387,2,209001,387,3,209002,387,4,,,,0 +383,1,209004,387,1,209001,387,3,209002,387,2,,,,0 +383,2,209000,387,1,209001,387,2,209002,387,3,,,,0 383,3,209005,387,1,209004,387,1,,,,,,,1 384,1,209004,388,2,209001,388,2,,,,,,,0 384,2,209003,388,1,209000,388,2,209002,388,2,,,,0 -384,3,209005,389,1,209001,389,3,209002,389,3,,,,0 +384,3,209005,389,1,209001,389,2,209002,389,3,,,,0 385,1,209004,389,2,209002,389,2,,,,,,,0 385,2,209003,389,1,209002,389,4,,,,,,,0 -385,3,209005,389,1,209000,389,3,209001,389,4,,,,0 +385,3,209005,389,1,209000,389,3,209001,389,3,,,,0 386,1,209004,390,1,209003,390,1,209002,390,4,,,,0 -386,2,209003,390,1,209001,390,5,,,,,,,0 +386,2,209003,390,1,209001,390,4,,,,,,,0 386,3,209006,391,1,209000,391,3,,,,,,,1 387,1,209005,391,1,209001,391,4,,,,,,,0 387,2,209004,391,1,209000,391,4,,,,,,,0 387,3,209004,391,1,209002,391,4,209003,391,1,,,,0 -388,1,209004,392,1,209001,392,3,209002,392,3,,,,0 -388,2,209003,392,1,209000,392,3,209002,392,3,,,,0 +388,1,209004,392,1,209001,392,2,209002,392,3,,,,0 +388,2,209003,392,1,209000,392,2,209002,392,3,,,,0 388,3,209005,393,1,209004,393,1,,,,,,,0 389,1,209002,393,3,209003,393,2,,,,,,,0 -389,2,209003,393,1,209001,393,3,209002,393,3,,,,0 +389,2,209003,393,1,209001,393,2,209002,393,3,,,,0 389,3,209004,393,2,209002,393,3,,,,,,,0 390,1,209004,394,1,209005,394,1,209003,394,1,,,,0 390,2,209003,394,2,209001,394,2,,,,,,,0 390,3,209006,395,1,209003,395,1,,,,,,,1 391,1,209004,395,1,209003,395,1,209002,395,1,,,,0 391,2,209000,395,3,209005,395,1,,,,,,,0 -391,3,209003,395,3,209001,395,3,209002,395,3,,,,0 -392,1,209000,396,3,209001,396,3,209003,396,2,,,,0 +391,3,209003,395,2,209001,395,2,209002,395,2,,,,0 +392,1,209000,396,2,209001,396,2,209003,396,2,,,,0 392,2,209000,396,3,209004,396,1,209002,396,2,,,,0 392,3,209005,397,2,209001,397,3,,,,,,,0 -393,1,209001,397,2,209002,397,3,209003,397,2,,,,0 -393,2,209000,397,3,209004,397,1,209002,397,3,,,,0 +393,1,209001,397,1,209002,397,3,209003,397,2,,,,0 +393,2,209000,397,2,209004,397,1,209002,397,3,,,,0 393,3,209006,397,1,209004,397,1,,,,,,,1 -394,1,209005,398,2,209002,398,3,209000,398,2,,,,0 +394,1,209005,398,2,209002,398,2,209000,398,2,,,,0 394,2,209000,398,1,209001,398,1,209002,398,1,209003,398,2,0 394,3,209004,399,1,209005,399,1,209001,399,2,,,,0 395,1,209004,399,2,209003,399,1,209001,399,3,,,,0 395,2,209001,399,2,209002,399,1,209003,399,2,,,,0 395,3,209003,399,2,209004,399,1,209000,399,2,,,,0 -396,1,209005,400,1,209003,400,2,209002,400,4,,,,0 +396,1,209005,400,1,209003,400,2,209002,400,3,,,,0 396,2,209001,400,1,209002,400,2,209003,400,2,,,,0 396,3,209006,401,1,209005,401,1,,,,,,,1 397,1,209005,401,2,209003,401,1,,,,,,,0 -397,2,209002,401,3,209001,401,4,209004,401,1,,,,0 +397,2,209002,401,2,209001,401,3,209004,401,1,,,,0 397,3,209004,401,2,209003,401,1,209002,401,3,,,,0 398,1,209003,402,3,209004,402,1,209000,402,2,,,,0 398,2,209002,402,2,209001,402,2,209003,402,2,,,,0 @@ -1197,7 +1197,7 @@ stage_id,wave,monster1_id,monster1_level,monster1_count,monster2_id,monster2_lev 399,2,209000,403,3,209005,403,2,,,,,,,0 399,3,209006,403,1,209005,403,1,209002,403,3,,,,0 400,1,209004,404,2,209003,404,1,209005,404,1,,,,0 -400,2,209001,404,4,209002,404,3,209003,404,3,,,,0 +400,2,209001,404,2,209002,404,1,209003,404,3,,,,0 400,3,209007,405,1,,,,,,,,,,1 10000001,1,203000,95,1,203001,95,1,,,,,,,0 10000001,2,203000,95,1,203001,95,2,203003,95,1,,,,0 diff --git a/Lib9c/TableCSV/WorldBoss/WorldBossListSheet.csv b/Lib9c/TableCSV/WorldBoss/WorldBossListSheet.csv index 9d94760c3..38c440d94 100644 --- a/Lib9c/TableCSV/WorldBoss/WorldBossListSheet.csv +++ b/Lib9c/TableCSV/WorldBoss/WorldBossListSheet.csv @@ -27,9 +27,9 @@ id,boss_id,started_block_index,ended_block_index,fee,ticket_price,additional_tic 26,900001,10267216,10440016,1,1,1,40 27,900002,10440017,10612817,1,1,1,40 28,900001,10684001,10835200,1,1,1,40 -29,900002,10986401,11137600,1,1,1,40 -30,900001,11288801,11440000,1,1,1,40 -31,900002,11591201,11742400,1,1,1,40 -32,900001,11893601,12044800,1,1,1,40 -33,900002,12196001,12347200,1,1,1,40 -34,900001,12498401,12649600,1,1,1,40 \ No newline at end of file +29,900002,11131301,11282500,1,1,1,40 +30,900001,11433701,11584900,1,1,1,40 +31,900002,11736101,11887300,1,1,1,40 +32,900001,12038501,12189700,1,1,1,40 +33,900002,12340901,12492100,1,1,1,40 +34,900001,12643301,12794500,1,1,1,40 \ No newline at end of file diff --git a/Lib9c/TableData/Item/ItemRequirementSheet.cs b/Lib9c/TableData/Item/ItemRequirementSheet.cs index 2595e0275..d693e6d33 100644 --- a/Lib9c/TableData/Item/ItemRequirementSheet.cs +++ b/Lib9c/TableData/Item/ItemRequirementSheet.cs @@ -16,13 +16,8 @@ public class Row : SheetRow public override void Set(IReadOnlyList fields) { ItemId = ParseInt(fields[0]); -#if UNITY_EDITOR Level = GameConfig.IsEditor ? 1 : ParseInt(fields[1]); MimisLevel = GameConfig.IsEditor ? 1 : ParseInt(fields[2]); -#else - Level = ParseInt(fields[1]); - MimisLevel = ParseInt(fields[2]); -#endif } } diff --git a/Libplanet.Crypto.Secp256k1/Libplanet.Crypto.Secp256k1.csproj b/Libplanet.Crypto.Secp256k1/Libplanet.Crypto.Secp256k1.csproj index bdfc98b9d..6405ab941 100644 --- a/Libplanet.Crypto.Secp256k1/Libplanet.Crypto.Secp256k1.csproj +++ b/Libplanet.Crypto.Secp256k1/Libplanet.Crypto.Secp256k1.csproj @@ -9,7 +9,7 @@ - +